@npm_leadtech/legal-lib-components 2.1.15 → 2.2.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 (30) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/legal-lib-components.css +3491 -0
  4. package/dist/cjs/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +5 -0
  5. package/dist/cjs/src/components/organisms/AboutUsContent/AboutUsContentProps.types.d.ts +7 -0
  6. package/dist/cjs/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts +7 -0
  7. package/dist/cjs/src/components/organisms/AboutUsContent/index.d.ts +2 -0
  8. package/dist/cjs/src/components/sections/AboutUsSection/AboutUsSection.d.ts +5 -0
  9. package/dist/cjs/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +6 -0
  10. package/dist/cjs/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts +8 -0
  11. package/dist/cjs/src/components/sections/AboutUsSection/index.d.ts +2 -0
  12. package/dist/cjs/src/components/sections/index.d.ts +1 -0
  13. package/dist/cjs/src/utils/getGatsbyImageSkeleton.d.ts +2 -0
  14. package/dist/cjs/src/utils/getRichTextSkeleton.d.ts +2 -0
  15. package/dist/esm/index.js +2 -2
  16. package/dist/esm/index.js.map +1 -1
  17. package/dist/esm/legal-lib-components.css +3491 -0
  18. package/dist/esm/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +5 -0
  19. package/dist/esm/src/components/organisms/AboutUsContent/AboutUsContentProps.types.d.ts +7 -0
  20. package/dist/esm/src/components/organisms/AboutUsContent/__stories__/AboutUsContent.stories.d.ts +7 -0
  21. package/dist/esm/src/components/organisms/AboutUsContent/index.d.ts +2 -0
  22. package/dist/esm/src/components/sections/AboutUsSection/AboutUsSection.d.ts +5 -0
  23. package/dist/esm/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +6 -0
  24. package/dist/esm/src/components/sections/AboutUsSection/__stories__/AboutUsSection.stories.d.ts +8 -0
  25. package/dist/esm/src/components/sections/AboutUsSection/index.d.ts +2 -0
  26. package/dist/esm/src/components/sections/index.d.ts +1 -0
  27. package/dist/esm/src/utils/getGatsbyImageSkeleton.d.ts +2 -0
  28. package/dist/esm/src/utils/getRichTextSkeleton.d.ts +2 -0
  29. package/dist/index.d.ts +15 -1
  30. package/package.json +1 -1
