@axos-web-dev/shared-components 2.0.0-dev.31.insights.7 → 2.0.0-dev.33

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 (45) hide show
  1. package/dist/Calculators/ApyCalculator/index.js +2 -1
  2. package/dist/Chatbot/ChatWindow.d.ts +1 -0
  3. package/dist/Chatbot/ChatWindow.js +5 -10
  4. package/dist/Chatbot/Chatbot.js +75 -42
  5. package/dist/Chatbot/ChatbotMessage.d.ts +1 -0
  6. package/dist/Chatbot/ChatbotMessage.js +2 -1
  7. package/dist/Chatbot/store/messages.d.ts +6 -1
  8. package/dist/Chatbot/store/messages.js +62 -3
  9. package/dist/FdicCallout/index.js +1 -1
  10. package/dist/Forms/EmailOnly.js +11 -1
  11. package/dist/Insight/Featured/CategorySelector.css.d.ts +3 -4
  12. package/dist/Insight/Featured/CategorySelector.css.js +7 -9
  13. package/dist/Insight/Featured/CategorySelector.js +23 -53
  14. package/dist/Insight/Featured/Featured.css.d.ts +4 -13
  15. package/dist/Insight/Featured/Featured.css.js +18 -37
  16. package/dist/Insight/Featured/Featured.d.ts +0 -1
  17. package/dist/Insight/Featured/Featured.js +93 -129
  18. package/dist/Insight/Featured/Header.css.d.ts +0 -1
  19. package/dist/Insight/Featured/Header.css.js +6 -9
  20. package/dist/Insight/Featured/Header.js +17 -10
  21. package/dist/Insight/Featured/index.js +4 -13
  22. package/dist/Insight/index.js +4 -13
  23. package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +52 -52
  24. package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.module.js +1 -1
  25. package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +1 -1
  26. package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -1
  27. package/dist/NavigationMenu/ServerNavigation/MobileMenu/MobileMenu.module.js +27 -27
  28. package/dist/NavigationMenu/ServerNavigation/NavBar.module.js +40 -40
  29. package/dist/assets/Forms/Forms.css +1 -2
  30. package/dist/assets/Input/Input.css +0 -1
  31. package/dist/assets/Insight/Featured/CategorySelector.css +38 -53
  32. package/dist/assets/Insight/Featured/Featured.css +65 -126
  33. package/dist/assets/Insight/Featured/Header.css +13 -22
  34. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css +609 -609
  35. package/dist/assets/NavigationMenu/ServerNavigation/MobileMenu/MobileMenu.css +353 -353
  36. package/dist/assets/NavigationMenu/ServerNavigation/NavBar.css +483 -483
  37. package/dist/icons/Clock/index.js +0 -1
  38. package/dist/main.js +3 -12
  39. package/dist/utilities.d.ts +1 -0
  40. package/dist/utilities.js +2 -0
  41. package/dist/utils/allowedAxosDomains.js +0 -2
  42. package/dist/utils/insightsData.d.ts +23 -0
  43. package/dist/utils/insightsData.js +41 -0
  44. package/package.json +5 -4
  45. package/dist/assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css +0 -353
