@axos-web-dev/shared-components 0.0.51 → 0.0.52

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/Button/GoBackButton.js +1 -1
  2. package/dist/CallToActionBar/index.js +2 -3
  3. package/dist/Carousel/index.js +2 -3
  4. package/dist/Chevron/index.js +6 -2
  5. package/dist/ContentBanner/index.js +1 -1
  6. package/dist/DownloadTile/index.js +2 -2
  7. package/dist/ExecutiveBio/ExecutiveBio.js +1 -1
  8. package/dist/ExecutiveBio/ExecutiveBioSet.js +1 -1
  9. package/dist/FaqAccordion/index.js +2 -3
  10. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +6 -2
  11. package/dist/Forms/ApplicationStart.d.ts +10 -0
  12. package/dist/Forms/ApplicationStart.js +191 -0
  13. package/dist/Forms/ContactUsBusiness.d.ts +11 -0
  14. package/dist/Forms/ContactUsBusiness.js +246 -0
  15. package/dist/Forms/EmailOnly.d.ts +6 -0
  16. package/dist/Forms/EmailOnly.js +160 -0
  17. package/dist/Forms/Forms.css.d.ts +22 -1
  18. package/dist/Forms/Forms.css.js +11 -9
  19. package/dist/Forms/RenderForm.js +52 -1
  20. package/dist/Forms/SalesforceFieldsForm.js +11 -11
  21. package/dist/Forms/ScheduleCall.d.ts +1 -1
  22. package/dist/Forms/ScheduleCall.js +11 -7
  23. package/dist/Forms/ScheduleCallPremier.d.ts +12 -0
  24. package/dist/Forms/ScheduleCallPremier.js +255 -0
  25. package/dist/Forms/SuccesForm.d.ts +1 -1
  26. package/dist/Forms/SuccesForm.js +39 -3
  27. package/dist/Forms/index.d.ts +4 -0
  28. package/dist/Forms/index.js +12 -3
  29. package/dist/Hyperlink/index.js +6 -2
  30. package/dist/IconBillboard/IconBillboard.js +2 -2
  31. package/dist/IconBillboard/IconBillboardSet.js +2 -2
  32. package/dist/ImageBillboard/ImageBillboard.js +2 -2
  33. package/dist/ImageBillboard/ImageBillboardSet.js +6 -6
  34. package/dist/ImageLink/ImageLink.js +6 -2
  35. package/dist/ImageLink/ImageLinkSet.js +8 -4
  36. package/dist/ImageLink/index.js +6 -2
  37. package/dist/Input/Checkbox.css.d.ts +10 -0
  38. package/dist/Input/Checkbox.css.js +8 -0
  39. package/dist/Input/Checkbox.d.ts +5 -0
  40. package/dist/Input/Checkbox.js +48 -0
  41. package/dist/Input/CurrencyInput.d.ts +3 -0
  42. package/dist/Input/CurrencyInput.js +27 -0
  43. package/dist/Input/Dropdown.css.d.ts +1 -0
  44. package/dist/Input/Dropdown.css.js +6 -0
  45. package/dist/Input/Dropdown.d.ts +3 -0
  46. package/dist/Input/Dropdown.js +55 -0
  47. package/dist/Input/Input.css.d.ts +7 -0
  48. package/dist/Input/Input.css.js +8 -7
  49. package/dist/Input/InputPhone.js +5 -0
  50. package/dist/Input/InputProps.d.ts +29 -0
  51. package/dist/Input/InputProps.js +1 -0
  52. package/dist/Input/index.d.ts +4 -0
  53. package/dist/Input/index.js +8 -0
  54. package/dist/Modal/Modal.js +6 -2
  55. package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +1 -1
  56. package/dist/NavigationMenu/AxosAdvisor/index.js +1 -2
  57. package/dist/SecondaryFooter/index.js +1 -1
  58. package/dist/SetContainer/SetContainer.js +7 -3
  59. package/dist/StepItems/StepItemsSet.js +1 -1
  60. package/dist/Table/Table.js +2 -2
  61. package/dist/VideoWrapper/index.js +7 -7
  62. package/dist/assets/Button/Button.css +1 -1
  63. package/dist/assets/Forms/Forms.css +52 -29
  64. package/dist/assets/Input/Checkbox.css +6 -0
  65. package/dist/assets/Input/Dropdown.css +10 -0
  66. package/dist/assets/Input/Input.css +51 -30
  67. package/dist/icons/CheckIcon/index.js +1 -1
  68. package/dist/main.js +25 -7
  69. package/package.json +3 -2