@@ -0,0 +1,3491 @@
1
+ .e-addButton {
2
+ display: inline-block; }
3
+ .e-addButton .tooltip {
4
+ margin-top: .5rem; }
5
+ .e-addButton label:first-child {
6
+ font-weight: bold; }
7
+ .e-addButton__inner {
8
+ display: inline-block;
9
+ margin-top: 1rem;
10
+ color: #05646E;
11
+ border-radius: 4px;
12
+ transition: all .3s ease;
13
+ font-weight: bold; }
14
+ .e-addButton__inner label:hover {
15
+ background-color: #C0F7E8; }
16
+ .e-addButton__inner label {
17
+ display: flex;
18
+ flex-basis: 100%;
19
+ align-items: center;
20
+ position: relative;
21
+ border: 1px solid #05646E;
22
+ border-radius: 4px;
23
+ cursor: pointer;
24
+ padding: .75rem 1rem;
25
+ margin-right: 1rem; }
26
+ .e-addButton input {
27
+ position: absolute;
28
+ left: -9999px; }
29
+ .e-addButton input:checked + label {
30
+ display: none; }
31
+
32
+ .base-box {
33
+ display: block;
34
+ padding: 1rem;
35
+ border-radius: 4px;
36
+ border: 1px solid; }
37
+ .base-box--active {
38
+ background-color: #EFF7F5; }
39
+ .base-box--padded {
40
+ padding: 2rem; }
41
+ .base-box--color-neutral3 {
42
+ border-color: #B5BABD; }
43
+ .base-box--color-neutral4 {
44
+ border-color: #DBE1E5; }
45
+
46
+ .bill-card {
47
+ background-color: #F8F9FA;
48
+ border: 1px solid #DBE1E5;
49
+ border-radius: 4px;
50
+ display: flex;
51
+ flex-direction: column;
52
+ padding: 1rem 1rem; }
53
+ @media (min-width: 575px) {
54
+ .bill-card {
55
+ flex-direction: row;
56
+ justify-content: space-between;
57
+ align-items: center;
58
+ padding: 0.5rem 1.5rem; } }
59
+ .bill-card .date-price {
60
+ display: flex;
61
+ flex-direction: row;
62
+ justify-content: space-between;
63
+ align-items: center;
64
+ border-bottom: 1px solid #DBE1E5;
65
+ padding-bottom: 1rem; }
66
+ @media (min-width: 575px) {
67
+ .bill-card .date-price {
68
+ padding-bottom: 0;
69
+ justify-content: left;
70
+ border-bottom: none; } }
71
+ @media (min-width: 575px) {
72
+ .bill-card .date-price__left {
73
+ padding: 0.2rem 1rem 0.2rem 0;
74
+ border-right: 1px solid #DBE1E5; } }
75
+ @media (min-width: 720px) {
76
+ .bill-card .date-price__left {
77
+ padding: 0.2rem 1.5rem 0.2rem 0; } }
78
+ .bill-card .date-price__right {
79
+ margin-left: 1rem; }
80
+ @media (min-width: 720px) {
81
+ .bill-card .date-price__right {
82
+ margin-left: 1.5rem; } }
83
+ .bill-card .annual-plan {
84
+ text-align: left;
85
+ padding-top: 1rem; }
86
+ @media (min-width: 575px) {
87
+ .bill-card .annual-plan {
88
+ padding-top: 0;
89
+ text-align: right; } }
90
+
91
+ .inline-list {
92
+ display: flex;
93
+ align-items: center; }
94
+ .inline-list a, .inline-list span {
95
+ color: #078080;
96
+ font-weight: 700;
97
+ font-size: 12px;
98
+ line-height: 16px;
99
+ letter-spacing: -0.3px; }
100
+
101
+ .e-button {
102
+ padding: 0.5rem 1rem;
103
+ align-items: center;
104
+ align-self: center;
105
+ border-radius: 4px;
106
+ text-align: center;
107
+ text-decoration: none;
108
+ cursor: pointer;
109
+ transition: all 0.3s ease;
110
+ letter-spacing: 0.5px;
111
+ font-size: 1rem;
112
+ outline: none; }
113
+ @media not all and (min-resolution: 0.001dpcm) {
114
+ @supports (-webkit-appearance: none) {
115
+ .e-button {
116
+ letter-spacing: -1px; } } }
117
+ .e-button.stretch-button {
118
+ display: block;
119
+ width: 100%; }
120
+ .e-button label {
121
+ vertical-align: middle;
122
+ cursor: pointer; }
123
+ .e-button svg {
124
+ margin-right: 0.4rem;
125
+ vertical-align: middle; }
126
+ .e-button.--skipStep {
127
+ padding: 0;
128
+ position: absolute; }
129
+ .e-button.--skipStep label {
130
+ color: #1E2021; }
131
+ .e-button.--styleless {
132
+ background-color: #FFFFFF;
133
+ font-size: 0.9rem;
134
+ color: #6D7275;
135
+ text-align: left;
136
+ border: none; }
137
+ .e-button.--styleless:hover {
138
+ color: #05646E; }
139
+ .e-button.--primary {
140
+ display: inline-block; }
141
+ .e-button.--primary-1 {
142
+ background-color: #078080;
143
+ border: 2px solid #078080;
144
+ color: #FFFFFF;
145
+ font-weight: bold;
146
+ height: 100%; }
147
+ .e-button.--primary-1:hover {
148
+ background-color: #05646E;
149
+ border-color: #05646E; }
150
+ .e-button.--primary-2 {
151
+ background-color: #032A38;
152
+ border: 2px solid #032A38;
153
+ color: #FFFFFF;
154
+ font-weight: bold; }
155
+ .e-button.--primary-2:hover {
156
+ background-color: #02374A;
157
+ border-color: #02374A; }
158
+ .e-button.--primary-3 {
159
+ background-color: #F2BD6A;
160
+ border: 2px solid #F2BD6A;
161
+ color: #1E2021;
162
+ font-weight: bold; }
163
+ .e-button.--primary-3:hover {
164
+ background-color: #CD9A4C;
165
+ border-color: #CD9A4C; }
166
+ .e-button.--primary-4 {
167
+ background-color: #032A38;
168
+ border: 2px solid #032A38;
169
+ color: #EFF7F5;
170
+ font-weight: bold; }
171
+ .e-button.--primary-4:hover {
172
+ background-color: #02374A;
173
+ border-color: #02374A; }
174
+ .e-button.--secondary {
175
+ display: inline-block; }
176
+ .e-button.--secondary-1 {
177
+ background-color: #FFFFFF;
178
+ border: 2px solid #078080;
179
+ color: #078080;
180
+ font-weight: bold; }
181
+ .e-button.--secondary-1:hover {
182
+ background-color: #E4F8F3; }
183
+ .e-button.--secondary-2 {
184
+ background-color: #FFFFFF;
185
+ border: 2px solid #F2BD6A;
186
+ color: #1E2021;
187
+ font-weight: bold; }
188
+ .e-button.--secondary-2:hover {
189
+ background-color: #FCF4E5; }
190
+ .e-button.--secondary-icon {
191
+ display: flex;
192
+ justify-content: center;
193
+ border-radius: 4px;
194
+ border: 2px solid #6D7275;
195
+ background-color: #F3F7FA; }
196
+ .e-button.--secondary-icon svg {
197
+ width: 20px;
198
+ margin-right: 1rem; }
199
+ .e-button.--secondary-icon img {
200
+ max-width: 20px; }
201
+ .e-button.--secondary-icon:hover {
202
+ background-color: #DBE1E5; }
203
+ .e-button.--secondary-icon.--bold {
204
+ font-weight: 900;
205
+ min-width: 8rem;
206
+ width: 100%;
207
+ margin-bottom: 1rem; }
208
+ .e-button.--secondary-icon.--bold:first-child {
209
+ margin-right: 1rem; }
210
+ .e-button.--secondary-icon.--bold img {
211
+ margin-right: 0.8rem; }
212
+ .e-button.--secondary-icon.--dark {
213
+ background-color: #1E2021;
214
+ border: 1px solid #FFFFFF !important;
215
+ color: #FFFFFF; }
216
+ .e-button.--secondary-icon.--dark svg {
217
+ fill: #FFFFFF; }
218
+ .e-button.--secondary-icon.--dark:hover {
219
+ background-color: #3D4042; }
220
+ .e-button.--transparent {
221
+ background-color: transparent; }
222
+ .e-button.--disabled {
223
+ background-color: #DBE1E5;
224
+ color: #3D4042;
225
+ pointer-events: none; }
226
+ .e-button.--error {
227
+ border-color: #D63737;
228
+ color: #D63737; }
229
+ .e-button--fluid {
230
+ width: 100%; }
231
+
232
+ .button--secondary-3 {
233
+ color: #3D4042;
234
+ display: flex;
235
+ font-size: 14px;
236
+ font-weight: bold;
237
+ justify-content: center;
238
+ border-radius: 4px;
239
+ border: 2px solid #6D7275;
240
+ background-color: #F8F9FA; }
241
+ .button--secondary-3 .button__icon {
242
+ width: 20px;
243
+ margin-right: 0.25rem; }
244
+ .button--secondary-3 .button__icon__g {
245
+ fill: #3D4042; }
246
+ .button--secondary-3 img {
247
+ max-width: 20px; }
248
+ .button--secondary-3:hover {
249
+ background-color: #DBE1E5; }
250
+
251
+ .button--secondary-4 {
252
+ background-color: #1E2021;
253
+ border: 1px solid #FFFFFF !important;
254
+ color: #FFFFFF; }
255
+ .button--secondary-4 svg {
256
+ fill: #FFFFFF; }
257
+ .button--secondary-4:hover {
258
+ background-color: #3D4042; }
259
+
260
+ .button--tertiary {
261
+ font-weight: bold;
262
+ padding: 0.5rem 1rem;
263
+ display: inline-block;
264
+ color: #05646E;
265
+ border: none;
266
+ background: none; }
267
+ .button--tertiary:hover {
268
+ background-color: #C0F7E8; }
269
+
270
+ .button--small {
271
+ line-height: 1; }
272
+
273
+ .button--medium {
274
+ line-height: 1.5; }
275
+
276
+ .button--center {
277
+ display: block;
278
+ margin: 0 auto; }
279
+
280
+ .--noLinkNoFunc * {
281
+ pointer-events: none; }
282
+
283
+ .button-icon {
284
+ background: none;
285
+ border-radius: 4px;
286
+ border: 1px solid #DBE1E5;
287
+ display: inline-flex;
288
+ padding: 0.1875rem;
289
+ transition: all .3s ease;
290
+ position: relative;
291
+ cursor: pointer; }
292
+ .button-icon--disabled {
293
+ background-color: #DBE1E5;
294
+ color: #3D4042;
295
+ pointer-events: none; }
296
+ .button-icon:hover {
297
+ background-color: #E4F8F3; }
298
+ .button-icon:hover .button-icon__tooltip {
299
+ transform: translate(-50%, 0);
300
+ visibility: visible;
301
+ opacity: 1; }
302
+ .button-icon__tooltip {
303
+ font-size: 12px;
304
+ position: absolute;
305
+ color: #6D7275;
306
+ bottom: -1.25rem;
307
+ left: 50%;
308
+ margin: 0 auto;
309
+ opacity: 0;
310
+ visibility: hidden;
311
+ transform: translate(-50%, 1rem);
312
+ transition: all .3s ease; }
313
+
314
+ .marker {
315
+ display: inline-block;
316
+ margin-left: -10px; }
317
+
318
+ @-moz-document url-prefix() {
319
+ .marker {
320
+ margin-left: 0px; } }
321
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
322
+ .marker {
323
+ margin-left: 0px; } }
324
+
325
+ .position {
326
+ margin-left: 2px; }
327
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
328
+ .position {
329
+ margin-left: 15px; } }
330
+
331
+ @-moz-document url-prefix() {
332
+ .position {
333
+ margin-left: 15px; } }
334
+
335
+ .pane {
336
+ align-items: flex-start;
337
+ border-top: 1px solid #DBE1E5;
338
+ display: flex;
339
+ font-family: "Inter", sans-serif;
340
+ padding: 1.5rem 0;
341
+ flex-direction: row;
342
+ flex-wrap: wrap; }
343
+ .pane-wrapper {
344
+ margin-top: 1rem;
345
+ padding-right: 0;
346
+ width: 100%; }
347
+ @media (min-width: 575px) {
348
+ .pane-wrapper {
349
+ margin-top: 0;
350
+ padding-right: 0.875rem;
351
+ width: 50%; } }
352
+ @media (min-width: 720px) {
353
+ .pane-wrapper {
354
+ padding-right: 0.55rem; } }
355
+ @media (min-width: 960px) {
356
+ .pane-wrapper {
357
+ padding-right: 0.875rem; } }
358
+ .pane-wrapper:first-child {
359
+ margin-top: 0; }
360
+ .pane-wrapper:nth-child(2) {
361
+ text-align: right; }
362
+ @media (min-width: 328px) and (max-width: 720px) {
363
+ .pane-wrapper:nth-child(2) {
364
+ text-align: left; } }
365
+ .pane-wrapper:nth-child(3) {
366
+ margin-top: 30px; }
367
+ .pane-wrapper:last-child {
368
+ padding-right: 0; }
369
+ .pane-wrapper span {
370
+ display: block; }
371
+ .pane-wrapper span.marker {
372
+ display: inline-block;
373
+ text-indent: -0.625rem; }
374
+ .pane--title {
375
+ color: #6D7275;
376
+ font-size: 0.875rem;
377
+ line-height: 1.29; }
378
+ @media (min-width: 575px) {
379
+ .pane--title {
380
+ font-size: 0.65rem; } }
381
+ @media (min-width: 720px) {
382
+ .pane--title {
383
+ font-size: 0.75rem; } }
384
+ @media (min-width: 960px) {
385
+ .pane--title {
386
+ font-size: 0.875rem; } }
387
+ .pane--description {
388
+ color: #1E2021;
389
+ font-size: 1rem;
390
+ font-weight: 700;
391
+ letter-spacing: -0.3px;
392
+ line-height: 1.38;
393
+ margin-top: 2px; }
394
+ .pane--description--active {
395
+ color: #05646E; }
396
+ .pane--description--inactive {
397
+ color: #D63737; }
398
+ @media (min-width: 575px) {
399
+ .pane {
400
+ flex-direction: row; } }
401
+
402
+ .e-checkbox {
403
+ display: flex;
404
+ flex-direction: column-reverse;
405
+ justify-content: flex-end;
406
+ position: relative;
407
+ font-size: 1rem;
408
+ margin-bottom: .5rem; }
409
+ .e-checkbox-wrapper {
410
+ display: flex;
411
+ flex-flow: row nowrap; }
412
+ .e-checkbox input:not(:checked), .e-checkbox input:checked {
413
+ position: absolute;
414
+ left: -9999px; }
415
+ .e-checkbox input:not(:checked) + label,
416
+ .e-checkbox input:checked + label {
417
+ cursor: pointer;
418
+ font-size: 1rem;
419
+ font-weight: normal;
420
+ display: flex;
421
+ position: relative;
422
+ padding-top: 0;
423
+ top: 35%;
424
+ padding-left: 1.5rem;
425
+ margin-right: 1.5rem; }
426
+ .e-checkbox input:not(:checked) + label span,
427
+ .e-checkbox input:checked + label span {
428
+ margin-left: .5rem; }
429
+ .e-checkbox input:not(:checked) + label:before,
430
+ .e-checkbox input:checked + label:before {
431
+ content: "";
432
+ background-color: #FFFFFF;
433
+ border: 1px solid #1E2021;
434
+ left: 1px;
435
+ position: absolute;
436
+ top: 0;
437
+ height: 1.5rem;
438
+ width: 1.5rem;
439
+ border-radius: 4px; }
440
+ .e-checkbox input:not(:checked) + label:after,
441
+ .e-checkbox input:checked + label:after {
442
+ content: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2216px%22 height%3D%2216px%22 viewBox%3D%220 0 16 16%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E %3C!-- Generator%3A sketchtool 60 (101010) - https%3A%2F%2Fsketch.com --%3E %3Ctitle%3EA726BA30-305F-468D-ADB2-E35785BB1EB9_outlined%3C%2Ftitle%3E %3Cdesc%3ECreated with sketchtool.%3C%2Fdesc%3E %3Cdefs%3E %3Cpolygon id%3D%22path-1%22 points%3D%225.86666678 10.5999999 3.06666672 7.80000001 2.13333337 8.73333331 5.86666678 12.4666665 13.866667 4.46666677 12.9333336 3.53333346%22%3E%3C%2Fpolygon%3E %3C%2Fdefs%3E %3Cg id%3D%22Asset-Artboard-Page%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cg id%3D%22icon%2Fdone_24px%22%3E %3Cmask id%3D%22mask-2%22 fill%3D%22white%22%3E %3Cuse xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E %3C%2Fmask%3E %3Cg id%3D%22icon%2Faction%2Fdone_24px%22 fill-rule%3D%22nonzero%22%3E%3C%2Fg%3E %3Cg id%3D%22%E2%86%B3-Color-Color-%2F-Icons-%2F-Neutrals-%2F-White%22 mask%3D%22url(%23mask-2)%22 fill%3D%22%2305646E%22%3E %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2216%22 height%3D%2216%22%3E%3C%2Frect%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E");
443
+ top: 3px;
444
+ left: .3rem;
445
+ position: absolute;
446
+ width: 1.5rem;
447
+ transition: all 0.2s; }
448
+ .e-checkbox input:not(:checked) + label:after {
449
+ opacity: 0;
450
+ transform: scale(0);
451
+ top: 3px;
452
+ left: .25rem; }
453
+ .e-checkbox input:not(:checked) + label:hover:before {
454
+ background-color: #E4F8F3; }
455
+ .e-checkbox input:checked + label:after {
456
+ opacity: 1;
457
+ transform: scale(1); }
458
+ .e-checkbox input:checked + label:before {
459
+ background-color: #E4F8F3;
460
+ border: 1.5px solid #05646E;
461
+ border-radius: 4px; }
462
+ .e-checkbox input[disabled] + label {
463
+ opacity: 0.4; }
464
+ .e-checkbox input[disabled] + label:before, .e-checkbox input[disabled] + label:after {
465
+ opacity: 0.7; }
466
+ .e-checkbox.--is-invalid input:not(:checked) + label:before,
467
+ .e-checkbox.--is-invalid input:checked + label:before, .e-checkbox.--group-invalid input:not(:checked) + label:before,
468
+ .e-checkbox.--group-invalid input:checked + label:before {
469
+ border: 2px solid #D63737; }
470
+
471
+ @charset "UTF-8";
472
+ .react-datepicker__year-read-view--down-arrow,
473
+ .react-datepicker__month-read-view--down-arrow,
474
+ .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
475
+ border-color: #ccc;
476
+ border-style: solid;
477
+ border-width: 3px 3px 0 0;
478
+ content: "";
479
+ display: block;
480
+ height: 9px;
481
+ position: absolute;
482
+ top: 6px;
483
+ width: 9px;
484
+ }
485
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
486
+ margin-left: -4px;
487
+ position: absolute;
488
+ width: 0;
489
+ }
490
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
491
+ box-sizing: content-box;
492
+ position: absolute;
493
+ border: 8px solid transparent;
494
+ height: 0;
495
+ width: 1px;
496
+ content: "";
497
+ z-index: -1;
498
+ border-width: 8px;
499
+ left: -8px;
500
+ }
501
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
502
+ border-bottom-color: #aeaeae;
503
+ }
504
+
505
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
506
+ top: 0;
507
+ margin-top: -8px;
508
+ }
509
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
510
+ border-top: none;
511
+ border-bottom-color: #f0f0f0;
512
+ }
513
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
514
+ top: 0;
515
+ }
516
+ .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
517
+ top: -1px;
518
+ border-bottom-color: #aeaeae;
519
+ }
520
+
521
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
522
+ bottom: 0;
523
+ margin-bottom: -8px;
524
+ }
525
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
526
+ border-bottom: none;
527
+ border-top-color: #fff;
528
+ }
529
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
530
+ bottom: 0;
531
+ }
532
+ .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
533
+ bottom: -1px;
534
+ border-top-color: #aeaeae;
535
+ }
536
+
537
+ .react-datepicker-wrapper {
538
+ display: inline-block;
539
+ padding: 0;
540
+ border: 0;
541
+ width: 100%;
542
+ }
543
+
544
+ .react-datepicker {
545
+ font-family: "Helvetica Neue", helvetica, arial, sans-serif;
546
+ font-size: 0.8rem;
547
+ background-color: #fff;
548
+ color: #000;
549
+ border: 1px solid #aeaeae;
550
+ border-radius: 0.3rem;
551
+ display: inline-block;
552
+ position: relative;
553
+ }
554
+
555
+ .react-datepicker--time-only .react-datepicker__triangle {
556
+ left: 35px;
557
+ }
558
+ .react-datepicker--time-only .react-datepicker__time-container {
559
+ border-left: 0;
560
+ }
561
+ .react-datepicker--time-only .react-datepicker__time,
562
+ .react-datepicker--time-only .react-datepicker__time-box {
563
+ border-bottom-left-radius: 0.3rem;
564
+ border-bottom-right-radius: 0.3rem;
565
+ }
566
+
567
+ .react-datepicker__triangle {
568
+ position: absolute;
569
+ left: 50px;
570
+ }
571
+
572
+ .react-datepicker-popper {
573
+ z-index: 1;
574
+ }
575
+ .react-datepicker-popper[data-placement^=bottom] {
576
+ padding-top: 10px;
577
+ }
578
+ .react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
579
+ left: auto;
580
+ right: 50px;
581
+ }
582
+ .react-datepicker-popper[data-placement^=top] {
583
+ padding-bottom: 10px;
584
+ }
585
+ .react-datepicker-popper[data-placement^=right] {
586
+ padding-left: 8px;
587
+ }
588
+ .react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
589
+ left: auto;
590
+ right: 42px;
591
+ }
592
+ .react-datepicker-popper[data-placement^=left] {
593
+ padding-right: 8px;
594
+ }
595
+ .react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
596
+ left: 42px;
597
+ right: auto;
598
+ }
599
+
600
+ .react-datepicker__header {
601
+ text-align: center;
602
+ background-color: #f0f0f0;
603
+ border-bottom: 1px solid #aeaeae;
604
+ border-top-left-radius: 0.3rem;
605
+ padding: 8px 0;
606
+ position: relative;
607
+ }
608
+ .react-datepicker__header--time {
609
+ padding-bottom: 8px;
610
+ padding-left: 5px;
611
+ padding-right: 5px;
612
+ }
613
+ .react-datepicker__header--time:not(.react-datepicker__header--time--only) {
614
+ border-top-left-radius: 0;
615
+ }
616
+ .react-datepicker__header:not(.react-datepicker__header--has-time-select) {
617
+ border-top-right-radius: 0.3rem;
618
+ }
619
+
620
+ .react-datepicker__year-dropdown-container--select,
621
+ .react-datepicker__month-dropdown-container--select,
622
+ .react-datepicker__month-year-dropdown-container--select,
623
+ .react-datepicker__year-dropdown-container--scroll,
624
+ .react-datepicker__month-dropdown-container--scroll,
625
+ .react-datepicker__month-year-dropdown-container--scroll {
626
+ display: inline-block;
627
+ margin: 0 15px;
628
+ }
629
+
630
+ .react-datepicker__current-month,
631
+ .react-datepicker-time__header,
632
+ .react-datepicker-year-header {
633
+ margin-top: 0;
634
+ color: #000;
635
+ font-weight: bold;
636
+ font-size: 0.944rem;
637
+ }
638
+
639
+ .react-datepicker-time__header {
640
+ text-overflow: ellipsis;
641
+ white-space: nowrap;
642
+ overflow: hidden;
643
+ }
644
+
645
+ .react-datepicker__navigation {
646
+ align-items: center;
647
+ background: none;
648
+ display: flex;
649
+ justify-content: center;
650
+ text-align: center;
651
+ cursor: pointer;
652
+ position: absolute;
653
+ top: 2px;
654
+ padding: 0;
655
+ border: none;
656
+ z-index: 1;
657
+ height: 32px;
658
+ width: 32px;
659
+ text-indent: -999em;
660
+ overflow: hidden;
661
+ }
662
+ .react-datepicker__navigation--previous {
663
+ left: 2px;
664
+ }
665
+ .react-datepicker__navigation--next {
666
+ right: 2px;
667
+ }
668
+ .react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
669
+ right: 85px;
670
+ }
671
+ .react-datepicker__navigation--years {
672
+ position: relative;
673
+ top: 0;
674
+ display: block;
675
+ margin-left: auto;
676
+ margin-right: auto;
677
+ }
678
+ .react-datepicker__navigation--years-previous {
679
+ top: 4px;
680
+ }
681
+ .react-datepicker__navigation--years-upcoming {
682
+ top: -4px;
683
+ }
684
+ .react-datepicker__navigation:hover *::before {
685
+ border-color: #a6a6a6;
686
+ }
687
+
688
+ .react-datepicker__navigation-icon {
689
+ position: relative;
690
+ top: -1px;
691
+ font-size: 20px;
692
+ width: 0;
693
+ }
694
+ .react-datepicker__navigation-icon--next {
695
+ left: -2px;
696
+ }
697
+ .react-datepicker__navigation-icon--next::before {
698
+ transform: rotate(45deg);
699
+ left: -7px;
700
+ }
701
+ .react-datepicker__navigation-icon--previous {
702
+ right: -2px;
703
+ }
704
+ .react-datepicker__navigation-icon--previous::before {
705
+ transform: rotate(225deg);
706
+ right: -7px;
707
+ }
708
+
709
+ .react-datepicker__month-container {
710
+ float: left;
711
+ }
712
+
713
+ .react-datepicker__year {
714
+ margin: 0.4rem;
715
+ text-align: center;
716
+ }
717
+ .react-datepicker__year-wrapper {
718
+ display: flex;
719
+ flex-wrap: wrap;
720
+ max-width: 180px;
721
+ }
722
+ .react-datepicker__year .react-datepicker__year-text {
723
+ display: inline-block;
724
+ width: 4rem;
725
+ margin: 2px;
726
+ }
727
+
728
+ .react-datepicker__month {
729
+ margin: 0.4rem;
730
+ text-align: center;
731
+ }
732
+ .react-datepicker__month .react-datepicker__month-text,
733
+ .react-datepicker__month .react-datepicker__quarter-text {
734
+ display: inline-block;
735
+ width: 4rem;
736
+ margin: 2px;
737
+ }
738
+
739
+ .react-datepicker__input-time-container {
740
+ clear: both;
741
+ width: 100%;
742
+ float: left;
743
+ margin: 5px 0 10px 15px;
744
+ text-align: left;
745
+ }
746
+ .react-datepicker__input-time-container .react-datepicker-time__caption {
747
+ display: inline-block;
748
+ }
749
+ .react-datepicker__input-time-container .react-datepicker-time__input-container {
750
+ display: inline-block;
751
+ }
752
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
753
+ display: inline-block;
754
+ margin-left: 10px;
755
+ }
756
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
757
+ width: auto;
758
+ }
759
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
760
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
761
+ -webkit-appearance: none;
762
+ margin: 0;
763
+ }
764
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
765
+ -moz-appearance: textfield;
766
+ }
767
+ .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
768
+ margin-left: 5px;
769
+ display: inline-block;
770
+ }
771
+
772
+ .react-datepicker__time-container {
773
+ float: right;
774
+ border-left: 1px solid #aeaeae;
775
+ width: 85px;
776
+ }
777
+ .react-datepicker__time-container--with-today-button {
778
+ display: inline;
779
+ border: 1px solid #aeaeae;
780
+ border-radius: 0.3rem;
781
+ position: absolute;
782
+ right: -87px;
783
+ top: 0;
784
+ }
785
+ .react-datepicker__time-container .react-datepicker__time {
786
+ position: relative;
787
+ background: white;
788
+ border-bottom-right-radius: 0.3rem;
789
+ }
790
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
791
+ width: 85px;
792
+ overflow-x: hidden;
793
+ margin: 0 auto;
794
+ text-align: center;
795
+ border-bottom-right-radius: 0.3rem;
796
+ }
797
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
798
+ list-style: none;
799
+ margin: 0;
800
+ height: calc(195px + (1.7rem / 2));
801
+ overflow-y: scroll;
802
+ padding-right: 0;
803
+ padding-left: 0;
804
+ width: 100%;
805
+ box-sizing: content-box;
806
+ }
807
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
808
+ height: 30px;
809
+ padding: 5px 10px;
810
+ white-space: nowrap;
811
+ }
812
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
813
+ cursor: pointer;
814
+ background-color: #f0f0f0;
815
+ }
816
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
817
+ background-color: #216ba5;
818
+ color: white;
819
+ font-weight: bold;
820
+ }
821
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
822
+ background-color: #216ba5;
823
+ }
824
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
825
+ color: #ccc;
826
+ }
827
+ .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
828
+ cursor: default;
829
+ background-color: transparent;
830
+ }
831
+
832
+ .react-datepicker__week-number {
833
+ color: #ccc;
834
+ display: inline-block;
835
+ width: 1.7rem;
836
+ line-height: 1.7rem;
837
+ text-align: center;
838
+ margin: 0.166rem;
839
+ }
840
+ .react-datepicker__week-number.react-datepicker__week-number--clickable {
841
+ cursor: pointer;
842
+ }
843
+ .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
844
+ border-radius: 0.3rem;
845
+ background-color: #f0f0f0;
846
+ }
847
+
848
+ .react-datepicker__day-names,
849
+ .react-datepicker__week {
850
+ white-space: nowrap;
851
+ }
852
+
853
+ .react-datepicker__day-names {
854
+ margin-bottom: -8px;
855
+ }
856
+
857
+ .react-datepicker__day-name,
858
+ .react-datepicker__day,
859
+ .react-datepicker__time-name {
860
+ color: #000;
861
+ display: inline-block;
862
+ width: 1.7rem;
863
+ line-height: 1.7rem;
864
+ text-align: center;
865
+ margin: 0.166rem;
866
+ }
867
+
868
+ .react-datepicker__month--selected, .react-datepicker__month--in-selecting-range, .react-datepicker__month--in-range,
869
+ .react-datepicker__quarter--selected,
870
+ .react-datepicker__quarter--in-selecting-range,
871
+ .react-datepicker__quarter--in-range {
872
+ border-radius: 0.3rem;
873
+ background-color: #216ba5;
874
+ color: #fff;
875
+ }
876
+ .react-datepicker__month--selected:hover, .react-datepicker__month--in-selecting-range:hover, .react-datepicker__month--in-range:hover,
877
+ .react-datepicker__quarter--selected:hover,
878
+ .react-datepicker__quarter--in-selecting-range:hover,
879
+ .react-datepicker__quarter--in-range:hover {
880
+ background-color: #1d5d90;
881
+ }
882
+ .react-datepicker__month--disabled,
883
+ .react-datepicker__quarter--disabled {
884
+ color: #ccc;
885
+ pointer-events: none;
886
+ }
887
+ .react-datepicker__month--disabled:hover,
888
+ .react-datepicker__quarter--disabled:hover {
889
+ cursor: default;
890
+ background-color: transparent;
891
+ }
892
+
893
+ .react-datepicker__day,
894
+ .react-datepicker__month-text,
895
+ .react-datepicker__quarter-text,
896
+ .react-datepicker__year-text {
897
+ cursor: pointer;
898
+ }
899
+ .react-datepicker__day:hover,
900
+ .react-datepicker__month-text:hover,
901
+ .react-datepicker__quarter-text:hover,
902
+ .react-datepicker__year-text:hover {
903
+ border-radius: 0.3rem;
904
+ background-color: #f0f0f0;
905
+ }
906
+ .react-datepicker__day--today,
907
+ .react-datepicker__month-text--today,
908
+ .react-datepicker__quarter-text--today,
909
+ .react-datepicker__year-text--today {
910
+ font-weight: bold;
911
+ }
912
+ .react-datepicker__day--highlighted,
913
+ .react-datepicker__month-text--highlighted,
914
+ .react-datepicker__quarter-text--highlighted,
915
+ .react-datepicker__year-text--highlighted {
916
+ border-radius: 0.3rem;
917
+ background-color: #3dcc4a;
918
+ color: #fff;
919
+ }
920
+ .react-datepicker__day--highlighted:hover,
921
+ .react-datepicker__month-text--highlighted:hover,
922
+ .react-datepicker__quarter-text--highlighted:hover,
923
+ .react-datepicker__year-text--highlighted:hover {
924
+ background-color: #32be3f;
925
+ }
926
+ .react-datepicker__day--highlighted-custom-1,
927
+ .react-datepicker__month-text--highlighted-custom-1,
928
+ .react-datepicker__quarter-text--highlighted-custom-1,
929
+ .react-datepicker__year-text--highlighted-custom-1 {
930
+ color: magenta;
931
+ }
932
+ .react-datepicker__day--highlighted-custom-2,
933
+ .react-datepicker__month-text--highlighted-custom-2,
934
+ .react-datepicker__quarter-text--highlighted-custom-2,
935
+ .react-datepicker__year-text--highlighted-custom-2 {
936
+ color: green;
937
+ }
938
+ .react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
939
+ .react-datepicker__month-text--selected,
940
+ .react-datepicker__month-text--in-selecting-range,
941
+ .react-datepicker__month-text--in-range,
942
+ .react-datepicker__quarter-text--selected,
943
+ .react-datepicker__quarter-text--in-selecting-range,
944
+ .react-datepicker__quarter-text--in-range,
945
+ .react-datepicker__year-text--selected,
946
+ .react-datepicker__year-text--in-selecting-range,
947
+ .react-datepicker__year-text--in-range {
948
+ border-radius: 0.3rem;
949
+ background-color: #216ba5;
950
+ color: #fff;
951
+ }
952
+ .react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
953
+ .react-datepicker__month-text--selected:hover,
954
+ .react-datepicker__month-text--in-selecting-range:hover,
955
+ .react-datepicker__month-text--in-range:hover,
956
+ .react-datepicker__quarter-text--selected:hover,
957
+ .react-datepicker__quarter-text--in-selecting-range:hover,
958
+ .react-datepicker__quarter-text--in-range:hover,
959
+ .react-datepicker__year-text--selected:hover,
960
+ .react-datepicker__year-text--in-selecting-range:hover,
961
+ .react-datepicker__year-text--in-range:hover {
962
+ background-color: #1d5d90;
963
+ }
964
+ .react-datepicker__day--keyboard-selected,
965
+ .react-datepicker__month-text--keyboard-selected,
966
+ .react-datepicker__quarter-text--keyboard-selected,
967
+ .react-datepicker__year-text--keyboard-selected {
968
+ border-radius: 0.3rem;
969
+ background-color: #bad9f1;
970
+ color: rgb(0, 0, 0);
971
+ }
972
+ .react-datepicker__day--keyboard-selected:hover,
973
+ .react-datepicker__month-text--keyboard-selected:hover,
974
+ .react-datepicker__quarter-text--keyboard-selected:hover,
975
+ .react-datepicker__year-text--keyboard-selected:hover {
976
+ background-color: #1d5d90;
977
+ }
978
+ .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
979
+ .react-datepicker__month-text--in-range,
980
+ .react-datepicker__quarter-text--in-range,
981
+ .react-datepicker__year-text--in-range),
982
+ .react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
983
+ .react-datepicker__month-text--in-range,
984
+ .react-datepicker__quarter-text--in-range,
985
+ .react-datepicker__year-text--in-range),
986
+ .react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
987
+ .react-datepicker__month-text--in-range,
988
+ .react-datepicker__quarter-text--in-range,
989
+ .react-datepicker__year-text--in-range),
990
+ .react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
991
+ .react-datepicker__month-text--in-range,
992
+ .react-datepicker__quarter-text--in-range,
993
+ .react-datepicker__year-text--in-range) {
994
+ background-color: rgba(33, 107, 165, 0.5);
995
+ }
996
+ .react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
997
+ .react-datepicker__month-text--in-selecting-range,
998
+ .react-datepicker__quarter-text--in-selecting-range,
999
+ .react-datepicker__year-text--in-selecting-range),
1000
+ .react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
1001
+ .react-datepicker__month-text--in-selecting-range,
1002
+ .react-datepicker__quarter-text--in-selecting-range,
1003
+ .react-datepicker__year-text--in-selecting-range),
1004
+ .react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
1005
+ .react-datepicker__month-text--in-selecting-range,
1006
+ .react-datepicker__quarter-text--in-selecting-range,
1007
+ .react-datepicker__year-text--in-selecting-range),
1008
+ .react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
1009
+ .react-datepicker__month-text--in-selecting-range,
1010
+ .react-datepicker__quarter-text--in-selecting-range,
1011
+ .react-datepicker__year-text--in-selecting-range) {
1012
+ background-color: #f0f0f0;
1013
+ color: #000;
1014
+ }
1015
+ .react-datepicker__day--disabled,
1016
+ .react-datepicker__month-text--disabled,
1017
+ .react-datepicker__quarter-text--disabled,
1018
+ .react-datepicker__year-text--disabled {
1019
+ cursor: default;
1020
+ color: #ccc;
1021
+ }
1022
+ .react-datepicker__day--disabled:hover,
1023
+ .react-datepicker__month-text--disabled:hover,
1024
+ .react-datepicker__quarter-text--disabled:hover,
1025
+ .react-datepicker__year-text--disabled:hover {
1026
+ background-color: transparent;
1027
+ }
1028
+
1029
+ .react-datepicker__month-text.react-datepicker__month--selected:hover, .react-datepicker__month-text.react-datepicker__month--in-range:hover, .react-datepicker__month-text.react-datepicker__quarter--selected:hover, .react-datepicker__month-text.react-datepicker__quarter--in-range:hover,
1030
+ .react-datepicker__quarter-text.react-datepicker__month--selected:hover,
1031
+ .react-datepicker__quarter-text.react-datepicker__month--in-range:hover,
1032
+ .react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,
1033
+ .react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover {
1034
+ background-color: #216ba5;
1035
+ }
1036
+ .react-datepicker__month-text:hover,
1037
+ .react-datepicker__quarter-text:hover {
1038
+ background-color: #f0f0f0;
1039
+ }
1040
+
1041
+ .react-datepicker__input-container {
1042
+ position: relative;
1043
+ display: inline-block;
1044
+ width: 100%;
1045
+ }
1046
+ .react-datepicker__input-container .react-datepicker__calendar-icon {
1047
+ position: absolute;
1048
+ padding: 0.5rem;
1049
+ }
1050
+
1051
+ .react-datepicker__view-calendar-icon input {
1052
+ padding: 6px 10px 5px 25px;
1053
+ }
1054
+
1055
+ .react-datepicker__year-read-view,
1056
+ .react-datepicker__month-read-view,
1057
+ .react-datepicker__month-year-read-view {
1058
+ border: 1px solid transparent;
1059
+ border-radius: 0.3rem;
1060
+ position: relative;
1061
+ }
1062
+ .react-datepicker__year-read-view:hover,
1063
+ .react-datepicker__month-read-view:hover,
1064
+ .react-datepicker__month-year-read-view:hover {
1065
+ cursor: pointer;
1066
+ }
1067
+ .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
1068
+ .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
1069
+ .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
1070
+ .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
1071
+ .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
1072
+ .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
1073
+ border-top-color: #b3b3b3;
1074
+ }
1075
+ .react-datepicker__year-read-view--down-arrow,
1076
+ .react-datepicker__month-read-view--down-arrow,
1077
+ .react-datepicker__month-year-read-view--down-arrow {
1078
+ transform: rotate(135deg);
1079
+ right: -16px;
1080
+ top: 0;
1081
+ }
1082
+
1083
+ .react-datepicker__year-dropdown,
1084
+ .react-datepicker__month-dropdown,
1085
+ .react-datepicker__month-year-dropdown {
1086
+ background-color: #f0f0f0;
1087
+ position: absolute;
1088
+ width: 50%;
1089
+ left: 25%;
1090
+ top: 30px;
1091
+ z-index: 1;
1092
+ text-align: center;
1093
+ border-radius: 0.3rem;
1094
+ border: 1px solid #aeaeae;
1095
+ }
1096
+ .react-datepicker__year-dropdown:hover,
1097
+ .react-datepicker__month-dropdown:hover,
1098
+ .react-datepicker__month-year-dropdown:hover {
1099
+ cursor: pointer;
1100
+ }
1101
+ .react-datepicker__year-dropdown--scrollable,
1102
+ .react-datepicker__month-dropdown--scrollable,
1103
+ .react-datepicker__month-year-dropdown--scrollable {
1104
+ height: 150px;
1105
+ overflow-y: scroll;
1106
+ }
1107
+
1108
+ .react-datepicker__year-option,
1109
+ .react-datepicker__month-option,
1110
+ .react-datepicker__month-year-option {
1111
+ line-height: 20px;
1112
+ width: 100%;
1113
+ display: block;
1114
+ margin-left: auto;
1115
+ margin-right: auto;
1116
+ }
1117
+ .react-datepicker__year-option:first-of-type,
1118
+ .react-datepicker__month-option:first-of-type,
1119
+ .react-datepicker__month-year-option:first-of-type {
1120
+ border-top-left-radius: 0.3rem;
1121
+ border-top-right-radius: 0.3rem;
1122
+ }
1123
+ .react-datepicker__year-option:last-of-type,
1124
+ .react-datepicker__month-option:last-of-type,
1125
+ .react-datepicker__month-year-option:last-of-type {
1126
+ -webkit-user-select: none;
1127
+ -moz-user-select: none;
1128
+ -ms-user-select: none;
1129
+ user-select: none;
1130
+ border-bottom-left-radius: 0.3rem;
1131
+ border-bottom-right-radius: 0.3rem;
1132
+ }
1133
+ .react-datepicker__year-option:hover,
1134
+ .react-datepicker__month-option:hover,
1135
+ .react-datepicker__month-year-option:hover {
1136
+ background-color: #ccc;
1137
+ }
1138
+ .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
1139
+ .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
1140
+ .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
1141
+ border-bottom-color: #b3b3b3;
1142
+ }
1143
+ .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
1144
+ .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
1145
+ .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
1146
+ border-top-color: #b3b3b3;
1147
+ }
1148
+ .react-datepicker__year-option--selected,
1149
+ .react-datepicker__month-option--selected,
1150
+ .react-datepicker__month-year-option--selected {
1151
+ position: absolute;
1152
+ left: 15px;
1153
+ }
1154
+
1155
+ .react-datepicker__close-icon {
1156
+ cursor: pointer;
1157
+ background-color: transparent;
1158
+ border: 0;
1159
+ outline: 0;
1160
+ padding: 0 6px 0 0;
1161
+ position: absolute;
1162
+ top: 0;
1163
+ right: 0;
1164
+ height: 100%;
1165
+ display: table-cell;
1166
+ vertical-align: middle;
1167
+ }
1168
+ .react-datepicker__close-icon::after {
1169
+ cursor: pointer;
1170
+ background-color: #216ba5;
1171
+ color: #fff;
1172
+ border-radius: 50%;
1173
+ height: 16px;
1174
+ width: 16px;
1175
+ padding: 2px;
1176
+ font-size: 12px;
1177
+ line-height: 1;
1178
+ text-align: center;
1179
+ display: table-cell;
1180
+ vertical-align: middle;
1181
+ content: "×";
1182
+ }
1183
+
1184
+ .react-datepicker__today-button {
1185
+ background: #f0f0f0;
1186
+ border-top: 1px solid #aeaeae;
1187
+ cursor: pointer;
1188
+ text-align: center;
1189
+ font-weight: bold;
1190
+ padding: 5px 0;
1191
+ clear: left;
1192
+ }
1193
+
1194
+ .react-datepicker__portal {
1195
+ position: fixed;
1196
+ width: 100vw;
1197
+ height: 100vh;
1198
+ background-color: rgba(0, 0, 0, 0.8);
1199
+ left: 0;
1200
+ top: 0;
1201
+ justify-content: center;
1202
+ align-items: center;
1203
+ display: flex;
1204
+ z-index: 2147483647;
1205
+ }
1206
+ .react-datepicker__portal .react-datepicker__day-name,
1207
+ .react-datepicker__portal .react-datepicker__day,
1208
+ .react-datepicker__portal .react-datepicker__time-name {
1209
+ width: 3rem;
1210
+ line-height: 3rem;
1211
+ }
1212
+ @media (max-width: 400px), (max-height: 550px) {
1213
+ .react-datepicker__portal .react-datepicker__day-name,
1214
+ .react-datepicker__portal .react-datepicker__day,
1215
+ .react-datepicker__portal .react-datepicker__time-name {
1216
+ width: 2rem;
1217
+ line-height: 2rem;
1218
+ }
1219
+ }
1220
+ .react-datepicker__portal .react-datepicker__current-month,
1221
+ .react-datepicker__portal .react-datepicker-time__header {
1222
+ font-size: 1.44rem;
1223
+ }
1224
+
1225
+ .react-datepicker__children-container {
1226
+ width: 13.8rem;
1227
+ margin: 0.4rem;
1228
+ padding-right: 0.2rem;
1229
+ padding-left: 0.2rem;
1230
+ height: auto;
1231
+ }
1232
+
1233
+ .react-datepicker__aria-live {
1234
+ position: absolute;
1235
+ clip-path: circle(0);
1236
+ border: 0;
1237
+ height: 1px;
1238
+ margin: -1px;
1239
+ overflow: hidden;
1240
+ padding: 0;
1241
+ width: 1px;
1242
+ white-space: nowrap;
1243
+ }
1244
+
1245
+ .react-datepicker__calendar-icon {
1246
+ width: 1em;
1247
+ height: 1em;
1248
+ vertical-align: -0.125em;
1249
+ }
1250
+
1251
+ .e-datepicker {
1252
+ max-width: 55%;
1253
+ width: 100%;
1254
+ display: flex;
1255
+ flex-flow: column-reverse;
1256
+ margin-bottom: 2rem; }
1257
+ .e-datepicker__inner {
1258
+ margin-bottom: 0.5rem; }
1259
+ .e-datepicker__label {
1260
+ font-weight: bold; }
1261
+ .e-datepicker ul li {
1262
+ margin: 0; }
1263
+ .e-datepicker ul li::before {
1264
+ background-color: transparent; }
1265
+ .e-datepicker .react-datepicker {
1266
+ border: 0.5px solid #DBE1E5; }
1267
+ .e-datepicker .react-datepicker__input-container input {
1268
+ color: #1E2021;
1269
+ border-radius: 4px;
1270
+ font-size: 1rem;
1271
+ background-color: #DBE1E5;
1272
+ height: 40px;
1273
+ width: 100%;
1274
+ padding: .75rem 0 .75rem .75rem;
1275
+ background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48IS0tR2VuZXJhdG9yOiBza2V0Y2h0b29sIDYwICgxMDEwMTApIC0gaHR0cHM6Ly9za2V0Y2guY29tLS0+PHRpdGxlPjNEODAzNjU0LUI3NjEtNEZEQy05MThDLTc1QzUwMjdEODcyMDwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIHNrZXRjaHRvb2wuPC9kZXNjPjxkZWZzPjxwYXRoIGQ9Ik0yMiwzIEwxOSwzIEwxOSwxIEwxNywxIEwxNywzIEw3LDMgTDcsMSBMNSwxIEw1LDMgTDIsMyBMMiwyMyBMMjIsMjMgTDIyLDMgWiBNMjAsMjEgTDQsMjEgTDQsOCBMMjAsOCBMMjAsMjEgWiIgaWQ9InBhdGgtMSIvPjwvZGVmcz48ZyBpZD0iQXNzZXQtQXJ0Ym9hcmQtUGFnZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgaWQ9Imljb24vbmF2aWdhdGlvbi9leHBhbmRfbW9yZV8yNHB4LWljb24vYWN0aW9uL2NhbGVuZGFyX3RvZGF5XzI0cHgiPjxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj48dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiLz48L21hc2s+PGcgaWQ9Imljb24vYWN0aW9uL2NhbGVuZGFyX3RvZGF5XzI0cHgiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxnIGlkPSLihrMtQ29sb3ItY29sb3ItLy1JY29ucy0vLUJsYWNrLS8tSW5hY3RpdmUiIG1hc2s9InVybCgjbWFzay0yKSIgZmlsbD0iIzQzNDM0MyI+PHJlY3QgaWQ9IlJlY3RhbmdsZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+PC9nPjwvZz48L2c+PC9zdmc+);
1276
+ background-position: 95% 50%;
1277
+ background-repeat: no-repeat;
1278
+ transition: box-shadow .3s ease;
1279
+ box-shadow: 0 0 0 0 #C0F7E8;
1280
+ margin: .0005em;
1281
+ border: none; }
1282
+ .e-datepicker .react-datepicker__input-container input:focus {
1283
+ outline: none;
1284
+ box-shadow: 0 0 0 2px #078080; }
1285
+ .e-datepicker .react-datepicker__day {
1286
+ font-size: 14px;
1287
+ text-align: center;
1288
+ border: 0.5px solid #DBE1E5;
1289
+ width: 39px;
1290
+ height: 38px;
1291
+ border-collapse: collapse;
1292
+ vertical-align: middle;
1293
+ display: table-cell;
1294
+ line-height: 1.7rem; }
1295
+ .e-datepicker .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
1296
+ border-bottom-color: #FFFFFF; }
1297
+ .e-datepicker .react-datepicker__day--selected {
1298
+ background-color: #34B2A7;
1299
+ border: 1px double #34B2A7; }
1300
+ .e-datepicker .react-datepicker__day--selected:hover {
1301
+ background-color: #34B2A7; }
1302
+ .e-datepicker .react-datepicker__day--keyboard-selected {
1303
+ background-color: inherit;
1304
+ color: inherit; }
1305
+ .e-datepicker .react-datepicker__day--keyboard-selected:hover {
1306
+ border-radius: 0.3rem;
1307
+ background-color: #f0f0f0; }
1308
+ .e-datepicker .react-datepicker__month-container {
1309
+ padding: 0 15px 15px; }
1310
+ .e-datepicker .react-datepicker__month {
1311
+ margin: 0; }
1312
+ .e-datepicker .react-datepicker__header {
1313
+ background-color: inherit;
1314
+ border: none; }
1315
+ .e-datepicker .react-datepicker__header button {
1316
+ border: 0.5px solid #DBE1E5; }
1317
+ .e-datepicker .react-datepicker__header select {
1318
+ -webkit-appearance: menulist-button;
1319
+ background-color: #FFFFFF; }
1320
+ .e-datepicker .react-datepicker__day-name {
1321
+ width: 33px; }
1322
+ .e-datepicker .react-datepicker__day--outside-month {
1323
+ color: #B5BABD;
1324
+ pointer-events: none; }
1325
+
1326
+ .dialog-menu-icon {
1327
+ position: relative;
1328
+ cursor: pointer; }
1329
+ .dialog-menu-icon__image {
1330
+ min-width: 1rem;
1331
+ height: 1rem;
1332
+ margin-left: 0.4rem; }
1333
+ @media (min-width: 960px) {
1334
+ .dialog-menu-icon__image {
1335
+ align-self: center; } }
1336
+ .dialog-menu-icon__message {
1337
+ visibility: hidden;
1338
+ background-color: #3D4042;
1339
+ color: white;
1340
+ padding: 1rem 1rem;
1341
+ border-radius: 0.3rem;
1342
+ font-size: 12px;
1343
+ width: 19rem;
1344
+ display: flex;
1345
+ align-items: flex-start;
1346
+ justify-content: space-between;
1347
+ position: absolute;
1348
+ z-index: 1;
1349
+ top: 1.5rem;
1350
+ right: -5rem; }
1351
+ @media (max-width: 575px) {
1352
+ .dialog-menu-icon__message {
1353
+ width: 15rem; } }
1354
+ @media (min-width: 575px) {
1355
+ .dialog-menu-icon__message {
1356
+ right: -4rem; } }
1357
+ @media (min-width: 720px) {
1358
+ .dialog-menu-icon__message {
1359
+ width: 19rem; } }
1360
+ .dialog-menu-icon__message p {
1361
+ margin-right: 0.5rem; }
1362
+ .dialog-menu-icon--visible .dialog-menu-icon__message {
1363
+ visibility: visible; }
1364
+ .dialog-menu-icon--hidden .dialog-menu-icon__message {
1365
+ visibility: hidden; }
1366
+ .dialog-menu-icon--visible-on-hover:hover .dialog-menu-icon__message {
1367
+ visibility: visible; }
1368
+ .dialog-menu-icon::before {
1369
+ content: '';
1370
+ visibility: hidden;
1371
+ position: absolute;
1372
+ width: 0;
1373
+ height: 0;
1374
+ box-shadow: 0 0.25rem 0.5rem -0.5rem;
1375
+ border-bottom: 0.5rem solid #3D4042;
1376
+ -webkit-transform: translate(-100%, 0);
1377
+ transform: translate(-100%, 0);
1378
+ top: 1.1rem;
1379
+ right: -1rem;
1380
+ border-left: 0.5rem solid transparent;
1381
+ border-right: 0.5rem solid transparent;
1382
+ z-index: 20; }
1383
+ .dialog-menu-icon--visible::before, .dialog-menu-icon--visible-on-hover:hover::before {
1384
+ visibility: visible; }
1385
+
1386
+ .disclaimer {
1387
+ padding: 1rem; }
1388
+ @media (min-width: 960px) {
1389
+ .disclaimer {
1390
+ padding: 1rem 0; } }
1391
+ .disclaimer__wrapper {
1392
+ background-color: #1E2021;
1393
+ color: #DBE1E5; }
1394
+ .disclaimer__wrapper .standard {
1395
+ color: #DBE1E5;
1396
+ text-decoration: underline; }
1397
+
1398
+ .grey-color {
1399
+ color: #3D4042;
1400
+ background-color: #DBE1E5; }
1401
+
1402
+ .disclaimer__copy {
1403
+ margin-bottom: 0.5rem; }
1404
+
1405
+ .desktop_view {
1406
+ display: block; }
1407
+ @media (min-width: 328px) and (max-width: 720px) {
1408
+ .desktop_view {
1409
+ display: none; } }
1410
+
1411
+ .mobile_view {
1412
+ display: none; }
1413
+ @media (min-width: 328px) and (max-width: 720px) {
1414
+ .mobile_view {
1415
+ display: block; } }
1416
+
1417
+ .divider {
1418
+ display: flex;
1419
+ align-items: center;
1420
+ margin: 1rem 0; }
1421
+ .divider__line {
1422
+ width: 45%;
1423
+ height: 0px;
1424
+ border-bottom: 1px solid #DBE1E5; }
1425
+ .divider__word, .divider__image {
1426
+ width: fit-content;
1427
+ text-align: center;
1428
+ margin: 0 0.75rem; }
1429
+
1430
+ .document-status {
1431
+ font-family: "Inter", sans-serif;
1432
+ border-radius: 4px;
1433
+ border: 1px solid;
1434
+ display: flex;
1435
+ flex-flow: row wrap;
1436
+ align-items: center;
1437
+ align-self: center;
1438
+ padding: 0.125rem .5rem 0.125rem .25rem;
1439
+ margin-right: .5rem;
1440
+ width: 7.36rem; }
1441
+ @media (min-width: 960px) {
1442
+ .document-status {
1443
+ align-self: flex-start; } }
1444
+ @media (min-width: 720px) {
1445
+ .document-status {
1446
+ position: inherit; } }
1447
+ .document-status span {
1448
+ font-weight: bold; }
1449
+ .document-status .icon {
1450
+ margin-right: .25rem; }
1451
+ .document-status.--is-completed {
1452
+ background-color: #E4F8F3;
1453
+ border-color: #5DD8C3;
1454
+ color: #05646E; }
1455
+ .document-status.--in-progress {
1456
+ background-color: #FCF4E5;
1457
+ border-color: #CD9A4C;
1458
+ color: #936C2F; }
1459
+ .document-status.--is-new {
1460
+ background-color: #936C2F;
1461
+ border-color: #F2BD6A;
1462
+ color: #FCF4E5; }
1463
+ .document-status.--is-new .icon {
1464
+ margin-right: 1.4rem; }
1465
+
1466
+ .form-faq {
1467
+ display: flex;
1468
+ position: relative;
1469
+ cursor: default; }
1470
+ .form-faq::before {
1471
+ content: "\2022";
1472
+ color: #936C2F;
1473
+ margin-right: .25rem;
1474
+ margin-top: .2rem; }
1475
+ .form-faq__container {
1476
+ padding-top: 0.25rem; }
1477
+ @media (hover: hover) {
1478
+ .form-faq__container:hover > .form-faq__answer {
1479
+ display: flex; } }
1480
+ .form-faq__container:hover .form-faq__answer, .form-faq__container.active .form-faq__answer {
1481
+ display: block; }
1482
+ .form-faq__title {
1483
+ display: inline-block;
1484
+ color: #3D4042;
1485
+ padding: 0.25rem;
1486
+ transition: background-color 0.3s ease; }
1487
+ .form-faq__title:hover {
1488
+ background-color: #FCF4E5; }
1489
+ .form-faq__answer {
1490
+ display: none;
1491
+ background: #3D4042;
1492
+ position: absolute;
1493
+ border-radius: 4px;
1494
+ top: 0;
1495
+ transform: translateY(-100%);
1496
+ color: #FFFFFF;
1497
+ padding: 0.75rem;
1498
+ width: 100%;
1499
+ max-width: 600px;
1500
+ white-space: pre-wrap; }
1501
+ .form-faq__answer:hover {
1502
+ display: flex; }
1503
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
1504
+ .form-faq__answer {
1505
+ left: 2rem; } }
1506
+ .form-faq__answer:before {
1507
+ position: absolute;
1508
+ content: '';
1509
+ width: 0;
1510
+ height: 0;
1511
+ border-left: 1rem solid transparent;
1512
+ border-right: 1rem solid transparent;
1513
+ bottom: -0.35rem;
1514
+ border-top: 1rem solid #3D4042; }
1515
+
1516
+ .google-button {
1517
+ display: flex;
1518
+ width: 100%;
1519
+ align-items: center;
1520
+ justify-content: center;
1521
+ border: 1px solid #B5BABD;
1522
+ padding: 0.5rem 0;
1523
+ background-color: white;
1524
+ border-radius: 2px;
1525
+ font-family: Roboto, sans-serif;
1526
+ color: rgba(0, 0, 0, 0.54); }
1527
+ .google-button:hover {
1528
+ cursor: pointer; }
1529
+ .google-button .google-logo {
1530
+ margin-right: 1rem; }
1531
+
1532
+ .info-box {
1533
+ border-radius: 4px;
1534
+ border: 1px solid;
1535
+ padding: 1rem;
1536
+ display: flex;
1537
+ flex-direction: row; }
1538
+ .info-box.error {
1539
+ border-color: #D63737;
1540
+ color: #D63737;
1541
+ background-color: #FFECEF; }
1542
+ .info-box.error use {
1543
+ fill: #D63737; }
1544
+ .info-box.warning {
1545
+ border-color: #CD9A4C;
1546
+ color: #936C2F;
1547
+ background-color: #FCF4E5; }
1548
+ .info-box.warning use {
1549
+ fill: #CD9A4C; }
1550
+ .info-box .info-box__img {
1551
+ width: 1.5rem;
1552
+ height: 1.5rem; }
1553
+ .info-box .info-box__text-container {
1554
+ margin-left: 0.5rem; }
1555
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
1556
+ .info-box .info-box__text-container {
1557
+ margin-left: 1.5rem; } }
1558
+
1559
+ .logo-text {
1560
+ display: flex;
1561
+ align-items: flex-start; }
1562
+ .logo-text img {
1563
+ align-items: center;
1564
+ margin-right: 1.5rem;
1565
+ margin-bottom: 0; }
1566
+ .logo-text p {
1567
+ display: flex;
1568
+ flex-direction: column;
1569
+ justify-content: center;
1570
+ margin-bottom: 0; }
1571
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
1572
+ .logo-text p {
1573
+ width: 17rem; } }
1574
+ @media all and (-ms-high-contrast: none) and (max-width: 575px), (-ms-high-contrast: active) and (max-width: 575px) {
1575
+ .logo-text p {
1576
+ width: 17rem; } }
1577
+ @media all and (-ms-high-contrast: none) and (min-width: 575px), (-ms-high-contrast: active) and (min-width: 575px) {
1578
+ .logo-text p {
1579
+ width: 10rem; } }
1580
+ @media all and (-ms-high-contrast: none) and (min-width: 720px), (-ms-high-contrast: active) and (min-width: 720px) {
1581
+ .logo-text p {
1582
+ width: 17rem; } }
1583
+
1584
+ .menu-items__spacing .menu-items__item:not(:last-child) {
1585
+ margin-bottom: 0.5rem; }
1586
+
1587
+ .menu-items__item {
1588
+ transition: background-color 0.3s ease;
1589
+ border-radius: 4px;
1590
+ padding: 0.25rem 0.5rem;
1591
+ display: flex;
1592
+ flex-direction: row; }
1593
+ .menu-items__item.disabled {
1594
+ color: #B5BABD; }
1595
+ .menu-items__item.disabled svg > g > g {
1596
+ fill: #B5BABD; }
1597
+ .menu-items__item:not(.disabled):hover {
1598
+ background-color: #E4F8F3;
1599
+ cursor: pointer; }
1600
+ .menu-items__item:not(.disabled):hover svg > g > g {
1601
+ transition: all 0.3s ease;
1602
+ fill: #05646E; }
1603
+ .menu-items__item a {
1604
+ display: flex; }
1605
+ .menu-items__item svg {
1606
+ width: 1.5rem;
1607
+ margin-right: 0.5rem; }
1608
+ @media (min-width: 575px) {
1609
+ .menu-items__item svg {
1610
+ width: 1rem; } }
1611
+ .menu-items__item svg > g > g {
1612
+ fill: #3D4042; }
1613
+ .menu-items__item svg #color-bin {
1614
+ fill: #3D4042; }
1615
+
1616
+ .e-message-error {
1617
+ box-shadow: 0 0 0 1px #d63837;
1618
+ background-color: #ffecee;
1619
+ padding: 10px;
1620
+ color: #d63837;
1621
+ border-radius: 5px;
1622
+ font-family: "Inter", sans-serif; }
1623
+
1624
+ .e-message-success {
1625
+ box-shadow: 0 0 0 1px #5aa900;
1626
+ background-color: #e6ffe1;
1627
+ padding: 10px;
1628
+ color: #5aa900;
1629
+ border-radius: 5px;
1630
+ font-family: "Inter", sans-serif; }
1631
+
1632
+ .e-message-neutral {
1633
+ box-shadow: 0 0 0 1px #beebe9;
1634
+ background-color: #e1f2fb;
1635
+ padding: 10px;
1636
+ color: #2a8aeb;
1637
+ border-radius: 5px;
1638
+ font-family: "Inter", sans-serif; }
1639
+
1640
+ .paypal-button {
1641
+ padding: 0;
1642
+ border: none;
1643
+ cursor: pointer; }
1644
+
1645
+ .progress__wrapper {
1646
+ position: absolute;
1647
+ width: 100%;
1648
+ top: 5.25rem;
1649
+ left: 0;
1650
+ height: .25rem; }
1651
+
1652
+ .progressbar {
1653
+ height: 100%;
1654
+ background: #05646E;
1655
+ transition: width .3s ease;
1656
+ will-change: width; }
1657
+
1658
+ .progressbar__remain {
1659
+ position: absolute;
1660
+ width: 100%;
1661
+ height: 100%;
1662
+ background: #E4F8F3;
1663
+ z-index: -1;
1664
+ transform: translateY(-100%); }
1665
+
1666
+ .e-radio label:first-child:not(.e-radio-label) {
1667
+ font-weight: bold; }
1668
+
1669
+ .e-radio .radio-item-container {
1670
+ width: 100%; }
1671
+
1672
+ @media (max-width: 575px) {
1673
+ .e-radio.--regular .e-radio__inner {
1674
+ display: flex;
1675
+ flex-flow: row wrap;
1676
+ width: 100%;
1677
+ margin-left: 1.5rem;
1678
+ margin-top: 2rem;
1679
+ margin-bottom: 1rem; }
1680
+ .e-radio.--regular .e-radio__inner label {
1681
+ margin-bottom: .25rem;
1682
+ flex-basis: 100%;
1683
+ display: flex;
1684
+ align-items: center;
1685
+ color: #1E2021;
1686
+ font-size: 16px;
1687
+ position: relative;
1688
+ cursor: pointer;
1689
+ width: 100%; }
1690
+ .e-radio.--regular input {
1691
+ position: absolute;
1692
+ left: -9999px; }
1693
+ .e-radio.--regular input:not(:checked):hover + label:before {
1694
+ background-color: #E4F8F3; }
1695
+ .e-radio.--regular input:checked:hover + label:before {
1696
+ background-color: #05646E; }
1697
+ .e-radio.--regular input:checked + label {
1698
+ color: #05646E;
1699
+ text-shadow: -0.02ex 0 #05646E, 0.02ex 0 #05646E; }
1700
+ .e-radio.--regular input:checked + label:before {
1701
+ content: "";
1702
+ position: absolute;
1703
+ top: 2px;
1704
+ left: -23px;
1705
+ height: 1.25rem;
1706
+ width: 1.25rem;
1707
+ background-color: #05646E;
1708
+ border: 1px solid #05646E;
1709
+ border-radius: 50%;
1710
+ box-sizing: border-box; }
1711
+ .e-radio.--regular input:checked + label:after {
1712
+ content: "";
1713
+ position: absolute;
1714
+ top: .5rem;
1715
+ left: -17px;
1716
+ display: block;
1717
+ height: .5rem;
1718
+ width: .5rem;
1719
+ background: currentColor;
1720
+ border-radius: 50%;
1721
+ opacity: 1;
1722
+ transform: scale(1);
1723
+ color: #fff;
1724
+ transition: all .1s; }
1725
+ .e-radio.--regular input + label {
1726
+ cursor: pointer;
1727
+ font-size: 16px; }
1728
+ .e-radio.--regular input + label:before {
1729
+ content: "";
1730
+ position: absolute;
1731
+ left: -23px;
1732
+ top: 2px;
1733
+ height: 1.25rem;
1734
+ width: 1.25rem;
1735
+ border-radius: 50%;
1736
+ background-color: transparent;
1737
+ border: 1px solid #1E2021;
1738
+ box-sizing: border-box; }
1739
+ .e-radio.--regular input + label:after {
1740
+ position: absolute;
1741
+ top: .5rem;
1742
+ left: -17px;
1743
+ display: block;
1744
+ height: .5rem;
1745
+ width: .5rem;
1746
+ opacity: 0;
1747
+ transform: scale(0);
1748
+ color: #FFFFFF;
1749
+ transition: all .1s;
1750
+ content: "";
1751
+ bottom: .5rem;
1752
+ border-radius: 50%; } }
1753
+
1754
+ @media (min-width: 575px) {
1755
+ .e-radio.--regular:not(.--icons) .e-radio__inner {
1756
+ display: flex;
1757
+ flex-flow: row wrap;
1758
+ width: 100%;
1759
+ margin-left: 1.5rem;
1760
+ margin-top: 2rem;
1761
+ margin-bottom: 1rem; }
1762
+ .e-radio.--regular:not(.--icons) .e-radio__inner label {
1763
+ margin-bottom: .25rem;
1764
+ flex-basis: 100%;
1765
+ display: flex;
1766
+ align-items: center;
1767
+ color: #1E2021;
1768
+ font-size: 16px;
1769
+ position: relative;
1770
+ cursor: pointer;
1771
+ width: 100%; }
1772
+ .e-radio.--regular:not(.--icons) input {
1773
+ position: absolute;
1774
+ left: -9999px; }
1775
+ .e-radio.--regular:not(.--icons) input:not(:checked):hover + label:before {
1776
+ background-color: #E4F8F3; }
1777
+ .e-radio.--regular:not(.--icons) input:checked:hover + label:before {
1778
+ background-color: #05646E; }
1779
+ .e-radio.--regular:not(.--icons) input:checked + label {
1780
+ color: #05646E;
1781
+ text-shadow: -0.02ex 0 #05646E, 0.02ex 0 #05646E; }
1782
+ .e-radio.--regular:not(.--icons) input:checked + label:before {
1783
+ content: "";
1784
+ position: absolute;
1785
+ top: 2px;
1786
+ left: -23px;
1787
+ height: 1.25rem;
1788
+ width: 1.25rem;
1789
+ background-color: #05646E;
1790
+ border: 1px solid #05646E;
1791
+ border-radius: 50%;
1792
+ box-sizing: border-box; }
1793
+ .e-radio.--regular:not(.--icons) input:checked + label:after {
1794
+ content: "";
1795
+ position: absolute;
1796
+ top: .5rem;
1797
+ left: -17px;
1798
+ display: block;
1799
+ height: .5rem;
1800
+ width: .5rem;
1801
+ background: currentColor;
1802
+ border-radius: 50%;
1803
+ opacity: 1;
1804
+ transform: scale(1);
1805
+ color: #fff;
1806
+ transition: all .1s; }
1807
+ .e-radio.--regular:not(.--icons) input + label {
1808
+ cursor: pointer;
1809
+ font-size: 16px; }
1810
+ .e-radio.--regular:not(.--icons) input + label:before {
1811
+ content: "";
1812
+ position: absolute;
1813
+ left: -23px;
1814
+ top: 2px;
1815
+ height: 1.25rem;
1816
+ width: 1.25rem;
1817
+ border-radius: 50%;
1818
+ background-color: transparent;
1819
+ border: 1px solid #1E2021;
1820
+ box-sizing: border-box; }
1821
+ .e-radio.--regular:not(.--icons) input + label:after {
1822
+ position: absolute;
1823
+ top: .5rem;
1824
+ left: -17px;
1825
+ display: block;
1826
+ height: .5rem;
1827
+ width: .5rem;
1828
+ opacity: 0;
1829
+ transform: scale(0);
1830
+ color: #FFFFFF;
1831
+ transition: all .1s;
1832
+ content: "";
1833
+ bottom: .5rem;
1834
+ border-radius: 50%; } }
1835
+
1836
+ @media (max-width: 575px) {
1837
+ .e-radio.--tabs .e-radio__inner {
1838
+ display: flex;
1839
+ flex-flow: row nowrap;
1840
+ margin-bottom: 2rem;
1841
+ width: 10rem;
1842
+ margin-top: 1rem;
1843
+ border: 1px solid #B5BABD;
1844
+ background: #F8F9FA;
1845
+ border-radius: 4px;
1846
+ transition: all .3s ease; }
1847
+ .e-radio.--tabs .e-radio__inner .e-radio-label {
1848
+ width: 100%;
1849
+ display: flex;
1850
+ border-right: 1px solid #B5BABD;
1851
+ border-top-left-radius: 4px;
1852
+ border-bottom-left-radius: 4px; }
1853
+ .e-radio.--tabs .e-radio__inner .e-radio-label:last-child {
1854
+ border-right: none; }
1855
+ .e-radio.--tabs input {
1856
+ position: absolute;
1857
+ left: -9999px; }
1858
+ .e-radio.--tabs input + label {
1859
+ cursor: pointer;
1860
+ font-size: 14px;
1861
+ transition: all .3s ease; }
1862
+ .e-radio.--tabs input + label:hover {
1863
+ background: #DBE1E5; }
1864
+ .e-radio.--tabs input:checked + label {
1865
+ font-weight: bold;
1866
+ color: #FFFFFF;
1867
+ width: 100%;
1868
+ cursor: pointer;
1869
+ transition: all .3s ease;
1870
+ background-color: #078080;
1871
+ text-align: center;
1872
+ padding: 10px; }
1873
+ .e-radio.--tabs input:checked + label:hover {
1874
+ background-color: #078080; }
1875
+ .e-radio.--tabs input:not(:checked) + label {
1876
+ text-align: center;
1877
+ width: 100%;
1878
+ color: #3D4042;
1879
+ font-weight: bold;
1880
+ padding: 10px; }
1881
+ .e-radio.--tabs input:hover:not(:checked) + label {
1882
+ width: 100%; } }
1883
+
1884
+ @media (min-width: 575px) {
1885
+ .e-radio.--tabs:not(.--icons) .e-radio__inner {
1886
+ display: flex;
1887
+ flex-flow: row nowrap;
1888
+ margin-bottom: 2rem;
1889
+ width: 10rem;
1890
+ margin-top: 1rem;
1891
+ border: 1px solid #B5BABD;
1892
+ background: #F8F9FA;
1893
+ border-radius: 4px;
1894
+ transition: all .3s ease; }
1895
+ .e-radio.--tabs:not(.--icons) .e-radio__inner .e-radio-label {
1896
+ width: 100%;
1897
+ display: flex;
1898
+ border-right: 1px solid #B5BABD;
1899
+ border-top-left-radius: 4px;
1900
+ border-bottom-left-radius: 4px; }
1901
+ .e-radio.--tabs:not(.--icons) .e-radio__inner .e-radio-label:last-child {
1902
+ border-right: none; }
1903
+ .e-radio.--tabs:not(.--icons) input {
1904
+ position: absolute;
1905
+ left: -9999px; }
1906
+ .e-radio.--tabs:not(.--icons) input + label {
1907
+ cursor: pointer;
1908
+ font-size: 14px;
1909
+ transition: all .3s ease; }
1910
+ .e-radio.--tabs:not(.--icons) input + label:hover {
1911
+ background: #DBE1E5; }
1912
+ .e-radio.--tabs:not(.--icons) input:checked + label {
1913
+ font-weight: bold;
1914
+ color: #FFFFFF;
1915
+ width: 100%;
1916
+ cursor: pointer;
1917
+ transition: all .3s ease;
1918
+ background-color: #078080;
1919
+ text-align: center;
1920
+ padding: 10px; }
1921
+ .e-radio.--tabs:not(.--icons) input:checked + label:hover {
1922
+ background-color: #078080; }
1923
+ .e-radio.--tabs:not(.--icons) input:not(:checked) + label {
1924
+ text-align: center;
1925
+ width: 100%;
1926
+ color: #3D4042;
1927
+ font-weight: bold;
1928
+ padding: 10px; }
1929
+ .e-radio.--tabs:not(.--icons) input:hover:not(:checked) + label {
1930
+ width: 100%; } }
1931
+
1932
+ .e-radio.--icons .radio-icon {
1933
+ display: none; }
1934
+
1935
+ @media (min-width: 575px) {
1936
+ .e-radio.--icons .e-radio__inner {
1937
+ display: flex;
1938
+ flex-flow: row wrap;
1939
+ margin-top: 1.5rem; }
1940
+ .e-radio.--icons .radio-item-container {
1941
+ display: flex;
1942
+ width: 47%;
1943
+ border: 1px solid black;
1944
+ min-width: 80px;
1945
+ min-height: 3.5rem;
1946
+ margin-bottom: 0.5rem;
1947
+ border-radius: 4px;
1948
+ border-color: #DBE1E5;
1949
+ cursor: pointer; }
1950
+ .e-radio.--icons .radio-item-container:not(:nth-child(2n+0)) {
1951
+ margin-right: 0.5rem; }
1952
+ .e-radio.--icons .radio-item-input {
1953
+ position: absolute;
1954
+ visibility: hidden; }
1955
+ .e-radio.--icons .radio-item-container.active {
1956
+ border: 2px solid #02374A;
1957
+ background-color: #F3F7FA; }
1958
+ .e-radio.--icons .radio-item-container:hover {
1959
+ background-color: #F3F7FA;
1960
+ font-weight: bold; }
1961
+ .e-radio.--icons .e-radio-label {
1962
+ display: flex;
1963
+ align-items: center;
1964
+ padding: 0.25rem 1rem;
1965
+ width: 100%; }
1966
+ .e-radio.--icons .radio-icon {
1967
+ display: block;
1968
+ margin-right: 1rem; } }
1969
+
1970
+ .e-radio.--is-invalid.--regular input + label:before, .e-radio.--group-invalid.--regular input + label:before {
1971
+ border-color: #D63737; }
1972
+
1973
+ .e-radio.--is-invalid.--tabs .e-radio__inner, .e-radio.--is-invalid.--group-invalid .e-radio__inner, .e-radio.--group-invalid.--tabs .e-radio__inner, .e-radio.--group-invalid.--group-invalid .e-radio__inner {
1974
+ border: 1px solid #D63737; }
1975
+ .e-radio.--is-invalid.--tabs .e-radio__inner label label, .e-radio.--is-invalid.--group-invalid .e-radio__inner label label, .e-radio.--group-invalid.--tabs .e-radio__inner label label, .e-radio.--group-invalid.--group-invalid .e-radio__inner label label {
1976
+ border-right: 1px solid #D63737; }
1977
+ .e-radio.--is-invalid.--tabs .e-radio__inner label:last-child label, .e-radio.--is-invalid.--group-invalid .e-radio__inner label:last-child label, .e-radio.--group-invalid.--tabs .e-radio__inner label:last-child label, .e-radio.--group-invalid.--group-invalid .e-radio__inner label:last-child label {
1978
+ border-right: none; }
1979
+
1980
+ .radio-group__label {
1981
+ color: #3D4042; }
1982
+
1983
+ .e-radio.radio--small.--tabs input + label {
1984
+ font-size: 0.875rem;
1985
+ padding: .75rem; }
1986
+
1987
+ .e-radio.radio--small.--tabs .e-radio__inner {
1988
+ margin-top: 0;
1989
+ margin-bottom: 0; }
1990
+
1991
+ .e-radio.radio--narrow.--regular .e-radio__inner {
1992
+ margin-top: 0.5rem; }
1993
+
1994
+ .e-radio.--regular.radio--regular--bare .e-radio__inner {
1995
+ display: inline-block;
1996
+ margin-right: auto;
1997
+ text-align: left;
1998
+ width: auto; }
1999
+
2000
+ .e-radio.--regular.radio--regular--bare .e-radio-label,
2001
+ .e-radio.--regular.radio--regular--bare .e-radio-label__label {
2002
+ display: block;
2003
+ margin-bottom: .75rem; }
2004
+
2005
+ .e-removeButton {
2006
+ display: inline-block; }
2007
+ .e-removeButton__inner {
2008
+ display: inline-block;
2009
+ margin-top: 1rem;
2010
+ color: #D63737;
2011
+ border-radius: 4px;
2012
+ transition: all .3s ease; }
2013
+ .e-removeButton__inner label {
2014
+ display: flex;
2015
+ flex-basis: 100%;
2016
+ align-items: center;
2017
+ position: relative;
2018
+ border: 1px solid #D63737;
2019
+ border-radius: 4px;
2020
+ cursor: pointer;
2021
+ padding: .75rem 1rem; }
2022
+ .e-removeButton__inner:hover {
2023
+ background-color: #FFECEF; }
2024
+ .e-removeButton input {
2025
+ position: absolute;
2026
+ left: -9999px; }
2027
+ .e-removeButton input:checked + label {
2028
+ border-radius: 4px; }
2029
+ .e-removeButton input + label {
2030
+ font-weight: bold; }
2031
+
2032
+ .rich-text > p {
2033
+ margin-bottom: 1rem; }
2034
+
2035
+ .rich-text p > a {
2036
+ text-decoration: underline; }
2037
+
2038
+ .rich-text p + h1,
2039
+ .rich-text p + h2,
2040
+ .rich-text p + h3,
2041
+ .rich-text p + h4,
2042
+ .rich-text p + h5,
2043
+ .rich-text p + h6 {
2044
+ margin-top: 2.5rem; }
2045
+
2046
+ .rich-text ul + p,
2047
+ .rich-text ol + p,
2048
+ .rich-text ul + h1,
2049
+ .rich-text ul + h2,
2050
+ .rich-text ul + h3,
2051
+ .rich-text ul + h4,
2052
+ .rich-text ul + h5,
2053
+ .rich-text ul + h6 {
2054
+ margin-top: 2rem; }
2055
+
2056
+ .rich-text .scroll-top-anchor {
2057
+ cursor: pointer; }
2058
+
2059
+ .e-searchselect {
2060
+ display: flex;
2061
+ flex-direction: column-reverse;
2062
+ margin-bottom: 2rem;
2063
+ position: relative;
2064
+ width: 100%; }
2065
+ @media (min-width: 960px) {
2066
+ .e-searchselect {
2067
+ max-width: 50%; } }
2068
+ .e-searchselect--error {
2069
+ display: none; }
2070
+ .e-searchselect__inner {
2071
+ margin-bottom: 0.5rem; }
2072
+ .e-searchselect__inner label {
2073
+ font-weight: bold; }
2074
+ .e-searchselect .css-1wy0on6 div:not(:last-child):first-child {
2075
+ display: none; }
2076
+ .e-searchselect .css-1hb7zxy-IndicatorsContainer div:nth-child(1) {
2077
+ display: none; }
2078
+ .e-searchselect .css-1gtu0rj-indicatorContainer {
2079
+ background-image: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%228px%22 height%3D%2220px%22 viewBox%3D%220 0 8 20%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E %3C!-- Generator%3A sketchtool 63.1 (101010) - https%3A%2F%2Fsketch.com --%3E %3Ctitle%3E57CA73BF-61CC-46FF-8A9B-C333E41AFC30%3C%2Ftitle%3E %3Cdesc%3ECreated with sketchtool.%3C%2Fdesc%3E %3Cdefs%3E %3Cpath d%3D%22M15.06%2C16.295 L16%2C17.235 L12%2C21.235 L8%2C17.235 L8.94%2C16.295 L12%2C19.3483333 L15.06%2C16.295 Z M12%2C2.295 L16%2C6.295 L15.06%2C7.235 L12%2C4.18166667 L8.94%2C7.235 L8%2C6.295 L12%2C2.295 Z%22 id%3D%22path-1%22%3E%3C%2Fpath%3E %3C%2Fdefs%3E %3Cg id%3D%22UI-Style-Guide---LD%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cg id%3D%22UI-Style-Guide---LawDistrict-02%22 transform%3D%22translate(-761.000000%2C -966.000000)%22%3E %3Cg id%3D%22icon%2Fexpand_dropdown_24px%22 transform%3D%22translate(753.000000%2C 964.000000)%22%3E %3Crect id%3D%22Bound%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E %3Cmask id%3D%22mask-2%22 fill%3D%22white%22%3E %3Cuse xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E %3C%2Fmask%3E %3Cg id%3D%22Combined-Shape%22 fill-rule%3D%22nonzero%22%3E%3C%2Fg%3E %3Cg id%3D%22%E2%86%B3-Color%22 mask%3D%22url(%23mask-2)%22 fill%3D%22%231E2021%22%3E %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E");
2080
+ background-repeat: no-repeat;
2081
+ background-position: center center;
2082
+ height: 30px;
2083
+ width: 30px; }
2084
+ .e-searchselect .css-1gtu0rj-indicatorContainer svg {
2085
+ display: none; }
2086
+ .e-searchselect .css-1gtu0rj-indicatorContainer:not(:last-child):first-child {
2087
+ display: none; }
2088
+ .e-searchselect .css-tlfecz-indicatorContainer {
2089
+ background-image: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%228px%22 height%3D%2220px%22 viewBox%3D%220 0 8 20%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E %3C!-- Generator%3A sketchtool 63.1 (101010) - https%3A%2F%2Fsketch.com --%3E %3Ctitle%3E57CA73BF-61CC-46FF-8A9B-C333E41AFC30%3C%2Ftitle%3E %3Cdesc%3ECreated with sketchtool.%3C%2Fdesc%3E %3Cdefs%3E %3Cpath d%3D%22M15.06%2C16.295 L16%2C17.235 L12%2C21.235 L8%2C17.235 L8.94%2C16.295 L12%2C19.3483333 L15.06%2C16.295 Z M12%2C2.295 L16%2C6.295 L15.06%2C7.235 L12%2C4.18166667 L8.94%2C7.235 L8%2C6.295 L12%2C2.295 Z%22 id%3D%22path-1%22%3E%3C%2Fpath%3E %3C%2Fdefs%3E %3Cg id%3D%22UI-Style-Guide---LD%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cg id%3D%22UI-Style-Guide---LawDistrict-02%22 transform%3D%22translate(-761.000000%2C -966.000000)%22%3E %3Cg id%3D%22icon%2Fexpand_dropdown_24px%22 transform%3D%22translate(753.000000%2C 964.000000)%22%3E %3Crect id%3D%22Bound%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E %3Cmask id%3D%22mask-2%22 fill%3D%22white%22%3E %3Cuse xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E %3C%2Fmask%3E %3Cg id%3D%22Combined-Shape%22 fill-rule%3D%22nonzero%22%3E%3C%2Fg%3E %3Cg id%3D%22%E2%86%B3-Color%22 mask%3D%22url(%23mask-2)%22 fill%3D%22%231E2021%22%3E %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E");
2090
+ background-repeat: no-repeat;
2091
+ background-position: center center;
2092
+ height: 30px;
2093
+ width: 30px; }
2094
+ .e-searchselect .css-tlfecz-indicatorContainer svg {
2095
+ display: none; }
2096
+ .e-searchselect .css-1okebmr-indicatorSeparator {
2097
+ display: none; }
2098
+ .e-searchselect .legal-selector {
2099
+ display: flex;
2100
+ flex-direction: column-reverse;
2101
+ margin-bottom: 1rem;
2102
+ position: relative;
2103
+ border-radius: 4px;
2104
+ transition: box-shadow 0.3s ease;
2105
+ box-shadow: 0 0 0 1px #B5BABD;
2106
+ background-color: #F3F7FA; }
2107
+ .e-searchselect .legal-selector .css-1hwfws3 {
2108
+ height: 40px; }
2109
+ .e-searchselect .legal-selector .css-yk16xz-control {
2110
+ background-color: #F8F9FA;
2111
+ border: none; }
2112
+ .e-searchselect .legal-selector .css-1pahdxg-control {
2113
+ outline: none;
2114
+ border: none;
2115
+ background-color: #F8F9FA;
2116
+ box-shadow: 0 0 0 2px #05646E; }
2117
+ .e-searchselect .legal-selector .css-1wa3eu0-placeholder {
2118
+ font-size: 0.875rem;
2119
+ color: #6D7275; }
2120
+ .e-searchselect .legal-selector .css-26l3qy-menu {
2121
+ border-radius: 4px;
2122
+ box-shadow: 0 2px 6px 0 rgba(2, 55, 74, 0.25);
2123
+ font-size: 0.875rem; }
2124
+ .e-searchselect .legal-selector .css-9gakcf-option {
2125
+ background-color: #F8F9FA;
2126
+ color: #3D4042; }
2127
+ .e-searchselect .legal-selector .css-1uccc91-singleValue {
2128
+ font-size: 0.875rem;
2129
+ transition: all 0.3s ease; }
2130
+ .e-searchselect .legal-selector .css-b8ldur-Input {
2131
+ font-size: 0.875rem; }
2132
+ .e-searchselect .legal-selector .css-1n7v3ny-option {
2133
+ background-color: transparent; }
2134
+ .e-searchselect .legal-selector .css-1n7v3ny-option:hover {
2135
+ background-color: #DBE1E5; }
2136
+ .e-searchselect .legal-selector:hover {
2137
+ box-shadow: 0 0 0 1px #6D7275; }
2138
+ .e-searchselect .legal-selector:active, .e-searchselect .legal-selector:focus {
2139
+ outline: none; }
2140
+ .e-searchselect.--group-invalid .legal-selector {
2141
+ box-shadow: 0 0 0 1px #D63737; }
2142
+ .e-searchselect.--group-invalid .css-yk16xz-control {
2143
+ background-color: #FFECEF; }
2144
+ .e-searchselect.--is-invalid .e-searchselect--error {
2145
+ display: flex;
2146
+ align-content: center;
2147
+ position: absolute;
2148
+ bottom: 0;
2149
+ margin-top: 0.5rem;
2150
+ color: #D63737; }
2151
+ .e-searchselect.--is-invalid .e-searchselect--error img {
2152
+ max-width: 20px;
2153
+ margin-right: 0.25rem; }
2154
+ .e-searchselect.--is-invalid .legal-selector {
2155
+ box-shadow: 0 0 0 1px #D63737; }
2156
+ .e-searchselect.--is-invalid .css-yk16xz-control {
2157
+ background-color: #FFECEF; }
2158
+
2159
+ .searchselect__label {
2160
+ color: #3D4042; }
2161
+
2162
+ .searchselect--fullwidth {
2163
+ max-width: 100%; }
2164
+
2165
+ .search-select--bare {
2166
+ margin-bottom: 0; }
2167
+ .search-select--bare .legal-selector,
2168
+ .search-select--bare .e-searchselect__inner {
2169
+ margin-bottom: 0; }
2170
+ .search-select--bare .legal-selector,
2171
+ .search-select--bare .css-1pahdxg-control,
2172
+ .search-select--bare .css-yk16xz-control {
2173
+ min-height: 42px; }
2174
+ .search-select--bare .legal-selector {
2175
+ margin-bottom: 0; }
2176
+
2177
+ .search-select--small {
2178
+ width: 5.5rem; }
2179
+ @media (min-width: 960px) {
2180
+ .search-select--small {
2181
+ max-width: 100%; } }
2182
+
2183
+ .width {
2184
+ width: 85%; }
2185
+ @media (min-width: 575px) {
2186
+ .width {
2187
+ width: 60%; } }
2188
+
2189
+ .tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
2190
+ .tippy-box {
2191
+ background-color: #FFFFFF;
2192
+ border-radius: 4px;
2193
+ font-size: 16px;
2194
+ line-height: 1.4;
2195
+ white-space: normal;
2196
+ outline: 0;
2197
+ transition: all 0.3s ease;
2198
+ box-shadow: 0 0.25rem 0.5rem 0.25rem rgba(2, 55, 74, 0.2);
2199
+ z-index: 1000;
2200
+ color: inherit;
2201
+ cursor: pointer; }
2202
+ .tippy-box--inverted {
2203
+ background-color: #3D4042;
2204
+ color: white;
2205
+ border-radius: 0.3rem;
2206
+ font-size: 12px;
2207
+ box-shadow: none; }
2208
+ .tippy-box--inverted .tippy-content {
2209
+ padding: .75rem;
2210
+ white-space: pre-line; }
2211
+ .tippy-box--inverted .tippy-arrow {
2212
+ color: #3D4042; }
2213
+ .tippy-box .tooltip__button {
2214
+ align-items: center;
2215
+ display: inline-flex;
2216
+ flex-direction: row;
2217
+ white-space: nowrap; }
2218
+ .tippy-box .tooltip__button:hover {
2219
+ cursor: pointer; }
2220
+ .tippy-box .tooltip__button > svg,
2221
+ .tippy-box .tooltip__button > img {
2222
+ width: 1.5rem;
2223
+ margin-right: 0.5rem; }
2224
+ .tippy-box .tooltip__button > svg g g {
2225
+ fill: #3D4042; }
2226
+
2227
+ .tippy-content {
2228
+ padding: 0.5rem; }
2229
+
2230
+ .tippy-arrow {
2231
+ color: #FFFFFF; }
2232
+
2233
+ .sidemenu-tab {
2234
+ padding: 1rem 0.8rem;
2235
+ color: #B5BABD;
2236
+ background-color: transparent;
2237
+ border: none;
2238
+ outline: none;
2239
+ width: 100%;
2240
+ position: relative;
2241
+ cursor: pointer; }
2242
+ .sidemenu-tab svg {
2243
+ margin-right: 1rem; }
2244
+ .sidemenu-tab svg g g {
2245
+ fill: #B5BABD; }
2246
+ .sidemenu-tab--active {
2247
+ border-left: 2px solid #5DD8C3;
2248
+ color: #5DD8C3;
2249
+ background-color: #02374A; }
2250
+ .sidemenu-tab--active p {
2251
+ font-weight: bold; }
2252
+ .sidemenu-tab--active svg g g {
2253
+ fill: #5DD8C3; }
2254
+ .sidemenu-tab__inner {
2255
+ display: flex;
2256
+ flex-direction: row;
2257
+ align-items: center; }
2258
+ .sidemenu-tab--mobile {
2259
+ background-color: transparent;
2260
+ border: none;
2261
+ outline: none;
2262
+ width: 100%;
2263
+ padding: 0;
2264
+ position: relative; }
2265
+ .sidemenu-tab--mobile .sans-serif.--medium {
2266
+ font-size: 0.75rem; }
2267
+ .sidemenu-tab--mobile:hover {
2268
+ cursor: pointer; }
2269
+ .sidemenu-tab--mobile.sidemenu-tab--active {
2270
+ color: #078080;
2271
+ background-color: #E4F8F3; }
2272
+ .sidemenu-tab--mobile.sidemenu-tab--active .sidemenu-tab__inner p {
2273
+ font-weight: bold; }
2274
+ .sidemenu-tab--mobile.sidemenu-tab--active .sidemenu-tab__inner svg g g {
2275
+ fill: #078080; }
2276
+ .sidemenu-tab--mobile.sidemenu-tab--active .sidemenu-tab__inner svg g g use {
2277
+ fill: #078080; }
2278
+ .sidemenu-tab--mobile .sidemenu-tab__inner {
2279
+ display: flex;
2280
+ flex-direction: column;
2281
+ align-items: center; }
2282
+ .sidemenu-tab--mobile svg {
2283
+ margin-right: 0;
2284
+ width: 16px; }
2285
+ .sidemenu-tab--mobile svg g g use {
2286
+ fill: #6D7275; }
2287
+
2288
+ .e-spinner {
2289
+ animation: rotate 2s linear infinite;
2290
+ margin: -16px -16px 0 -25px;
2291
+ width: 50px;
2292
+ height: 50px; }
2293
+ .e-spinner .path {
2294
+ stroke: white;
2295
+ stroke-linecap: round;
2296
+ stroke-dasharray: 15, 150;
2297
+ animation: dash 1.5s ease-in-out infinite; }
2298
+
2299
+ .e-spinner.big {
2300
+ width: 70px;
2301
+ height: 70px; }
2302
+
2303
+ .spinner--primary .path {
2304
+ stroke: #05646E; }
2305
+
2306
+ .e-textarea {
2307
+ display: flex;
2308
+ flex-direction: column-reverse; }
2309
+ .e-textarea textarea {
2310
+ color: #3D4042;
2311
+ background-color: #F8F9FA;
2312
+ border-radius: 4px;
2313
+ padding: .75rem 0 .75rem .75rem;
2314
+ font-size: .875rem;
2315
+ height: 10rem;
2316
+ border: none;
2317
+ text-overflow: ellipsis;
2318
+ transition: box-shadow .3s ease;
2319
+ box-shadow: 0 0 0 1px #B5BABD;
2320
+ margin: .0005em;
2321
+ outline: none;
2322
+ resize: vertical; }
2323
+ .e-textarea textarea::placeholder {
2324
+ color: #6D7275; }
2325
+ .e-textarea textarea:-ms-input-placeholder {
2326
+ color: #6D7275; }
2327
+ .e-textarea textarea::-ms-input-placeholder {
2328
+ color: #6D7275; }
2329
+ .e-textarea textarea:hover {
2330
+ box-shadow: 0 0 0 1px #6D7275; }
2331
+ .e-textarea textarea:active, .e-textarea textarea:focus {
2332
+ box-shadow: 0 0 0 2px #05646E;
2333
+ outline: none; }
2334
+ .e-textarea.--group-invalid input {
2335
+ box-shadow: 0 0 0 2px #D63737;
2336
+ background-color: #FFECEF; }
2337
+ .e-textarea.--group-invalid input:active, .e-textarea.--group-invalid input:focus {
2338
+ box-shadow: 0 0 0 2px #05646E;
2339
+ outline: none;
2340
+ background-color: #F8F9FA; }
2341
+ .e-textarea.--is-invalid .e-text--error {
2342
+ display: flex;
2343
+ align-content: center;
2344
+ bottom: -1.5rem;
2345
+ margin-top: .5rem;
2346
+ color: #D63737; }
2347
+ .e-textarea.--is-invalid .e-text--error img {
2348
+ max-width: 20px;
2349
+ margin-right: .25rem; }
2350
+ .e-textarea.--is-invalid textarea {
2351
+ box-shadow: 0 0 0 2px #D63737;
2352
+ background-color: #FFECEF; }
2353
+ .e-textarea.--is-invalid textarea:active, .e-textarea.--is-invalid textarea:focus {
2354
+ box-shadow: 0 0 0 2px #05646E;
2355
+ outline: none;
2356
+ background-color: #F8F9FA; }
2357
+ .e-textarea .input-icon {
2358
+ position: absolute;
2359
+ transform: translate(-15%, -65%);
2360
+ right: 0;
2361
+ bottom: 0; }
2362
+ .e-textarea__inner {
2363
+ margin-bottom: 0.6rem; }
2364
+ .e-textarea .inputLabel {
2365
+ font-weight: bold; }
2366
+
2367
+ .e-toggle {
2368
+ display: flex;
2369
+ align-items: center;
2370
+ color: #000000; }
2371
+ .e-toggle .switch {
2372
+ position: relative;
2373
+ display: inline-block;
2374
+ width: 60px;
2375
+ height: 34px;
2376
+ outline: none; }
2377
+ .e-toggle .switch input {
2378
+ position: absolute;
2379
+ top: -99999px;
2380
+ left: -99999px; }
2381
+ .e-toggle .slider {
2382
+ position: absolute;
2383
+ cursor: pointer;
2384
+ top: 0;
2385
+ left: 0;
2386
+ right: 0;
2387
+ bottom: 0;
2388
+ background-color: #ccc;
2389
+ -webkit-transition: 0.4s;
2390
+ transition: 0.4s;
2391
+ border-radius: 34px; }
2392
+ .e-toggle .slider:before {
2393
+ position: absolute;
2394
+ content: '';
2395
+ height: 26px;
2396
+ width: 26px;
2397
+ left: 4px;
2398
+ bottom: 4px;
2399
+ background-color: #FFFFFF;
2400
+ transition: 0.4s;
2401
+ border-radius: 50%; }
2402
+ .e-toggle input:checked + .slider {
2403
+ background-color: green; }
2404
+ .e-toggle input:focus + .slider {
2405
+ box-shadow: 0 0 1px green; }
2406
+ .e-toggle input:checked + .slider:before {
2407
+ transform: translateX(26px); }
2408
+
2409
+ .top-bar-wrapper {
2410
+ display: none;
2411
+ height: 35px;
2412
+ overflow: hidden;
2413
+ transition: all 0.6s ease; }
2414
+ .top-bar-wrapper.--is-hidden {
2415
+ height: 0; }
2416
+ @media (min-width: 720px) {
2417
+ .top-bar-wrapper {
2418
+ display: block; } }
2419
+ .top-bar-wrapper .top-bar {
2420
+ display: flex;
2421
+ background-color: #F8F9FA;
2422
+ font-size: 0.9rem;
2423
+ letter-spacing: -0.3px;
2424
+ width: 100%;
2425
+ height: 100%;
2426
+ justify-content: center;
2427
+ align-items: flex-end;
2428
+ border: 1px solid #DBE1E5; }
2429
+ .top-bar-wrapper .top-bar-content {
2430
+ margin: 0 1rem 5px; }
2431
+ .top-bar-wrapper .top-bar-content svg {
2432
+ vertical-align: middle; }
2433
+
2434
+ .article {
2435
+ display: flex;
2436
+ flex-flow: row wrap;
2437
+ flex: 1 1 0;
2438
+ border-radius: 4px;
2439
+ box-shadow: 0 0.125rem 0.375rem 0 rgba(2, 55, 74, 0.25);
2440
+ max-width: 960px;
2441
+ margin: 1rem 0; }
2442
+ @media (min-width: 960px) {
2443
+ .article {
2444
+ margin: 0 0.5rem; } }
2445
+ .article .image {
2446
+ object-fit: cover;
2447
+ object-position: 25%;
2448
+ height: 13em;
2449
+ width: 100%; }
2450
+ @media (min-width: 720px) {
2451
+ .article .image {
2452
+ width: 35%;
2453
+ height: auto; } }
2454
+ .article .information {
2455
+ width: 100%;
2456
+ padding: 1rem 1.5rem 0;
2457
+ text-align: left;
2458
+ max-width: 100%; }
2459
+ @media (min-width: 720px) {
2460
+ .article .information {
2461
+ width: 65%;
2462
+ height: 100%; } }
2463
+ .article .information .title {
2464
+ font-weight: bold; }
2465
+ .article .information .summary {
2466
+ color: #6D7275;
2467
+ margin: 0.5rem 0;
2468
+ display: -webkit-box;
2469
+ -webkit-line-clamp: 5;
2470
+ -webkit-box-orient: vertical;
2471
+ overflow: hidden;
2472
+ text-overflow: ellipsis; }
2473
+ @media (min-width: 720px) {
2474
+ .article .information .summary {
2475
+ margin: 0;
2476
+ padding: 0.5rem 0; } }
2477
+ .article .information .e-button {
2478
+ margin: 2.5rem 0 1rem -1rem; }
2479
+ @media (min-width: 960px) {
2480
+ .article .information .e-button {
2481
+ margin-top: 0; } }
2482
+
2483
+ .base-box-group {
2484
+ display: block; }
2485
+ .base-box-group .base-box:first-child:not(:last-child) {
2486
+ border-radius: 4px 4px 0 0; }
2487
+ .base-box-group .base-box:not(:last-child):not(:first-child) {
2488
+ border-top: none;
2489
+ border-radius: 0; }
2490
+ .base-box-group .base-box:last-child:not(:first-child) {
2491
+ border-top: none;
2492
+ border-radius: 0 0 4px 4px; }
2493
+ .base-box-group--padded .base-box {
2494
+ padding: 2rem; }
2495
+
2496
+ .bottom-fixed-bar {
2497
+ padding: 0 1.5rem 1rem;
2498
+ display: flex;
2499
+ position: fixed;
2500
+ z-index: 3;
2501
+ bottom: 0;
2502
+ flex-direction: column;
2503
+ align-items: center;
2504
+ justify-content: center;
2505
+ width: 100%;
2506
+ background-color: black;
2507
+ color: #FFFFFF; }
2508
+ @media (min-width: 575px) {
2509
+ .bottom-fixed-bar {
2510
+ flex-direction: row;
2511
+ align-items: center;
2512
+ padding-bottom: 0; } }
2513
+ .bottom-fixed-bar__text {
2514
+ margin-top: 1rem;
2515
+ margin-bottom: 0.5rem;
2516
+ max-width: 48rem; }
2517
+ @media (min-width: 575px) {
2518
+ .bottom-fixed-bar__text {
2519
+ margin-bottom: 1rem;
2520
+ margin-right: 1.5rem; } }
2521
+ @media (min-width: 960px) {
2522
+ .bottom-fixed-bar__text {
2523
+ margin-right: 2.5rem; } }
2524
+ .bottom-fixed-bar__text a {
2525
+ text-decoration: underline;
2526
+ color: #FFFFFF; }
2527
+ .bottom-fixed-bar__text p {
2528
+ margin-bottom: 0; }
2529
+ .bottom-fixed-bar__button-container > .e-button {
2530
+ white-space: nowrap; }
2531
+
2532
+ .bottom-overlay {
2533
+ width: 100%;
2534
+ /* Full width */
2535
+ display: none; }
2536
+ .bottom-overlay.show {
2537
+ background-color: #032a38;
2538
+ /* Fallback color */
2539
+ background-color: rgba(3, 42, 56, 0.8);
2540
+ /* Black w/ opacity */
2541
+ display: flex;
2542
+ align-items: center;
2543
+ height: 100%;
2544
+ /* Full height */
2545
+ left: 0;
2546
+ overflow: auto;
2547
+ /* Enable scroll if needed */
2548
+ position: fixed;
2549
+ /* Stay in place */
2550
+ top: 0;
2551
+ transition: all .4s ease-in-out;
2552
+ z-index: 1001;
2553
+ /* Sit on top */ }
2554
+ .bottom-overlay .bottom-overlay__nav {
2555
+ background: #FFFFFF;
2556
+ border-top-left-radius: 4px;
2557
+ border-top-right-radius: 4px;
2558
+ bottom: 0;
2559
+ position: fixed;
2560
+ transform: translateY(100%);
2561
+ transition: all .4s ease-in-out;
2562
+ width: 100%;
2563
+ z-index: 2; }
2564
+ .bottom-overlay .bottom-overlay__nav.show {
2565
+ transform: translateY(0); }
2566
+ @media (min-width: 720px) {
2567
+ .bottom-overlay .bottom-overlay__nav {
2568
+ display: block;
2569
+ transform: translateY(0); } }
2570
+ .bottom-overlay .overlay__delimiter {
2571
+ padding: 0.5rem 0 1.5rem; }
2572
+ .bottom-overlay .overlay__delimiter:after {
2573
+ content: "";
2574
+ background: #B5BABD;
2575
+ border-radius: 4px;
2576
+ display: block;
2577
+ height: 0.25rem;
2578
+ margin: 0 auto;
2579
+ width: 7.5rem; }
2580
+ .bottom-overlay .overlay__delimiter.overlay__delimiter__scrolling {
2581
+ box-shadow: 0 0.125rem 0.375rem 0 rgba(2, 55, 74, 0.25);
2582
+ position: relative;
2583
+ z-index: 1; }
2584
+ @media (min-width: 720px) {
2585
+ .bottom-overlay .overlay__delimiter {
2586
+ display: none; } }
2587
+ .bottom-overlay .overlay__scrollable-section {
2588
+ position: sticky;
2589
+ max-height: 21rem;
2590
+ min-height: 8.5rem;
2591
+ display: flex;
2592
+ overflow-y: scroll;
2593
+ padding-left: 1.5rem;
2594
+ padding-right: 1.5rem;
2595
+ width: 100%; }
2596
+ .bottom-overlay .overlay__footer {
2597
+ border-top: solid 1px #DBE1E5;
2598
+ padding: 1.5rem 1.5rem 2rem; }
2599
+
2600
+ .box--form {
2601
+ background: #FFFFFF;
2602
+ border-radius: 4px;
2603
+ box-shadow: 0 2px 6px 0 rgba(2, 55, 74, 0.25);
2604
+ padding-left: 1.5rem;
2605
+ padding-right: 1.5rem; }
2606
+ @media (min-width: 1200px) {
2607
+ .box--form {
2608
+ padding-left: 2rem;
2609
+ padding-right: 2rem; } }
2610
+ .box--form .box--form__title {
2611
+ color: #3D4042;
2612
+ font-family: "Inter", sans-serif;
2613
+ font-weight: bold;
2614
+ width: 95%; }
2615
+ @media (max-width: 369px) {
2616
+ .box--form .box--form__title {
2617
+ font-size: 1rem; } }
2618
+ .box--form .box--form__close {
2619
+ display: flex;
2620
+ line-height: 1rem;
2621
+ color: #3D4042;
2622
+ font-size: 35px;
2623
+ font-weight: lighter;
2624
+ justify-content: flex-end; }
2625
+ .box--form .box--form__close:hover, .box--form .box--form__close:focus {
2626
+ color: #000;
2627
+ text-decoration: none;
2628
+ cursor: pointer; }
2629
+
2630
+ .box--form__header {
2631
+ display: flex;
2632
+ border-bottom: solid 1px #DBE1E5;
2633
+ padding: 1.5rem 0 1rem; }
2634
+
2635
+ .box--form__main {
2636
+ padding: 2rem 0; }
2637
+ @media (max-width: 369px) {
2638
+ .box--form__main {
2639
+ padding: 0.5rem 0; } }
2640
+
2641
+ .box--form__body:not(:last-child) {
2642
+ padding-bottom: 1.5rem; }
2643
+ @media (max-width: 369px) {
2644
+ .box--form__body:not(:last-child) {
2645
+ padding-bottom: 0.5rem; } }
2646
+
2647
+ .box--form__body__footer {
2648
+ text-align: center; }
2649
+
2650
+ .box--form__button--main {
2651
+ margin-bottom: 1rem; }
2652
+
2653
+ .box--form__button-annotation {
2654
+ color: #3D4042; }
2655
+
2656
+ .box--form__footer {
2657
+ align-items: center;
2658
+ border-top: solid 1px #DBE1E5;
2659
+ display: flex;
2660
+ justify-content: space-between;
2661
+ padding: 1.5rem 0 1rem 0; }
2662
+ @media (min-width: 575px) {
2663
+ .box--form__footer .e-button {
2664
+ white-space: nowrap; } }
2665
+ @media (max-width: 369px) {
2666
+ .box--form__footer {
2667
+ padding: 0.5rem 0 1rem 0; } }
2668
+
2669
+ .box--form__footer__text {
2670
+ margin-right: 5px;
2671
+ width: 60%; }
2672
+ @media (min-width: 575px) {
2673
+ .box--form__footer__text {
2674
+ white-space: nowrap; } }
2675
+
2676
+ .box--form__link {
2677
+ color: #05646E; }
2678
+
2679
+ .body-container {
2680
+ display: flex;
2681
+ flex-direction: column; }
2682
+ .body-container .label {
2683
+ font-weight: 900;
2684
+ margin-top: 10px; }
2685
+ .body-container .input {
2686
+ margin-top: 10px; }
2687
+ .body-container .input.password {
2688
+ margin-bottom: 15px; }
2689
+ .body-container .body-button {
2690
+ margin-top: 90px; }
2691
+
2692
+ .breadcrumb-container {
2693
+ margin: 1.5rem 0; }
2694
+
2695
+ .contact-box {
2696
+ display: flex;
2697
+ flex-flow: column;
2698
+ width: 100%; }
2699
+ .contact-box__phone {
2700
+ color: #05646E;
2701
+ font-size: 0.9rem;
2702
+ font-weight: bold; }
2703
+ .contact-box__schedule {
2704
+ font-size: 0.8rem;
2705
+ text-align: left;
2706
+ margin: 0;
2707
+ max-width: 12rem; }
2708
+ .contact-box--mobile .contact-box__schedule {
2709
+ color: #6D7275;
2710
+ font-size: 1rem;
2711
+ text-align: center;
2712
+ margin: 0.5rem 0;
2713
+ max-width: none; }
2714
+ .contact-box--dark-mode .contact-box__phone {
2715
+ color: #EFF7F5; }
2716
+ .contact-box--dark-mode .contact-box__schedule {
2717
+ color: #B5BABD; }
2718
+ .contact-box--dark-mode .contact-box--mobile.contact-box__schedule {
2719
+ color: #B5BABD; }
2720
+ .contact-box .e-button {
2721
+ display: flex;
2722
+ justify-content: center; }
2723
+ .contact-box .e-button:before {
2724
+ content: '';
2725
+ width: 20px;
2726
+ height: 20px;
2727
+ background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E %3Cdefs%3E %3Cpath id%3D%22ep7tr2p7ra%22 d%3D%22M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z%22%2F%3E %3C%2Fdefs%3E %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cg%3E %3Cg%3E %3Cg%3E %3Cg transform%3D%22translate(-376.000000%2C -314.000000) translate(328.000000%2C 205.000000) translate(32.000000%2C 90.000000) translate(16.000000%2C 19.000000)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3Cmask id%3D%227tvbvoimzb%22 fill%3D%22%23fff%22%3E %3Cuse xlink%3Ahref%3D%22%23ep7tr2p7ra%22%2F%3E %3C%2Fmask%3E %3Cg class%3D%22icon-web-24-p%22 fill%3D%22%23fff%22 mask%3D%22url(%237tvbvoimzb)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E");
2728
+ margin-right: 0.5rem; }
2729
+
2730
+ .feedback {
2731
+ display: flex;
2732
+ flex-direction: column;
2733
+ align-items: center;
2734
+ text-align: center; }
2735
+ .feedback__main {
2736
+ padding: 3rem 0 4rem;
2737
+ max-width: 25em; }
2738
+ .feedback--large {
2739
+ flex-direction: column;
2740
+ height: 100%; }
2741
+ .feedback--large .feedback__main {
2742
+ align-items: center;
2743
+ display: flex;
2744
+ flex-direction: column;
2745
+ justify-content: center;
2746
+ min-height: 27.5rem;
2747
+ padding: 0; }
2748
+ .feedback--fluid {
2749
+ height: 100%;
2750
+ display: flex;
2751
+ justify-content: center;
2752
+ align-items: center; }
2753
+ .feedback--error .feedback__icon {
2754
+ background: #FFECEF; }
2755
+ .feedback--error .feedback__title {
2756
+ color: #D63737; }
2757
+ .feedback--success .feedback__icon {
2758
+ background: #E4F8F3; }
2759
+ .feedback--success .feedback__title {
2760
+ color: #02374A;
2761
+ font-weight: bold; }
2762
+ .feedback__icon {
2763
+ align-items: center;
2764
+ border-radius: 100%;
2765
+ display: flex;
2766
+ height: 4.6rem;
2767
+ padding: 0.8rem;
2768
+ margin: 0 auto 1rem;
2769
+ width: 4.6rem; }
2770
+ .feedback__icon__img {
2771
+ width: 3rem;
2772
+ height: 3rem; }
2773
+ .feedback__image_img {
2774
+ margin: 0 auto;
2775
+ margin-bottom: 2rem;
2776
+ width: 11rem; }
2777
+ @media (min-width: 575px) {
2778
+ .feedback__image_img {
2779
+ width: 13rem; } }
2780
+ @media (min-width: 960px) {
2781
+ .feedback__image_img {
2782
+ width: 18rem; } }
2783
+ .feedback__title {
2784
+ font-weight: bold;
2785
+ margin-bottom: 0.5rem; }
2786
+ .feedback__text--grey {
2787
+ color: #6D7275; }
2788
+ .feedback__buttons {
2789
+ display: flex;
2790
+ flex-direction: column; }
2791
+ .feedback__cancel__a {
2792
+ margin-top: 0.5rem;
2793
+ color: #05646E;
2794
+ text-decoration: underline; }
2795
+ .feedback__cancel__a:hover {
2796
+ cursor: pointer; }
2797
+
2798
+ .menu-items-section {
2799
+ display: flex;
2800
+ flex-flow: column nowrap; }
2801
+ @media (min-width: 575px) {
2802
+ .menu-items-section {
2803
+ max-width: 250px; } }
2804
+ .menu-items-section__title-wrapper {
2805
+ background-color: #F3F7FA;
2806
+ display: flex;
2807
+ flex-direction: row;
2808
+ justify-content: center;
2809
+ padding: 0.5rem;
2810
+ margin-bottom: 0.5rem; }
2811
+ @media (min-width: 575px) {
2812
+ .menu-items-section__title-wrapper {
2813
+ justify-content: left; } }
2814
+ .menu-items-section__title-wrapper svg {
2815
+ margin-right: 0.5rem; }
2816
+ .menu-items-section__title-wrapper__title {
2817
+ font-weight: bold; }
2818
+
2819
+ .pagination {
2820
+ align-items: center;
2821
+ box-sizing: border-box;
2822
+ display: flex;
2823
+ justify-content: center;
2824
+ user-select: none;
2825
+ -moz-user-select: none;
2826
+ -webkit-user-select: none; }
2827
+ .pagination__control {
2828
+ display: flex; }
2829
+ .pagination__control svg {
2830
+ cursor: pointer;
2831
+ fill: #6D7275;
2832
+ width: 1rem; }
2833
+ .pagination__control svg path {
2834
+ pointer-events: none; }
2835
+ .pagination__control--prev svg {
2836
+ transform: rotate(180deg); }
2837
+ .pagination__control--hidden {
2838
+ cursor: default;
2839
+ pointer-events: none;
2840
+ visibility: hidden; }
2841
+ .pagination__page-wrapper {
2842
+ display: flex;
2843
+ margin: 0 1rem; }
2844
+ .pagination__page {
2845
+ align-items: center;
2846
+ background: #F8F9FA;
2847
+ border: 2px solid #B5BABD;
2848
+ border-radius: 4px;
2849
+ box-sizing: border-box;
2850
+ color: #6D7275;
2851
+ cursor: pointer;
2852
+ display: flex;
2853
+ justify-content: center;
2854
+ height: 2.125rem;
2855
+ margin: 0 0.25rem;
2856
+ min-width: 2.125rem;
2857
+ padding: 0.3rem; }
2858
+ .pagination__page--active {
2859
+ background: #DBE1E5;
2860
+ border: 2px solid #6D7275;
2861
+ color: #3D4042; }
2862
+ .pagination__page--ellipsis {
2863
+ cursor: default; }
2864
+
2865
+ .pricing-card {
2866
+ position: relative;
2867
+ max-width: 400px;
2868
+ border: solid 1px transparent;
2869
+ list-style: none; }
2870
+ .pricing-card.--selectable .pricing-card__radio-label {
2871
+ cursor: pointer; }
2872
+ .pricing-card.--selectable:not(.--selected):hover .pricing-card__wrapper {
2873
+ border-color: #B5BABD; }
2874
+ .pricing-card.--selected .pricing-card__wrapper {
2875
+ border-color: #5DD8C3; }
2876
+ .pricing-card__radio-label .radio-input {
2877
+ display: none; }
2878
+ .pricing-card__radio-label .radio-input + .radio-checkbox {
2879
+ background-color: #FFFFFF;
2880
+ position: absolute;
2881
+ top: 1rem;
2882
+ left: 1rem;
2883
+ width: 20px;
2884
+ height: 20px;
2885
+ border-radius: 50%;
2886
+ border: 1px solid; }
2887
+ .pricing-card__radio-label .radio-input:checked + .radio-checkbox {
2888
+ border: 5px solid #078080; }
2889
+ .pricing-card__wrapper {
2890
+ background-color: #FFFFFF;
2891
+ box-shadow: 0 2px 6px 0 rgba(2, 55, 74, 0.25);
2892
+ border-radius: 4px;
2893
+ border: solid 1px transparent; }
2894
+ .pricing-card__wrapper ul {
2895
+ display: flex;
2896
+ flex-direction: column;
2897
+ margin-top: 0.5rem; }
2898
+ .pricing-card__wrapper ul li {
2899
+ text-align: left;
2900
+ display: flex;
2901
+ flex-direction: row;
2902
+ margin-bottom: 2rem; }
2903
+ .pricing-card__wrapper ul li p {
2904
+ text-align: left; }
2905
+ .pricing-card__wrapper ul li img {
2906
+ width: 2.2rem;
2907
+ height: 2.2rem;
2908
+ margin-right: 1rem; }
2909
+ .pricing-card__header {
2910
+ padding: 1rem;
2911
+ text-align: center;
2912
+ background: #F8F9FA; }
2913
+ .pricing-card__header__text {
2914
+ color: #6D7275;
2915
+ margin: 0 1rem; }
2916
+ .pricing-card__body {
2917
+ color: #3D4042;
2918
+ display: flex;
2919
+ flex-flow: column nowrap;
2920
+ padding: 1.5rem 1rem;
2921
+ text-align: center; }
2922
+ .pricing-card__body__price {
2923
+ font-size: 2.25rem;
2924
+ line-height: 2rem;
2925
+ margin-top: 0;
2926
+ margin-bottom: 1.5rem;
2927
+ order: 2; }
2928
+ @media (min-width: 1200px) {
2929
+ .pricing-card__body__price {
2930
+ font-size: 2.25rem;
2931
+ line-height: 2.5rem; } }
2932
+ .pricing-card__body__price span {
2933
+ font-size: 1rem;
2934
+ display: inline;
2935
+ margin-left: 0.2rem; }
2936
+ .pricing-card__body__text {
2937
+ font-size: 0.85rem;
2938
+ color: #6D7275;
2939
+ order: 4; }
2940
+ .pricing-card__body__features-list {
2941
+ display: none;
2942
+ order: 6; }
2943
+ @media (min-width: 720px) {
2944
+ .pricing-card__body__features-list {
2945
+ display: block; } }
2946
+ .pricing-card__body__features-list.--expanded {
2947
+ display: block; }
2948
+ .pricing-card__body__features-list hr {
2949
+ width: 100%;
2950
+ border-top: 1px solid #DBE1E5;
2951
+ margin-bottom: 1.5rem; }
2952
+ .pricing-card__body__features-list__item::before {
2953
+ content: '\2022';
2954
+ color: #05646E;
2955
+ font-weight: bold;
2956
+ display: inline-block;
2957
+ margin-right: 1rem; }
2958
+ .pricing-card__body__features-list__item:not(:last-child) {
2959
+ margin-bottom: 1rem; }
2960
+ .pricing-card__body .e-button.see-more-button {
2961
+ display: block;
2962
+ margin: auto;
2963
+ order: 8; }
2964
+ @media (min-width: 720px) {
2965
+ .pricing-card__body .e-button.see-more-button {
2966
+ display: none; } }
2967
+ .pricing-card__disclaimer {
2968
+ color: #6D7275;
2969
+ font-size: 0.75rem;
2970
+ text-align: center;
2971
+ width: 100%;
2972
+ display: flex;
2973
+ justify-content: center;
2974
+ padding: 0.8rem 0 0.4rem;
2975
+ max-width: 20rem; }
2976
+ @media (min-width: 720px) {
2977
+ .pricing-card__disclaimer {
2978
+ max-width: unset; } }
2979
+ .pricing-card__button {
2980
+ width: 100%; }
2981
+
2982
+ .snackbar {
2983
+ color: #1E2021;
2984
+ line-height: 1.5;
2985
+ margin-bottom: 1em;
2986
+ padding: 0.5em 0 0.5em 0;
2987
+ margin-right: 2%;
2988
+ margin-left: 2%;
2989
+ width: 96%;
2990
+ transition: transform 1s;
2991
+ z-index: 10000;
2992
+ overflow: hidden;
2993
+ border-radius: 4px;
2994
+ box-shadow: 0 2px 6px 0 rgba(2, 55, 74, 0.25);
2995
+ font-size: 14px; }
2996
+ @media (min-width: 575px) {
2997
+ .snackbar {
2998
+ margin: 0;
2999
+ width: 18rem; } }
3000
+ @media (min-width: 720px) {
3001
+ .snackbar {
3002
+ width: 27rem; } }
3003
+ @media (min-width: 960px) {
3004
+ .snackbar {
3005
+ width: 36rem; } }
3006
+ .snackbar:before {
3007
+ content: '';
3008
+ display: block;
3009
+ width: 1.5rem;
3010
+ height: 1.5rem;
3011
+ float: left;
3012
+ margin: 1.25rem 0.75rem 0 0.75rem; }
3013
+ @media (min-width: 575px) {
3014
+ .snackbar:before {
3015
+ margin: 0.75rem 0.75rem 0 0.75rem; } }
3016
+ .snackbar-close-icon {
3017
+ cursor: pointer;
3018
+ float: right;
3019
+ font-size: 1.25rem;
3020
+ line-height: 3;
3021
+ margin-left: 1em;
3022
+ margin-right: 1em;
3023
+ opacity: 0.8; }
3024
+ @media (min-width: 575px) {
3025
+ .snackbar-close-icon {
3026
+ line-height: 2; } }
3027
+ .snackbar--welcome {
3028
+ background-color: #1E2021;
3029
+ color: #FFFFFF;
3030
+ border: 1px solid #6D7275; }
3031
+ .snackbar--welcome:before {
3032
+ background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E %3Cdefs%3E %3Cpath id%3D%22prefix__a%22 d%3D%22M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7V9zm4 0h2v2h-2V9zm4 0h2v2h-2V9z%22%2F%3E %3C%2Fdefs%3E %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3Cmask id%3D%22prefix__b%22 fill%3D%22%23fff%22%3E %3Cuse xlink%3Ahref%3D%22%23prefix__a%22%2F%3E %3C%2Fmask%3E %3Cg fill%3D%22%235DD8C3%22 mask%3D%22url(%23prefix__b)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat; }
3033
+ .snackbar--success {
3034
+ background-color: #5DD8C3;
3035
+ color: #02374A;
3036
+ border: 1px solid #34B2A7; }
3037
+ .snackbar--success:before {
3038
+ background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E %3Cdefs%3E %3Cpath id%3D%22prefix__a%22 d%3D%22M8.8 15.9L4.6 11.7 3.2 13.1 8.8 18.7 20.8 6.7 19.4 5.3z%22%2F%3E %3C%2Fdefs%3E %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3Cmask id%3D%22prefix__b%22 fill%3D%22%23fff%22%3E %3Cuse xlink%3Ahref%3D%22%23prefix__a%22%2F%3E %3C%2Fmask%3E %3Cg fill%3D%22%2302374A%22 mask%3D%22url(%23prefix__b)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat; }
3039
+ .snackbar--error {
3040
+ background-color: #D63737;
3041
+ color: #FFFFFF;
3042
+ border: 1px solid #F09D9E; }
3043
+ .snackbar--error:before {
3044
+ background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E %3Cdefs%3E %3Cpath id%3D%22prefix__a%22 d%3D%22M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-9h2v6h-2v-6zm0-4h2v2h-2V7z%22 %2F%3E %3C%2Fdefs%3E %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22 %2F%3E %3Cmask id%3D%22prefix__b%22 fill%3D%22%23fff%22%3E %3Cuse xlink%3Ahref%3D%22%23prefix__a%22 %2F%3E %3C%2Fmask%3E %3Cuse fill%3D%22%23000%22 fill-rule%3D%22nonzero%22 xlink%3Ahref%3D%22%23prefix__a%22 %2F%3E %3Cg fill%3D%22%23FFF%22 mask%3D%22url(%23prefix__b)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22 %2F%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat; }
3045
+ .snackbar--reminder {
3046
+ background-color: #F2BD6A;
3047
+ color: #1E2021;
3048
+ border: 1px solid #CD9A4C; }
3049
+ .snackbar--reminder:before {
3050
+ background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E %3Cdefs%3E %3Cpath id%3D%22prefix__a%22 d%3D%22M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h2v2H7V9zm4 0h2v2h-2V9zm4 0h2v2h-2V9z%22%2F%3E %3C%2Fdefs%3E %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3Cmask id%3D%22prefix__b%22 fill%3D%22%23fff%22%3E %3Cuse xlink%3Ahref%3D%22%23prefix__a%22%2F%3E %3C%2Fmask%3E %3Cg fill%3D%22%23936C2F%22 mask%3D%22url(%23prefix__b)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat; }
3051
+ .snackbar-content {
3052
+ display: flex;
3053
+ flex-direction: column; }
3054
+ .snackbar-content__text-container {
3055
+ display: flex;
3056
+ flex-direction: column;
3057
+ margin-right: 1rem;
3058
+ min-width: 1%; }
3059
+ .snackbar-content__button button {
3060
+ margin-top: 0.5rem;
3061
+ height: auto !important; }
3062
+ .snackbar-content__button button label {
3063
+ white-space: nowrap; }
3064
+ @media (min-width: 720px) {
3065
+ .snackbar-content {
3066
+ flex-direction: row;
3067
+ margin-top: inherit; } }
3068
+ .snackbar-title {
3069
+ font-weight: bold; }
3070
+ .snackbar .e-button.remove-yellow {
3071
+ border-color: transparent; }
3072
+ .snackbar .e-button.remove-yellow:hover {
3073
+ background-color: #FFFFFF; }
3074
+
3075
+ .homeStepsItem {
3076
+ border-radius: 4px;
3077
+ display: flex;
3078
+ max-width: 100%;
3079
+ padding: 2rem;
3080
+ flex-flow: row nowrap;
3081
+ min-width: 100%;
3082
+ width: 100%;
3083
+ align-items: flex-start;
3084
+ text-align: center;
3085
+ background: #FFFFFF;
3086
+ box-shadow: 0 0.25rem 0.5rem 0 rgba(2, 55, 74, 0.2);
3087
+ border: 4px;
3088
+ margin-right: 0.5rem;
3089
+ margin-bottom: 1rem; }
3090
+ .homeStepsItem:last-child {
3091
+ margin-right: 0; }
3092
+ @media (min-width: 575px) {
3093
+ .homeStepsItem {
3094
+ padding: 1.5rem; } }
3095
+ @media (min-width: 720px) {
3096
+ .homeStepsItem {
3097
+ max-width: calc(100% / 3 - 0.5rem);
3098
+ min-width: calc(100% / 3 - 0.5rem);
3099
+ padding: 1.5rem;
3100
+ height: 342px;
3101
+ flex-flow: column nowrap; } }
3102
+ @media (min-width: 960px) {
3103
+ .homeStepsItem {
3104
+ margin-right: 0;
3105
+ max-width: calc(100% / 3 - 1rem);
3106
+ min-width: calc(100% / 3 - 1rem); } }
3107
+ .homeStepsItem .step__information {
3108
+ text-align: left;
3109
+ max-width: 50%;
3110
+ align-self: center; }
3111
+ @media (min-width: 720px) {
3112
+ .homeStepsItem .step__information {
3113
+ max-width: 100%;
3114
+ text-align: center;
3115
+ margin-top: 0; } }
3116
+ .homeStepsItem .step__information_title {
3117
+ font-weight: bold; }
3118
+ .homeStepsItem .step__image {
3119
+ display: flex;
3120
+ justify-content: center;
3121
+ max-width: 7.5rem;
3122
+ text-align: center;
3123
+ width: 50%;
3124
+ align-self: center;
3125
+ padding-bottom: 0;
3126
+ margin: 0 auto; }
3127
+ @media (min-width: 575px) {
3128
+ .homeStepsItem .step__image {
3129
+ padding-bottom: 2.5rem; } }
3130
+ @media (min-width: 960px) {
3131
+ .homeStepsItem .step__image {
3132
+ margin-top: 2rem; } }
3133
+ @media (min-width: 720px) {
3134
+ .homeStepsItem .step__image {
3135
+ width: 100%; } }
3136
+ .homeStepsItem .gatsby-image-wrapper {
3137
+ width: 88px; }
3138
+ @media (min-width: 575px) {
3139
+ .homeStepsItem .gatsby-image-wrapper {
3140
+ height: 88px; } }
3141
+ .homeStepsItem .gatsby-image-wrapper img {
3142
+ height: 100%; }
3143
+ .homeStepsItem p {
3144
+ margin-bottom: 0.5rem;
3145
+ font-weight: bold; }
3146
+ @media (min-width: 575px) {
3147
+ .homeStepsItem p {
3148
+ margin-bottom: 1.5rem; } }
3149
+ .homeStepsItem small {
3150
+ color: #6D7275; }
3151
+ .homeStepsItem:not(:first-child) .gatsby-image-wrapper {
3152
+ width: 100%; }
3153
+
3154
+ .tooltip-form {
3155
+ margin-top: 0.5rem; }
3156
+
3157
+ .e-text {
3158
+ display: flex;
3159
+ flex-direction: column-reverse;
3160
+ margin-bottom: 2rem;
3161
+ position: relative; }
3162
+ .e-text input {
3163
+ -webkit-appearance: none;
3164
+ -moz-appearance: none;
3165
+ appearance: none;
3166
+ color: #3D4042;
3167
+ background-color: #F8F9FA;
3168
+ border-radius: 4px;
3169
+ padding: 0.75rem 0 0.75rem 0.75rem;
3170
+ font-size: 0.875rem;
3171
+ height: 40px;
3172
+ border: none;
3173
+ text-overflow: ellipsis;
3174
+ transition: box-shadow 0.3s ease;
3175
+ box-shadow: 0 0 0 1px #B5BABD;
3176
+ margin: 0.0005em;
3177
+ outline: none; }
3178
+ .e-text input::placeholder {
3179
+ color: #6D7275; }
3180
+ .e-text input:-ms-input-placeholder {
3181
+ color: #6D7275; }
3182
+ .e-text input::-ms-input-placeholder {
3183
+ color: #6D7275; }
3184
+ .e-text input:hover {
3185
+ box-shadow: 0 0 0 1px #6D7275; }
3186
+ .e-text input:active, .e-text input:focus {
3187
+ box-shadow: 0 0 0 2px #05646E;
3188
+ outline: none; }
3189
+ .e-text .form-group__label {
3190
+ color: #3D4042;
3191
+ font-weight: bold; }
3192
+ .e-text .form-group__label-icon {
3193
+ color: #3D4042;
3194
+ font-weight: bold;
3195
+ display: flex;
3196
+ align-items: center; }
3197
+ .e-text .form-group__label-icon img {
3198
+ margin-left: 0.4rem;
3199
+ align-self: flex-start; }
3200
+ @media (min-width: 960px) {
3201
+ .e-text .form-group__label-icon img {
3202
+ align-self: center;
3203
+ margin-top: 0; } }
3204
+ .e-text__error {
3205
+ display: none; }
3206
+ .e-text__inner {
3207
+ margin-bottom: 0.6rem; }
3208
+ .e-text__children {
3209
+ margin-top: 0.5rem; }
3210
+ .e-text--group-invalid input {
3211
+ box-shadow: 0 0 0 2px #D63737;
3212
+ background-color: #FFECEF; }
3213
+ .e-text--group-invalid input:active, .e-text--group-invalid input:focus {
3214
+ box-shadow: 0 0 0 2px #05646E;
3215
+ outline: none;
3216
+ background-color: #F8F9FA; }
3217
+ .e-text--is-invalid {
3218
+ margin-bottom: 4rem; }
3219
+ .e-text--is-invalid .e-text__error {
3220
+ display: flex;
3221
+ align-content: center;
3222
+ position: absolute;
3223
+ bottom: -5.5rem;
3224
+ margin-top: 0.5rem;
3225
+ color: #D63737;
3226
+ height: 5rem; }
3227
+ .e-text--is-invalid .e-text__error-icon {
3228
+ display: flex; }
3229
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
3230
+ .e-text--is-invalid .e-text__error-icon {
3231
+ width: 5%;
3232
+ justify-content: center;
3233
+ align-items: center;
3234
+ margin-right: 10px; } }
3235
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
3236
+ .e-text--is-invalid .e-text__error-label {
3237
+ width: 95%;
3238
+ display: flex; } }
3239
+ .e-text--is-invalid .e-text__error img {
3240
+ max-width: 20px;
3241
+ margin-right: 0.25rem;
3242
+ height: 25%; }
3243
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
3244
+ .e-text--is-invalid .e-text__error img {
3245
+ height: 20px; } }
3246
+ .e-text--is-invalid input {
3247
+ box-shadow: 0 0 0 2px #D63737;
3248
+ background-color: #FFECEF; }
3249
+ .e-text--is-invalid input:active, .e-text--is-invalid input:focus {
3250
+ box-shadow: 0 0 0 2px #05646E;
3251
+ outline: none;
3252
+ background-color: #F8F9FA; }
3253
+ .e-text .input-icon {
3254
+ position: absolute;
3255
+ transform: translate(-15%, -65%);
3256
+ right: 0;
3257
+ bottom: 0; }
3258
+ .e-text .input-icon-password {
3259
+ cursor: pointer;
3260
+ position: absolute;
3261
+ transform: translate(-40%, -65%);
3262
+ right: 0;
3263
+ bottom: 0; }
3264
+ .e-text .formgroup--input__button {
3265
+ align-self: flex-start;
3266
+ font-size: 0.75rem;
3267
+ padding: 0.25rem 0; }
3268
+ .e-text .formgroup--input__button:hover {
3269
+ background-color: transparent;
3270
+ text-decoration: underline; }
3271
+
3272
+ .tooltip-menu__item {
3273
+ border-radius: 4px;
3274
+ border: 1px solid #DBE1E5;
3275
+ display: flex;
3276
+ padding: 0.1875rem;
3277
+ margin-right: .5rem;
3278
+ transition: all .3s ease;
3279
+ position: relative;
3280
+ cursor: pointer; }
3281
+ .tooltip-menu__item span {
3282
+ position: absolute;
3283
+ color: #6D7275;
3284
+ bottom: -1.25rem;
3285
+ left: -.25rem;
3286
+ right: 0;
3287
+ margin: 0 auto;
3288
+ opacity: 0;
3289
+ visibility: hidden;
3290
+ transform: translateY(1rem);
3291
+ transition: all .3s ease; }
3292
+ .tooltip-menu__item.--is-open {
3293
+ background-color: #E4F8F3; }
3294
+ .tooltip-menu__item:hover {
3295
+ background-color: #E4F8F3; }
3296
+ .tooltip-menu__item:hover span {
3297
+ transform: translate(0);
3298
+ visibility: visible;
3299
+ opacity: 1; }
3300
+
3301
+ .articles_wrapper {
3302
+ display: flex;
3303
+ flex-direction: column;
3304
+ align-items: stretch; }
3305
+ @media (min-width: 960px) {
3306
+ .articles_wrapper {
3307
+ flex-direction: row; } }
3308
+
3309
+ .homeSteps__container {
3310
+ transform: translateY(0%); }
3311
+ @media (min-width: 575px) {
3312
+ .homeSteps__container {
3313
+ transform: translateY(0%); } }
3314
+ @media (min-width: 720px) {
3315
+ .homeSteps__container {
3316
+ transform: translateY(0%); } }
3317
+ .homeSteps__container .homeSteps {
3318
+ display: flex;
3319
+ flex-direction: column;
3320
+ align-items: center;
3321
+ padding-top: 2rem;
3322
+ padding-bottom: 2rem;
3323
+ position: relative; }
3324
+ .homeSteps__container .homeSteps .homeStepsItemsContainer {
3325
+ display: flex;
3326
+ justify-content: space-between;
3327
+ width: 100%;
3328
+ max-width: 888px;
3329
+ flex-flow: row wrap;
3330
+ padding: 0 1rem; }
3331
+ @media (min-width: 960px) {
3332
+ .homeSteps__container .homeSteps .homeStepsItemsContainer {
3333
+ flex-flow: row nowrap;
3334
+ padding: 0; } }
3335
+
3336
+ .mobile-bottom-bar {
3337
+ background: #FFFFFF;
3338
+ position: fixed;
3339
+ display: flex;
3340
+ flex-direction: row;
3341
+ justify-content: space-between;
3342
+ bottom: 0;
3343
+ height: 3.25rem;
3344
+ width: 100%;
3345
+ box-shadow: 0 0 6px 0 rgba(2, 55, 74, 0.25);
3346
+ z-index: 1; }
3347
+ @media (min-width: 575px) {
3348
+ .mobile-bottom-bar {
3349
+ display: none; } }
3350
+ .mobile-bottom-bar--active {
3351
+ display: flex; }
3352
+ .mobile-bottom-bar .e-button {
3353
+ max-height: 2.8rem;
3354
+ margin: 0 0.50rem;
3355
+ width: 2.75rem;
3356
+ min-width: 2.75rem;
3357
+ padding: 0;
3358
+ outline: none;
3359
+ display: flex;
3360
+ align-items: center;
3361
+ justify-content: center; }
3362
+ .mobile-bottom-bar .e-button:hover {
3363
+ cursor: pointer; }
3364
+ .mobile-bottom-bar .e-button svg {
3365
+ width: 24px;
3366
+ margin: 0; }
3367
+
3368
+ .how-it-works-wrapper {
3369
+ background-color: #F8F9FA; }
3370
+ @media (min-width: 960px) {
3371
+ .how-it-works-wrapper {
3372
+ background-repeat: no-repeat;
3373
+ background-position: top right;
3374
+ background-size: 21rem; } }
3375
+ @media only screen and (max-width: 960px) {
3376
+ .how-it-works-wrapper {
3377
+ background-image: none !important; } }
3378
+ .how-it-works-wrapper .works-title {
3379
+ width: auto;
3380
+ font-family: "Lora", serif;
3381
+ text-align: center;
3382
+ padding-top: 4rem; }
3383
+ @media only screen and (max-width: 960px) {
3384
+ .how-it-works-wrapper .works-title {
3385
+ padding-top: 2.5rem; } }
3386
+
3387
+ .blog {
3388
+ text-align: center;
3389
+ margin: 0 auto 3rem;
3390
+ padding: 0 1rem;
3391
+ max-width: 960px; }
3392
+ @media (min-width: 960px) {
3393
+ .blog {
3394
+ padding: 0; } }
3395
+ @media (min-width: 1200px) {
3396
+ .blog {
3397
+ max-width: 1200px; } }
3398
+ .blog .blog__title {
3399
+ color: #02374A; }
3400
+ @media (min-width: 960px) {
3401
+ .blog .blog__title {
3402
+ margin-bottom: 3rem; } }
3403
+ .blog .cta-button {
3404
+ width: 100%;
3405
+ margin-top: 3rem;
3406
+ display: inline-block; }
3407
+ @media (min-width: 720px) {
3408
+ .blog .cta-button {
3409
+ width: auto; } }
3410
+
3411
+ .about-us-content {
3412
+ display: flex;
3413
+ flex-flow: row wrap;
3414
+ justify-content: center; }
3415
+ @media (min-width: 720px) {
3416
+ .about-us-content {
3417
+ flex-flow: row nowrap; } }
3418
+ .about-us-content__body {
3419
+ margin-top: 1rem;
3420
+ margin-bottom: 2rem;
3421
+ font-family: "Inter", sans-serif; }
3422
+ @media (min-width: 720px) {
3423
+ .about-us-content__body {
3424
+ flex-basis: 50%;
3425
+ margin-top: 0;
3426
+ margin-bottom: 3rem; } }
3427
+ @media (min-width: 1200px) {
3428
+ .about-us-content__body {
3429
+ margin-top: 1.2rem; } }
3430
+ .about-us-content__body .m-richText a {
3431
+ color: #05646E; }
3432
+ .about-us-content__body__button {
3433
+ margin-top: 2rem;
3434
+ font-family: "Inter", sans-serif; }
3435
+ .about-us-content__body__button .e-button {
3436
+ display: block; }
3437
+ @media (min-width: 720px) {
3438
+ .about-us-content__body__button .e-button {
3439
+ display: inline-block; } }
3440
+ .about-us-content__image {
3441
+ margin-bottom: 1rem; }
3442
+ @media (min-width: 720px) {
3443
+ .about-us-content__image {
3444
+ margin-bottom: 0;
3445
+ margin-right: 1rem;
3446
+ flex-basis: 50%; } }
3447
+ @media (min-width: 960px) {
3448
+ .about-us-content__image {
3449
+ margin-bottom: -3rem; } }
3450
+ .about-us-content__image img {
3451
+ width: 100%; }
3452
+
3453
+ .about-us-section {
3454
+ padding-top: 1.125rem;
3455
+ background: #EFF7F5;
3456
+ margin-bottom: 3rem; }
3457
+ @media (min-width: 960px) {
3458
+ .about-us-section {
3459
+ margin-bottom: 5rem; } }
3460
+ .about-us-section__title {
3461
+ text-align: center;
3462
+ margin-bottom: 1rem; }
3463
+ .about-us-section__title__text {
3464
+ text-transform: uppercase;
3465
+ font-size: 0.8rem;
3466
+ line-height: 1.2;
3467
+ font-weight: 700;
3468
+ font-family: "Inter", sans-serif;
3469
+ color: #6D7275;
3470
+ padding-bottom: 0.5rem;
3471
+ border-bottom: 1px solid #B5BABD; }
3472
+ .about-us-section__sub-title {
3473
+ margin-bottom: 1.5rem;
3474
+ text-align: center;
3475
+ font-size: 2rem;
3476
+ line-height: 1.2;
3477
+ letter-spacing: -0.4px;
3478
+ font-weight: 400;
3479
+ font-family: "Lora", serif;
3480
+ color: #3D4042; }
3481
+ @media (min-width: 720px) {
3482
+ .about-us-section__sub-title {
3483
+ font-size: 2.3rem;
3484
+ max-width: 720px;
3485
+ margin: 0 auto 2rem auto; } }
3486
+ @media (min-width: 1200px) {
3487
+ .about-us-section__sub-title {
3488
+ max-width: 792px; } }
3489
+ @media (min-width: 960px) {
3490
+ .about-us-section__sub-title {
3491
+ font-size: 3rem; } }