@@ -7,7 +7,6 @@ const ClockIcon = (props) => /* @__PURE__ */ jsx(
7
7
  height: "21",
8
8
  viewBox: "0 0 20 21",
9
9
  fill: "none",
10
- "aria-hidden": "true",
11
10
  ...props,
12
11
  children: /* @__PURE__ */ jsx(
13
12
  "path",
package/dist/main.js CHANGED
@@ -165,7 +165,7 @@ import { DownPaymentInput } from "./Input/DownPaymentInput.js";
165
165
  import { RadioButton, RadioButtonSet } from "./Input/RadioButton.js";
166
166
  import { CategorySelector, InsightItem } from "./Insight/Featured/CategorySelector.js";
167
167
  import { Featured, FeaturedItem } from "./Insight/Featured/Featured.js";
168
- import { divider_tab, featured_center_vertical, featured_grid, featured_main_wrapper, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_text, featured_maingrid_title, featured_section, featured_subcontent, featured_subgrid, featured_subgrid_item, featured_subgrid_title, featured_subimage, featured_subouter, featured_subwrap, featured_supertag, featured_title, info_details, onhover, ratio, tab_details } from "./Insight/Featured/Featured.css.js";
168
+ import { featured_center_vertical, featured_grid, featured_hero, featured_maingrid, featured_maingrid_img, featured_maingrid_item, featured_maingrid_title, featured_section, featured_subgrid, featured_subgrid_divider, featured_subgrid_item, featured_subgrid_title, featured_supertag, featured_title } from "./Insight/Featured/Featured.css.js";
169
169
  import { BreadcumbHeader } from "./Insight/Featured/Header.js";
170
170
  import { article_aside, article_blockquote, article_main_content, article_navigation_link, article_navigation_list, article_navigation_title, article_preview_img, article_preview_wrapper, article_share, article_share_buttons, article_share_icon, article_share_link, article_share_p, article_share_svg, article_spacer, elementSpacer_block, footnotes, insight_header, insight_header_2, insight_header_3, insight_header_4, insight_info__divider, insight_info_row, insight_intro_p, insight_list_item, insight_p } from "./Insight/Insight.css.js";
171
171
  import { Interstitial } from "./Interstitial/Interstitial.js";
@@ -559,7 +559,6 @@ export {
559
559
  details,
560
560
  disclosureForm,
561
561
  divider,
562
- divider_tab,
563
562
  dp_input,
564
563
  dropdown,
565
564
  dynPH,
@@ -583,20 +582,16 @@ export {
583
582
  feature_title,
584
583
  featured_center_vertical,
585
584
  featured_grid,
586
- featured_main_wrapper,
585
+ featured_hero,
587
586
  featured_maingrid,
588
587
  featured_maingrid_img,
589
588
  featured_maingrid_item,
590
- featured_maingrid_text,
591
589
  featured_maingrid_title,
592
590
  featured_section,
593
- featured_subcontent,
594
591
  featured_subgrid,
592
+ featured_subgrid_divider,
595
593
  featured_subgrid_item,
596
594
  featured_subgrid_title,
597
- featured_subimage,
598
- featured_subouter,
599
- featured_subwrap,
600
595
  featured_supertag,
601
596
  featured_title,
602
597
  filterParams,
@@ -691,7 +686,6 @@ export {
691
686
  imgAlignment,
692
687
  img_area,
693
688
  img_contents,
694
- info_details,
695
689
  inline_button,
696
690
  inline_button_wrapper,
697
691
  inline_container,
@@ -756,7 +750,6 @@ export {
756
750
  notificationStyle,
757
751
  ol,
758
752
  one_row,
759
- onhover,
760
753
  order_3,
761
754
  overlay,
762
755
  padding,
@@ -779,7 +772,6 @@ export {
779
772
  rate_container,
780
773
  rate_pad,
781
774
  rate_table_title,
782
- ratio,
783
775
  related_insight,
784
776
  remove_padding,
785
777
  resposiveLabel,
@@ -838,7 +830,6 @@ export {
838
830
  svg_fill,
839
831
  svg_icon,
840
832
  svg_logo,
841
- tab_details,
842
833
  table,
843
834
  tableCell,
844
835
  tableHead,
@@ -1,2 +1,3 @@
1
1
  export * from './Forms/HoneyPot/honeyPotValidation';
2
2
  export * from './utils/allowedAxosDomains';
3
+ export * from './utils/insightsData';
package/dist/utilities.js CHANGED
@@ -1,6 +1,8 @@
1
1
  import { honeyPotFieldsSchema, honeyPotSchema, isValidHoneyPot } from "./Forms/HoneyPot/honeyPotValidation.js";
2
2
  import { findMoreAxosDomains, getMoreDomains, isAllowedUrl } from "./utils/allowedAxosDomains.js";
3
+ import { CATEGORY_DATA } from "./utils/insightsData.js";
3
4
  export {
5
+ CATEGORY_DATA,
4
6
  findMoreAxosDomains,
5
7
  getMoreDomains,
6
8
  honeyPotFieldsSchema,
@@ -14,7 +14,6 @@ const getMoreDomains = (domains) => ({
14
14
  "{UFBDIRECT}": domains.UFB_URL || "https://www.ufbdirect.com",
15
15
  "{ARMS}": domains.ARMS_URL || "https://arms.axosadvisor.com",
16
16
  "{APPS}": domains.APPS_URL || "https://apps.axosbank.com",
17
- "{AFP}": domains.AFP_URL || "https://afp.axosbank.com",
18
17
  "{INVESTORS}": domains.INVESTORS_URL || "https://investors.axosfinancial.com",
19
18
  "{UNVENROLLMENT}": domains.UNVENROLLMENT_URL || "https://enroll.axosbank.com",
20
19
  "{AUTOAXB}": "https://auto.axosbank.com/partner/axos-purchase/AU",
@@ -22,7 +21,6 @@ const getMoreDomains = (domains) => ({
22
21
  "{DEVAXC}": domains.DEVELOPER_CLEARING || "https://developer.axosclearing.com",
23
22
  "{AFF}": domains.FUNDFINDER_URL || "https://axosfundfinder.com",
24
23
  "{APL}": domains.PERSONAL_LOANS_URL || "https://personalloans.axosbank.com",
25
- "{AXSEC}": domains.AXOS_SECURE_URL || "https://secure.axosbank.com",
26
24
  "{SECURE}": domains.AXOS_SECURE_URL || "https://secure.axosbank.com",
27
25
  "{DOWNLOADAXOS}": domains.AXOS_DOWNLOAD_URL || "https://downloads.axos.com",
28
26
  "{SBEAX}": domains.SBB_ENROLL || "https://small-business-enrollment.axosbank.com",
@@ -0,0 +1,23 @@
1
+ export declare const CATEGORY_DATA: {
2
+ readonly "Axos Bank (AXB)": {
3
+ readonly Business: readonly ["Banking", "CyberSecurity", "Finance", "Financial-Advisors", "Management"];
4
+ readonly Commercial: readonly ["Banking", "Lending"];
5
+ readonly Personal: {
6
+ readonly Finance: readonly ["Digital-Banking", "Financial-Planning", "Retirement"];
7
+ readonly Loans: readonly ["Auto", "Home", "Personal"];
8
+ readonly Credit: readonly ["Building-Credit"];
9
+ readonly CyberSecurity: readonly ["Fraud-Prevention"];
10
+ };
11
+ };
12
+ readonly "Axos Invest (AXI)": {
13
+ readonly Invest: readonly ["Investing-Basics", "Investment-Strategies", "Retirement-Planning", "Market-Analysis"];
14
+ };
15
+ readonly "Axos Advisor (AXA)": readonly [];
16
+ readonly "Axos Advisor Services (AAS)": readonly ["IBD-Breakaways", "Run-Your-Practice", "Grow-Your-Book"];
17
+ readonly "Axos Clearing (AXC)": readonly [];
18
+ readonly "Axos Fiduciary Services (AFS)": readonly [];
19
+ readonly "Axos Securities (AXS)": readonly [];
20
+ readonly "LaVictoire Finance (LVF)": readonly [];
21
+ readonly "UFB Direct (UFB)": readonly [];
22
+ readonly "Zenith Information Systems (ZIS)": readonly [];
23
+ };
@@ -0,0 +1,41 @@
1
+ const CATEGORY_DATA = {
2
+ "Axos Bank (AXB)": {
3
+ Business: [
4
+ "Banking",
5
+ "CyberSecurity",
6
+ "Finance",
7
+ "Financial-Advisors",
8
+ "Management"
9
+ ],
10
+ Commercial: ["Banking", "Lending"],
11
+ Personal: {
12
+ Finance: ["Digital-Banking", "Financial-Planning", "Retirement"],
13
+ Loans: ["Auto", "Home", "Personal"],
14
+ Credit: ["Building-Credit"],
15
+ CyberSecurity: ["Fraud-Prevention"]
16
+ }
17
+ },
18
+ "Axos Invest (AXI)": {
19
+ Invest: [
20
+ "Investing-Basics",
21
+ "Investment-Strategies",
22
+ "Retirement-Planning",
23
+ "Market-Analysis"
24
+ ]
25
+ },
26
+ "Axos Advisor (AXA)": [],
27
+ "Axos Advisor Services (AAS)": [
28
+ "IBD-Breakaways",
29
+ "Run-Your-Practice",
30
+ "Grow-Your-Book"
31
+ ],
32
+ "Axos Clearing (AXC)": [],
33
+ "Axos Fiduciary Services (AFS)": [],
34
+ "Axos Securities (AXS)": [],
35
+ "LaVictoire Finance (LVF)": [],
36
+ "UFB Direct (UFB)": [],
37
+ "Zenith Information Systems (ZIS)": []
38
+ };
39
+ export {
40
+ CATEGORY_DATA
41
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axos-web-dev/shared-components",
3
3
  "description": "Axos shared components library for web.",
4
- "version": "2.0.0-dev.31.insights.7",
4
+ "version": "2.0.0-dev.33",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "module": "dist/main.js",
@@ -75,7 +75,6 @@
75
75
  "slick-carousel": "^1.8.1",
76
76
  "typed-css-modules": "^0.9.1",
77
77
  "vite-plugin-svgr": "^4.3.0",
78
- "zod": "^3.24.1",
79
78
  "zustand": "^4.5.5"
80
79
  },
81
80
  "peerDependencies": {
@@ -87,7 +86,8 @@
87
86
  "react-date-range": "^2.0.1",
88
87
  "react-dom": "^18.2.0 || ^19.0.0",
89
88
  "react-slick": "^0.30.2",
90
- "slick-carousel": "^1.8.1"
89
+ "slick-carousel": "^1.8.1",
90
+ "zod": "^3.24.1"
91
91
  },
92
92
  "devDependencies": {
93
93
  "@chromatic-com/storybook": "^1.9.0",
@@ -142,7 +142,8 @@
142
142
  "vite-plugin-dts": "^3.9.1",
143
143
  "vite-plugin-lib-inject-css": "^2.1.1",
144
144
  "vite-plugin-setting-css-module": "^1.1.4",
145
- "vite-tsconfig-paths": "^4.3.2"
145
+ "vite-tsconfig-paths": "^4.3.2",
146
+ "zod": "^3.24.1"
146
147
  },
147
148
  "directories": {
148
149
  "lib": "lib"
@@ -1,353 +0,0 @@
1
- ._overlay_hbh7s_1 {
2
- position: fixed;
3
- inset: 0;
4
- height: 100vh;
5
- background: rgba(0, 0, 0, 0.6);
6
- z-index: 10000;
7
- }
8
-
9
- ._drawer_hbh7s_9 {
10
- background: #fff;
11
- border-radius: 0 0 0 1rem;
12
- box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
13
- max-height: 100vh;
14
- max-width: 500px;
15
- overflow: hidden auto;
16
- position: fixed;
17
- right: 0px;
18
- top: 0;
19
- width: 85%;
20
- scrollbar-width: none;
21
- -ms-overflow-style: none;
22
- z-index: 10001;
23
- }
24
-
25
- ._drawer_hbh7s_9::-webkit-scrollbar {
26
- display: none;
27
- }
28
-
29
- ._mobileNavRow_hbh7s_29 {
30
- display: flex;
31
- align-items: center;
32
- gap: 16px;
33
- }
34
-
35
- ._loginTrigger_hbh7s_35 {
36
- background: transparent;
37
- border: none;
38
- color: var(--_1073cm83);
39
- cursor: pointer;
40
- font-family: var(--header-font-family);
41
- font-size: 1rem;
42
- font-weight: 700;
43
- padding: 0.25rem 0;
44
- transition: opacity 0.2s ease;
45
- }
46
-
47
- ._loginTrigger_hbh7s_35:hover {
48
- opacity: 0.85;
49
- }
50
-
51
- ._hamburger_hbh7s_51 {
52
- background: transparent;
53
- border: none;
54
- cursor: pointer;
55
- transition: opacity 0.3s ease;
56
- position: relative;
57
- }
58
-
59
- ._hamburger_hbh7s_51::before {
60
- content: "";
61
- position: absolute;
62
- left: -7px;
63
- bottom: 0;
64
- height: 28px;
65
- border-left: 2px solid #1f1f1f;
66
- top: -2px;
67
- }
68
-
69
- ._hamburger_hbh7s_51:hover {
70
- opacity: 0.8;
71
- }
72
-
73
- ._loginDrawerTitle_hbh7s_73 {
74
- font-weight: 700;
75
- font-size: 1rem;
76
- color: var(--_1073cm83);
77
- }
78
-
79
- ._loginDrawerContent_hbh7s_79 {
80
- padding: 1rem 1.2rem 1.2rem;
81
- overflow: auto;
82
- flex: 1;
83
- }
84
-
85
- ._header_hbh7s_85 {
86
- display: flex;
87
- align-items: center;
88
- background: #f4f4f4;
89
- justify-content: space-between;
90
- padding: 0.9rem 1.2rem 0.9rem 1rem;
91
- position: sticky;
92
- top: 0;
93
- z-index: 1;
94
- }
95
-
96
- ._back_hbh7s_96 {
97
- color: var(--_1073cm83);
98
- font-size: 1rem;
99
- font-weight: 700;
100
- line-height: 1;
101
- padding: 0;
102
- }
103
-
104
- ._close_hbh7s_104 {
105
- font-size: 1.3rem;
106
- }
107
-
108
- ._back_hbh7s_96,
109
- ._close_hbh7s_104 {
110
- background: none;
111
- border: none;
112
- cursor: pointer;
113
- }
114
-
115
- ._levelContainer_hbh7s_115 {
116
- height: 100%;
117
- position: relative;
118
- }
119
-
120
- ._level_hbh7s_115 {
121
- background: var(--_1073cm86);
122
- color: var(--_1073cm85);
123
- font-size: 0.9rem;
124
- padding: 14px 1.2rem;
125
- position: sticky;
126
- top: 54.78px;
127
- width: 100%;
128
- z-index: 1;
129
- }
130
-
131
- ._levelTitle_hbh7s_131 {
132
- font: 700 0.9rem / 1.39 var(--main-font-family);
133
- letter-spacing: 0.4px;
134
- }
135
-
136
- ._menu_hbh7s_136 {
137
- background-color: transparent;
138
- list-style: none;
139
- margin: 0;
140
- min-height: 100%;
141
- padding: 0 1.2rem;
142
- position: relative;
143
- }
144
-
145
- ._menu_hbh7s_136 li {
146
- color: var(--_1073cm83);
147
- font-family: var(--header-font-family);
148
- font-weight: 500;
149
- border-top: 1px solid #e9e9e9;
150
- }
151
-
152
- ._menuItem_hbh7s_152 {
153
- display: flex;
154
- align-items: center;
155
- background: none;
156
- border: none;
157
- color: inherit;
158
- cursor: pointer;
159
- font-size: 1rem;
160
- justify-content: space-between;
161
- padding: 0.75rem 0;
162
- text-align: left;
163
- text-decoration: none;
164
- transition: background 0.2s ease;
165
- width: 100%;
166
- }
167
-
168
- ._loginAccordion_hbh7s_168 {
169
- padding: 0;
170
- }
171
-
172
- ._loginAccordionList_hbh7s_172 {
173
- list-style: none;
174
- margin: 0;
175
- padding: 0;
176
- }
177
-
178
- ._loginAccordionGroup_hbh7s_178 {
179
- padding-block: 4px;
180
- }
181
-
182
- ._loginAccordionGroup_hbh7s_178 + ._loginAccordionGroup_hbh7s_178 {
183
- margin-top: 2px;
184
- position: relative;
185
- }
186
-
187
- ._loginAccordionGroup_hbh7s_178:nth-child(5):is(:last-child) {
188
- padding-top: 12px;
189
- margin-top: 12px;
190
- }
191
-
192
- ._loginAccordionGroup_hbh7s_178:nth-child(5):is(:last-child)::before {
193
- content: "";
194
- background-color: #8f8f8f;
195
- height: 2px;
196
- opacity: 0.3;
197
- position: absolute;
198
- right: 8px;
199
- top: 0;
200
- width: 94%;
201
- }
202
-
203
- ._loginAccordionGroup_hbh7s_178:nth-child(5):is(:last-child) > span {
204
- position: absolute;
205
- border: 0;
206
- clip: rect(0, 0, 0, 0);
207
- height: 1px;
208
- margin: -1px;
209
- overflow: hidden;
210
- padding: 0;
211
- white-space: nowrap;
212
- width: 1px;
213
- }
214
-
215
- ._loginAccordionHeading_hbh7s_215 {
216
- display: block;
217
- font-family: var(--header-font-family);
218
- font-weight: 700;
219
- font-size: 18px;
220
- line-height: 1.39;
221
-
222
- padding: 0.35rem 0 0.2rem;
223
- }
224
-
225
- ._loginAccordionGroupList_hbh7s_225 {
226
- list-style: none;
227
- margin: 0;
228
- padding: 0 0 0 8px;
229
- }
230
-
231
- ._loginAccordionList_hbh7s_172 li {
232
- font-family: var(--header-font-family);
233
- font-weight: 500;
234
- }
235
-
236
- ._loginAccordionList_hbh7s_172 li li {
237
- border-top: none;
238
- color: #1e629a;
239
- font-weight: 400;
240
- padding-block: 3px;
241
- font-family: var(--main-font-family);
242
- }
243
-
244
- ._loginAccordionList_hbh7s_172 ._menuItem_hbh7s_152 {
245
- display: inline;
246
- padding-block: 0px;
247
- }
248
-
249
- ._loginAccordionList_hbh7s_172 ._menuItem_hbh7s_152:hover {
250
- opacity: 0.7;
251
- }
252
-
253
- ._loginAccordion_hbh7s_168 > ._menuItem_hbh7s_152 {
254
- padding-block: 4px;
255
- position: relative;
256
- isolation: isolate;
257
- }
258
-
259
- ._loginAccordion_hbh7s_168 > ._menuItem_hbh7s_152::after {
260
- content: "return to menu";
261
- position: absolute;
262
- right: 36px;
263
- bottom: 50%;
264
- font-size: 12px;
265
- transform: translateY(50%);
266
- letter-spacing: 0.5px;
267
- }
268
-
269
- ._loginHeading_hbh7s_269 {
270
- font-family: var(--header-font-family);
271
- font-size: 20px;
272
- font-weight: 700;
273
- line-height: 1;
274
- display: flex;
275
- align-items: center;
276
- gap: 8px;
277
- }
278
-
279
- ._chevron_hbh7s_279 {
280
- font-size: 1.2rem;
281
- margin-left: auto;
282
- }
283
-
284
- ._chevronIcon_hbh7s_284 {
285
- height: auto;
286
- margin-right: 10px;
287
- max-width: 8px;
288
- }
289
-
290
- body:has(._drawer_hbh7s_9) {
291
- overflow-y: hidden;
292
- position: relative;
293
- }
294
-
295
- ._quickLinks_hbh7s_295 {
296
- background-color: #e8f7ff;
297
- bottom: 0;
298
- box-shadow: 0 15px 10px -20px rgba(0, 0, 0, 0.45) inset;
299
- gap: 8px;
300
- margin-top: 9px;
301
- padding: 1rem;
302
- position: sticky;
303
- }
304
-
305
- ._quickLink_hbh7s_295 {
306
- display: flex;
307
- align-items: center;
308
- color: var(--_1073cm83);
309
- flex-direction: column;
310
- flex: 1 1 0%;
311
- font-size: 0.8rem;
312
- font-weight: 700;
313
- gap: 8px;
314
- line-height: 1.5;
315
- text-decoration: none;
316
- text-transform: uppercase;
317
- }
318
-
319
- ._sr_only_hbh7s_319 {
320
- position: absolute;
321
- border: 0;
322
- clip: rect(0, 0, 0, 0);
323
- height: 1px;
324
- margin: -1px;
325
- overflow: hidden;
326
- padding: 0;
327
- white-space: nowrap;
328
- width: 1px;
329
- }
330
-
331
- @media (max-width: 540px) {
332
- ._drawer_hbh7s_9 {
333
- border-radius: 0;
334
- max-width: none;
335
- width: 100%;
336
- }
337
- ._menu_hbh7s_136 li + li {
338
- margin-top: 3px;
339
- }
340
- ._menuItem_hbh7s_152 {
341
- font-size: 0.9rem;
342
- padding: 0.65rem 0;
343
- }
344
- ._loginAccordionOverlay_hbh7s_344::before {
345
- opacity: 0.1;
346
- }
347
- }
348
-
349
- @media (min-width: 541px) {
350
- ._drawer_hbh7s_9:has(._loginDrawerContent_hbh7s_79) {
351
- max-width: 345px;
352
- }
353
- }