@@ -0,0 +1,27 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { InputNumberFormat } from "@react-input/number-format";
3
+ import { forwardRef } from "react";
4
+ import "./Checkbox.js";
5
+ import "./Dropdown.js";
6
+ /* empty css */
7
+ /* empty css */
8
+ import { Input } from "./Input.js";
9
+ import "./Input.css.js";
10
+ import "./InputPhone.js";
11
+ const CurrencyInput = forwardRef(
12
+ (props, ref) => {
13
+ return /* @__PURE__ */ jsx(
14
+ InputNumberFormat,
15
+ {
16
+ component: Input,
17
+ ref,
18
+ format: "currency",
19
+ currency: "USD",
20
+ ...props
21
+ }
22
+ );
23
+ }
24
+ );
25
+ export {
26
+ CurrencyInput
27
+ };
@@ -0,0 +1 @@
1
+ export declare const selectInput: string;
@@ -0,0 +1,6 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ var selectInput = "_1vzv2cd0";
4
+ export {
5
+ selectInput
6
+ };
@@ -0,0 +1,3 @@
1
+ import { DropdownProps } from './InputProps';
2
+
3
+ export declare const Dropdown: import('react').ForwardRefExoticComponent<DropdownProps & import('react').RefAttributes<HTMLSelectElement>>;
@@ -0,0 +1,55 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ import { forwardRef } from "react";
4
+ import { selectInput } from "./Dropdown.css.js";
5
+ import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
6
+ const Dropdown = forwardRef(
7
+ (props, ref) => {
8
+ const {
9
+ disabled,
10
+ label,
11
+ iconLeft,
12
+ iconRight,
13
+ sizes,
14
+ error = false,
15
+ helperText: helper,
16
+ variant,
17
+ children,
18
+ ...rest
19
+ } = props;
20
+ return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
21
+ label && /* @__PURE__ */ jsx(
22
+ "label",
23
+ {
24
+ className: labelClassName({ error, variant }),
25
+ htmlFor: props.name,
26
+ children: label
27
+ }
28
+ ),
29
+ /* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
30
+ iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
31
+ /* @__PURE__ */ jsxs(
32
+ "select",
33
+ {
34
+ ...rest,
35
+ className: clsx(
36
+ props.className,
37
+ input({ size: sizes }),
38
+ selectInput
39
+ ),
40
+ ref,
41
+ children: [
42
+ props.options && props.options?.map((option) => /* @__PURE__ */ jsx("option", { value: option.value, children: option.text })),
43
+ children
44
+ ]
45
+ }
46
+ ),
47
+ iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
48
+ ] }),
49
+ /* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
50
+ ] });
51
+ }
52
+ );
53
+ export {
54
+ Dropdown
55
+ };
@@ -36,6 +36,13 @@ export declare const labelClassName: import('@vanilla-extract/recipes').RuntimeF
36
36
  color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
37
37
  };
38
38
  };
39
+ isCheckbox: {
40
+ true: {
41
+ display: "grid";
42
+ gridTemplateColumns: "24px auto";
43
+ gap: ".5rem";
44
+ };
45
+ };
39
46
  }>;
40
47
  export declare const iconContainerBase: string;
41
48
  export declare const iconContainer: Record<"left" | "right", string>;
@@ -1,15 +1,16 @@
1
+ /* empty css */
1
2
  /* empty css */
2
3
  /* empty css */
3
4
  /* empty css */
4
5
  import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
5
6
  var iconInput = createRuntimeFn({ defaultClassName: "_18du0la0", variantClassNames: { size: { small: "_18du0la1", medium: "_18du0la2", large: "_18du0la3" } }, defaultVariants: {}, compoundVariants: [] });
