@axos-web-dev/shared-components 1.0.8 → 1.0.10
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/Article/Article.js +1 -7
- package/dist/Calculators/ApyCalculator/index.js +3 -2
- package/dist/Calculators/AxosOneCalculator/index.js +12 -4
- package/dist/ExecutiveBio/ExecutiveBio.js +7 -1
- package/dist/ImageBillboard/ImageBillboardSet.js +1 -7
- package/dist/Insight/Featured/Featured.js +52 -45
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +22 -12
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +145 -131
- package/dist/assets/globals.css +4 -20
- package/package.json +1 -1
package/dist/Article/Article.js
CHANGED
|
@@ -25,13 +25,7 @@ const Article = ({
|
|
|
25
25
|
/* @__PURE__ */ jsx("div", { className: ant_img, role: "presentation", children: /* @__PURE__ */ jsxs("picture", { children: [
|
|
26
26
|
/* @__PURE__ */ jsx("source", { srcSet: `${image?.src}?fm=avif`, type: "image/avif" }),
|
|
27
27
|
/* @__PURE__ */ jsx("source", { srcSet: `${image?.src}?fm=webp`, type: "image/webp" }),
|
|
28
|
-
/* @__PURE__ */ jsx(
|
|
29
|
-
LazyImage,
|
|
30
|
-
{
|
|
31
|
-
src: `${image?.src}?q=85`,
|
|
32
|
-
alt: image?.alt ?? ""
|
|
33
|
-
}
|
|
34
|
-
)
|
|
28
|
+
/* @__PURE__ */ jsx(LazyImage, { src: `${image?.src}?q=85`, alt: image?.alt ?? "" })
|
|
35
29
|
] }) }),
|
|
36
30
|
/* @__PURE__ */ jsxs("div", { className: `${ant_content} flex flex_col between`, children: [
|
|
37
31
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
@@ -16,9 +16,10 @@ const ApyCalculator = ({
|
|
|
16
16
|
variant
|
|
17
17
|
}) => {
|
|
18
18
|
const calculator_variant = getVariant(variant);
|
|
19
|
+
const AXOS_ONE_APY = +process.env.NEXT_PUBLIC_AXOS_ONE_APY;
|
|
19
20
|
const [initialDeposit, setInititalDeposit] = useState(1e3);
|
|
20
|
-
const [APR, setAPR] = useState(
|
|
21
|
-
const [APY, setAPY] = useState(
|
|
21
|
+
const [APR, setAPR] = useState(AXOS_ONE_APY - 0.11);
|
|
22
|
+
const [APY, setAPY] = useState(AXOS_ONE_APY);
|
|
22
23
|
const [months, setMonths] = useState(12);
|
|
23
24
|
const [compounding, setCompounding] = useState(360);
|
|
24
25
|
const [monthlyDeposits, setMonthlyDeposits] = useState(100);
|
|
@@ -27,9 +27,10 @@ const AxosOneCalculator = ({
|
|
|
27
27
|
variant
|
|
28
28
|
}) => {
|
|
29
29
|
const calc_variant = getVariant(variant);
|
|
30
|
+
const AXOS_ONE_APY = +process.env.NEXT_PUBLIC_AXOS_ONE_APY;
|
|
30
31
|
const [balance, setBalance] = useState(1e4);
|
|
31
|
-
const [axbAPY, _setAxbAPY] = useState(
|
|
32
|
-
const [axbEarning, setAxbEarning] = useState(
|
|
32
|
+
const [axbAPY, _setAxbAPY] = useState(AXOS_ONE_APY);
|
|
33
|
+
const [axbEarning, setAxbEarning] = useState(AXOS_ONE_APY * 100);
|
|
33
34
|
const [chaseAPY, _setChaseAPY] = useState(0.01);
|
|
34
35
|
const [chaseEarning, setChaseEarning] = useState(1);
|
|
35
36
|
const [bofaAPY, _setBofaAPY] = useState(0.01);
|
|
@@ -45,7 +46,7 @@ const AxosOneCalculator = ({
|
|
|
45
46
|
setBalance(newValue);
|
|
46
47
|
return newValue;
|
|
47
48
|
};
|
|
48
|
-
const
|
|
49
|
+
const calculateBalance = (amount) => {
|
|
49
50
|
setAxbEarning(axbAPY / 100 * amount);
|
|
50
51
|
setChaseEarning(chaseAPY / 100 * amount);
|
|
51
52
|
setBofaEarning(bofaAPY / 100 * amount);
|
|
@@ -91,7 +92,14 @@ const AxosOneCalculator = ({
|
|
|
91
92
|
{
|
|
92
93
|
className: ax1_calculator_button,
|
|
93
94
|
size: "large",
|
|
94
|
-
action: () =>
|
|
95
|
+
action: () => calculateBalance(balance),
|
|
96
|
+
tabIndex: 0,
|
|
97
|
+
role: "button",
|
|
98
|
+
onKeyDown: (event) => {
|
|
99
|
+
if (event.key === "Enter" || event.key === " ") {
|
|
100
|
+
calculateBalance(balance);
|
|
101
|
+
}
|
|
102
|
+
},
|
|
95
103
|
children: "Calculate"
|
|
96
104
|
}
|
|
97
105
|
)
|
|
@@ -162,7 +162,13 @@ const ExecutiveBio = ({
|
|
|
162
162
|
type: "image/webp"
|
|
163
163
|
}
|
|
164
164
|
),
|
|
165
|
-
/* @__PURE__ */ jsx(
|
|
165
|
+
/* @__PURE__ */ jsx(
|
|
166
|
+
LazyImage,
|
|
167
|
+
{
|
|
168
|
+
src: `${executiveHeadshot?.src}?q=85`,
|
|
169
|
+
alt: ""
|
|
170
|
+
}
|
|
171
|
+
)
|
|
166
172
|
] }) }) }) }),
|
|
167
173
|
/* @__PURE__ */ jsxs("div", { className: `${description} flex_col between`, children: [
|
|
168
174
|
/* @__PURE__ */ jsxs("div", { className: person, children: [
|
|
@@ -67,13 +67,7 @@ const ImageBillboard = ({
|
|
|
67
67
|
/* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: image ? /* @__PURE__ */ jsx("div", { className: image_background, role: "presentation", children: /* @__PURE__ */ jsxs("picture", { children: [
|
|
68
68
|
/* @__PURE__ */ jsx("source", { srcSet: `${image?.src}?fm=avif`, type: "image/avif" }),
|
|
69
69
|
/* @__PURE__ */ jsx("source", { srcSet: `${image?.src}?fm=webp`, type: "image/webp" }),
|
|
70
|
-
/* @__PURE__ */ jsx(
|
|
71
|
-
LazyImage,
|
|
72
|
-
{
|
|
73
|
-
src: `${image?.src}?q=85`,
|
|
74
|
-
alt: image?.alt ?? ""
|
|
75
|
-
}
|
|
76
|
-
)
|
|
70
|
+
/* @__PURE__ */ jsx(LazyImage, { src: `${image?.src}?q=85`, alt: image?.alt ?? "" })
|
|
77
71
|
] }) }) : /* @__PURE__ */ jsx(
|
|
78
72
|
"div",
|
|
79
73
|
{
|
|
@@ -153,52 +153,59 @@ const Featured = (props) => {
|
|
|
153
153
|
children: /* @__PURE__ */ jsxs("div", { className: clsx("containment"), children: [
|
|
154
154
|
headline && /* @__PURE__ */ jsx("h2", { className: clsx(featured_title), children: headline }),
|
|
155
155
|
/* @__PURE__ */ jsxs("div", { className: clsx(featured_grid), children: [
|
|
156
|
-
/* @__PURE__ */ jsxs(
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
type: "image/webp"
|
|
170
|
-
}
|
|
171
|
-
),
|
|
172
|
-
/* @__PURE__ */ jsx(
|
|
173
|
-
Image,
|
|
174
|
-
{
|
|
175
|
-
src: `https:${main?.image?.url}?q=85`,
|
|
176
|
-
className: clsx(featured_maingrid_img),
|
|
177
|
-
width: 703,
|
|
178
|
-
height: 340,
|
|
179
|
-
priority: true,
|
|
180
|
-
alt: ""
|
|
181
|
-
}
|
|
182
|
-
)
|
|
183
|
-
] }),
|
|
184
|
-
/* @__PURE__ */ jsxs("div", { className: clsx(featured_maingrid_item), children: [
|
|
185
|
-
/* @__PURE__ */ jsx(
|
|
186
|
-
"h2",
|
|
187
|
-
{
|
|
188
|
-
className: clsx(
|
|
189
|
-
title({ variant: "primary" }),
|
|
190
|
-
featured_maingrid_title
|
|
156
|
+
/* @__PURE__ */ jsxs(
|
|
157
|
+
"a",
|
|
158
|
+
{
|
|
159
|
+
href: main?.url,
|
|
160
|
+
className: clsx(featured_maingrid, featured_hero),
|
|
161
|
+
children: [
|
|
162
|
+
/* @__PURE__ */ jsxs("picture", { children: [
|
|
163
|
+
/* @__PURE__ */ jsx(
|
|
164
|
+
"source",
|
|
165
|
+
{
|
|
166
|
+
srcSet: `https:${main?.image?.url}?fm=avif`,
|
|
167
|
+
type: "image/avif"
|
|
168
|
+
}
|
|
191
169
|
),
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
170
|
+
/* @__PURE__ */ jsx(
|
|
171
|
+
"source",
|
|
172
|
+
{
|
|
173
|
+
srcSet: `https:${main?.image?.url}?fm=webp`,
|
|
174
|
+
type: "image/webp"
|
|
175
|
+
}
|
|
176
|
+
),
|
|
177
|
+
/* @__PURE__ */ jsx(
|
|
178
|
+
Image,
|
|
179
|
+
{
|
|
180
|
+
src: `https:${main?.image?.url}?q=85`,
|
|
181
|
+
className: clsx(featured_maingrid_img),
|
|
182
|
+
width: 703,
|
|
183
|
+
height: 340,
|
|
184
|
+
priority: true,
|
|
185
|
+
alt: ""
|
|
186
|
+
}
|
|
187
|
+
)
|
|
188
|
+
] }),
|
|
189
|
+
/* @__PURE__ */ jsxs("div", { className: clsx(featured_maingrid_item), children: [
|
|
190
|
+
/* @__PURE__ */ jsx(
|
|
191
|
+
"h2",
|
|
192
|
+
{
|
|
193
|
+
className: clsx(
|
|
194
|
+
title({ variant: "primary" }),
|
|
195
|
+
featured_maingrid_title
|
|
196
|
+
),
|
|
197
|
+
children: main?.title ?? ""
|
|
198
|
+
}
|
|
199
|
+
),
|
|
200
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
201
|
+
/* @__PURE__ */ jsx(ClockIcon, { className: clsx(featured_center_vertical) }),
|
|
202
|
+
" ",
|
|
203
|
+
/* @__PURE__ */ jsx("span", { className: clsx(featured_center_vertical), children: (main?.readingTime ?? "") + " minutes" })
|
|
204
|
+
] })
|
|
205
|
+
] })
|
|
206
|
+
]
|
|
207
|
+
}
|
|
208
|
+
),
|
|
202
209
|
/* @__PURE__ */ jsx("div", { className: clsx(featured_subgrid), children: restFeatured.map((item, index) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
203
210
|
/* @__PURE__ */ jsx(
|
|
204
211
|
FeaturedItem,
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav_link = "
|
|
8
|
-
const sub_nav_link = "
|
|
9
|
-
const signin_wrap = "
|
|
10
|
-
const signin_btn = "
|
|
11
|
-
const header_sub_row = "
|
|
12
|
-
const signin_dropdown = "
|
|
13
|
-
const shadow = "
|
|
14
|
-
const signin_header = "
|
|
15
|
-
const signin_subheader = "
|
|
16
|
-
const opacity = "
|
|
17
|
-
const fadeInDown = "
|
|
18
|
-
const signin_footer = "
|
|
19
|
-
const open = "
|
|
20
|
-
const dd_wrapper = "
|
|
21
|
-
const dd_media = "
|
|
22
|
-
const dd_media_img = "
|
|
23
|
-
const dd_site_navs = "
|
|
24
|
-
const dd_media_header = "
|
|
25
|
-
const mt_8 = "
|
|
26
|
-
const mt_16 = "
|
|
27
|
-
const ml_8 = "
|
|
28
|
-
const dd_media_cta = "
|
|
29
|
-
const reversed_row = "
|
|
30
|
-
const headline = "
|
|
31
|
-
const nav_anchor = "
|
|
32
|
-
const headline_cta = "
|
|
33
|
-
const site_lists = "
|
|
34
|
-
const hamburger = "
|
|
35
|
-
const mobile_only = "
|
|
36
|
-
const mobile_logo = "
|
|
37
|
-
const highlight = "
|
|
38
|
-
const mobile_nav = "
|
|
39
|
-
const mobile_opened = "
|
|
40
|
-
const mobile_nav_item = "
|
|
41
|
-
const has_dropdown = "
|
|
42
|
-
const icon_wrap = "
|
|
43
|
-
const mobile_footer = "
|
|
44
|
-
const mobile_footer_content = "
|
|
45
|
-
const mobile_footer_media = "
|
|
46
|
-
const footer_cta = "
|
|
47
|
-
const inner_wrapper = "
|
|
48
|
-
const btn = "
|
|
49
|
-
const sub_menu = "
|
|
50
|
-
const main = "
|
|
51
|
-
const dd_footer = "
|
|
52
|
-
const skip_btn = "
|
|
53
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "_header_1qrpu_1";
|
|
2
|
+
const wrapper = "_wrapper_1qrpu_9";
|
|
3
|
+
const header_main_row = "_header_main_row_1qrpu_21";
|
|
4
|
+
const mobile_header = "_mobile_header_1qrpu_23";
|
|
5
|
+
const logo_wrap = "_logo_wrap_1qrpu_35";
|
|
6
|
+
const primary_links = "_primary_links_1qrpu_43";
|
|
7
|
+
const main_nav_link = "_main_nav_link_1qrpu_51";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_1qrpu_115";
|
|
9
|
+
const signin_wrap = "_signin_wrap_1qrpu_119";
|
|
10
|
+
const signin_btn = "_signin_btn_1qrpu_121";
|
|
11
|
+
const header_sub_row = "_header_sub_row_1qrpu_195";
|
|
12
|
+
const signin_dropdown = "_signin_dropdown_1qrpu_259";
|
|
13
|
+
const shadow = "_shadow_1qrpu_279";
|
|
14
|
+
const signin_header = "_signin_header_1qrpu_299";
|
|
15
|
+
const signin_subheader = "_signin_subheader_1qrpu_313";
|
|
16
|
+
const opacity = "_opacity_1qrpu_357";
|
|
17
|
+
const fadeInDown = "_fadeInDown_1qrpu_1";
|
|
18
|
+
const signin_footer = "_signin_footer_1qrpu_369";
|
|
19
|
+
const open = "_open_1qrpu_411";
|
|
20
|
+
const dd_wrapper = "_dd_wrapper_1qrpu_435";
|
|
21
|
+
const dd_media = "_dd_media_1qrpu_453";
|
|
22
|
+
const dd_media_img = "_dd_media_img_1qrpu_463";
|
|
23
|
+
const dd_site_navs = "_dd_site_navs_1qrpu_471";
|
|
24
|
+
const dd_media_header = "_dd_media_header_1qrpu_485";
|
|
25
|
+
const mt_8 = "_mt_8_1qrpu_505";
|
|
26
|
+
const mt_16 = "_mt_16_1qrpu_513";
|
|
27
|
+
const ml_8 = "_ml_8_1qrpu_521";
|
|
28
|
+
const dd_media_cta = "_dd_media_cta_1qrpu_529";
|
|
29
|
+
const reversed_row = "_reversed_row_1qrpu_593";
|
|
30
|
+
const headline = "_headline_1qrpu_613";
|
|
31
|
+
const nav_anchor = "_nav_anchor_1qrpu_629";
|
|
32
|
+
const headline_cta = "_headline_cta_1qrpu_645";
|
|
33
|
+
const site_lists = "_site_lists_1qrpu_675";
|
|
34
|
+
const hamburger = "_hamburger_1qrpu_751";
|
|
35
|
+
const mobile_only = "_mobile_only_1qrpu_779";
|
|
36
|
+
const mobile_logo = "_mobile_logo_1qrpu_791";
|
|
37
|
+
const highlight = "_highlight_1qrpu_801";
|
|
38
|
+
const mobile_nav = "_mobile_nav_1qrpu_853";
|
|
39
|
+
const mobile_opened = "_mobile_opened_1qrpu_875";
|
|
40
|
+
const mobile_nav_item = "_mobile_nav_item_1qrpu_891";
|
|
41
|
+
const has_dropdown = "_has_dropdown_1qrpu_921";
|
|
42
|
+
const icon_wrap = "_icon_wrap_1qrpu_953";
|
|
43
|
+
const mobile_footer = "_mobile_footer_1qrpu_963";
|
|
44
|
+
const mobile_footer_content = "_mobile_footer_content_1qrpu_973";
|
|
45
|
+
const mobile_footer_media = "_mobile_footer_media_1qrpu_1003";
|
|
46
|
+
const footer_cta = "_footer_cta_1qrpu_1015";
|
|
47
|
+
const inner_wrapper = "_inner_wrapper_1qrpu_1071";
|
|
48
|
+
const btn = "_btn_1qrpu_1081";
|
|
49
|
+
const sub_menu = "_sub_menu_1qrpu_1091";
|
|
50
|
+
const main = "_main_1qrpu_51";
|
|
51
|
+
const dd_footer = "_dd_footer_1qrpu_1141";
|
|
52
|
+
const skip_btn = "_skip_btn_1qrpu_1157";
|
|
53
|
+
const desktop_only = "_desktop_only_1qrpu_1247";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|
|
@@ -119,6 +119,9 @@ function SubNavBar() {
|
|
|
119
119
|
const [hoveredLink, setHoveredLink] = useState(void 0);
|
|
120
120
|
const handleMouseEnter = (link) => setHoveredLink(link);
|
|
121
121
|
const handleMouseLeave = () => setHoveredLink(void 0);
|
|
122
|
+
const AXOS_ONE_APY = +process.env.NEXT_PUBLIC_AXOS_ONE_APY;
|
|
123
|
+
const AXOS_ONE_APY_CHECKING = +process.env.NEXT_PUBLIC_AXOS_ONE_APY_CHECKING;
|
|
124
|
+
const media = "https://www.axos.com/images";
|
|
122
125
|
const containerRef = useRef(null);
|
|
123
126
|
const [isClient, setIsClient] = useState(false);
|
|
124
127
|
const support = subNavItems.support;
|
|
@@ -138,7 +141,8 @@ function SubNavBar() {
|
|
|
138
141
|
"/invest",
|
|
139
142
|
"/tools"
|
|
140
143
|
];
|
|
141
|
-
if (!subNavPaths.some((el) => pathname?.includes(el) || isHomepage))
|
|
144
|
+
if (!subNavPaths.some((el) => pathname?.includes(el) || isHomepage))
|
|
145
|
+
return null;
|
|
142
146
|
useEffect(() => {
|
|
143
147
|
setIsClient(true);
|
|
144
148
|
}, []);
|
|
@@ -732,7 +736,13 @@ function SubNavBar() {
|
|
|
732
736
|
children: [
|
|
733
737
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
734
738
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Introducing Axos ONE" }),
|
|
735
|
-
/* @__PURE__ */
|
|
739
|
+
/* @__PURE__ */ jsxs("p", { className: styles.mt_8, children: [
|
|
740
|
+
"Explore the benefits of our newest account bundle with up to ",
|
|
741
|
+
AXOS_ONE_APY,
|
|
742
|
+
"% APY on Savings, up to",
|
|
743
|
+
AXOS_ONE_APY_CHECKING,
|
|
744
|
+
"% on Checking, plus early paydays and no maintenance fees."
|
|
745
|
+
] })
|
|
736
746
|
] }),
|
|
737
747
|
/* @__PURE__ */ jsx(
|
|
738
748
|
"div",
|
|
@@ -741,7 +751,7 @@ function SubNavBar() {
|
|
|
741
751
|
children: /* @__PURE__ */ jsx(
|
|
742
752
|
Image,
|
|
743
753
|
{
|
|
744
|
-
src:
|
|
754
|
+
src: `${media}/17Q3IVqKwSGO9cMqFUWF4o/axos-one-nav.png`,
|
|
745
755
|
alt: "",
|
|
746
756
|
width: 233,
|
|
747
757
|
height: 233
|
|
@@ -1109,7 +1119,7 @@ function SubNavBar() {
|
|
|
1109
1119
|
children: /* @__PURE__ */ jsx(
|
|
1110
1120
|
Image,
|
|
1111
1121
|
{
|
|
1112
|
-
src:
|
|
1122
|
+
src: `${media}/6tVncmpCfCXbilZHhFUYJ5/nav-submenu-borrow.webp`,
|
|
1113
1123
|
alt: "",
|
|
1114
1124
|
width: 232,
|
|
1115
1125
|
height: 232
|
|
@@ -1474,7 +1484,7 @@ function SubNavBar() {
|
|
|
1474
1484
|
children: /* @__PURE__ */ jsx(
|
|
1475
1485
|
Image,
|
|
1476
1486
|
{
|
|
1477
|
-
src:
|
|
1487
|
+
src: `${media}/2bREH0KGxe7C82N4cdathQ/nav-submenu-invest.webp`,
|
|
1478
1488
|
alt: "",
|
|
1479
1489
|
width: 232,
|
|
1480
1490
|
height: 232
|
|
@@ -1747,7 +1757,7 @@ function SubNavBar() {
|
|
|
1747
1757
|
children: /* @__PURE__ */ jsx(
|
|
1748
1758
|
Image,
|
|
1749
1759
|
{
|
|
1750
|
-
src:
|
|
1760
|
+
src: `${media}/4vSUrmXEbK80FeuAfe2fqJ/nav-submenu-plan.webp`,
|
|
1751
1761
|
alt: "",
|
|
1752
1762
|
width: 232,
|
|
1753
1763
|
height: 232
|
|
@@ -2007,7 +2017,7 @@ function SubNavBar() {
|
|
|
2007
2017
|
children: /* @__PURE__ */ jsx(
|
|
2008
2018
|
Image,
|
|
2009
2019
|
{
|
|
2010
|
-
src:
|
|
2020
|
+
src: `${media}/5vHrV4m3DbDQt13GOahbYA/nav-submenu-sbb.png`,
|
|
2011
2021
|
alt: "",
|
|
2012
2022
|
width: 232,
|
|
2013
2023
|
height: 232
|
|
@@ -2322,7 +2332,7 @@ function SubNavBar() {
|
|
|
2322
2332
|
children: /* @__PURE__ */ jsx(
|
|
2323
2333
|
Image,
|
|
2324
2334
|
{
|
|
2325
|
-
src:
|
|
2335
|
+
src: `${media}/7rELrrwmhLt5Bz9KqxLgMM/nav-submen-combank.png`,
|
|
2326
2336
|
alt: "",
|
|
2327
2337
|
width: 232,
|
|
2328
2338
|
height: 232
|
|
@@ -2548,10 +2558,10 @@ function SubNavBar() {
|
|
|
2548
2558
|
children: /* @__PURE__ */ jsx(
|
|
2549
2559
|
Image,
|
|
2550
2560
|
{
|
|
2551
|
-
src:
|
|
2561
|
+
src: `${media}/6PMA1kEss89S6m1BawAltW/nav-submenu-comlending.png`,
|
|
2552
2562
|
alt: "",
|
|
2553
2563
|
width: 232,
|
|
2554
|
-
height:
|
|
2564
|
+
height: 318
|
|
2555
2565
|
}
|
|
2556
2566
|
)
|
|
2557
2567
|
}
|
|
@@ -2762,7 +2772,7 @@ function SubNavBar() {
|
|
|
2762
2772
|
children: /* @__PURE__ */ jsx(
|
|
2763
2773
|
Image,
|
|
2764
2774
|
{
|
|
2765
|
-
src:
|
|
2775
|
+
src: `${media}/6YLFvmdNVGWcf3bFlimNSs/nav-submenu-wholelending.png`,
|
|
2766
2776
|
alt: "",
|
|
2767
2777
|
width: 232,
|
|
2768
2778
|
height: 232
|
|
@@ -2908,7 +2918,7 @@ function SubNavBar() {
|
|
|
2908
2918
|
children: /* @__PURE__ */ jsx(
|
|
2909
2919
|
Image,
|
|
2910
2920
|
{
|
|
2911
|
-
src:
|
|
2921
|
+
src: `${media}/3wtG13mXSTgSzMoB0YU3Ot/nav-submenu-dealer.png`,
|
|
2912
2922
|
alt: "",
|
|
2913
2923
|
width: 232,
|
|
2914
2924
|
height: 162
|
|
@@ -1,66 +1,80 @@
|
|
|
1
|
-
.
|
|
1
|
+
._header_1qrpu_1 {
|
|
2
2
|
border-bottom: 1px solid #ebebeb;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
.
|
|
5
|
+
._wrapper_1qrpu_9 {
|
|
6
6
|
width: calc(100% - 80px);
|
|
7
7
|
margin-left: auto;
|
|
8
8
|
margin-right: auto;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.
|
|
12
|
-
.
|
|
11
|
+
._header_main_row_1qrpu_21,
|
|
12
|
+
._mobile_header_1qrpu_23 {
|
|
13
13
|
min-height: 80px;
|
|
14
14
|
padding-top: 1rem;
|
|
15
15
|
padding-bottom: 0.5rem;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.
|
|
18
|
+
._logo_wrap_1qrpu_35 {
|
|
19
19
|
padding: 9px 6px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.
|
|
22
|
+
._primary_links_1qrpu_43 {
|
|
23
23
|
margin-left: 30px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.
|
|
26
|
+
._main_nav_link_1qrpu_51 {
|
|
27
27
|
padding: 10px 8px;
|
|
28
28
|
text-align: center;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.
|
|
32
|
-
border-
|
|
33
|
-
transition: border-color 0.5s ease;
|
|
34
|
-
font-weight: 700;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
._main_nav_link_o9pri_51 > a {
|
|
31
|
+
._main_nav_link_1qrpu_51 > a {
|
|
32
|
+
border-bottom: 4px solid transparent;
|
|
38
33
|
display: inline-block;
|
|
39
34
|
font-size: 16px;
|
|
40
35
|
padding: 4px 26px;
|
|
41
|
-
|
|
36
|
+
position: relative;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
._main_nav_link_1qrpu_51 > a::after {
|
|
40
|
+
content: "";
|
|
41
|
+
position: absolute;
|
|
42
|
+
left: 0;
|
|
43
|
+
bottom: -4px;
|
|
44
|
+
width: 100%;
|
|
45
|
+
height: 4px;
|
|
46
|
+
background-color: currentColor;
|
|
47
|
+
opacity: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
._main_nav_link_1qrpu_51 > .active {
|
|
51
|
+
font-weight: 700;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
._main_nav_link_1qrpu_51 > .active::after {
|
|
55
|
+
opacity: 1;
|
|
42
56
|
}
|
|
43
57
|
|
|
44
|
-
.
|
|
45
|
-
.
|
|
46
|
-
.
|
|
47
|
-
.
|
|
58
|
+
._sub_nav_link_1qrpu_115 a,
|
|
59
|
+
._main_nav_link_1qrpu_51 a,
|
|
60
|
+
._signin_wrap_1qrpu_119 a,
|
|
61
|
+
._signin_btn_1qrpu_121 {
|
|
48
62
|
text-decoration: none;
|
|
49
63
|
transition: opacity 0.3s ease;
|
|
50
64
|
}
|
|
51
65
|
|
|
52
|
-
.
|
|
53
|
-
.
|
|
54
|
-
.
|
|
66
|
+
._sub_nav_link_1qrpu_115:hover,
|
|
67
|
+
._main_nav_link_1qrpu_51 a:hover,
|
|
68
|
+
._signin_wrap_1qrpu_119 a:hover {
|
|
55
69
|
opacity: 0.8;
|
|
56
70
|
}
|
|
57
71
|
|
|
58
|
-
.
|
|
72
|
+
._signin_wrap_1qrpu_119 .link {
|
|
59
73
|
text-decoration: none;
|
|
60
74
|
padding: 8px;
|
|
61
75
|
}
|
|
62
76
|
|
|
63
|
-
.
|
|
77
|
+
._signin_btn_1qrpu_121 {
|
|
64
78
|
border-color: transparent;
|
|
65
79
|
color: #fff;
|
|
66
80
|
padding: 11px 24px;
|
|
@@ -72,48 +86,48 @@
|
|
|
72
86
|
cursor: pointer;
|
|
73
87
|
}
|
|
74
88
|
|
|
75
|
-
.
|
|
89
|
+
._signin_btn_1qrpu_121:hover {
|
|
76
90
|
background-color: transparent;
|
|
77
91
|
opacity: 0.9;
|
|
78
92
|
}
|
|
79
93
|
|
|
80
|
-
.
|
|
94
|
+
._signin_btn_1qrpu_121 > span {
|
|
81
95
|
margin-right: 8px;
|
|
82
96
|
}
|
|
83
97
|
|
|
84
|
-
.
|
|
98
|
+
._header_sub_row_1qrpu_195 {
|
|
85
99
|
min-height: 48px;
|
|
86
100
|
position: relative;
|
|
87
101
|
}
|
|
88
102
|
|
|
89
|
-
.
|
|
103
|
+
._sub_nav_link_1qrpu_115 {
|
|
90
104
|
padding-inline: 1rem;
|
|
91
105
|
text-align: center;
|
|
92
106
|
color: #fff;
|
|
93
107
|
display: flex;
|
|
94
108
|
}
|
|
95
109
|
|
|
96
|
-
.
|
|
110
|
+
._sub_nav_link_1qrpu_115 a {
|
|
97
111
|
display: flex;
|
|
98
112
|
align-items: center;
|
|
99
113
|
font-weight: 500;
|
|
100
114
|
line-height: 1.5;
|
|
101
115
|
padding: 12px 0px;
|
|
102
116
|
}
|
|
103
|
-
.
|
|
117
|
+
._sub_nav_link_1qrpu_115 a:first-child {
|
|
104
118
|
padding-left: 9.5px;
|
|
105
119
|
padding-right: 1.5px;
|
|
106
120
|
}
|
|
107
121
|
|
|
108
|
-
.
|
|
122
|
+
._sub_nav_link_1qrpu_115 a:last-child {
|
|
109
123
|
padding-right: 9.5px;
|
|
110
124
|
}
|
|
111
125
|
|
|
112
|
-
.
|
|
126
|
+
._sub_nav_link_1qrpu_115:hover {
|
|
113
127
|
background: linear-gradient(207deg, transparent, rgb(255 255 255 / 28%));
|
|
114
128
|
}
|
|
115
129
|
|
|
116
|
-
.
|
|
130
|
+
._signin_dropdown_1qrpu_259 {
|
|
117
131
|
min-width: 288px;
|
|
118
132
|
padding: 1.5rem 1rem;
|
|
119
133
|
position: absolute;
|
|
@@ -123,34 +137,34 @@
|
|
|
123
137
|
display: none;
|
|
124
138
|
}
|
|
125
139
|
|
|
126
|
-
.
|
|
140
|
+
._shadow_1qrpu_279 {
|
|
127
141
|
box-shadow: 0px 8px 16px 0px rgba(30, 38, 47, 0.2);
|
|
128
142
|
border: 0.5px solid rgb(255 255 255 / 14%);
|
|
129
143
|
border-top: none;
|
|
130
144
|
}
|
|
131
145
|
|
|
132
|
-
.
|
|
146
|
+
._signin_dropdown_1qrpu_259 li[role="heading"] {
|
|
133
147
|
margin-top: 1px;
|
|
134
148
|
}
|
|
135
149
|
|
|
136
|
-
.
|
|
150
|
+
._signin_header_1qrpu_299 {
|
|
137
151
|
color: #323339;
|
|
138
152
|
font-weight: 700;
|
|
139
153
|
padding: 0.5rem 1rem;
|
|
140
154
|
text-align: left;
|
|
141
155
|
}
|
|
142
156
|
|
|
143
|
-
.
|
|
157
|
+
._signin_subheader_1qrpu_313 {
|
|
144
158
|
color: #2f5b88;
|
|
145
159
|
padding: 0.5rem 0.5rem 0.5rem 1.5rem;
|
|
146
160
|
}
|
|
147
161
|
|
|
148
|
-
.
|
|
149
|
-
.
|
|
162
|
+
._signin_header_1qrpu_299,
|
|
163
|
+
._signin_subheader_1qrpu_313 a {
|
|
150
164
|
line-height: 1.5;
|
|
151
165
|
}
|
|
152
166
|
|
|
153
|
-
@keyframes
|
|
167
|
+
@keyframes _fadeInDown_1qrpu_1 {
|
|
154
168
|
from {
|
|
155
169
|
opacity: 0;
|
|
156
170
|
transform: translate3d(0, -1%, 0);
|
|
@@ -162,23 +176,23 @@
|
|
|
162
176
|
}
|
|
163
177
|
}
|
|
164
178
|
|
|
165
|
-
.
|
|
179
|
+
._opacity_1qrpu_357 {
|
|
166
180
|
animation-duration: 0.5s;
|
|
167
181
|
animation-fill-mode: both;
|
|
168
|
-
animation-name:
|
|
182
|
+
animation-name: _fadeInDown_1qrpu_1;
|
|
169
183
|
}
|
|
170
184
|
|
|
171
|
-
.
|
|
185
|
+
._signin_footer_1qrpu_369 {
|
|
172
186
|
margin-top: 0.5rem;
|
|
173
187
|
padding-top: 1rem;
|
|
174
188
|
}
|
|
175
189
|
|
|
176
|
-
.
|
|
190
|
+
._signin_footer_1qrpu_369 > a + a {
|
|
177
191
|
display: block;
|
|
178
192
|
margin-top: 16px;
|
|
179
193
|
}
|
|
180
194
|
|
|
181
|
-
.
|
|
195
|
+
._signin_footer_1qrpu_369::before {
|
|
182
196
|
content: "";
|
|
183
197
|
background-color: #8f8f8f;
|
|
184
198
|
height: 2px;
|
|
@@ -189,19 +203,19 @@
|
|
|
189
203
|
width: 94%;
|
|
190
204
|
}
|
|
191
205
|
|
|
192
|
-
.
|
|
206
|
+
._open_1qrpu_411 {
|
|
193
207
|
opacity: 0.8;
|
|
194
208
|
}
|
|
195
209
|
|
|
196
|
-
.
|
|
210
|
+
._open_1qrpu_411 > svg {
|
|
197
211
|
transform: scaleY(-1);
|
|
198
212
|
}
|
|
199
213
|
|
|
200
|
-
.
|
|
214
|
+
._open_1qrpu_411 + ._signin_dropdown_1qrpu_259 {
|
|
201
215
|
display: block;
|
|
202
216
|
}
|
|
203
217
|
|
|
204
|
-
.
|
|
218
|
+
._dd_wrapper_1qrpu_435 {
|
|
205
219
|
max-width: 1440px;
|
|
206
220
|
outline: none !important;
|
|
207
221
|
position: absolute;
|
|
@@ -210,45 +224,45 @@
|
|
|
210
224
|
z-index: 1203;
|
|
211
225
|
}
|
|
212
226
|
|
|
213
|
-
.
|
|
227
|
+
._dd_media_1qrpu_453 {
|
|
214
228
|
padding: 1.5rem;
|
|
215
229
|
width: 280px;
|
|
216
230
|
}
|
|
217
231
|
|
|
218
|
-
.
|
|
232
|
+
._dd_media_img_1qrpu_463 {
|
|
219
233
|
min-height: 232px;
|
|
220
234
|
}
|
|
221
235
|
|
|
222
|
-
.
|
|
236
|
+
._dd_site_navs_1qrpu_471 {
|
|
223
237
|
display: flex;
|
|
224
238
|
flex-direction: column;
|
|
225
239
|
flex: 1 1 0%;
|
|
226
240
|
padding: 1.5rem;
|
|
227
241
|
}
|
|
228
242
|
|
|
229
|
-
.
|
|
243
|
+
._dd_media_header_1qrpu_485 p {
|
|
230
244
|
color: #fff;
|
|
231
245
|
font-size: 14px;
|
|
232
246
|
line-height: 1.42;
|
|
233
247
|
}
|
|
234
248
|
|
|
235
|
-
.
|
|
249
|
+
._dd_media_header_1qrpu_485 p[role="heading"] {
|
|
236
250
|
font: 600 1.25rem/ 1.4 var(--header-font-family);
|
|
237
251
|
}
|
|
238
252
|
|
|
239
|
-
.
|
|
253
|
+
._mt_8_1qrpu_505 {
|
|
240
254
|
margin-top: 8px;
|
|
241
255
|
}
|
|
242
256
|
|
|
243
|
-
.
|
|
257
|
+
._mt_16_1qrpu_513 {
|
|
244
258
|
margin-top: 1rem;
|
|
245
259
|
}
|
|
246
260
|
|
|
247
|
-
.
|
|
261
|
+
._ml_8_1qrpu_521 {
|
|
248
262
|
margin-left: 8px;
|
|
249
263
|
}
|
|
250
264
|
|
|
251
|
-
.
|
|
265
|
+
._dd_media_cta_1qrpu_529 > a:first-child {
|
|
252
266
|
border-radius: 8px;
|
|
253
267
|
border: 2px solid transparent;
|
|
254
268
|
color: var(--_1073cm83) !important;
|
|
@@ -262,35 +276,35 @@
|
|
|
262
276
|
width: 100%;
|
|
263
277
|
}
|
|
264
278
|
|
|
265
|
-
.
|
|
279
|
+
._dd_media_cta_1qrpu_529 > a:first-child:hover {
|
|
266
280
|
background-color: transparent;
|
|
267
281
|
border-color: #fff;
|
|
268
282
|
color: #fff !important;
|
|
269
283
|
}
|
|
270
284
|
|
|
271
|
-
.
|
|
285
|
+
._dd_media_cta_1qrpu_529 > a:nth-child(2) {
|
|
272
286
|
color: #fff;
|
|
273
287
|
display: inline-block;
|
|
274
288
|
margin-top: 8px;
|
|
275
289
|
text-decoration: none;
|
|
276
290
|
}
|
|
277
291
|
|
|
278
|
-
.
|
|
292
|
+
._dd_media_cta_1qrpu_529 > a:nth-child(2):hover {
|
|
279
293
|
opacity: 0.8;
|
|
280
294
|
text-decoration: underline;
|
|
281
295
|
}
|
|
282
296
|
|
|
283
|
-
.
|
|
297
|
+
._reversed_row_1qrpu_593 {
|
|
284
298
|
flex-direction: row-reverse;
|
|
285
299
|
}
|
|
286
300
|
|
|
287
|
-
.
|
|
301
|
+
._dd_media_cta_1qrpu_529 > a:first-child:active {
|
|
288
302
|
background-color: #fff;
|
|
289
303
|
border-color: transparent;
|
|
290
304
|
color: #1e3860 !important;
|
|
291
305
|
}
|
|
292
306
|
|
|
293
|
-
.
|
|
307
|
+
._headline_1qrpu_613 > [role="heading"] {
|
|
294
308
|
color: var(--_1073cm83);
|
|
295
309
|
flex: 1 1 0%;
|
|
296
310
|
font: 600 1.5rem / 1.33 var(--header-font-family);
|
|
@@ -298,7 +312,7 @@
|
|
|
298
312
|
text-decoration: none;
|
|
299
313
|
}
|
|
300
314
|
|
|
301
|
-
.
|
|
315
|
+
._nav_anchor_1qrpu_629 {
|
|
302
316
|
aspect-ratio: 1;
|
|
303
317
|
background-color: #4a5560;
|
|
304
318
|
border-radius: 8px;
|
|
@@ -306,26 +320,26 @@
|
|
|
306
320
|
width: 1.5rem;
|
|
307
321
|
}
|
|
308
322
|
|
|
309
|
-
.
|
|
323
|
+
._headline_cta_1qrpu_645 {
|
|
310
324
|
margin-left: 8px;
|
|
311
325
|
}
|
|
312
326
|
|
|
313
|
-
.
|
|
327
|
+
._headline_cta_1qrpu_645 > a {
|
|
314
328
|
color: var(--_1073cm83);
|
|
315
329
|
font-weight: 700;
|
|
316
330
|
line-height: 1.5;
|
|
317
331
|
text-decoration: none;
|
|
318
332
|
}
|
|
319
333
|
|
|
320
|
-
.
|
|
321
|
-
.
|
|
322
|
-
.
|
|
323
|
-
.
|
|
324
|
-
.
|
|
334
|
+
._sub_nav_link_1qrpu_115:hover,
|
|
335
|
+
._signin_wrap_1qrpu_119 a:hover,
|
|
336
|
+
._main_nav_link_1qrpu_51 a:not(.active):hover,
|
|
337
|
+
._dd_site_navs_1qrpu_471 a:hover,
|
|
338
|
+
._site_lists_1qrpu_675 a:hover {
|
|
325
339
|
text-decoration: underline;
|
|
326
340
|
}
|
|
327
341
|
|
|
328
|
-
.
|
|
342
|
+
._dd_site_navs_1qrpu_471 hr {
|
|
329
343
|
border-style: solid;
|
|
330
344
|
border-width: 1px;
|
|
331
345
|
color: #a0aab3;
|
|
@@ -334,32 +348,32 @@
|
|
|
334
348
|
position: relative;
|
|
335
349
|
}
|
|
336
350
|
|
|
337
|
-
.
|
|
351
|
+
._site_lists_1qrpu_675 {
|
|
338
352
|
display: grid;
|
|
339
353
|
grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
|
|
340
354
|
gap: 24px;
|
|
341
355
|
padding-bottom: 1.5rem;
|
|
342
356
|
}
|
|
343
357
|
|
|
344
|
-
.
|
|
358
|
+
._site_lists_1qrpu_675 > * {
|
|
345
359
|
width: 100%;
|
|
346
360
|
}
|
|
347
361
|
|
|
348
|
-
.
|
|
362
|
+
._site_lists_1qrpu_675 a {
|
|
349
363
|
color: #323339;
|
|
350
364
|
text-decoration: none;
|
|
351
365
|
}
|
|
352
366
|
|
|
353
|
-
.
|
|
367
|
+
._site_lists_1qrpu_675 [role="heading"] {
|
|
354
368
|
color: var(--_1073cm83);
|
|
355
369
|
font-weight: 700;
|
|
356
370
|
}
|
|
357
371
|
|
|
358
|
-
.
|
|
372
|
+
._site_lists_1qrpu_675 li + li {
|
|
359
373
|
margin-top: 8px;
|
|
360
374
|
}
|
|
361
375
|
|
|
362
|
-
.
|
|
376
|
+
._hamburger_1qrpu_751 {
|
|
363
377
|
background: transparent;
|
|
364
378
|
border: none;
|
|
365
379
|
font-size: 0px;
|
|
@@ -367,41 +381,41 @@
|
|
|
367
381
|
outline: none;
|
|
368
382
|
}
|
|
369
383
|
|
|
370
|
-
.
|
|
371
|
-
.
|
|
384
|
+
._hamburger_1qrpu_751:hover,
|
|
385
|
+
._mobile_header_1qrpu_23 button:hover {
|
|
372
386
|
cursor: pointer;
|
|
373
387
|
opacity: 0.8;
|
|
374
388
|
}
|
|
375
389
|
|
|
376
|
-
.
|
|
390
|
+
._signin_wrap_1qrpu_119 > ._mobile_only_1qrpu_779 > a {
|
|
377
391
|
color: #4a5560;
|
|
378
392
|
padding: 0;
|
|
379
393
|
line-height: 1;
|
|
380
394
|
}
|
|
381
395
|
|
|
382
|
-
.
|
|
396
|
+
._mobile_logo_1qrpu_791 {
|
|
383
397
|
flex: 1 1 0%;
|
|
384
398
|
text-align: center;
|
|
385
399
|
}
|
|
386
400
|
|
|
387
|
-
.
|
|
401
|
+
._highlight_1qrpu_801 > a {
|
|
388
402
|
border-bottom: none;
|
|
389
403
|
font-weight: 700;
|
|
390
404
|
line-height: 1.44;
|
|
391
405
|
}
|
|
392
406
|
|
|
393
|
-
.
|
|
407
|
+
._mobile_header_1qrpu_23 {
|
|
394
408
|
border-bottom: 1px solid #ebebeb;
|
|
395
409
|
display: grid;
|
|
396
410
|
padding-bottom: 1rem;
|
|
397
411
|
place-items: center;
|
|
398
412
|
}
|
|
399
413
|
|
|
400
|
-
.
|
|
414
|
+
._mobile_header_1qrpu_23 h2 {
|
|
401
415
|
font: 400 20px / 1.3 var(--header-font-family);
|
|
402
416
|
}
|
|
403
417
|
|
|
404
|
-
.
|
|
418
|
+
._mobile_header_1qrpu_23 button {
|
|
405
419
|
background: none;
|
|
406
420
|
border: none;
|
|
407
421
|
position: absolute;
|
|
@@ -410,7 +424,7 @@
|
|
|
410
424
|
transform: translateY(-50%);
|
|
411
425
|
}
|
|
412
426
|
|
|
413
|
-
.
|
|
427
|
+
._mobile_nav_1qrpu_853 {
|
|
414
428
|
border-right: 1px solid #ebebeb;
|
|
415
429
|
left: -100%;
|
|
416
430
|
min-height: 100vh;
|
|
@@ -421,20 +435,20 @@
|
|
|
421
435
|
z-index: 1205;
|
|
422
436
|
}
|
|
423
437
|
|
|
424
|
-
.
|
|
438
|
+
._mobile_opened_1qrpu_875 {
|
|
425
439
|
left: 0%;
|
|
426
440
|
}
|
|
427
441
|
|
|
428
|
-
body:has(.
|
|
442
|
+
body:has(._mobile_opened_1qrpu_875) {
|
|
429
443
|
overflow-y: hidden;
|
|
430
444
|
}
|
|
431
445
|
|
|
432
|
-
.
|
|
446
|
+
._mobile_nav_item_1qrpu_891 {
|
|
433
447
|
background-color: #f4f4f4;
|
|
434
448
|
border-bottom: 1px solid #ebebeb;
|
|
435
449
|
}
|
|
436
450
|
|
|
437
|
-
.
|
|
451
|
+
._mobile_nav_item_1qrpu_891 > a {
|
|
438
452
|
color: #323339;
|
|
439
453
|
display: flex;
|
|
440
454
|
font-weight: 700;
|
|
@@ -444,12 +458,12 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
444
458
|
width: 100%;
|
|
445
459
|
}
|
|
446
460
|
|
|
447
|
-
.
|
|
461
|
+
._mobile_nav_item_1qrpu_891._has_dropdown_1qrpu_921 {
|
|
448
462
|
isolation: isolate;
|
|
449
463
|
position: relative;
|
|
450
464
|
}
|
|
451
465
|
|
|
452
|
-
.
|
|
466
|
+
._mobile_nav_item_1qrpu_891._has_dropdown_1qrpu_921::before {
|
|
453
467
|
content: "";
|
|
454
468
|
background-color: #ebebeb;
|
|
455
469
|
height: 100%;
|
|
@@ -460,23 +474,23 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
460
474
|
z-index: -1;
|
|
461
475
|
}
|
|
462
476
|
|
|
463
|
-
.
|
|
477
|
+
._icon_wrap_1qrpu_953 {
|
|
464
478
|
line-height: 1;
|
|
465
479
|
height: 24px;
|
|
466
480
|
}
|
|
467
481
|
|
|
468
|
-
.
|
|
482
|
+
._mobile_footer_1qrpu_963 {
|
|
469
483
|
position: relative;
|
|
470
484
|
width: 100%;
|
|
471
485
|
}
|
|
472
486
|
|
|
473
|
-
.
|
|
487
|
+
._mobile_footer_content_1qrpu_973 {
|
|
474
488
|
background-color: #f4f4f4;
|
|
475
489
|
flex: 1 1 0%;
|
|
476
490
|
padding: 16px 24px 16px 40px;
|
|
477
491
|
}
|
|
478
492
|
|
|
479
|
-
.
|
|
493
|
+
._mobile_footer_content_1qrpu_973 p {
|
|
480
494
|
line-height: 1.5;
|
|
481
495
|
text-overflow: ellipsis;
|
|
482
496
|
display: -webkit-box;
|
|
@@ -485,17 +499,17 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
485
499
|
line-clamp: 2;
|
|
486
500
|
}
|
|
487
501
|
|
|
488
|
-
.
|
|
502
|
+
._mobile_footer_media_1qrpu_1003 {
|
|
489
503
|
flex-basis: min(42%, 300px);
|
|
490
|
-
background: url("https://
|
|
504
|
+
background: url("https://www.axos.com/images/4Fwdu6ylqpXOmJsDWRUETe/personal-contact-us-hero.webp")
|
|
491
505
|
no-repeat 81% / cover;
|
|
492
506
|
}
|
|
493
507
|
|
|
494
|
-
.
|
|
508
|
+
._footer_cta_1qrpu_1015 {
|
|
495
509
|
margin-top: 3px;
|
|
496
510
|
}
|
|
497
511
|
|
|
498
|
-
.
|
|
512
|
+
._footer_cta_1qrpu_1015 a {
|
|
499
513
|
border-radius: 4px;
|
|
500
514
|
border: 2px solid transparent;
|
|
501
515
|
color: #fff;
|
|
@@ -505,31 +519,31 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
505
519
|
text-decoration: none;
|
|
506
520
|
}
|
|
507
521
|
|
|
508
|
-
.
|
|
522
|
+
._footer_cta_1qrpu_1015 a:hover {
|
|
509
523
|
background-color: transparent;
|
|
510
524
|
text-decoration: underline;
|
|
511
525
|
}
|
|
512
526
|
|
|
513
|
-
.
|
|
527
|
+
._footer_cta_1qrpu_1015 a:active {
|
|
514
528
|
border-color: transparent;
|
|
515
529
|
color: #fff;
|
|
516
530
|
}
|
|
517
531
|
|
|
518
|
-
.
|
|
532
|
+
._mobile_footer_1qrpu_963 > .flex_row {
|
|
519
533
|
min-height: 112px;
|
|
520
534
|
}
|
|
521
535
|
|
|
522
|
-
.
|
|
536
|
+
._inner_wrapper_1qrpu_1071 {
|
|
523
537
|
max-height: 100vh;
|
|
524
538
|
overflow-y: scroll;
|
|
525
539
|
}
|
|
526
540
|
|
|
527
|
-
.
|
|
541
|
+
._btn_1qrpu_1081 {
|
|
528
542
|
display: block;
|
|
529
543
|
position: relative;
|
|
530
544
|
}
|
|
531
545
|
|
|
532
|
-
.
|
|
546
|
+
._sub_menu_1qrpu_1091 {
|
|
533
547
|
overflow: hidden;
|
|
534
548
|
max-height: 0;
|
|
535
549
|
transition: max-height 0.8s ease-out;
|
|
@@ -537,8 +551,8 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
537
551
|
overflow-y: scroll;
|
|
538
552
|
}
|
|
539
553
|
|
|
540
|
-
.
|
|
541
|
-
.
|
|
554
|
+
._sub_menu_1qrpu_1091 a,
|
|
555
|
+
._sub_menu_1qrpu_1091 span {
|
|
542
556
|
display: block;
|
|
543
557
|
padding: 12px 14px 12px 64px;
|
|
544
558
|
position: relative;
|
|
@@ -546,15 +560,15 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
546
560
|
text-decoration: none;
|
|
547
561
|
}
|
|
548
562
|
|
|
549
|
-
.
|
|
563
|
+
._sub_menu_1qrpu_1091 ._main_1qrpu_51 {
|
|
550
564
|
font-weight: 700;
|
|
551
565
|
}
|
|
552
566
|
|
|
553
|
-
.
|
|
567
|
+
._sub_menu_1qrpu_1091 > * {
|
|
554
568
|
border-top: 1px solid #ebebeb;
|
|
555
569
|
}
|
|
556
570
|
|
|
557
|
-
.
|
|
571
|
+
._dd_footer_1qrpu_1141 {
|
|
558
572
|
justify-content: flex-end;
|
|
559
573
|
flex: 1 1 0%;
|
|
560
574
|
align-items: end;
|
|
@@ -562,7 +576,7 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
562
576
|
letter-spacing: 0.3px;
|
|
563
577
|
}
|
|
564
578
|
|
|
565
|
-
.
|
|
579
|
+
._skip_btn_1qrpu_1157 {
|
|
566
580
|
clip: rect(1px 1px 1px 1px);
|
|
567
581
|
margin: -1px;
|
|
568
582
|
overflow: hidden;
|
|
@@ -570,8 +584,8 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
570
584
|
position: absolute;
|
|
571
585
|
}
|
|
572
586
|
|
|
573
|
-
.
|
|
574
|
-
.
|
|
587
|
+
._skip_btn_1qrpu_1157:active,
|
|
588
|
+
._skip_btn_1qrpu_1157:focus {
|
|
575
589
|
background-color: #faa74a;
|
|
576
590
|
border-radius: 8px;
|
|
577
591
|
clip: auto;
|
|
@@ -587,7 +601,7 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
587
601
|
}
|
|
588
602
|
|
|
589
603
|
@media (max-width: 1121px) {
|
|
590
|
-
.
|
|
604
|
+
._mobile_logo_1qrpu_791 {
|
|
591
605
|
position: absolute;
|
|
592
606
|
transform: translateX(-50%);
|
|
593
607
|
left: 50%;
|
|
@@ -596,58 +610,58 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
596
610
|
}
|
|
597
611
|
|
|
598
612
|
@media (max-width: 1280px) and (min-width: 1024px) {
|
|
599
|
-
.
|
|
613
|
+
._wrapper_1qrpu_9 {
|
|
600
614
|
width: calc(100% - 28px);
|
|
601
615
|
}
|
|
602
616
|
|
|
603
|
-
.
|
|
617
|
+
._dd_wrapper_1qrpu_435 > ._wrapper_1qrpu_9 {
|
|
604
618
|
width: 100%;
|
|
605
619
|
}
|
|
606
|
-
.
|
|
620
|
+
._main_nav_link_1qrpu_51 > a {
|
|
607
621
|
padding: 4px 6px;
|
|
608
622
|
font-size: 15px;
|
|
609
623
|
}
|
|
610
|
-
.
|
|
624
|
+
._desktop_only_1qrpu_1247 > a {
|
|
611
625
|
font-size: 15px;
|
|
612
626
|
}
|
|
613
627
|
}
|
|
614
628
|
|
|
615
629
|
@media (max-width: 1023px) {
|
|
616
|
-
.
|
|
630
|
+
._desktop_only_1qrpu_1247 {
|
|
617
631
|
display: none !important;
|
|
618
632
|
}
|
|
619
633
|
}
|
|
620
634
|
|
|
621
635
|
@media (max-width: 768px) {
|
|
622
|
-
.
|
|
636
|
+
._wrapper_1qrpu_9 {
|
|
623
637
|
width: calc(100% - 48px);
|
|
624
638
|
}
|
|
625
639
|
|
|
626
|
-
.
|
|
640
|
+
._mobile_header_1qrpu_23 button {
|
|
627
641
|
right: 1.5rem;
|
|
628
642
|
}
|
|
629
643
|
|
|
630
|
-
.
|
|
644
|
+
._mobile_nav_item_1qrpu_891 > a {
|
|
631
645
|
padding: 16px 24px;
|
|
632
646
|
}
|
|
633
647
|
|
|
634
|
-
.
|
|
635
|
-
.
|
|
648
|
+
._sub_menu_1qrpu_1091 a,
|
|
649
|
+
._sub_menu_1qrpu_1091 span {
|
|
636
650
|
padding-left: 48px;
|
|
637
651
|
}
|
|
638
652
|
|
|
639
|
-
.
|
|
653
|
+
._mobile_nav_item_1qrpu_891._has_dropdown_1qrpu_921::before {
|
|
640
654
|
right: 72px;
|
|
641
655
|
}
|
|
642
656
|
|
|
643
|
-
.
|
|
657
|
+
._mobile_footer_content_1qrpu_973 {
|
|
644
658
|
padding-right: 15px;
|
|
645
659
|
padding-left: 24px;
|
|
646
660
|
}
|
|
647
661
|
}
|
|
648
662
|
|
|
649
663
|
@media (max-width: 450px) {
|
|
650
|
-
.
|
|
664
|
+
._footer_cta_1qrpu_1015 a {
|
|
651
665
|
white-space: break-spaces;
|
|
652
666
|
width: 100%;
|
|
653
667
|
text-align: center;
|
|
@@ -655,7 +669,7 @@ body:has(._mobile_opened_o9pri_847) {
|
|
|
655
669
|
}
|
|
656
670
|
|
|
657
671
|
@media (min-width: 1024px) {
|
|
658
|
-
.
|
|
672
|
+
._mobile_only_1qrpu_779 {
|
|
659
673
|
display: none !important;
|
|
660
674
|
}
|
|
661
675
|
}
|
package/dist/assets/globals.css
CHANGED
|
@@ -1,19 +1,3 @@
|
|
|
1
|
-
@keyframes _5fvzn90 {
|
|
2
|
-
0% {
|
|
3
|
-
left: 4px;
|
|
4
|
-
}
|
|
5
|
-
to {
|
|
6
|
-
left: 0px;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
@keyframes _5fvzn91 {
|
|
10
|
-
0% {
|
|
11
|
-
left: 0px;
|
|
12
|
-
}
|
|
13
|
-
to {
|
|
14
|
-
left: 4px;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
1
|
* {
|
|
18
2
|
box-sizing: border-box;
|
|
19
3
|
margin: 0;
|
|
@@ -209,11 +193,11 @@ h1, h2, h3, h4, h5, h6, es_font {
|
|
|
209
193
|
}
|
|
210
194
|
.sc__btn > .arrow {
|
|
211
195
|
position: relative;
|
|
212
|
-
|
|
196
|
+
will-change: transform;
|
|
197
|
+
transition: transform 0.3s ease;
|
|
213
198
|
}
|
|
214
|
-
.sc__btn:hover > .arrow, .
|
|
215
|
-
|
|
216
|
-
animation: _5fvzn91 0.3s ease-out 0s 1 normal forwards;
|
|
199
|
+
.sc__btn:hover > .arrow, .sc__btn:focus-within > .arrow {
|
|
200
|
+
transform: translateX(4px);
|
|
217
201
|
}
|
|
218
202
|
.link {
|
|
219
203
|
word-break: break-word;
|