@axos-web-dev/shared-components 1.0.100-dev.48 → 1.0.100-dev.49-fix.1
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/Blockquote/Blockquote.module.js +3 -3
- package/dist/Forms/MortgageRate/MortgageRateForm.js +12 -6
- package/dist/Forms/MortgageRate/MortgageRateQuoteFilters.js +11 -5
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +39 -39
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +37 -37
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +41 -41
- package/dist/Table/Table.d.ts +1 -1
- package/dist/assets/Blockquote/Blockquote.css.css +72 -72
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +445 -445
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +484 -484
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +427 -427
- package/package.json +136 -136
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "
|
|
2
|
-
const author = "
|
|
3
|
-
const quote = "
|
|
1
|
+
import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "_quote_spacer_ovx4r_1";
|
|
2
|
+
const author = "_author_ovx4r_7";
|
|
3
|
+
const quote = "_quote_ovx4r_1";
|
|
4
4
|
const css = {
|
|
5
5
|
quote_spacer,
|
|
6
6
|
author,
|
|
@@ -207,7 +207,7 @@ const MortgageRate = ({
|
|
|
207
207
|
}
|
|
208
208
|
),
|
|
209
209
|
creditScore: z.number({ message: "Credit Score is required." }).positive({ message: "Credit Score is required." }),
|
|
210
|
-
zipCode: z.
|
|
210
|
+
zipCode: z.string().trim().min(1, { message: "Zip Code is required." }).regex(/^\d{5}$/, { message: "ZIP code must be 5 digits." }),
|
|
211
211
|
appraisedValue: z.number({ message: "Home Price is required." }).optional().refine(
|
|
212
212
|
(val) => {
|
|
213
213
|
if (loanPurpose === 2 && val == null) {
|
|
@@ -215,7 +215,7 @@ const MortgageRate = ({
|
|
|
215
215
|
}
|
|
216
216
|
return true;
|
|
217
217
|
},
|
|
218
|
-
{ message: "Appraised Value is required for refinance" }
|
|
218
|
+
{ message: "Appraised Value is required for refinance." }
|
|
219
219
|
),
|
|
220
220
|
mortgageBalance: z.number({ message: "Mortgage Balance is required." }).optional().refine(
|
|
221
221
|
(val) => {
|
|
@@ -224,7 +224,7 @@ const MortgageRate = ({
|
|
|
224
224
|
}
|
|
225
225
|
return true;
|
|
226
226
|
},
|
|
227
|
-
{ message: "Mortgage Balance is required for refinance" }
|
|
227
|
+
{ message: "Mortgage Balance is required for refinance." }
|
|
228
228
|
),
|
|
229
229
|
cashOut: z.number({ message: "Cash Out is required." }).optional(),
|
|
230
230
|
loanPurpose: z.number({ message: "Loan Purpose is required." })
|
|
@@ -652,17 +652,23 @@ const MortgageRate = ({
|
|
|
652
652
|
Input,
|
|
653
653
|
{
|
|
654
654
|
id: "zipCode",
|
|
655
|
-
type: "
|
|
655
|
+
type: "text",
|
|
656
|
+
inputMode: "numeric",
|
|
656
657
|
...register("zipCode", {
|
|
657
658
|
required: true,
|
|
658
|
-
|
|
659
|
+
pattern: /^\d{5}$/
|
|
659
660
|
}),
|
|
660
661
|
label: "Zip Code",
|
|
661
662
|
sizes: "medium",
|
|
662
663
|
required: true,
|
|
663
664
|
error: !!errors.zipCode,
|
|
664
665
|
helperText: errors.zipCode?.message,
|
|
665
|
-
variant
|
|
666
|
+
variant,
|
|
667
|
+
maxLength: 5,
|
|
668
|
+
onInput: (e) => {
|
|
669
|
+
const target = e.target;
|
|
670
|
+
target.value = target.value.replace(/\D/g, "");
|
|
671
|
+
}
|
|
666
672
|
}
|
|
667
673
|
) }),
|
|
668
674
|
loanPurpose === 2 ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { className: fullRowForm, children: /* @__PURE__ */ jsx(
|
|
@@ -16,12 +16,12 @@ import "../../Input/InputPhone.js";
|
|
|
16
16
|
import "../../Input/InputTextArea.js";
|
|
17
17
|
import { DownPaymentInput } from "../../Input/DownPaymentInput.js";
|
|
18
18
|
import "../../Input/RadioButton.js";
|
|
19
|
+
import { LoadingIndicator } from "../../LoadingIndicator/index.js";
|
|
19
20
|
import clsx from "clsx";
|
|
20
21
|
import { useForm, FormProvider } from "react-hook-form";
|
|
21
22
|
import * as z from "zod";
|
|
22
23
|
import { headerForm, headerContainer, form, fullRowForm, formWrapper, actions, formContainer } from "../Forms.css.js";
|
|
23
24
|
import { SalesforceSchema } from "../SalesforceFieldsForm.js";
|
|
24
|
-
import { LoadingIndicator } from "../../LoadingIndicator/index.js";
|
|
25
25
|
const MortgageRateFilters = ({
|
|
26
26
|
formData,
|
|
27
27
|
onSubmit
|
|
@@ -62,7 +62,7 @@ const MortgageRateFilters = ({
|
|
|
62
62
|
}
|
|
63
63
|
),
|
|
64
64
|
creditScore: z.number({ message: "Credit Score is required." }).positive({ message: "Credit Score is required." }),
|
|
65
|
-
zipCode: z.
|
|
65
|
+
zipCode: z.string().trim().min(1, { message: "Zip Code is required." }).regex(/^\d{5}$/, { message: "ZIP code must be 5 digits." }),
|
|
66
66
|
appraisedValue: z.number({ message: "Home Price is required." }).optional().refine(
|
|
67
67
|
(val) => {
|
|
68
68
|
if (loanPurpose === 2) {
|
|
@@ -390,10 +390,11 @@ const MortgageRateFilters = ({
|
|
|
390
390
|
Input,
|
|
391
391
|
{
|
|
392
392
|
id: "zipCode",
|
|
393
|
-
type: "
|
|
393
|
+
type: "text",
|
|
394
|
+
inputMode: "numeric",
|
|
394
395
|
...register("zipCode", {
|
|
395
396
|
required: true,
|
|
396
|
-
|
|
397
|
+
pattern: /^\d{5}$/
|
|
397
398
|
}),
|
|
398
399
|
label: "Zip Code",
|
|
399
400
|
sizes: "medium",
|
|
@@ -401,7 +402,12 @@ const MortgageRateFilters = ({
|
|
|
401
402
|
error: !!errors.zipCode,
|
|
402
403
|
helperText: errors.zipCode?.message,
|
|
403
404
|
variant: "tertiary",
|
|
404
|
-
defaultValue: formData.zipCode
|
|
405
|
+
defaultValue: formData.zipCode,
|
|
406
|
+
maxLength: 5,
|
|
407
|
+
onInput: (e) => {
|
|
408
|
+
const target = e.target;
|
|
409
|
+
target.value = target.value.replace(/\D/g, "");
|
|
410
|
+
}
|
|
405
411
|
}
|
|
406
412
|
) }),
|
|
407
413
|
loanPurpose === 2 ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const logo_wrap = "
|
|
5
|
-
const primary_links = "
|
|
6
|
-
const main_nav_link = "
|
|
7
|
-
const sub_nav_link = "
|
|
8
|
-
const signin_wrap = "
|
|
9
|
-
const signin_btn = "
|
|
10
|
-
const header_sub_row = "
|
|
11
|
-
const signin_dropdown = "
|
|
12
|
-
const shadow = "
|
|
13
|
-
const signin_header = "
|
|
14
|
-
const signin_subheader = "
|
|
15
|
-
const opacity = "
|
|
16
|
-
const fadeInDown = "
|
|
17
|
-
const signin_footer = "
|
|
18
|
-
const open = "
|
|
19
|
-
const dd_wrapper = "
|
|
20
|
-
const dd_media = "
|
|
21
|
-
const dd_media_img = "
|
|
22
|
-
const dd_site_navs = "
|
|
23
|
-
const dd_media_header = "
|
|
24
|
-
const mt_8 = "
|
|
25
|
-
const mt_16 = "
|
|
26
|
-
const ml_8 = "
|
|
27
|
-
const reversed_row = "
|
|
28
|
-
const headline = "
|
|
29
|
-
const nav_anchor = "
|
|
30
|
-
const headline_cta = "
|
|
31
|
-
const site_lists = "
|
|
32
|
-
const modify_fit = "
|
|
33
|
-
const mobile_only = "
|
|
34
|
-
const mobile_logo = "
|
|
35
|
-
const highlight = "
|
|
36
|
-
const mobile_opened = "
|
|
37
|
-
const dd_footer = "
|
|
38
|
-
const skip_btn = "
|
|
39
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "_header_1upco_1";
|
|
2
|
+
const wrapper = "_wrapper_1upco_5";
|
|
3
|
+
const header_main_row = "_header_main_row_1upco_11";
|
|
4
|
+
const logo_wrap = "_logo_wrap_1upco_17";
|
|
5
|
+
const primary_links = "_primary_links_1upco_21";
|
|
6
|
+
const main_nav_link = "_main_nav_link_1upco_25";
|
|
7
|
+
const sub_nav_link = "_sub_nav_link_1upco_57";
|
|
8
|
+
const signin_wrap = "_signin_wrap_1upco_59";
|
|
9
|
+
const signin_btn = "_signin_btn_1upco_60";
|
|
10
|
+
const header_sub_row = "_header_sub_row_1upco_98";
|
|
11
|
+
const signin_dropdown = "_signin_dropdown_1upco_131";
|
|
12
|
+
const shadow = "_shadow_1upco_141";
|
|
13
|
+
const signin_header = "_signin_header_1upco_151";
|
|
14
|
+
const signin_subheader = "_signin_subheader_1upco_158";
|
|
15
|
+
const opacity = "_opacity_1upco_179";
|
|
16
|
+
const fadeInDown = "_fadeInDown_1upco_1";
|
|
17
|
+
const signin_footer = "_signin_footer_1upco_185";
|
|
18
|
+
const open = "_open_1upco_206";
|
|
19
|
+
const dd_wrapper = "_dd_wrapper_1upco_218";
|
|
20
|
+
const dd_media = "_dd_media_1upco_227";
|
|
21
|
+
const dd_media_img = "_dd_media_img_1upco_232";
|
|
22
|
+
const dd_site_navs = "_dd_site_navs_1upco_236";
|
|
23
|
+
const dd_media_header = "_dd_media_header_1upco_243";
|
|
24
|
+
const mt_8 = "_mt_8_1upco_254";
|
|
25
|
+
const mt_16 = "_mt_16_1upco_258";
|
|
26
|
+
const ml_8 = "_ml_8_1upco_262";
|
|
27
|
+
const reversed_row = "_reversed_row_1upco_266";
|
|
28
|
+
const headline = "_headline_1upco_270";
|
|
29
|
+
const nav_anchor = "_nav_anchor_1upco_278";
|
|
30
|
+
const headline_cta = "_headline_cta_1upco_286";
|
|
31
|
+
const site_lists = "_site_lists_1upco_302";
|
|
32
|
+
const modify_fit = "_modify_fit_1upco_322";
|
|
33
|
+
const mobile_only = "_mobile_only_1upco_347";
|
|
34
|
+
const mobile_logo = "_mobile_logo_1upco_353";
|
|
35
|
+
const highlight = "_highlight_1upco_360";
|
|
36
|
+
const mobile_opened = "_mobile_opened_1upco_366";
|
|
37
|
+
const dd_footer = "_dd_footer_1upco_374";
|
|
38
|
+
const skip_btn = "_skip_btn_1upco_382";
|
|
39
|
+
const desktop_only = "_desktop_only_1upco_418";
|
|
40
40
|
const styles = {
|
|
41
41
|
header,
|
|
42
42
|
wrapper,
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosClearing/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 sub_nav = "
|
|
12
|
-
const header_sub_row = "
|
|
13
|
-
const signin_dropdown = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const signin_subheader = "
|
|
16
|
-
const opacity = "
|
|
17
|
-
const fadeInDown = "
|
|
18
|
-
const open = "
|
|
19
|
-
const hamburger = "
|
|
20
|
-
const mobile_only = "
|
|
21
|
-
const mobile_logo = "
|
|
22
|
-
const highlight = "
|
|
23
|
-
const mobile_nav = "
|
|
24
|
-
const mobile_opened = "
|
|
25
|
-
const mobile_nav_item = "
|
|
26
|
-
const has_dropdown = "
|
|
27
|
-
const icon_wrap = "
|
|
28
|
-
const mobile_footer = "
|
|
29
|
-
const mobile_footer_content = "
|
|
30
|
-
const mobile_footer_media = "
|
|
31
|
-
const footer_cta = "
|
|
32
|
-
const inner_wrapper = "
|
|
33
|
-
const btn = "
|
|
34
|
-
const sub_menu = "
|
|
35
|
-
const main = "
|
|
36
|
-
const dd_footer = "
|
|
37
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosClearing/NavBar.css.css';const header = "_header_hmrrj_1";
|
|
2
|
+
const wrapper = "_wrapper_hmrrj_5";
|
|
3
|
+
const header_main_row = "_header_main_row_hmrrj_11";
|
|
4
|
+
const mobile_header = "_mobile_header_hmrrj_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_hmrrj_18";
|
|
6
|
+
const primary_links = "_primary_links_hmrrj_22";
|
|
7
|
+
const main_nav_link = "_main_nav_link_hmrrj_26";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_hmrrj_58";
|
|
9
|
+
const signin_wrap = "_signin_wrap_hmrrj_60";
|
|
10
|
+
const signin_btn = "_signin_btn_hmrrj_61";
|
|
11
|
+
const sub_nav = "_sub_nav_hmrrj_58";
|
|
12
|
+
const header_sub_row = "_header_sub_row_hmrrj_120";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_hmrrj_144";
|
|
14
|
+
const shadow = "_shadow_hmrrj_154";
|
|
15
|
+
const signin_subheader = "_signin_subheader_hmrrj_160";
|
|
16
|
+
const opacity = "_opacity_hmrrj_181";
|
|
17
|
+
const fadeInDown = "_fadeInDown_hmrrj_1";
|
|
18
|
+
const open = "_open_hmrrj_187";
|
|
19
|
+
const hamburger = "_hamburger_hmrrj_205";
|
|
20
|
+
const mobile_only = "_mobile_only_hmrrj_219";
|
|
21
|
+
const mobile_logo = "_mobile_logo_hmrrj_225";
|
|
22
|
+
const highlight = "_highlight_hmrrj_230";
|
|
23
|
+
const mobile_nav = "_mobile_nav_hmrrj_257";
|
|
24
|
+
const mobile_opened = "_mobile_opened_hmrrj_268";
|
|
25
|
+
const mobile_nav_item = "_mobile_nav_item_hmrrj_276";
|
|
26
|
+
const has_dropdown = "_has_dropdown_hmrrj_291";
|
|
27
|
+
const icon_wrap = "_icon_wrap_hmrrj_312";
|
|
28
|
+
const mobile_footer = "_mobile_footer_hmrrj_317";
|
|
29
|
+
const mobile_footer_content = "_mobile_footer_content_hmrrj_322";
|
|
30
|
+
const mobile_footer_media = "_mobile_footer_media_hmrrj_337";
|
|
31
|
+
const footer_cta = "_footer_cta_hmrrj_343";
|
|
32
|
+
const inner_wrapper = "_inner_wrapper_hmrrj_372";
|
|
33
|
+
const btn = "_btn_hmrrj_378";
|
|
34
|
+
const sub_menu = "_sub_menu_hmrrj_383";
|
|
35
|
+
const main = "_main_hmrrj_26";
|
|
36
|
+
const dd_footer = "_dd_footer_hmrrj_408";
|
|
37
|
+
const desktop_only = "_desktop_only_hmrrj_433";
|
|
38
38
|
const styles = {
|
|
39
39
|
header,
|
|
40
40
|
wrapper,
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosFiduciary/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 = "
|
|
8
|
-
const main_nav_link = "
|
|
9
|
-
const sub_nav_link = "
|
|
10
|
-
const signin_wrap = "
|
|
11
|
-
const signin_btn = "
|
|
12
|
-
const sub_nav = "
|
|
13
|
-
const header_sub_row = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const opacity = "
|
|
16
|
-
const fadeInDown = "
|
|
17
|
-
const footer = "
|
|
18
|
-
const open = "
|
|
19
|
-
const mt_8 = "
|
|
20
|
-
const mt_16 = "
|
|
21
|
-
const ml_8 = "
|
|
22
|
-
const reversed_row = "
|
|
23
|
-
const nav_anchor = "
|
|
24
|
-
const site_lists = "
|
|
25
|
-
const hamburger = "
|
|
26
|
-
const mobile_logo = "
|
|
27
|
-
const mobile_nav = "
|
|
28
|
-
const mobile_opened = "
|
|
29
|
-
const _mobile_opened = "
|
|
30
|
-
const mobile_nav_item = "
|
|
31
|
-
const icon_wrap = "
|
|
32
|
-
const mobile_footer = "
|
|
33
|
-
const mobile_footer_content = "
|
|
34
|
-
const mobile_footer_media = "
|
|
35
|
-
const footer_cta = "
|
|
36
|
-
const inner_wrapper = "
|
|
37
|
-
const btn = "
|
|
38
|
-
const sub_menu = "
|
|
39
|
-
const main = "
|
|
40
|
-
const desktop_only = "
|
|
41
|
-
const mobile_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosFiduciary/NavBar.css.css';const header = "_header_15z7t_1";
|
|
2
|
+
const wrapper = "_wrapper_15z7t_5";
|
|
3
|
+
const header_main_row = "_header_main_row_15z7t_11";
|
|
4
|
+
const mobile_header = "_mobile_header_15z7t_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_15z7t_18";
|
|
6
|
+
const primary_links = "_primary_links_15z7t_22";
|
|
7
|
+
const main_nav = "_main_nav_15z7t_26";
|
|
8
|
+
const main_nav_link = "_main_nav_link_15z7t_33";
|
|
9
|
+
const sub_nav_link = "_sub_nav_link_15z7t_55";
|
|
10
|
+
const signin_wrap = "_signin_wrap_15z7t_57";
|
|
11
|
+
const signin_btn = "_signin_btn_15z7t_58";
|
|
12
|
+
const sub_nav = "_sub_nav_15z7t_55";
|
|
13
|
+
const header_sub_row = "_header_sub_row_15z7t_99";
|
|
14
|
+
const shadow = "_shadow_15z7t_115";
|
|
15
|
+
const opacity = "_opacity_15z7t_131";
|
|
16
|
+
const fadeInDown = "_fadeInDown_15z7t_1";
|
|
17
|
+
const footer = "_footer_15z7t_137";
|
|
18
|
+
const open = "_open_15z7t_153";
|
|
19
|
+
const mt_8 = "_mt_8_15z7t_161";
|
|
20
|
+
const mt_16 = "_mt_16_15z7t_165";
|
|
21
|
+
const ml_8 = "_ml_8_15z7t_169";
|
|
22
|
+
const reversed_row = "_reversed_row_15z7t_173";
|
|
23
|
+
const nav_anchor = "_nav_anchor_15z7t_177";
|
|
24
|
+
const site_lists = "_site_lists_15z7t_188";
|
|
25
|
+
const hamburger = "_hamburger_15z7t_192";
|
|
26
|
+
const mobile_logo = "_mobile_logo_15z7t_206";
|
|
27
|
+
const mobile_nav = "_mobile_nav_15z7t_231";
|
|
28
|
+
const mobile_opened = "_mobile_opened_15z7t_242";
|
|
29
|
+
const _mobile_opened = "__mobile_opened_15z7t_246";
|
|
30
|
+
const mobile_nav_item = "_mobile_nav_item_15z7t_250";
|
|
31
|
+
const icon_wrap = "_icon_wrap_15z7t_265";
|
|
32
|
+
const mobile_footer = "_mobile_footer_15z7t_270";
|
|
33
|
+
const mobile_footer_content = "_mobile_footer_content_15z7t_275";
|
|
34
|
+
const mobile_footer_media = "_mobile_footer_media_15z7t_290";
|
|
35
|
+
const footer_cta = "_footer_cta_15z7t_297";
|
|
36
|
+
const inner_wrapper = "_inner_wrapper_15z7t_329";
|
|
37
|
+
const btn = "_btn_15z7t_334";
|
|
38
|
+
const sub_menu = "_sub_menu_15z7t_339";
|
|
39
|
+
const main = "_main_15z7t_26";
|
|
40
|
+
const desktop_only = "_desktop_only_15z7t_368";
|
|
41
|
+
const mobile_only = "_mobile_only_15z7t_415";
|
|
42
42
|
const styles = {
|
|
43
43
|
header,
|
|
44
44
|
wrapper,
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
61
61
|
is?: string | undefined;
|
|
62
62
|
exportparts?: string | undefined;
|
|
63
63
|
part?: string | undefined;
|
|
64
|
-
popover?: "" | "auto" | "manual" |
|
|
64
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
65
65
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
66
66
|
popoverTarget?: string | undefined;
|
|
67
67
|
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
.
|
|
2
|
-
line-height: 1.35;
|
|
3
|
-
margin-block: clamp(1.88rem, 1.99vw + 1.41rem, 3rem);
|
|
4
|
-
margin-inline: auto;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.
|
|
8
|
-
.
|
|
9
|
-
color: #1f1f1f;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.
|
|
13
|
-
text-align: right;
|
|
14
|
-
margin-top: 18px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.
|
|
18
|
-
font-style: normal;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.
|
|
22
|
-
margin-right: 24px;
|
|
23
|
-
transform: rotateY(180deg) scaleY(-1);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.
|
|
27
|
-
align-items: flex-start;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.
|
|
31
|
-
font-size: clamp(1.22rem, 0.92vw + 1rem, 1.74rem);
|
|
32
|
-
font-style: italic;
|
|
33
|
-
line-height: 1.2;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.lchs2s1 .
|
|
37
|
-
color: #1e3860;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@media (max-width: 768px) {
|
|
41
|
-
.
|
|
42
|
-
max-width: 30px;
|
|
43
|
-
margin-right: 12px;
|
|
44
|
-
}
|
|
45
|
-
.
|
|
46
|
-
margin-top: 14px;
|
|
47
|
-
}
|
|
48
|
-
.
|
|
49
|
-
font-size: 18px;
|
|
50
|
-
}
|
|
51
|
-
.
|
|
52
|
-
font-size: 14px;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
@media (max-width: 500px) {
|
|
57
|
-
.
|
|
58
|
-
margin-top: 12px;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@media (min-width: 604px) {
|
|
63
|
-
.
|
|
64
|
-
width: min(calc(100% - 2rem), 792px);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@media (min-width: 1023px) {
|
|
69
|
-
.
|
|
70
|
-
font-weight: 700;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
1
|
+
._quote_spacer_ovx4r_1 {
|
|
2
|
+
line-height: 1.35;
|
|
3
|
+
margin-block: clamp(1.88rem, 1.99vw + 1.41rem, 3rem);
|
|
4
|
+
margin-inline: auto;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
._author_ovx4r_7,
|
|
8
|
+
._quote_ovx4r_1 {
|
|
9
|
+
color: #1f1f1f;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
._author_ovx4r_7 {
|
|
13
|
+
text-align: right;
|
|
14
|
+
margin-top: 18px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
._author_ovx4r_7 cite {
|
|
18
|
+
font-style: normal;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
._quote_spacer_ovx4r_1 .img_fluid {
|
|
22
|
+
margin-right: 24px;
|
|
23
|
+
transform: rotateY(180deg) scaleY(-1);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
._quote_spacer_ovx4r_1 .flex_row {
|
|
27
|
+
align-items: flex-start;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
._quote_ovx4r_1 p {
|
|
31
|
+
font-size: clamp(1.22rem, 0.92vw + 1rem, 1.74rem);
|
|
32
|
+
font-style: italic;
|
|
33
|
+
line-height: 1.2;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.lchs2s1 ._quote_ovx4r_1 p {
|
|
37
|
+
color: #1e3860;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@media (max-width: 768px) {
|
|
41
|
+
._quote_spacer_ovx4r_1 .img_fluid {
|
|
42
|
+
max-width: 30px;
|
|
43
|
+
margin-right: 12px;
|
|
44
|
+
}
|
|
45
|
+
._author_ovx4r_7 {
|
|
46
|
+
margin-top: 14px;
|
|
47
|
+
}
|
|
48
|
+
._quote_ovx4r_1 p {
|
|
49
|
+
font-size: 18px;
|
|
50
|
+
}
|
|
51
|
+
._author_ovx4r_7 cite {
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@media (max-width: 500px) {
|
|
57
|
+
._author_ovx4r_7 {
|
|
58
|
+
margin-top: 12px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@media (min-width: 604px) {
|
|
63
|
+
._quote_spacer_ovx4r_1 {
|
|
64
|
+
width: min(calc(100% - 2rem), 792px);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@media (min-width: 1023px) {
|
|
69
|
+
._quote_ovx4r_1 p {
|
|
70
|
+
font-weight: 700;
|
|
71
|
+
}
|
|
72
|
+
}
|