@npm_leadtech/legal-lib-components 5.25.0 → 5.26.1-f

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