6
- var labelClassName = createRuntimeFn({ defaultClassName: "_18du0la4", variantClassNames: { variant: { primary: "_18du0la5", secondary: "_18du0la6", tertiary: "_18du0la7", quaternary: "_18du0la8" }, error: { true: "_18du0la9" }, disabled: { true: "_18du0laa" } }, defaultVariants: {}, compoundVariants: [] });
7
- var iconContainerBase = "_18du0lab";
8
- var iconContainer = { left: "_18du0lac _18du0lab", right: "_18du0lad _18du0lab" };
9
- var container = createRuntimeFn({ defaultClassName: "_18du0lae", variantClassNames: { size: { small: "_18du0laf", medium: "_18du0lag", large: "_18du0lah" }, error: { true: "_18du0lai" }, disabled: { true: "_18du0laj" } }, defaultVariants: {}, compoundVariants: [] });
10
- var input = createRuntimeFn({ defaultClassName: "_18du0lak", variantClassNames: { size: { small: "_18du0lal", medium: "_18du0lam", large: "_18du0lan" }, error: { true: "_18du0lao" }, disabled: { true: "_18du0lap" } }, defaultVariants: {}, compoundVariants: [] });
11
- var wrapper = createRuntimeFn({ defaultClassName: "_18du0laq", variantClassNames: {}, defaultVariants: {}, compoundVariants: [] });
12
- var helperText = createRuntimeFn({ defaultClassName: "_18du0lar", variantClassNames: { disabled: { true: "_18du0las" }, error: { true: "_18du0lat" } }, defaultVariants: {}, compoundVariants: [] });
7
+ var labelClassName = createRuntimeFn({ defaultClassName: "_18du0la4", variantClassNames: { variant: { primary: "_18du0la5", secondary: "_18du0la6", tertiary: "_18du0la7", quaternary: "_18du0la8" }, error: { true: "_18du0la9" }, disabled: { true: "_18du0laa" }, isCheckbox: { true: "_18du0lab" } }, defaultVariants: {}, compoundVariants: [] });
8
+ var iconContainerBase = "_18du0lac";
9
+ var iconContainer = { left: "_18du0lad _18du0lac", right: "_18du0lae _18du0lac" };
10
+ var container = createRuntimeFn({ defaultClassName: "_18du0laf", variantClassNames: { size: { small: "_18du0lag", medium: "_18du0lah", large: "_18du0lai" }, error: { true: "_18du0laj" }, disabled: { true: "_18du0lak" } }, defaultVariants: {}, compoundVariants: [] });
11
+ var input = createRuntimeFn({ defaultClassName: "_18du0lal", variantClassNames: { size: { small: "_18du0lam", medium: "_18du0lan", large: "_18du0lao" }, error: { true: "_18du0lap" }, disabled: { true: "_18du0laq" } }, defaultVariants: {}, compoundVariants: [] });
12
+ var wrapper = createRuntimeFn({ defaultClassName: "_18du0lar", variantClassNames: {}, defaultVariants: {}, compoundVariants: [] });
13
+ var helperText = createRuntimeFn({ defaultClassName: "_18du0las", variantClassNames: { disabled: { true: "_18du0lat" }, error: { true: "_18du0lau" } }, defaultVariants: {}, compoundVariants: [] });
13
14
  export {
14
15
  container,
15
16
  helperText,
@@ -1,6 +1,11 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { InputMask } from "@react-input/mask";
3
3
  import { forwardRef } from "react";
4
+ import "./Checkbox.js";
5
+ import "./CurrencyInput.js";
6
+ import "./Dropdown.js";
7
+ /* empty css */
8
+ /* empty css */
4
9
  import { Input } from "./Input.js";
5
10
  import "./Input.css.js";
6
11
  const InputPhone = forwardRef(
@@ -0,0 +1,29 @@
1
+ import { InputHTMLAttributes, PropsWithChildren, ReactNode, SelectHTMLAttributes } from 'react';
2
+ import { QuaternaryTypes } from '../utils';
3
+
4
+ export interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
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
+ type?: string;
14
+ }
15
+ export interface DropdownProps extends SelectHTMLAttributes<HTMLSelectElement>, PropsWithChildren {
16
+ label?: ReactNode;
17
+ iconLeft?: ReactNode;
18
+ iconRight?: ReactNode;
19
+ sizes?: "small" | "medium" | "large" | undefined;
20
+ error?: boolean | undefined;
21
+ skeleton?: boolean | undefined;
22
+ helperText?: ReactNode;
23
+ variant?: QuaternaryTypes;
24
+ type?: string;
25
+ options?: {
26
+ value: string | number;
27
+ text: string;
28
+ }[];
29
+ }
@@ -0,0 +1 @@
1
+
@@ -1,3 +1,7 @@
1
+ export * from './Checkbox';
2
+ export * from './CurrencyInput';
3
+ export * from './Dropdown';
4
+ export * from './Dropdown.css';
1
5
  export * from './Input';
2
6
  export * from './Input.css';
3
7
  export * from './InputPhone';
@@ -1,7 +1,14 @@
1
+ import { Checkbox } from "./Checkbox.js";
2
+ import { CurrencyInput } from "./CurrencyInput.js";
3
+ import { Dropdown } from "./Dropdown.js";
4
+ import { selectInput } from "./Dropdown.css.js";
1
5
  import { Input } from "./Input.js";
2
6
  import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input.css.js";
3
7
  import { InputPhone } from "./InputPhone.js";
4
8
  export {
9
+ Checkbox,
10
+ CurrencyInput,
11
+ Dropdown,
5
12
  Input,
6
13
  InputPhone,
7
14
  container,
@@ -11,5 +18,6 @@ export {
11
18
  iconInput,
12
19
  input,
13
20
  labelClassName,
21
+ selectInput,
14
22
  wrapper
15
23
  };
@@ -28,13 +28,17 @@ import "../ExecutiveBio/ExecutiveBio.css.js";
28
28
  import "../FaqAccordion/index.js";
29
29
  import "../FooterDisclosure/FooterDisclosure.css.js";
30
30
  /* empty css */
31
- import "../Forms/Forms.css.js";
32
- import "../Forms/SalesforceFieldsForm.js";
33
31
  import "@hookform/resolvers/zod";
32
+ import "../Input/Checkbox.js";
33
+ import "../Input/CurrencyInput.js";
34
+ import "../Input/Dropdown.js";
35
+ /* empty css */
34
36
  import "../Input/Input.js";
35
37
  import "../Input/Input.css.js";
36
38
  import "../Input/InputPhone.js";
37
39
  import "react-hook-form";
40
+ import "../Forms/Forms.css.js";
41
+ import "../Forms/SalesforceFieldsForm.js";
38
42
  import "../SetContainer/SetContainer.css.js";
39
43
  import "../ImageBillboard/ImageBillboard.css.js";
40
44
  import "../LandingPageHeader/LandingPageHeader.css.js";
@@ -22,7 +22,7 @@ function SubNavBar() {
22
22
  setIsMouseOver(!isMouseOver);
23
23
  };
24
24
  useEffect(() => {
25
- (pathname == null ? void 0 : pathname.includes("/products")) ? setIsrender(true) : setIsrender(false);
25
+ pathname?.includes("/products") ? setIsrender(true) : setIsrender(false);
26
26
  }, [pathname]);
27
27
  const date = /* @__PURE__ */ new Date();
28
28
  const day = date.getDate();
@@ -37,8 +37,7 @@ function NavBar() {
37
37
  setLastNavItem(navItems[navItems.length - 1]);
38
38
  }, [navItems]);
39
39
  useClickAway(ref, (e) => {
40
- var _a;
41
- if (((_a = e == null ? void 0 : e.target) == null ? void 0 : _a.tagName) !== "A") {
40
+ if (e?.target?.tagName !== "A") {
42
41
  setisOpenSignIn(false);
43
42
  }
44
43
  });
@@ -4,7 +4,7 @@ import clsx from "clsx";
4
4
  import { secondary_footer, footer_items_wrapper, footer_item, footer_link } from "./SecondaryFooter.css.js";
5
5
  const SecondaryFooter = (props) => {
6
6
  const { items } = props;
7
- return /* @__PURE__ */ jsx("div", { className: clsx(secondary_footer, "containment section_spacer"), children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items == null ? void 0 : items.map((item) => /* @__PURE__ */ jsx("div", { className: footer_item, children: /* @__PURE__ */ jsx(Hyperlink, { targetUrl: item.targetURL, className: footer_link, children: item.displayText }) }, item.id)) }) });
7
+ return /* @__PURE__ */ jsx("div", { className: clsx(secondary_footer, "containment section_spacer"), children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items?.map((item) => /* @__PURE__ */ jsx("div", { className: footer_item, children: /* @__PURE__ */ jsx(Hyperlink, { targetUrl: item.targetURL, className: footer_link, children: item.displayText }) }, item.id)) }) });
8
8
  };
