@npm_leadtech/legal-lib-components 5.26.12 → 5.27.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.
Files changed (50) hide show
  1. package/dist/images/componentsSvg/IconWeb.d.ts +2 -0
  2. package/dist/images/componentsSvg/IconWeb.js +4 -0
  3. package/dist/images/componentsSvg/IconWeb.tsx +31 -0
  4. package/dist/images/componentsSvg/PhoneIcon.d.ts +6 -0
  5. package/dist/images/componentsSvg/PhoneIcon.js +4 -0
  6. package/dist/images/componentsSvg/PhoneIcon.tsx +18 -0
  7. package/dist/images/componentsSvg/PhoneIcon24px.tsx +4 -2
  8. package/dist/images/svg/facebook.svg +4 -0
  9. package/dist/images/svg/icon-24-px-satisfaction-grey.svg +3 -0
  10. package/dist/images/svg/icon-24-px-security_black.svg +3 -0
  11. package/dist/images/svg/linkedin.svg +4 -0
  12. package/dist/images/svg/pinterest.svg +4 -0
  13. package/dist/images/svg/x.svg +4 -0
  14. package/dist/src/components/atoms/FixedFooter/FixedFooter.d.ts +3 -0
  15. package/dist/src/components/atoms/FixedFooter/FixedFooter.js +73 -0
  16. package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.d.ts +1 -0
  17. package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.js +969 -0
  18. package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.ts +970 -0
  19. package/dist/src/components/atoms/FixedFooter/FixedFooter.tsx +305 -0
  20. package/dist/src/components/atoms/FixedFooter/FixedFooterProps.d.ts +71 -0
  21. package/dist/src/components/atoms/FixedFooter/FixedFooterProps.js +1 -0
  22. package/dist/src/components/atoms/FixedFooter/FixedFooterProps.ts +73 -0
  23. package/dist/src/components/atoms/FixedFooter/index.d.ts +2 -0
  24. package/dist/src/components/atoms/FixedFooter/index.js +2 -0
  25. package/dist/src/components/atoms/FixedFooter/index.ts +2 -0
  26. package/dist/src/components/atoms/PreFooter/PreFooter.d.ts +3 -0
  27. package/dist/src/components/atoms/PreFooter/PreFooter.js +8 -0
  28. package/dist/src/components/atoms/PreFooter/PreFooter.styled.d.ts +1 -0
  29. package/dist/src/components/atoms/PreFooter/PreFooter.styled.js +43 -0
  30. package/dist/src/components/atoms/PreFooter/PreFooter.styled.ts +43 -0
  31. package/dist/src/components/atoms/PreFooter/PreFooter.tsx +34 -0
  32. package/dist/src/components/atoms/PreFooter/PreFooterProps.d.ts +8 -0
  33. package/dist/src/components/atoms/PreFooter/PreFooterProps.js +1 -0
  34. package/dist/src/components/atoms/PreFooter/PreFooterProps.ts +8 -0
  35. package/dist/src/components/atoms/PreFooter/index.d.ts +2 -0
  36. package/dist/src/components/atoms/PreFooter/index.js +2 -0
  37. package/dist/src/components/atoms/PreFooter/index.ts +2 -0
  38. package/dist/src/components/atoms/index.d.ts +2 -0
  39. package/dist/src/components/atoms/index.js +2 -0
  40. package/dist/src/components/atoms/index.ts +2 -0
  41. package/dist/src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.styled.js +1 -5
  42. package/dist/src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.styled.ts +1 -5
  43. package/dist/src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.styled.js +1 -1
  44. package/dist/src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.styled.ts +1 -1
  45. package/dist/src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.js +1 -1
  46. package/dist/src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.ts +1 -1
  47. package/dist/src/components/pages/LoginRatafiaPage/LoginRatafiaPage.styled.js +0 -1
  48. package/dist/src/components/pages/LoginRatafiaPage/LoginRatafiaPage.styled.ts +0 -1
  49. package/dist/tsconfig.build.tsbuildinfo +1 -1
  50. package/package.json +1 -1
