@npm_leadtech/legal-lib-components 5.26.1 → 5.26.2-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.
- package/dist/images/componentsSvg/IconWeb.d.ts +2 -0
- package/dist/images/componentsSvg/IconWeb.js +4 -0
- package/dist/images/componentsSvg/IconWeb.tsx +31 -0
- package/dist/images/componentsSvg/PhoneIcon.d.ts +6 -0
- package/dist/images/componentsSvg/PhoneIcon.js +4 -0
- package/dist/images/componentsSvg/PhoneIcon.tsx +18 -0
- package/dist/images/componentsSvg/PhoneIcon24px.tsx +4 -2
- package/dist/images/svg/facebook.svg +4 -0
- package/dist/images/svg/icon-24-px-satisfaction-grey.svg +3 -0
- package/dist/images/svg/icon-24-px-security_black.svg +3 -0
- package/dist/images/svg/linkedin.svg +4 -0
- package/dist/images/svg/pinterest.svg +4 -0
- package/dist/images/svg/x.svg +4 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.d.ts +3 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.js +73 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.d.ts +1 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.js +891 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.ts +892 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.tsx +305 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooterProps.d.ts +71 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooterProps.js +1 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooterProps.ts +73 -0
- package/dist/src/components/atoms/FixedFooter/index.d.ts +2 -0
- package/dist/src/components/atoms/FixedFooter/index.js +2 -0
- package/dist/src/components/atoms/FixedFooter/index.ts +2 -0
- package/dist/src/components/atoms/PreFooter/PreFooter.d.ts +3 -0
- package/dist/src/components/atoms/PreFooter/PreFooter.js +8 -0
- package/dist/src/components/atoms/PreFooter/PreFooter.styled.d.ts +1 -0
- package/dist/src/components/atoms/PreFooter/PreFooter.styled.js +43 -0
- package/dist/src/components/atoms/PreFooter/PreFooter.styled.ts +43 -0
- package/dist/src/components/atoms/PreFooter/PreFooter.tsx +34 -0
- package/dist/src/components/atoms/PreFooter/PreFooterProps.d.ts +8 -0
- package/dist/src/components/atoms/PreFooter/PreFooterProps.js +1 -0
- package/dist/src/components/atoms/PreFooter/PreFooterProps.ts +8 -0
- package/dist/src/components/atoms/PreFooter/index.d.ts +2 -0
- package/dist/src/components/atoms/PreFooter/index.js +2 -0
- package/dist/src/components/atoms/PreFooter/index.ts +2 -0
- package/dist/src/components/atoms/index.d.ts +2 -0
- package/dist/src/components/atoms/index.js +2 -0
- package/dist/src/components/atoms/index.ts +2 -0
- package/dist/src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.styled.js +1 -1
- package/dist/src/components/pages/ErrorRatafiaPage/ErrorRatafiaPage.styled.ts +1 -1
- package/dist/src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.js +1 -7
- package/dist/src/components/pages/KeyFactsResultRatafiaPage/KeyFactsResultRatafiaPage.styled.ts +1 -7
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,891 @@
|
|
|
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-weight: bold;
|
|
318
|
+
font-stretch: normal;
|
|
319
|
+
font-style: normal;
|
|
320
|
+
line-height: 1.33;
|
|
321
|
+
letter-spacing: -0.3px;
|
|
322
|
+
padding-top: 1rem;
|
|
323
|
+
width: 100%;
|
|
324
|
+
padding-bottom: 0.6rem;
|
|
325
|
+
}
|
|
326
|
+
footer .product-categories:not(:last-child) {
|
|
327
|
+
border-bottom: 1px solid var(--primary-main);
|
|
328
|
+
}
|
|
329
|
+
footer .product-categories:has(.open) {
|
|
330
|
+
padding-bottom: 0;
|
|
331
|
+
}
|
|
332
|
+
footer .expand-icon {
|
|
333
|
+
width: 10px;
|
|
334
|
+
height: 13px;
|
|
335
|
+
transform: rotate(90deg);
|
|
336
|
+
margin-right: 8px;
|
|
337
|
+
}
|
|
338
|
+
footer .expand-icon:before,
|
|
339
|
+
footer .expand-icon:after {
|
|
340
|
+
width: 2px;
|
|
341
|
+
background-color: var(--others-white);
|
|
342
|
+
}
|
|
343
|
+
footer .expand-icon.open {
|
|
344
|
+
transform: rotate(-90deg);
|
|
345
|
+
}
|
|
346
|
+
footer .rotate {
|
|
347
|
+
transform: rotate(180deg);
|
|
348
|
+
}
|
|
349
|
+
footer .list-box {
|
|
350
|
+
background-color: var(--primary-main-dark-1);
|
|
351
|
+
width: 100%;
|
|
352
|
+
padding-left: 0.5rem;
|
|
353
|
+
margin-top: 0.6rem;
|
|
354
|
+
}
|
|
355
|
+
footer .list-products {
|
|
356
|
+
margin: 14px 0;
|
|
357
|
+
}
|
|
358
|
+
footer .findUs__display {
|
|
359
|
+
flex-flow: row nowrap;
|
|
360
|
+
}
|
|
361
|
+
footer .findUs__display ul {
|
|
362
|
+
display: flex;
|
|
363
|
+
flex-wrap: wrap;
|
|
364
|
+
}
|
|
365
|
+
footer .findUs__display ul li {
|
|
366
|
+
margin-right: 1rem;
|
|
367
|
+
}
|
|
368
|
+
@media (min-width: 575px) and (max-width: 960px) {
|
|
369
|
+
footer .footer__company__resources__findUs {
|
|
370
|
+
display: flex;
|
|
371
|
+
flex-direction: column;
|
|
372
|
+
max-width: 30%;
|
|
373
|
+
margin-right: 1.5rem;
|
|
374
|
+
}
|
|
375
|
+
footer .footer__company__resources__findUs p {
|
|
376
|
+
margin-bottom: 1.5rem;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
@media (min-width: 575px) and (max-width: 960px) {
|
|
380
|
+
footer .footer__help__tablet {
|
|
381
|
+
display: block;
|
|
382
|
+
margin-top: 22px;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
footer .footer__help__mobile {
|
|
386
|
+
display: none;
|
|
387
|
+
}
|
|
388
|
+
@media (max-width: 575px) {
|
|
389
|
+
footer .footer__help__mobile {
|
|
390
|
+
display: block;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
footer .footer__media__logos__wrapper {
|
|
394
|
+
width: 84%;
|
|
395
|
+
display: flex;
|
|
396
|
+
justify-content: space-around;
|
|
397
|
+
padding-bottom: 35px;
|
|
398
|
+
flex-wrap: wrap;
|
|
399
|
+
flex-direction: row;
|
|
400
|
+
}
|
|
401
|
+
footer .footer__media__logos__wrapper .logo {
|
|
402
|
+
display: inline-flex;
|
|
403
|
+
padding-left: 20px;
|
|
404
|
+
align-items: center;
|
|
405
|
+
height: 59px;
|
|
406
|
+
}
|
|
407
|
+
footer .footer__media__logos__wrapper .logo:first-child {
|
|
408
|
+
padding-left: 0;
|
|
409
|
+
}
|
|
410
|
+
footer .footer__media__logos__wrapper .logo:last-child {
|
|
411
|
+
padding-right: 0;
|
|
412
|
+
}
|
|
413
|
+
@media (max-width: 720px) {
|
|
414
|
+
footer .footer__media__logos__wrapper .logo:last-child {
|
|
415
|
+
align-items: center;
|
|
416
|
+
padding-right: 20px;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
@media (max-width: 720px) {
|
|
420
|
+
footer .footer__media__logos__wrapper .logo:last-child {
|
|
421
|
+
width: 30%;
|
|
422
|
+
align-self: center;
|
|
423
|
+
display: block;
|
|
424
|
+
height: auto;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
428
|
+
footer .footer__media__logos__wrapper .logo:last-child {
|
|
429
|
+
width: 13%;
|
|
430
|
+
height: 42px;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
@media (max-width: 720px) {
|
|
434
|
+
footer .footer__media__logos__wrapper .logo:nth-child(3) {
|
|
435
|
+
padding-left: 0;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
@media (max-width: 720px) {
|
|
439
|
+
footer .footer__media__logos__wrapper .logo:nth-child(3) {
|
|
440
|
+
width: 30%;
|
|
441
|
+
align-self: center;
|
|
442
|
+
display: block;
|
|
443
|
+
height: 90px;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
@media (max-width: 720px) {
|
|
447
|
+
footer .footer__media__logos__wrapper .logo:nth-child(4) {
|
|
448
|
+
width: 33%;
|
|
449
|
+
margin-top: 10px;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
453
|
+
footer .footer__media__logos__wrapper .logo:nth-child(4) {
|
|
454
|
+
width: 17%;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
@media (max-width: 720px) {
|
|
458
|
+
footer .footer__media__logos__wrapper .logo:nth-child(4) {
|
|
459
|
+
width: 30%;
|
|
460
|
+
align-self: center;
|
|
461
|
+
display: block;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
@media (max-width: 720px) {
|
|
465
|
+
footer .footer__media__logos__wrapper .logo {
|
|
466
|
+
width: 50%;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
@media (max-width: 720px) {
|
|
470
|
+
footer .footer__media__logos__wrapper .logo {
|
|
471
|
+
width: 45%;
|
|
472
|
+
align-self: center;
|
|
473
|
+
display: block;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
477
|
+
footer .footer__media__logos__wrapper .logo {
|
|
478
|
+
width: 25%;
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
482
|
+
footer .footer__media__logos__wrapper .logo .logo__image {
|
|
483
|
+
align-self: center;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
footer .footer__media__logos__wrapper .align__item {
|
|
487
|
+
align-items: flex-end;
|
|
488
|
+
height: 43px;
|
|
489
|
+
}
|
|
490
|
+
footer .footer__media__logos__wrapper .align__item:last-child {
|
|
491
|
+
height: 50px;
|
|
492
|
+
}
|
|
493
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
494
|
+
footer .footer__media__logos__wrapper .align__item:last-child {
|
|
495
|
+
height: 43px;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
@media (max-width: 720px) {
|
|
499
|
+
footer .footer__media__logos__wrapper .align__item:last-child {
|
|
500
|
+
height: 90px;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
@media (max-width: 720px) {
|
|
504
|
+
footer .footer__media__logos__wrapper .align__item {
|
|
505
|
+
width: 33%;
|
|
506
|
+
margin-top: 10px;
|
|
507
|
+
align-items: center;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
511
|
+
footer .footer__media__logos__wrapper .align__item {
|
|
512
|
+
width: 17%;
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
@media (max-width: 720px) {
|
|
516
|
+
footer .footer__media__logos__wrapper {
|
|
517
|
+
width: 100%;
|
|
518
|
+
padding-bottom: 15px;
|
|
519
|
+
flex-wrap: wrap;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
523
|
+
footer .footer__media__logos__wrapper {
|
|
524
|
+
width: 95%;
|
|
525
|
+
padding-bottom: 15px;
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
footer .separator {
|
|
529
|
+
display: block;
|
|
530
|
+
width: 84%;
|
|
531
|
+
height: 1px;
|
|
532
|
+
background-color: var(--primary-main-light-1);
|
|
533
|
+
margin-bottom: 30px;
|
|
534
|
+
}
|
|
535
|
+
@media (max-width: 720px) {
|
|
536
|
+
footer .separator {
|
|
537
|
+
width: 100%;
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
@media (min-width: 720px) and (max-width: 960px) {
|
|
541
|
+
footer .separator {
|
|
542
|
+
width: 95%;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
footer .find-us-container {
|
|
546
|
+
display: flex;
|
|
547
|
+
}
|
|
548
|
+
@media (min-width: 720px) {
|
|
549
|
+
footer .find-us-container {
|
|
550
|
+
flex-direction: column;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
footer .find-us-content {
|
|
554
|
+
display: flex;
|
|
555
|
+
flex-direction: column;
|
|
556
|
+
width: 45%;
|
|
557
|
+
margin-right: 1rem;
|
|
558
|
+
}
|
|
559
|
+
@media (min-width: 575px) and (max-width: 960px) {
|
|
560
|
+
footer .find-us-content {
|
|
561
|
+
width: 100%;
|
|
562
|
+
margin-right: 0;
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
@media (min-width: 960px) {
|
|
566
|
+
footer .find-us-content {
|
|
567
|
+
width: 90%;
|
|
568
|
+
max-width: 90%;
|
|
569
|
+
margin-right: 0;
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
footer .find-us-content img {
|
|
573
|
+
width: 24px;
|
|
574
|
+
height: 24px;
|
|
575
|
+
}
|
|
576
|
+
footer .footer-trustpilot {
|
|
577
|
+
display: none;
|
|
578
|
+
}
|
|
579
|
+
@media (min-width: 720px) {
|
|
580
|
+
footer .footer-trustpilot {
|
|
581
|
+
display: flex;
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
footer .footer-trustpilot-mobile {
|
|
585
|
+
display: flex;
|
|
586
|
+
width: 100%;
|
|
587
|
+
margin: 1rem 0 2rem 0;
|
|
588
|
+
}
|
|
589
|
+
@media (min-width: 720px) {
|
|
590
|
+
footer .footer-trustpilot-mobile {
|
|
591
|
+
display: none;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
/* Diferencias en prefooter */
|
|
595
|
+
.prefooter {
|
|
596
|
+
background-color: var(--primary-main-light-5); /* Color diferente */
|
|
597
|
+
}
|
|
598
|
+
.prefooter--columns p {
|
|
599
|
+
color: var(--neutral-neutral-2); /* Color diferente */
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
/* Adiciones en footer */
|
|
603
|
+
footer {
|
|
604
|
+
/*LEG-5512: A/B*/
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
footer .desktop_view .bottom-text-link {
|
|
608
|
+
text-decoration: underline;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
footer .wide-info-bar.green {
|
|
612
|
+
background-color: var(--neutral-neutral-6);
|
|
613
|
+
color: var(--neutral-neutral-1);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
footer .footer__wrapper.hideMobile {
|
|
617
|
+
display: none;
|
|
618
|
+
}
|
|
619
|
+
@media (min-width: 720px) {
|
|
620
|
+
footer .footer__wrapper.hideMobile {
|
|
621
|
+
display: flex;
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
footer .footer__logo {
|
|
626
|
+
width: 45%;
|
|
627
|
+
max-width: 45%;
|
|
628
|
+
display: flex;
|
|
629
|
+
}
|
|
630
|
+
@media (min-width: 720px) {
|
|
631
|
+
footer .footer__logo {
|
|
632
|
+
width: 100%;
|
|
633
|
+
max-width: 100%;
|
|
634
|
+
margin-bottom: 2rem;
|
|
635
|
+
align-items: center;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
footer .footer__products .products__list,
|
|
640
|
+
footer .footer__popular-documents .products__list,
|
|
641
|
+
footer .footer__company .products__list {
|
|
642
|
+
top: 2.2rem;
|
|
643
|
+
right: 0;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
footer .footer__products .products__list .icon-arrow,
|
|
647
|
+
footer .footer__popular-documents .products__list .icon-arrow,
|
|
648
|
+
footer .footer__company .products__list .icon-arrow {
|
|
649
|
+
width: 0.625rem;
|
|
650
|
+
height: 0.813rem;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
footer .footer__products .products__list .icon-arrow::before,
|
|
654
|
+
footer .footer__popular-documents .products__list .icon-arrow::before,
|
|
655
|
+
footer .footer__company .products__list .icon-arrow::before {
|
|
656
|
+
top: 0;
|
|
657
|
+
transform: rotate(-45deg);
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
footer .footer__products .products__list .icon-arrow::after,
|
|
661
|
+
footer .footer__popular-documents .products__list .icon-arrow::after,
|
|
662
|
+
footer .footer__company .products__list .icon-arrow::after {
|
|
663
|
+
bottom: 0;
|
|
664
|
+
transform: rotate(45deg);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
footer .footer__products .products__list .icon-arrow::before,
|
|
668
|
+
footer .footer__products .products__list .icon-arrow::after,
|
|
669
|
+
footer .footer__popular-documents .products__list .icon-arrow::before,
|
|
670
|
+
footer .footer__popular-documents .products__list .icon-arrow::after,
|
|
671
|
+
footer .footer__company .products__list .icon-arrow::before,
|
|
672
|
+
footer .footer__company .products__list .icon-arrow::after {
|
|
673
|
+
height: 64%;
|
|
674
|
+
left: 50%;
|
|
675
|
+
content: '';
|
|
676
|
+
position: absolute;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
footer .footer__products .products__list::marker,
|
|
680
|
+
footer .footer__popular-documents .products__list::marker,
|
|
681
|
+
footer .footer__company .products__list::marker {
|
|
682
|
+
content: none;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
footer .footer__products .products__list:hover .icon-arrow:before,
|
|
686
|
+
footer .footer__products .products__list:hover .icon-arrow:after,
|
|
687
|
+
footer .footer__popular-documents .products__list:hover .icon-arrow:before,
|
|
688
|
+
footer .footer__popular-documents .products__list:hover .icon-arrow:after,
|
|
689
|
+
footer .footer__company .products__list:hover .icon-arrow:before,
|
|
690
|
+
footer .footer__company .products__list:hover .icon-arrow:after {
|
|
691
|
+
background-color: var(--others-white);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
footer .separation-line {
|
|
695
|
+
width: 100%;
|
|
696
|
+
height: 1px;
|
|
697
|
+
background-color: var(--primary-main);
|
|
698
|
+
margin-bottom: 0.5rem;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
footer .footer__mobile-contact {
|
|
702
|
+
display: block;
|
|
703
|
+
width: 100%;
|
|
704
|
+
}
|
|
705
|
+
@media (min-width: 720px) {
|
|
706
|
+
footer .footer__mobile-contact {
|
|
707
|
+
display: none;
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
footer .footer__findus__mobile {
|
|
712
|
+
display: none;
|
|
713
|
+
}
|
|
714
|
+
@media (max-width: 720px) {
|
|
715
|
+
footer .footer__findus__mobile {
|
|
716
|
+
display: block;
|
|
717
|
+
}
|
|
718
|
+
footer .footer__findus__mobile ul {
|
|
719
|
+
display: flex;
|
|
720
|
+
}
|
|
721
|
+
footer .footer__findus__mobile ul li {
|
|
722
|
+
width: inherit;
|
|
723
|
+
margin-right: 1rem;
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
footer .find-us-container .contact-box-container {
|
|
728
|
+
display: none;
|
|
729
|
+
}
|
|
730
|
+
@media (min-width: 720px) {
|
|
731
|
+
footer .find-us-container .contact-box-container {
|
|
732
|
+
display: block;
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
footer .find-us-container .contact-box-container .contact-box__phone {
|
|
736
|
+
color: var(--others-white);
|
|
737
|
+
}
|
|
738
|
+
footer .find-us-container .contact-box-container .contact-box__schedule {
|
|
739
|
+
color: var(--neutral-neutral-3);
|
|
740
|
+
}
|
|
741
|
+
footer .footer-contact-box_schedule {
|
|
742
|
+
color: var(--others-white);
|
|
743
|
+
padding-bottom: 1rem;
|
|
744
|
+
}
|
|
745
|
+
.contact-bar-wrapper {
|
|
746
|
+
display: flex;
|
|
747
|
+
align-items: center;
|
|
748
|
+
}
|
|
749
|
+
.contact-bar-wrapper.hidden {
|
|
750
|
+
display: none;
|
|
751
|
+
}
|
|
752
|
+
.contact-bar-wrapper__text {
|
|
753
|
+
width: -moz-max-content;
|
|
754
|
+
width: max-content;
|
|
755
|
+
margin: 0.25rem;
|
|
756
|
+
}
|
|
757
|
+
@media (min-width: 720px) {
|
|
758
|
+
.contact-bar-wrapper__text {
|
|
759
|
+
margin: 1rem 0.5rem;
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
.contact-bar-wrapper__text .phone {
|
|
763
|
+
color: var(--neutral-neutral-1);
|
|
764
|
+
}
|
|
765
|
+
.contact-bar-wrapper__text .is-mobile {
|
|
766
|
+
display: inline;
|
|
767
|
+
}
|
|
768
|
+
@media (min-width: 720px) {
|
|
769
|
+
.contact-bar-wrapper__text .is-mobile {
|
|
770
|
+
display: none;
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
.contact-bar-wrapper .is-mobile {
|
|
774
|
+
display: flex;
|
|
775
|
+
display: inline-table;
|
|
776
|
+
}
|
|
777
|
+
@media (min-width: 720px) {
|
|
778
|
+
.contact-bar-wrapper .is-mobile {
|
|
779
|
+
display: none;
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
.contact-bar-wrapper .no-mobile {
|
|
783
|
+
display: none;
|
|
784
|
+
}
|
|
785
|
+
@media (min-width: 720px) {
|
|
786
|
+
.contact-bar-wrapper .no-mobile {
|
|
787
|
+
display: inline;
|
|
788
|
+
white-space: normal;
|
|
789
|
+
word-wrap: break-word;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
.contact-bar-wrapper .no-mobile .phone {
|
|
793
|
+
color: var(--primary-main-dark-1);
|
|
794
|
+
}
|
|
795
|
+
.wide-info-bar {
|
|
796
|
+
&__wrapper {
|
|
797
|
+
display: flex;
|
|
798
|
+
flex-flow: column nowrap;
|
|
799
|
+
justify-content: space-between;
|
|
800
|
+
padding: 1rem 2rem;
|
|
801
|
+
|
|
802
|
+
@media (min-width: 720px) {
|
|
803
|
+
flex-flow: row;
|
|
804
|
+
font-size: 0.9rem;
|
|
805
|
+
padding: 0;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
@media {
|
|
809
|
+
padding: 0;
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
@media (min-width: 720px) {
|
|
814
|
+
.footer-contact-box-button,
|
|
815
|
+
.footer-mobile-contact-box-button {
|
|
816
|
+
display: none !important;
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
.footer-contact-box_phone,
|
|
820
|
+
.footer-mobile-contact-box_phone {
|
|
821
|
+
display: none;
|
|
822
|
+
font-size: 0.9rem;
|
|
823
|
+
font-weight: bold;
|
|
824
|
+
}
|
|
825
|
+
@media (min-width: 720px) {
|
|
826
|
+
.footer-contact-box_phone,
|
|
827
|
+
.footer-mobile-contact-box_phone {
|
|
828
|
+
display: flex;
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
footer .footer-contact-box_schedule {
|
|
832
|
+
color: var(--others-white);
|
|
833
|
+
padding-bottom: 1rem;
|
|
834
|
+
}
|
|
835
|
+
.footer-contact-box_schedule,
|
|
836
|
+
.footer-mobile-contact-box_schedule {
|
|
837
|
+
color: var(--neutral-neutral-3);
|
|
838
|
+
font-size: 1rem;
|
|
839
|
+
text-align: center;
|
|
840
|
+
margin: 0.5rem 0;
|
|
841
|
+
}
|
|
842
|
+
@media (min-width: 720px) {
|
|
843
|
+
.footer-contact-box_schedule,
|
|
844
|
+
.footer-mobile-contact-box_schedule {
|
|
845
|
+
font-size: 0.8rem;
|
|
846
|
+
text-align: left;
|
|
847
|
+
margin: 0;
|
|
848
|
+
max-width: 12rem;
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
.footer-mobile-contact-box {
|
|
852
|
+
display: flex;
|
|
853
|
+
}
|
|
854
|
+
@media (min-width: 720px) {
|
|
855
|
+
.footer-mobile-contact-box {
|
|
856
|
+
display: none;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
footer .expand-icon:before,
|
|
860
|
+
footer .expand-icon:after {
|
|
861
|
+
width: 2px;
|
|
862
|
+
background-color: var(--others-white);
|
|
863
|
+
left: 50%;
|
|
864
|
+
height: 64%;
|
|
865
|
+
}
|
|
866
|
+
.icon-arrow:before {
|
|
867
|
+
top: 0;
|
|
868
|
+
transform: rotate(-45deg);
|
|
869
|
+
}
|
|
870
|
+
.icon-arrow:after {
|
|
871
|
+
bottom: 0;
|
|
872
|
+
transform: rotate(45deg);
|
|
873
|
+
}
|
|
874
|
+
.icon-arrow:before,
|
|
875
|
+
.icon-arrow:after {
|
|
876
|
+
left: 50%;
|
|
877
|
+
height: 64%;
|
|
878
|
+
}
|
|
879
|
+
.icon:before,
|
|
880
|
+
.icon-cross:before,
|
|
881
|
+
.icon-arrow:before,
|
|
882
|
+
.icon:after,
|
|
883
|
+
.icon-cross:after,
|
|
884
|
+
.icon-arrow:after {
|
|
885
|
+
content: '';
|
|
886
|
+
position: absolute;
|
|
887
|
+
background-color: black;
|
|
888
|
+
width: 3px;
|
|
889
|
+
height: 100%;
|
|
890
|
+
}
|
|
891
|
+
`;
|