9
9
  export {
10
10
  SecondaryFooter
@@ -28,13 +28,17 @@ import "../ExecutiveBio/ExecutiveBio.css.js";
28
28
  import "../FaqAccordion/index.js";
29
29
  import "../FooterDisclosure/FooterDisclosure.css.js";
30
30
  /* empty css */
31
- import "../Forms/Forms.css.js";
32
- import "../Forms/SalesforceFieldsForm.js";
33
31
  import "@hookform/resolvers/zod";
32
+ import "../Input/Checkbox.js";
33
+ import "../Input/CurrencyInput.js";
34
+ import "../Input/Dropdown.js";
35
+ /* empty css */
34
36
  import "../Input/Input.js";
35
37
  import "../Input/Input.css.js";
36
38
  import "../Input/InputPhone.js";
37
39
  import "react-hook-form";
40
+ import "../Forms/Forms.css.js";
41
+ import "../Forms/SalesforceFieldsForm.js";
38
42
  import { set_container, inline_container } from "./SetContainer.css.js";
39
43
  import "../ImageBillboard/ImageBillboard.css.js";
40
44
  import "../LandingPageHeader/LandingPageHeader.css.js";
@@ -63,7 +67,7 @@ const SetContainer = ({
63
67
  return /* @__PURE__ */ jsx(
64
68
  "section",
65
69
  {
66
- id: internalName ? internalName == null ? void 0 : internalName.replace(/ /g, "-") : "",
70
+ id: internalName ? internalName?.replace(/ /g, "-") : "",
67
71
  className: clsx(set_container({ variant: getVariant(variant) })),
68
72
  children: /* @__PURE__ */ jsxs("div", { className: "containment", children: [
69
73
  (headline || bodyCopy) && /* @__PURE__ */ jsxs("div", { className: section_text, children: [
@@ -57,7 +57,7 @@ const StepItemsSet = ({
57
57
  "div",
58
58
  {
59
59
  className: bs_image,
60
- style: { backgroundImage: `url(${image == null ? void 0 : image.src})` },
60
+ style: { backgroundImage: `url(${image?.src})` },
61
61
  children: " "
62
62
  }
63
63
  ),
@@ -12,7 +12,7 @@ const TableContainer = ({
12
12
  internalName,
13
13
  id
14
14
  }) => {
15
- return /* @__PURE__ */ jsx("section", { id: internalName == null ? void 0 : internalName.replace(/ /g, "-"), children: /* @__PURE__ */ jsxs(
15
+ return /* @__PURE__ */ jsx("section", { id: internalName?.replace(/ /g, "-"), children: /* @__PURE__ */ jsxs(
16
16
  "div",
17
17
  {
18
18
  className: clsx(
@@ -79,7 +79,7 @@ const TableCell = ({
79
79
  ...props,
80
80
  className: clsx(
81
81
  as == "td" ? td({ variant: getVariant(variant), highlighted }) : th({ variant: getVariant(variant), highlighted }),
82
- props == null ? void 0 : props.className
82
+ props?.className
83
83
  )
84
84
  },
85
85
  children
@@ -23,17 +23,17 @@ const VideoWrapper = ({
23
23
  "div",
24
24
  {
25
25
  className: `${grid_wrapper} ${videoTiles.length % 3 === 0 ? grid_3 : grid_2}`,
26
- children: videoTiles == null ? void 0 : videoTiles.map((videoItem, index) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
26
+ children: videoTiles?.map((videoItem, index) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
27
27
  VideoTile,
28
28
  {
29
29
  id: videoItem.id,
30
- title: videoItem == null ? void 0 : videoItem.title,
31
- videoId: videoItem == null ? void 0 : videoItem.videoId,
32
- thumbnailImage: videoItem == null ? void 0 : videoItem.thumbnailImage,
33
- displayType: videoItem == null ? void 0 : videoItem.displayType,
34
- maxWidth: (videoItem == null ? void 0 : videoItem.maxWidth) || "588px",
30
+ title: videoItem?.title,
31
+ videoId: videoItem?.videoId,
32
+ thumbnailImage: videoItem?.thumbnailImage,
33
+ displayType: videoItem?.displayType,
34
+ maxWidth: videoItem?.maxWidth || "588px",
35
35
  videoPlayer: videoItem.displayType,
36
- transcript: videoItem == null ? void 0 : videoItem.transcript
36
+ transcript: videoItem?.transcript
37
37
  },
38
38
  index
39
39
  ) }))
@@ -32,7 +32,7 @@
32
32
  }
33
33
  ._13pdpuj1:active {
34
34
  background-color: var(--_1073cm86);
35
- color: var(--_1073cm86);
35
+ color: var(--_1073cm85);
36
36
  }
37
37
  ._13pdpuj2 {
38
38
  background: var(--_1073cm8k);
@@ -1,4 +1,4 @@
1
- @keyframes tfms6ao {
1
+ @keyframes tfms6ap {
2
2
  from {
3
3
  stroke-dashoffset: 1;
4
4
  }
@@ -6,7 +6,7 @@
6
6
  opacity: 100;
7
7
  }
8
8
  }
9
- @keyframes tfms6ap {
9
+ @keyframes tfms6aq {
10
10
  0% {
11
11
  stroke-dashoffset: -1000;
12
12
  }
@@ -86,48 +86,51 @@
86
86
  color: var(--_1073cm8n);
87
87
  }
88
88
  .tfms6ah {
89
+ grid-template-columns: 1fr;
90
+ }
91
+ .tfms6ai {
89
92
  margin-top: 1.5rem;
90
93
  text-align: center;
91
94
  }
92
- .tfms6ai {
95
+ .tfms6aj {
93
96
  margin-top: 16px;
94
97
  }
95
- .tfms6aj {
98
+ .tfms6ak {
96
99
  color: var(--_1073cm82);
97
100
  }
98
- .tfms6ak {
101
+ .tfms6al {
99
102
  color: var(--_1073cm89);
100
103
  }
101
- .tfms6al {
104
+ .tfms6am {
102
105
  color: var(--_1073cm8g);
103
106
  }
104
- .tfms6am {
107
+ .tfms6an {
105
108
  color: var(--_1073cm8n);
106
109
  }
107
- .tfms6an {
110
+ .tfms6ao {
108
111
  max-width: 860px;
109
112
  margin-inline: auto;
110
113
  }
111
- .tfms6aq {
114
+ .tfms6ar {
112
115
  padding: 2.5rem 0;
113
116
  }
114
- .tfms6ar {
117
+ .tfms6as {
115
118
  color: var(--_1073cm83);
116
119
  background: var(--_1073cm81);
117
120
  }
118
- .tfms6as {
121
+ .tfms6at {
119
122
  color: var(--_1073cm8a);
120
123
  background: var(--_1073cm88);
121
124
  }
122
- .tfms6at {
125
+ .tfms6au {
123
126
  color: var(--_1073cm8g);
124
127
  background: var(--_1073cm8f);
125
128
  }
126
- .tfms6au {
129
+ .tfms6av {
127
130
  color: var(--_1073cm8n);
128
131
  background: var(--_1073cm8m);
129
132
  }
130
- .tfms6aq h1 {
133
+ .tfms6ar h1 {
131
134
  font-size: 43px;
132
135
  font-weight: 600;
133
136
  letter-spacing: 1px;
@@ -135,29 +138,29 @@
135
138
  margin-bottom: 0.7rem;
136
139
  font-family: var(--header-font-family);
137
140
  }
138
- .tfms6aq p {
141
+ .tfms6ar p {
139
142
  margin-bottom: 0;
140
143
  }
141
- .tfms6av {
144
+ .tfms6aw {
142
145
  margin: 0 auto;
143
146
  display: block;
144
147
  }
145
- .tfms6aw {
148
+ .tfms6ax {
146
149
  fill: none;
147
150
  stroke: #faa74a;
148
151
  stroke-width: 4;
149
152
  stroke-dasharray: 100px;
150
153
  stroke-dashoffset: 100;
151
- animation: tfms6ao 0.5s ease-in-out forwards reverse;
154
+ animation: tfms6ap 0.5s ease-in-out forwards reverse;
152
155
  -webkit-animation-delay: 0.7s;
153
156
  }
154
- .tfms6ax {
157
+ .tfms6ay {
155
158
  fill: none;
156
159
  stroke-width: 4;
157
160
  stroke-dasharray: 1000px;
158
161
  stroke-dashoffset: 1000;
159
- -webkit-animation: tfms6ap 0.8s ease-in-out forwards;
160
- animation: tfms6ap 0.8s ease-in-out forwards;
162
+ -webkit-animation: tfms6aq 0.8s ease-in-out forwards;
163
+ animation: tfms6aq 0.8s ease-in-out forwards;
161
164
  -webkit-transform-origin: center;
162
165
  -ms-transform-origin: center;
163
166
  transform-origin: center;
@@ -165,21 +168,37 @@
165
168
  -ms-transform: rotate(-40deg);
166
169
  transform: rotate(-40deg);
167
170
  }
168
- .tfms6ay {
171
+ .tfms6az {
169
172
  stroke: var(--_1073cm83);
170
173
  }
171
- .tfms6az {
174
+ .tfms6a10 {
172
175
  stroke: var(--_1073cm8a);
173
176
  }
174
- .tfms6a10 {
177
+ .tfms6a11 {
175
178
  stroke: var(--_1073cm8g);
176
179
  }
177
- .tfms6a11 {
180
+ .tfms6a12 {
178
181
  stroke: var(--_1073cm8n);
179
182
  }
180
- .tfms6a12 {
183
+ .tfms6a13 {
181
184
  margin-top: 1rem;
182
185
  }
186
+ .tfms6a14 {
187
+ color: var(--_1073cm82);
188
+ }
189
+ .tfms6a15 {
190
+ color: var(--_1073cm89);
191
+ }
192
+ .tfms6a16 {
193
+ color: var(--_1073cm8g);
194
+ }
195
+ .tfms6a17 {
196
+ color: var(--_1073cm8n);
197
+ }
198
+ .tfms6ac .tfms6a18 {
199
+ grid-column-start: 1;
200
+ grid-column-end: 3;
201
+ }
183
202
  @media screen and (max-width:1023px) {
184
203
  .tfms6a0 {
185
204
  padding-inline: 0;
@@ -189,22 +208,26 @@
189
208
  .tfms6ac {
190
209
  grid-template-columns: 1fr;
191
210
  }
211
+ .tfms6ac .tfms6a18 {
212
+ grid-column-start: 1;
213
+ grid-column-end: 2;
214
+ }
192
215
  }
193
216
  @media screen and (max-width: 992px) {
194
- .tfms6aq h1 {
217
+ .tfms6ar h1 {
195
218
  font-size: 37px;
196
219
  line-height: 1.29;
197
220
  margin-bottom: 0.4rem;
198
221
  }
199
222
  }
200
223
  @media screen and (maxwidth: 767px) {
201
- .tfms6aq h1 {
224
+ .tfms6ar h1 {
202
225
  font-size: 32px;
203
226
  font-weight: 600;
204
227
  margin-top: 0;
205
228
  margin-bottom: 0.4rem;
206
229
  }
207
- .tfms6av {
230
+ .tfms6aw {
208
231
  max-width: 69px;
209
232
  }
210
233
  }
@@ -0,0 +1,6 @@
1
+ ._3tjom72 {
2
+ width: 20px;
3
+ height: 20px;
4
+ border: 2px solid #8F8F8F;
5
+ border-radius: 2px;
6
+ }
@@ -0,0 +1,10 @@
1
+ ._1vzv2cd0 {
2
+ background: white;
3
+ scrollbar-width: thin;
4
+ font-family: var(--main-font-family);
5
+ height: 26px;
6
+ padding: 1px 2px;
7
+ }
8
+ option {
9
+ font-family: var(--main-font-family);
10
+ }