@@ -0,0 +1,969 @@
1
+ import styled from 'styled-components';
2
+ export const FixedFooterStyled = styled.div `
3
+ .prefooter {
4
+ background-color: var(--primary-main-light-6);
5
+ text-align: center;
6
+ }
7
+ .prefooter .prefooter-container {
8
+ margin: 0 1.5rem;
9
+ }
10
+ @media (min-width: 720px) {
11
+ .prefooter .prefooter-container {
12
+ margin: 0;
13
+ }
14
+ }
15
+ .prefooter--columns {
16
+ display: flex;
17
+ flex-direction: column;
18
+ align-items: center;
19
+ justify-content: space-between;
20
+ }
21
+ @media (min-width: 720px) {
22
+ .prefooter--columns {
23
+ flex-direction: row;
24
+ margin: 0 1rem;
25
+ align-items: flex-start;
26
+ }
27
+ }
28
+ .prefooter--columns p {
29
+ width: 16.375rem;
30
+ color: var(--neutral-neutral-1);
31
+ margin: 2rem 0.5rem 0 0.5rem;
32
+ }
33
+ .prefooter .e-button {
34
+ display: inline-block;
35
+ margin: 2rem 0;
36
+ }
37
+
38
+ .prefooter__title {
39
+ color: var(--neutral-neutral-1);
40
+ display: inline-block;
41
+ margin: 2rem 0 0;
42
+ }
43
+
44
+ footer {
45
+ margin-top: auto;
46
+ left: 0;
47
+ bottom: 0;
48
+ position: static;
49
+ width: 100%;
50
+ background-color: var(--primary-main-dark-2);
51
+ color: var(--primary-main-light-6);
52
+ }
53
+ footer .language-selector-mobile-container {
54
+ max-width: 1200px;
55
+ margin: auto;
56
+ padding: 2.75rem 1rem 1rem;
57
+ }
58
+ @media (min-width: 720px) {
59
+ footer .language-selector-mobile-container {
60
+ display: none;
61
+ }
62
+ }
63
+ footer a {
64
+ color: var(--primary-main-light-6);
65
+ text-decoration: none;
66
+ }
67
+ footer li {
68
+ margin-bottom: 1.25rem;
69
+ }
70
+ footer li a {
71
+ padding: 0.5rem 0;
72
+ }
73
+ footer li:last-child {
74
+ margin-bottom: 0;
75
+ }
76
+ footer .footer__wrapper {
77
+ display: flex;
78
+ flex-flow: row wrap;
79
+ max-width: 1200px;
80
+ width: 100%;
81
+ justify-content: center;
82
+ margin: 0 auto;
83
+ padding: 1rem 1rem 2.75rem;
84
+ grid-row-gap: 32px;
85
+ }
86
+ @media (min-width: 960px) {
87
+ footer .footer__wrapper {
88
+ padding: 2.75rem 0;
89
+ }
90
+ }
91
+ footer .footer__wrapper__logo {
92
+ width: 45%;
93
+ max-width: 45%;
94
+ display: flex;
95
+ align-items: baseline;
96
+ }
97
+ @media (min-width: 720px) {
98
+ footer .footer__wrapper__logo {
99
+ width: 100%;
100
+ max-width: 100%;
101
+ }
102
+ }
103
+ footer .sem-footer__wrapper {
104
+ display: flex;
105
+ flex-flow: column wrap;
106
+ width: 100%;
107
+ max-width: 1200px;
108
+ justify-content: space-between;
109
+ margin: auto;
110
+ padding: 1rem 1rem 2.75rem;
111
+ grid-row-gap: 32px;
112
+ }
113
+ @media (min-width: 960px) {
114
+ footer .sem-footer__wrapper {
115
+ flex-flow: row wrap;
116
+ padding: 1.5rem 1rem;
117
+ }
118
+ }
119
+ footer .sem-footer__legal-links {
120
+ display: flex;
121
+ flex-flow: row wrap;
122
+ align-items: center;
123
+ gap: 1rem;
124
+ }
125
+ footer .sem-footer__legal-links li {
126
+ margin-bottom: 0;
127
+ }
128
+ footer .sem-footer__contact-info {
129
+ display: flex;
130
+ flex-flow: column;
131
+ -moz-column-gap: 0.5rem;
132
+ column-gap: 0.5rem;
133
+ row-gap: 0.25rem;
134
+ }
135
+ @media (min-width: 575px) {
136
+ footer .sem-footer__contact-info {
137
+ flex-flow: row;
138
+ }
139
+ }
140
+ footer .sem-footer__contact-info__phone {
141
+ display: flex;
142
+ align-items: center;
143
+ font-size: 0.8rem;
144
+ }
145
+ footer .sem-footer__contact-info__schedule {
146
+ font-size: 0.75rem;
147
+ }
148
+ footer .fixed-container {
149
+ position: fixed;
150
+ bottom: 0;
151
+ z-index: 3;
152
+ width: 100%;
153
+ }
154
+ footer .footer__products,
155
+ footer .footer__popular-documents,
156
+ footer .footer__company {
157
+ width: 100%;
158
+ max-width: 50%;
159
+ display: flex;
160
+ flex-flow: column wrap;
161
+ justify-content: flex-start;
162
+ }
163
+ footer .footer__products p,
164
+ footer .footer__popular-documents p,
165
+ footer .footer__company p {
166
+ margin-bottom: 1.5rem;
167
+ }
168
+ @media (min-width: 575px) {
169
+ footer .footer__products,
170
+ footer .footer__popular-documents,
171
+ footer .footer__company {
172
+ max-width: 28%;
173
+ padding-right: 1.5rem;
174
+ }
175
+ }
176
+ @media (min-width: 960px) {
177
+ footer .footer__products,
178
+ footer .footer__popular-documents,
179
+ footer .footer__company {
180
+ max-width: 20%;
181
+ }
182
+ }
183
+ @media (max-width: 575px) {
184
+ footer .footer__products,
185
+ footer .footer__popular-documents,
186
+ footer .footer__company {
187
+ max-width: 100%;
188
+ }
189
+ }
190
+ footer .footer__company__resources__findUs .footer__resources,
191
+ footer .footer__help__resources .footer__resources {
192
+ margin-top: 22px;
193
+ }
194
+ footer .footer__help__resources,
195
+ footer .footer__company {
196
+ display: flex;
197
+ flex-flow: column wrap;
198
+ justify-content: flex-start;
199
+ margin-bottom: 0;
200
+ max-width: 50%;
201
+ width: 100%;
202
+ }
203
+ @media (min-width: 575px) and (max-width: 960px) {
204
+ footer .footer__help__resources,
205
+ footer .footer__company {
206
+ display: block;
207
+ }
208
+ }
209
+ footer .footer__help__resources p,
210
+ footer .footer__company p {
211
+ margin-bottom: 1.5rem;
212
+ }
213
+ @media (min-width: 575px) {
214
+ footer .footer__help__resources,
215
+ footer .footer__company {
216
+ max-width: 22.5%;
217
+ padding-right: 1rem;
218
+ }
219
+ }
220
+ @media (min-width: 960px) {
221
+ footer .footer__help__resources,
222
+ footer .footer__company {
223
+ max-width: 15%;
224
+ }
225
+ }
226
+ footer .footer__help__resources p,
227
+ footer .footer__findUs p {
228
+ margin-bottom: 1.25rem;
229
+ }
230
+ footer .footer__findUs {
231
+ display: flex;
232
+ flex-flow: row nowrap;
233
+ flex-direction: column;
234
+ max-width: 100%;
235
+ }
236
+ footer .footer__findUs .trustpilot-widget {
237
+ margin-top: 0;
238
+ }
239
+ @media (min-width: 575px) {
240
+ footer .footer__findUs .trustpilot-widget {
241
+ margin-top: 22px;
242
+ }
243
+ }
244
+ @media (min-width: 720px) {
245
+ footer .footer__findUs {
246
+ display: block;
247
+ max-width: 20%;
248
+ }
249
+ }
250
+ @media (min-width: 960px) {
251
+ footer .footer__findUs {
252
+ max-width: 15%;
253
+ }
254
+ }
255
+ @media (max-width: 575px) {
256
+ footer .footer__findUs {
257
+ width: 100%;
258
+ }
259
+ }
260
+ footer .footer__findUs ul {
261
+ display: flex;
262
+ flex-direction: row;
263
+ }
264
+ footer .footer__findUs ul li {
265
+ margin-right: 0.4rem;
266
+ }
267
+ footer .footer__help__findUs {
268
+ max-width: 100%;
269
+ width: 100%;
270
+ display: flex;
271
+ flex-flow: row wrap;
272
+ }
273
+ footer .footer__help__findUs div {
274
+ width: 50%;
275
+ }
276
+ @media (min-width: 575px) {
277
+ footer .footer__help__findUs div {
278
+ width: 100%;
279
+ }
280
+ }
281
+ @media (min-width: 720px) {
282
+ footer .footer__help__findUs div {
283
+ width: 100%;
284
+ }
285
+ }
286
+ @media (min-width: 960px) {
287
+ footer .footer__help__findUs div {
288
+ width: 50%;
289
+ }
290
+ }
291
+ @media (min-width: 575px) {
292
+ footer .footer__help__findUs {
293
+ max-width: 30%;
294
+ }
295
+ }
296
+ @media (min-width: 960px) {
297
+ footer .footer__help__findUs {
298
+ max-width: 40%;
299
+ }
300
+ }
301
+ footer .footer-links__title {
302
+ width: 100%;
303
+ text-transform: uppercase;
304
+ font-weight: bold;
305
+ color: var(--primary-main-light-4);
306
+ }
307
+ footer .product-categories {
308
+ cursor: pointer;
309
+ display: flex;
310
+ flex-flow: row wrap;
311
+ align-items: flex-start;
312
+ flex-direction: row;
313
+ justify-content: space-between;
314
+ list-style-type: none;
315
+ font-family: 'Inter', sans-serif;
316
+ font-size: 12px;
317
+ font-stretch: normal;
318
+ font-style: normal;
319
+ line-height: 1.33;
320
+ letter-spacing: -0.3px;
321
+ padding-top: 1rem;
322
+ width: 100%;
323
+ padding-bottom: 0.6rem;
324
+ }
325
+ footer .product-categories:not(:last-child) {
326
+ border-bottom: 1px solid var(--primary-main);
327
+ }
328
+ footer .product-categories:has(.open) {
329
+ padding-bottom: 0;
330
+ }
331
+ footer .expand-icon {
332
+ width: 10px;
333
+ height: 13px;
334
+ transform: rotate(90deg);
335
+ margin-right: 8px;
336
+ }
337
+ footer .expand-icon:before,
338
+ footer .expand-icon:after {
339
+ width: 2px;
340
+ background-color: var(--others-white);
341
+ }
342
+ footer .expand-icon.open {
343
+ transform: rotate(-90deg);
344
+ }
345
+ footer .rotate {
346
+ transform: rotate(180deg);
347
+ }
348
+ footer .list-box {
349
+ background-color: var(--primary-main-dark-1);
350
+ width: 100%;
351
+ padding-left: 0.5rem;
352
+ margin-top: 0.6rem;
353
+ }
354
+ footer .list-products {
355
+ margin: 14px 0;
356
+ }
357
+ footer .findUs__display {
358
+ flex-flow: row nowrap;
359
+ }
360
+ footer .findUs__display ul {
361
+ display: flex;
362
+ flex-wrap: wrap;
363
+ }
364
+ footer .findUs__display ul li {
365
+ margin-right: 1rem;
366
+ }
367
+ @media (min-width: 575px) and (max-width: 960px) {
368
+ footer .footer__company__resources__findUs {
369
+ display: flex;
370
+ flex-direction: column;
371
+ max-width: 30%;
372
+ margin-right: 1.5rem;
373
+ }
374
+ footer .footer__company__resources__findUs p {
375
+ margin-bottom: 1.5rem;
376
+ }
377
+ }
378
+ @media (min-width: 575px) and (max-width: 960px) {
379
+ footer .footer__help__tablet {
380
+ display: block;
381
+ margin-top: 22px;
382
+ }
383
+ }
384
+ footer .footer__help__mobile {
385
+ display: none;
386
+ }
387
+ @media (max-width: 575px) {
388
+ footer .footer__help__mobile {
389
+ display: block;
390
+ }
391
+ }
392
+ footer .footer__media__logos__wrapper {
393
+ width: 84%;
394
+ display: flex;
395
+ justify-content: space-around;
396
+ padding-bottom: 35px;
397
+ flex-wrap: wrap;
398
+ flex-direction: row;
399
+ }
400
+ footer .footer__media__logos__wrapper .logo {
401
+ display: inline-flex;
402
+ padding-left: 20px;
403
+ align-items: center;
404
+ height: 59px;
405
+ }
406
+ footer .footer__media__logos__wrapper .logo:first-child {
407
+ padding-left: 0;
408
+ }
409
+ footer .footer__media__logos__wrapper .logo:last-child {
410
+ padding-right: 0;
411
+ }
412
+ @media (max-width: 720px) {
413
+ footer .footer__media__logos__wrapper .logo:last-child {
414
+ align-items: center;
415
+ padding-right: 20px;
416
+ }
417
+ }
418
+ @media (max-width: 720px) {
419
+ footer .footer__media__logos__wrapper .logo:last-child {
420
+ width: 30%;
421
+ align-self: center;
422
+ display: block;
423
+ height: auto;
424
+ }
425
+ }
426
+ @media (min-width: 720px) and (max-width: 960px) {
427
+ footer .footer__media__logos__wrapper .logo:last-child {
428
+ width: 13%;
429
+ height: 42px;
430
+ }
431
+ }
432
+ @media (max-width: 720px) {
433
+ footer .footer__media__logos__wrapper .logo:nth-child(3) {
434
+ padding-left: 0;
435
+ }
436
+ }
437
+ @media (max-width: 720px) {
438
+ footer .footer__media__logos__wrapper .logo:nth-child(3) {
439
+ width: 30%;
440
+ align-self: center;
441
+ display: block;
442
+ height: 90px;
443
+ }
444
+ }
445
+ @media (max-width: 720px) {
446
+ footer .footer__media__logos__wrapper .logo:nth-child(4) {
447
+ width: 33%;
448
+ margin-top: 10px;
449
+ }
450
+ }
451
+ @media (min-width: 720px) and (max-width: 960px) {
452
+ footer .footer__media__logos__wrapper .logo:nth-child(4) {
453
+ width: 17%;
454
+ }
455
+ }
456
+ @media (max-width: 720px) {
457
+ footer .footer__media__logos__wrapper .logo:nth-child(4) {
458
+ width: 30%;
459
+ align-self: center;
460
+ display: block;
461
+ }
462
+ }
463
+ @media (max-width: 720px) {
464
+ footer .footer__media__logos__wrapper .logo {
465
+ width: 50%;
466
+ }
467
+ }
468
+ @media (max-width: 720px) {
469
+ footer .footer__media__logos__wrapper .logo {
470
+ width: 45%;
471
+ align-self: center;
472
+ display: block;
473
+ }
474
+ }
475
+ @media (min-width: 720px) and (max-width: 960px) {
476
+ footer .footer__media__logos__wrapper .logo {
477
+ width: 25%;
478
+ }
479
+ }
480
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
481
+ footer .footer__media__logos__wrapper .logo .logo__image {
482
+ align-self: center;
483
+ }
484
+ }
485
+ footer .footer__media__logos__wrapper .align__item {
486
+ align-items: flex-end;
487
+ height: 43px;
488
+ }
489
+ footer .footer__media__logos__wrapper .align__item:last-child {
490
+ height: 50px;
491
+ }
492
+ @media (min-width: 720px) and (max-width: 960px) {
493
+ footer .footer__media__logos__wrapper .align__item:last-child {
494
+ height: 43px;
495
+ }
496
+ }
497
+ @media (max-width: 720px) {
498
+ footer .footer__media__logos__wrapper .align__item:last-child {
499
+ height: 90px;
500
+ }
501
+ }
502
+ @media (max-width: 720px) {
503
+ footer .footer__media__logos__wrapper .align__item {
504
+ width: 33%;
505
+ margin-top: 10px;
506
+ align-items: center;
507
+ }
508
+ }
509
+ @media (min-width: 720px) and (max-width: 960px) {
510
+ footer .footer__media__logos__wrapper .align__item {
511
+ width: 17%;
512
+ }
513
+ }
514
+ @media (max-width: 720px) {
515
+ footer .footer__media__logos__wrapper {
516
+ width: 100%;
517
+ padding-bottom: 15px;
518
+ flex-wrap: wrap;
519
+ }
520
+ }
521
+ @media (min-width: 720px) and (max-width: 960px) {
522
+ footer .footer__media__logos__wrapper {
523
+ width: 95%;
524
+ padding-bottom: 15px;
525
+ }
526
+ }
527
+ footer .separator {
528
+ display: block;
529
+ width: 84%;
530
+ height: 1px;
531
+ background-color: var(--primary-main-light-1);
532
+ margin-bottom: 30px;
533
+ }
534
+ @media (max-width: 720px) {
535
+ footer .separator {
536
+ width: 100%;
537
+ }
538
+ }
539
+ @media (min-width: 720px) and (max-width: 960px) {
540
+ footer .separator {
541
+ width: 95%;
542
+ }
543
+ }
544
+ footer .find-us-container {
545
+ display: flex;
546
+ }
547
+ @media (min-width: 720px) {
548
+ footer .find-us-container {
549
+ flex-direction: column;
550
+ }
551
+ }
552
+ footer .find-us-content {
553
+ display: flex;
554
+ flex-direction: column;
555
+ width: 45%;
556
+ margin-right: 1rem;
557
+ }
558
+ @media (min-width: 575px) and (max-width: 960px) {
559
+ footer .find-us-content {
560
+ width: 100%;
561
+ margin-right: 0;
562
+ }
563
+ }
564
+ @media (min-width: 960px) {
565
+ footer .find-us-content {
566
+ width: 90%;
567
+ max-width: 90%;
568
+ margin-right: 0;
569
+ }
570
+ }
571
+ footer .find-us-content img {
572
+ width: 24px;
573
+ height: 24px;
574
+ }
575
+ footer .footer-trustpilot {
576
+ display: none;
577
+ }
578
+ @media (min-width: 720px) {
579
+ footer .footer-trustpilot {
580
+ display: flex;
581
+ }
582
+ }
583
+ footer .footer-trustpilot-mobile {
584
+ display: flex;
585
+ width: 100%;
586
+ margin: 1rem 0 2rem 0;
587
+ }
588
+ @media (min-width: 720px) {
589
+ footer .footer-trustpilot-mobile {
590
+ display: none;
591
+ }
592
+ }
593
+ /* Diferencias en prefooter */
594
+ .prefooter {
595
+ background-color: var(--primary-main-light-5); /* Color diferente */
596
+ }
597
+ .prefooter--columns p {
598
+ color: var(--neutral-neutral-2); /* Color diferente */
599
+ }
600
+
601
+ /* Adiciones en footer */
602
+ footer {
603
+ /*LEG-5512: A/B*/
604
+ }
605
+
606
+ footer .desktop_view .bottom-text-link {
607
+ text-decoration: underline;
608
+ }
609
+
610
+ footer .wide-info-bar.green {
611
+ background-color: var(--neutral-neutral-6);
612
+ color: var(--neutral-neutral-1);
613
+ }
614
+
615
+ footer .footer__wrapper.hideMobile {
616
+ display: none;
617
+ }
618
+ @media (min-width: 720px) {
619
+ footer .footer__wrapper.hideMobile {
620
+ display: flex;
621
+ }
622
+ }
623
+
624
+ footer .footer__logo {
625
+ width: 45%;
626
+ max-width: 45%;
627
+ display: flex;
628
+ }
629
+ @media (min-width: 720px) {
630
+ footer .footer__logo {
631
+ width: 100%;
632
+ max-width: 100%;
633
+ margin-bottom: 2rem;
634
+ align-items: center;
635
+ }
636
+ }
637
+
638
+ footer .footer__products .products__list,
639
+ footer .footer__popular-documents .products__list,
640
+ footer .footer__company .products__list {
641
+ top: 2.2rem;
642
+ right: 0;
643
+ }
644
+
645
+ footer .footer__products .products__list .icon-arrow,
646
+ footer .footer__popular-documents .products__list .icon-arrow,
647
+ footer .footer__company .products__list .icon-arrow {
648
+ width: 0.625rem;
649
+ height: 0.813rem;
650
+ }
651
+
652
+ footer .footer__products .products__list .icon-arrow::before,
653
+ footer .footer__popular-documents .products__list .icon-arrow::before,
654
+ footer .footer__company .products__list .icon-arrow::before {
655
+ top: 0;
656
+ transform: rotate(-45deg);
657
+ }
658
+
659
+ footer .footer__products .products__list .icon-arrow::after,
660
+ footer .footer__popular-documents .products__list .icon-arrow::after,
661
+ footer .footer__company .products__list .icon-arrow::after {
662
+ bottom: 0;
663
+ transform: rotate(45deg);
664
+ }
665
+
666
+ footer .footer__products .products__list .icon-arrow::before,
667
+ footer .footer__products .products__list .icon-arrow::after,
668
+ footer .footer__popular-documents .products__list .icon-arrow::before,
669
+ footer .footer__popular-documents .products__list .icon-arrow::after,
670
+ footer .footer__company .products__list .icon-arrow::before,
671
+ footer .footer__company .products__list .icon-arrow::after {
672
+ height: 64%;
673
+ left: 50%;
674
+ content: '';
675
+ position: absolute;
676
+ }
677
+
678
+ footer .footer__products .products__list::marker,
679
+ footer .footer__popular-documents .products__list::marker,
680
+ footer .footer__company .products__list::marker {
681
+ content: none;
682
+ }
683
+
684
+ footer .footer__products .products__list:hover .icon-arrow:before,
685
+ footer .footer__products .products__list:hover .icon-arrow:after,
686
+ footer .footer__popular-documents .products__list:hover .icon-arrow:before,
687
+ footer .footer__popular-documents .products__list:hover .icon-arrow:after,
688
+ footer .footer__company .products__list:hover .icon-arrow:before,
689
+ footer .footer__company .products__list:hover .icon-arrow:after {
690
+ background-color: var(--others-white);
691
+ }
692
+
693
+ footer .separation-line {
694
+ width: 100%;
695
+ height: 1px;
696
+ background-color: var(--primary-main);
697
+ margin-bottom: 0.5rem;
698
+ }
699
+
700
+ footer .footer__mobile-contact {
701
+ display: block;
702
+ width: 100%;
703
+ }
704
+ @media (min-width: 720px) {
705
+ footer .footer__mobile-contact {
706
+ display: none;
707
+ }
708
+ }
709
+
710
+ footer .footer__findus__mobile {
711
+ display: none;
712
+ }
713
+ @media (max-width: 720px) {
714
+ footer .footer__findus__mobile {
715
+ display: block;
716
+ }
717
+ footer .footer__findus__mobile ul {
718
+ display: flex;
719
+ }
720
+ footer .footer__findus__mobile ul li {
721
+ width: inherit;
722
+ margin-right: 1rem;
723
+ }
724
+ }
725
+
726
+ footer .find-us-container .contact-box-container {
727
+ display: none;
728
+ }
729
+ @media (min-width: 720px) {
730
+ footer .find-us-container .contact-box-container {
731
+ display: block;
732
+ }
733
+ }
734
+ footer .find-us-container .contact-box-container .contact-box__phone {
735
+ color: var(--others-white);
736
+ }
737
+ footer .find-us-container .contact-box-container .contact-box__schedule {
738
+ color: var(--neutral-neutral-3);
739
+ }
740
+ footer .footer-contact-box_schedule {
741
+ color: var(--others-white);
742
+ padding-bottom: 1rem;
743
+ }
744
+ .contact-bar-wrapper {
745
+ display: flex;
746
+ align-items: center;
747
+ }
748
+ .contact-bar-wrapper.hidden {
749
+ display: none;
750
+ }
751
+ .contact-bar-wrapper__text {
752
+ width: -moz-max-content;
753
+ width: max-content;
754
+ margin: 0.25rem;
755
+ }
756
+ @media (min-width: 720px) {
757
+ .contact-bar-wrapper__text {
758
+ margin: 1rem 0.5rem;
759
+ }
760
+ }
761
+ .contact-bar-wrapper__text .phone {
762
+ color: var(--neutral-neutral-1);
763
+ }
764
+ .contact-bar-wrapper__text .is-mobile {
765
+ display: inline;
766
+ }
767
+ @media (min-width: 720px) {
768
+ .contact-bar-wrapper__text .is-mobile {
769
+ display: none;
770
+ }
771
+ }
772
+ .contact-bar-wrapper .is-mobile {
773
+ display: flex;
774
+ display: inline-table;
775
+ }
776
+ @media (min-width: 720px) {
777
+ .contact-bar-wrapper .is-mobile {
778
+ display: none;
779
+ }
780
+ }
781
+ .contact-bar-wrapper .no-mobile {
782
+ display: none;
783
+ }
784
+ @media (min-width: 720px) {
785
+ .contact-bar-wrapper .no-mobile {
786
+ display: inline;
787
+ white-space: normal;
788
+ word-wrap: break-word;
789
+ }
790
+ }
791
+ .contact-bar-wrapper .no-mobile .phone {
792
+ color: var(--primary-main-dark-1);
793
+ }
794
+ .wide-info-bar {
795
+ &__wrapper {
796
+ display: flex;
797
+ flex-flow: column nowrap;
798
+ justify-content: space-between;
799
+ padding: 1rem 2rem;
800
+
801
+ @media (min-width: 720px) {
802
+ flex-flow: row;
803
+ font-size: 0.9rem;
804
+ padding: 0;
805
+ }
806
+
807
+ @media {
808
+ padding: 0;
809
+ }
810
+ }
811
+ }
812
+ @media (min-width: 720px) {
813
+ .footer-contact-box-button,
814
+ .footer-mobile-contact-box-button {
815
+ display: none !important;
816
+ }
817
+ }
818
+ .footer-contact-box_phone,
819
+ .footer-mobile-contact-box_phone {
820
+ display: none;
821
+ font-size: 0.9rem;
822
+ font-weight: bold;
823
+ }
824
+ @media (min-width: 720px) {
825
+ .footer-contact-box_phone,
826
+ .footer-mobile-contact-box_phone {
827
+ display: flex;
828
+ }
829
+ }
830
+ footer .footer-contact-box_schedule {
831
+ color: var(--others-white);
832
+ padding-bottom: 1rem;
833
+ }
834
+ .footer-contact-box_schedule,
835
+ .footer-mobile-contact-box_schedule {
836
+ color: var(--neutral-neutral-3);
837
+ font-size: 1rem;
838
+ text-align: center;
839
+ margin: 0.5rem 0;
840
+ }
841
+ @media (min-width: 720px) {
842
+ .footer-contact-box_schedule,
843
+ .footer-mobile-contact-box_schedule {
844
+ font-size: 0.8rem;
845
+ text-align: left;
846
+ margin: 0;
847
+ max-width: 12rem;
848
+ }
849
+ }
850
+ .footer-mobile-contact-box {
851
+ display: flex;
852
+ }
853
+ @media (min-width: 720px) {
854
+ .footer-mobile-contact-box {
855
+ display: none;
856
+ }
857
+ }
858
+ footer .expand-icon:before,
859
+ footer .expand-icon:after {
860
+ width: 2px;
861
+ background-color: var(--others-white);
862
+ left: 50%;
863
+ height: 64%;
864
+ }
865
+ .icon-arrow:before {
866
+ top: 0;
867
+ transform: rotate(-45deg);
868
+ }
869
+ .icon-arrow:after {
870
+ bottom: 0;
871
+ transform: rotate(45deg);
872
+ }
873
+ .icon-arrow:before,
874
+ .icon-arrow:after {
875
+ left: 50%;
876
+ height: 64%;
877
+ }
878
+ .icon:before,
879
+ .icon-cross:before,
880
+ .icon-arrow:before,
881
+ .icon:after,
882
+ .icon-cross:after,
883
+ .icon-arrow:after {
884
+ content: '';
885
+ position: absolute;
886
+ background-color: black;
887
+ width: 3px;
888
+ height: 100%;
889
+ }
890
+ .footer-contact-box {
891
+ display: none;
892
+ }
893
+ @media (min-width: 720px) {
894
+ .footer-contact-box {
895
+ display: flex;
896
+ }
897
+ }
898
+
899
+ .footer-mobile-contact-box {
900
+ display: flex;
901
+ }
902
+ @media (min-width: 720px) {
903
+ .footer-mobile-contact-box {
904
+ display: none;
905
+ }
906
+ }
907
+
908
+ .footer-contact-box,
909
+ .footer-mobile-contact-box {
910
+ flex-flow: column;
911
+ width: 100%;
912
+ margin-bottom: 16px;
913
+ }
914
+ @media (min-width: 720px) {
915
+ .footer-contact-box,
916
+ .footer-mobile-contact-box {
917
+ width: auto;
918
+ margin-bottom: 6px;
919
+ }
920
+ }
921
+ .footer-contact-box_phone,
922
+ .footer-mobile-contact-box_phone {
923
+ display: none;
924
+ font-size: 0.9rem;
925
+ font-weight: bold;
926
+ }
927
+ @media (min-width: 720px) {
928
+ .footer-contact-box_phone,
929
+ .footer-mobile-contact-box_phone {
930
+ display: flex;
931
+ }
932
+ }
933
+ .footer-contact-box-button,
934
+ .footer-mobile-contact-box-button {
935
+ display: flex;
936
+ justify-content: center;
937
+ width: 100%;
938
+ }
939
+ .footer-contact-box-button:before,
940
+ .footer-mobile-contact-box-button:before {
941
+ content: '';
942
+ width: 20px;
943
+ height: 20px;
944
+ background: url('../../../assets/images/svg/icon-web-24-p.svg');
945
+ margin-right: 0.5rem;
946
+ }
947
+ @media (min-width: 720px) {
948
+ .footer-contact-box-button,
949
+ .footer-mobile-contact-box-button {
950
+ display: none !important;
951
+ }
952
+ }
953
+ .footer-contact-box_schedule,
954
+ .footer-mobile-contact-box_schedule {
955
+ color: var(--neutral-neutral-3);
956
+ font-size: 1rem;
957
+ text-align: center;
958
+ margin: 0.5rem 0;
959
+ }
960
+ @media (min-width: 720px) {
961
+ .footer-contact-box_schedule,
962
+ .footer-mobile-contact-box_schedule {
963
+ font-size: 0.8rem;
964
+ text-align: left;
965
+ margin: 0;
966
+ max-width: 12rem;
967
+ }
968
+ }
969
+ `;