@meduza/ui-kit-2 0.1.9 → 0.1.11

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 (35) hide show
  1. package/dist/DotsOnImage/DotsOnImage.types.d.ts +4 -0
  2. package/dist/Footnote/Footnote.stories.d.ts +10 -0
  3. package/dist/Footnote/Footnote.types.d.ts +5 -0
  4. package/dist/Footnote/index.d.ts +3 -0
  5. package/dist/Image/Image.types.d.ts +4 -1
  6. package/dist/index.d.ts +1 -0
  7. package/dist/ui-kit-2.cjs.development.js +295 -245
  8. package/dist/ui-kit-2.cjs.development.js.map +1 -1
  9. package/dist/ui-kit-2.cjs.production.min.js +1 -1
  10. package/dist/ui-kit-2.cjs.production.min.js.map +1 -1
  11. package/dist/ui-kit-2.esm.js +295 -246
  12. package/dist/ui-kit-2.esm.js.map +1 -1
  13. package/dist/ui-kit.css +707 -589
  14. package/package.json +1 -1
  15. package/src/DotsOnImage/DotsOnImage.module.css +31 -11
  16. package/src/DotsOnImage/DotsOnImage.test.tsx +1 -1
  17. package/src/DotsOnImage/DotsOnImage.types.ts +3 -0
  18. package/src/DotsOnImage/index.tsx +47 -20
  19. package/src/DotsOnImage/mock.json +96 -8
  20. package/src/EmbedBlock/EmbedBlock.module.css +1 -1
  21. package/src/EmbedBlock/EmbedBlock.tsx +1 -1
  22. package/src/EmbedBlock/mock.json +54 -0
  23. package/src/Footnote/Footnote.module.css +69 -0
  24. package/src/Footnote/Footnote.stories.module.css +5 -0
  25. package/src/Footnote/Footnote.stories.tsx +43 -0
  26. package/src/Footnote/Footnote.test.tsx +20 -0
  27. package/src/Footnote/Footnote.types.ts +5 -0
  28. package/src/Footnote/index.tsx +26 -0
  29. package/src/Image/Image.stories.tsx +1 -0
  30. package/src/Image/Image.types.ts +4 -1
  31. package/src/Image/index.tsx +12 -6
  32. package/src/Popover/Popover.module.css +36 -2
  33. package/src/Popover/index.tsx +1 -1
  34. package/src/SimpleBlock/FootnoteLink.css +7 -0
  35. package/src/index.tsx +1 -0
package/dist/ui-kit.css CHANGED
@@ -1,247 +1,3 @@
1
- /* Colors */
2
- /* Fonts */
3
- /* Gap */
4
- /* Media */
5
- /* 512 */
6
- /* 650 */
7
- /* 768 */
8
- /* 1024 */
9
- /* 1010 */
10
- /* 1200 */
11
- /* 511 */
12
- /* 1023 */
13
- /* Zindex */
14
- .Button-module_root__RpsiW {
15
- display: block;
16
-
17
- padding: 0;
18
-
19
- color: #fff;
20
-
21
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
22
- line-height: 1;
23
- text-align: center;
24
-
25
- border-width: 0;
26
- outline: none;
27
-
28
- cursor: pointer;
29
-
30
- transition: background-color 0.15s ease-out;
31
-
32
- -webkit-appearance: none;
33
-
34
- -moz-appearance: none;
35
-
36
- appearance: none;
37
- -webkit-user-select: none;
38
- -moz-user-select: none;
39
- -ms-user-select: none;
40
- user-select: none;
41
- }
42
- .Button-module_root__RpsiW::-moz-focus-inner {
43
- border: 0;
44
- }
45
- .Button-module_root__RpsiW[disabled] {
46
- cursor: default;
47
-
48
- opacity: 0.5;
49
-
50
- pointer-events: none;
51
- }
52
- .Button-module_root__RpsiW > span:first-child {
53
- margin-right: 4px;
54
- }
55
- .Button-module_root__RpsiW > span:last-child {
56
- margin-left: 4px;
57
- }
58
- .Button-module_gold__ZMYg- {
59
- background: #b88b59;
60
- }
61
- .Button-module_gold__ZMYg-.Button-module_isLoading__1g6QO {
62
- fill: #b88b59;
63
- }
64
- .Button-module_gold__ZMYg-:hover {
65
- background-color: #9e784c
66
- }
67
- @media (hover: none) {
68
- .Button-module_gold__ZMYg-:hover {
69
- background-color: #b88b59
70
- }
71
- }
72
- .Button-module_gold__ZMYg-:active {
73
- background-color: #856440;
74
- }
75
- .Button-module_gray__3IM54 {
76
- color: #000;
77
-
78
- background-color: #f0f0f0;
79
- }
80
- .Button-module_gray__3IM54.Button-module_isLoading__1g6QO {
81
- fill: #545454;
82
- }
83
- .Button-module_gray__3IM54:hover {
84
- background-color: #ebebeb
85
- }
86
- @media (hover: none) {
87
- .Button-module_gray__3IM54:hover {
88
- background-color: #ebebeb
89
- }
90
- }
91
- .Button-module_gray__3IM54:active {
92
- background-color: #e3e3e3;
93
- }
94
- .Button-module_sand__2AqVq {
95
- background: #a18c68;
96
- }
97
- .Button-module_sand__2AqVq.Button-module_isLoading__1g6QO {
98
- fill: #a18c68;
99
- }
100
- .Button-module_sand__2AqVq:hover {
101
- background-color: #8a7654
102
- }
103
- @media (hover: none) {
104
- .Button-module_sand__2AqVq:hover {
105
- background-color: #a18c68
106
- }
107
- }
108
- .Button-module_sand__2AqVq:active {
109
- background-color: #7b6743;
110
- }
111
- .Button-module_dark__I0uXx {
112
- color: #adadad;
113
-
114
- background-color: #3a3a3a;
115
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
116
- }
117
- .Button-module_dark__I0uXx:hover {
118
- background-color: #2e2e2e
119
- }
120
- @media (hover: none) {
121
- .Button-module_dark__I0uXx:hover {
122
- background-color: #3a3a3a
123
- }
124
- }
125
- .Button-module_dark__I0uXx:active {
126
- background-color: #242424;
127
- }
128
- .Button-module_dark__I0uXx.Button-module_isLoading__1g6QO {
129
- fill: #3a3a3a;
130
- }
131
- .Button-module_light__1Y4hG {
132
- color: #000;
133
-
134
- background-color: #fff;
135
- }
136
- .Button-module_light__1Y4hG:hover {
137
- background-color: #ebebeb
138
- }
139
- @media (hover: none) {
140
- .Button-module_light__1Y4hG:hover {
141
- background-color: #fff
142
- }
143
- }
144
- .Button-module_light__1Y4hG:active {
145
- background-color: #e3e3e3;
146
- }
147
- .Button-module_light__1Y4hG.Button-module_isLoading__1g6QO {
148
- fill: #fff;
149
- }
150
- .Button-module_black__3sG3Y {
151
- color: #7e7d7b;
152
-
153
- background-color: #000;
154
- }
155
- .Button-module_black__3sG3Y.Button-module_isLoading__1g6QO {
156
- fill: #7e7d7b;
157
- }
158
- .Button-module_black__3sG3Y:hover {
159
- background-color: #141414
160
- }
161
- @media (hover: none) {
162
- .Button-module_black__3sG3Y:hover {
163
- background: #141414
164
- }
165
- }
166
- .Button-module_black__3sG3Y:active {
167
- background-color: #242424;
168
- }
169
- .Button-module_red__3Niou {
170
- background-color: #f95a5a;
171
- }
172
- .Button-module_red__3Niou:hover {
173
- background-color: #e65353
174
- }
175
- @media (hover: none) {
176
- .Button-module_red__3Niou:hover {
177
- background: #f95a5a
178
- }
179
- }
180
- .Button-module_red__3Niou:active {
181
- background-color: #d44d4d;
182
- }
183
- .Button-module_red__3Niou.Button-module_isLoading__1g6QO {
184
- fill: #141414;
185
- }
186
- .Button-module_default__28Vo_ {
187
- width: 100%;
188
- height: 42px;
189
- padding: 7px 18px 6px;
190
-
191
- font-weight: 600;
192
-
193
- font-size: 12px;
194
- line-height: 22px;
195
-
196
- letter-spacing: 1px;
197
- text-transform: uppercase;
198
-
199
- border-radius: 8px
200
- }
201
- @media only screen and (min-device-width: 64em) {
202
- .Button-module_default__28Vo_ {
203
- font-size: 14px;
204
- line-height: 16px
205
- }
206
- }
207
- .Button-module_isInSpoiler__2Yl8c svg {
208
- margin-top: -2px;
209
- margin-left: 6px;
210
- }
211
- .Button-module_ghost__3awCW {
212
-
213
- color: inherit;
214
- font-weight: inherit;
215
- font-size: inherit;
216
-
217
- font-family: inherit;
218
- letter-spacing: inherit;
219
- text-transform: none;
220
-
221
- background-color: transparent;
222
- }
223
- .Button-module_isInDropdown__1ogKL {
224
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
225
- }
226
- .Button-module_black__3sG3Y[disabled],
227
- .Button-module_sand__2AqVq[disabled] {
228
- opacity: 0.3;
229
- }
230
- /* LOADING */
231
- .Button-module_root__RpsiW.Button-module_isLoading__1g6QO {
232
-
233
- background-color: transparent;
234
- box-shadow: none;
235
- cursor: default;
236
-
237
- pointer-events: none;
238
- }
239
- .Button-module_loader__2pl6d {
240
- display: block;
241
-
242
- margin-top: -1px;
243
- }
244
-
245
1
  /* Colors */
246
2
  /* Fonts */
247
3
  /* Gap */
@@ -601,39 +357,283 @@
601
357
  .Switcher-module_isInMenu__3XJYj {
602
358
  font-weight: normal;
603
359
  }
604
- .Switcher-module_isInMenu__3XJYj .Switcher-module_children__147JP {
605
- margin-right: 8px;
360
+ .Switcher-module_isInMenu__3XJYj .Switcher-module_children__147JP {
361
+ margin-right: 8px;
362
+ }
363
+ .Switcher-module_isInMenu__3XJYj .Switcher-module_control__1NTvY {
364
+ width: 48px;
365
+ height: 30px;
366
+ }
367
+ .Switcher-module_isInMenu__3XJYj .Switcher-module_knob__3kEy5 {
368
+ top: 4px;
369
+
370
+ width: 22px;
371
+ height: 22px;
372
+
373
+ background-color: #bababa;
374
+ }
375
+ /* stylelint-disable selector-max-compound-selectors */
376
+ .Switcher-module_isInMenu__3XJYj input:checked ~ .Switcher-module_control__1NTvY .Switcher-module_knob__3kEy5 {
377
+ left: 23px;
378
+
379
+ background-color: #fff;
380
+ }
381
+ /* live */
382
+ .Switcher-module_isInLive__2cLui .Switcher-module_children__147JP {
383
+
384
+ color: #7f7f7f;
385
+
386
+ font-size: 13px;
387
+ letter-spacing: 0.5px;
388
+ text-transform: uppercase;
389
+ }
390
+ .Switcher-module_isInMenu__3XJYj .Switcher-module_control__1NTvY {
391
+ background-color: #1a1a1a;
392
+ box-shadow: inset 0 0 0 1px #323232;
393
+ }
394
+
395
+ /* Colors */
396
+ /* Fonts */
397
+ /* Gap */
398
+ /* Media */
399
+ /* 512 */
400
+ /* 650 */
401
+ /* 768 */
402
+ /* 1024 */
403
+ /* 1010 */
404
+ /* 1200 */
405
+ /* 511 */
406
+ /* 1023 */
407
+ /* Zindex */
408
+ .Button-module_root__RpsiW {
409
+ display: block;
410
+
411
+ padding: 0;
412
+
413
+ color: #fff;
414
+
415
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
416
+ line-height: 1;
417
+ text-align: center;
418
+
419
+ border-width: 0;
420
+ outline: none;
421
+
422
+ cursor: pointer;
423
+
424
+ transition: background-color 0.15s ease-out;
425
+
426
+ -webkit-appearance: none;
427
+
428
+ -moz-appearance: none;
429
+
430
+ appearance: none;
431
+ -webkit-user-select: none;
432
+ -moz-user-select: none;
433
+ -ms-user-select: none;
434
+ user-select: none;
435
+ }
436
+ .Button-module_root__RpsiW::-moz-focus-inner {
437
+ border: 0;
438
+ }
439
+ .Button-module_root__RpsiW[disabled] {
440
+ cursor: default;
441
+
442
+ opacity: 0.5;
443
+
444
+ pointer-events: none;
445
+ }
446
+ .Button-module_root__RpsiW > span:first-child {
447
+ margin-right: 4px;
448
+ }
449
+ .Button-module_root__RpsiW > span:last-child {
450
+ margin-left: 4px;
451
+ }
452
+ .Button-module_gold__ZMYg- {
453
+ background: #b88b59;
454
+ }
455
+ .Button-module_gold__ZMYg-.Button-module_isLoading__1g6QO {
456
+ fill: #b88b59;
457
+ }
458
+ .Button-module_gold__ZMYg-:hover {
459
+ background-color: #9e784c
460
+ }
461
+ @media (hover: none) {
462
+ .Button-module_gold__ZMYg-:hover {
463
+ background-color: #b88b59
464
+ }
465
+ }
466
+ .Button-module_gold__ZMYg-:active {
467
+ background-color: #856440;
468
+ }
469
+ .Button-module_gray__3IM54 {
470
+ color: #000;
471
+
472
+ background-color: #f0f0f0;
473
+ }
474
+ .Button-module_gray__3IM54.Button-module_isLoading__1g6QO {
475
+ fill: #545454;
476
+ }
477
+ .Button-module_gray__3IM54:hover {
478
+ background-color: #ebebeb
479
+ }
480
+ @media (hover: none) {
481
+ .Button-module_gray__3IM54:hover {
482
+ background-color: #ebebeb
483
+ }
484
+ }
485
+ .Button-module_gray__3IM54:active {
486
+ background-color: #e3e3e3;
487
+ }
488
+ .Button-module_sand__2AqVq {
489
+ background: #a18c68;
490
+ }
491
+ .Button-module_sand__2AqVq.Button-module_isLoading__1g6QO {
492
+ fill: #a18c68;
493
+ }
494
+ .Button-module_sand__2AqVq:hover {
495
+ background-color: #8a7654
496
+ }
497
+ @media (hover: none) {
498
+ .Button-module_sand__2AqVq:hover {
499
+ background-color: #a18c68
500
+ }
501
+ }
502
+ .Button-module_sand__2AqVq:active {
503
+ background-color: #7b6743;
504
+ }
505
+ .Button-module_dark__I0uXx {
506
+ color: #adadad;
507
+
508
+ background-color: #3a3a3a;
509
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
510
+ }
511
+ .Button-module_dark__I0uXx:hover {
512
+ background-color: #2e2e2e
513
+ }
514
+ @media (hover: none) {
515
+ .Button-module_dark__I0uXx:hover {
516
+ background-color: #3a3a3a
517
+ }
518
+ }
519
+ .Button-module_dark__I0uXx:active {
520
+ background-color: #242424;
521
+ }
522
+ .Button-module_dark__I0uXx.Button-module_isLoading__1g6QO {
523
+ fill: #3a3a3a;
524
+ }
525
+ .Button-module_light__1Y4hG {
526
+ color: #000;
527
+
528
+ background-color: #fff;
529
+ }
530
+ .Button-module_light__1Y4hG:hover {
531
+ background-color: #ebebeb
532
+ }
533
+ @media (hover: none) {
534
+ .Button-module_light__1Y4hG:hover {
535
+ background-color: #fff
536
+ }
537
+ }
538
+ .Button-module_light__1Y4hG:active {
539
+ background-color: #e3e3e3;
540
+ }
541
+ .Button-module_light__1Y4hG.Button-module_isLoading__1g6QO {
542
+ fill: #fff;
543
+ }
544
+ .Button-module_black__3sG3Y {
545
+ color: #7e7d7b;
546
+
547
+ background-color: #000;
548
+ }
549
+ .Button-module_black__3sG3Y.Button-module_isLoading__1g6QO {
550
+ fill: #7e7d7b;
551
+ }
552
+ .Button-module_black__3sG3Y:hover {
553
+ background-color: #141414
554
+ }
555
+ @media (hover: none) {
556
+ .Button-module_black__3sG3Y:hover {
557
+ background: #141414
558
+ }
559
+ }
560
+ .Button-module_black__3sG3Y:active {
561
+ background-color: #242424;
562
+ }
563
+ .Button-module_red__3Niou {
564
+ background-color: #f95a5a;
565
+ }
566
+ .Button-module_red__3Niou:hover {
567
+ background-color: #e65353
568
+ }
569
+ @media (hover: none) {
570
+ .Button-module_red__3Niou:hover {
571
+ background: #f95a5a
572
+ }
573
+ }
574
+ .Button-module_red__3Niou:active {
575
+ background-color: #d44d4d;
576
+ }
577
+ .Button-module_red__3Niou.Button-module_isLoading__1g6QO {
578
+ fill: #141414;
579
+ }
580
+ .Button-module_default__28Vo_ {
581
+ width: 100%;
582
+ height: 42px;
583
+ padding: 7px 18px 6px;
584
+
585
+ font-weight: 600;
586
+
587
+ font-size: 12px;
588
+ line-height: 22px;
589
+
590
+ letter-spacing: 1px;
591
+ text-transform: uppercase;
592
+
593
+ border-radius: 8px
594
+ }
595
+ @media only screen and (min-device-width: 64em) {
596
+ .Button-module_default__28Vo_ {
597
+ font-size: 14px;
598
+ line-height: 16px
606
599
  }
607
- .Switcher-module_isInMenu__3XJYj .Switcher-module_control__1NTvY {
608
- width: 48px;
609
- height: 30px;
600
+ }
601
+ .Button-module_isInSpoiler__2Yl8c svg {
602
+ margin-top: -2px;
603
+ margin-left: 6px;
610
604
  }
611
- .Switcher-module_isInMenu__3XJYj .Switcher-module_knob__3kEy5 {
612
- top: 4px;
605
+ .Button-module_ghost__3awCW {
613
606
 
614
- width: 22px;
615
- height: 22px;
607
+ color: inherit;
608
+ font-weight: inherit;
609
+ font-size: inherit;
616
610
 
617
- background-color: #bababa;
618
- }
619
- /* stylelint-disable selector-max-compound-selectors */
620
- .Switcher-module_isInMenu__3XJYj input:checked ~ .Switcher-module_control__1NTvY .Switcher-module_knob__3kEy5 {
621
- left: 23px;
611
+ font-family: inherit;
612
+ letter-spacing: inherit;
613
+ text-transform: none;
622
614
 
623
- background-color: #fff;
615
+ background-color: transparent;
624
616
  }
625
- /* live */
626
- .Switcher-module_isInLive__2cLui .Switcher-module_children__147JP {
617
+ .Button-module_isInDropdown__1ogKL {
618
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
619
+ }
620
+ .Button-module_black__3sG3Y[disabled],
621
+ .Button-module_sand__2AqVq[disabled] {
622
+ opacity: 0.3;
623
+ }
624
+ /* LOADING */
625
+ .Button-module_root__RpsiW.Button-module_isLoading__1g6QO {
627
626
 
628
- color: #7f7f7f;
627
+ background-color: transparent;
628
+ box-shadow: none;
629
+ cursor: default;
629
630
 
630
- font-size: 13px;
631
- letter-spacing: 0.5px;
632
- text-transform: uppercase;
631
+ pointer-events: none;
633
632
  }
634
- .Switcher-module_isInMenu__3XJYj .Switcher-module_control__1NTvY {
635
- background-color: #1a1a1a;
636
- box-shadow: inset 0 0 0 1px #323232;
633
+ .Button-module_loader__2pl6d {
634
+ display: block;
635
+
636
+ margin-top: -1px;
637
637
  }
638
638
 
639
639
  /* Colors */
@@ -720,6 +720,26 @@
720
720
  outline: none;
721
721
  }
722
722
 
723
+ /* Colors */
724
+ /* Fonts */
725
+ /* Gap */
726
+ /* Media */
727
+ /* 512 */
728
+ /* 650 */
729
+ /* 768 */
730
+ /* 1024 */
731
+ /* 1010 */
732
+ /* 1200 */
733
+ /* 511 */
734
+ /* 1023 */
735
+ /* Zindex */
736
+ .Lazy-module_root__2Z72l {
737
+ display: block;
738
+ }
739
+ .Lazy-module_visible__3-SdX {
740
+ color: red;
741
+ }
742
+
723
743
  /* Colors */
724
744
  /* Fonts */
725
745
  /* Gap */
@@ -768,28 +788,40 @@
768
788
 
769
789
  appearance: none;
770
790
  }
791
+ .DotsOnImage-module_dot__H1wua svg {
792
+ display: block;
793
+ }
771
794
  .DotsOnImage-module_popover__35Cpj {
772
795
  position: absolute;
773
796
  z-index: 10;
774
- top: 50%;
775
- left: 50%;
776
-
777
- width: 340px;
778
- padding: 25px;
779
-
780
- transform: translate(-50%, -50%);
781
-
782
- border: 1px solid rgba(0, 0, 0, 0.1);
783
- border-radius: 8px;
784
- background-color: #fff;
785
- box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
797
+ }
798
+ .DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isRight__2RsJe.DotsOnImage-module_isTop__3zmSK {
799
+ transform: translateX(50px);
800
+ }
801
+ .DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isLeft__3quc9.DotsOnImage-module_isTop__3zmSK {
802
+ transform: translateX(-100%) translateX(-22px);
803
+ }
804
+ .DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isRight__2RsJe.DotsOnImage-module_isBottom__3Nk1T {
805
+ transform: translateX(50px) translateY(-100%) translateY(22px);
806
+ }
807
+ .DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isLeft__3quc9.DotsOnImage-module_isBottom__3Nk1T {
808
+ transform: translateX(-100%) translateX(-22px) translateY(-100%) translateY(22px);
809
+ }
810
+ .DotsOnImage-module_popoverTitle__343d8 {
811
+ margin-bottom: 16px;
786
812
 
813
+ font-weight: 600;
814
+ }
815
+ .DotsOnImage-module_popoverBody__2MSn7 {
787
816
  font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
788
817
  font-size: 16px;
789
818
  line-height: 22px;
790
819
  }
791
- .DotsOnImage-module_popoverTitle__343d8 {
792
- font-weight: 600;
820
+ .DotsOnImage-module_popoverText__3v02w p {
821
+ margin: 0;
822
+ }
823
+ .DotsOnImage-module_popoverText__3v02w a:hover {
824
+ color: #b88b59;
793
825
  }
794
826
  .DotsOnImage-module_dismiss__1EWXd {
795
827
  position: absolute;
@@ -811,26 +843,6 @@
811
843
  height: 10px;
812
844
  }
813
845
 
814
- /* Colors */
815
- /* Fonts */
816
- /* Gap */
817
- /* Media */
818
- /* 512 */
819
- /* 650 */
820
- /* 768 */
821
- /* 1024 */
822
- /* 1010 */
823
- /* 1200 */
824
- /* 511 */
825
- /* 1023 */
826
- /* Zindex */
827
- .Lazy-module_root__2Z72l {
828
- display: block;
829
- }
830
- .Lazy-module_visible__3-SdX {
831
- color: red;
832
- }
833
-
834
846
  /* Colors */
835
847
  /* Fonts */
836
848
  /* Gap */
@@ -1586,94 +1598,6 @@
1586
1598
  }
1587
1599
  }
1588
1600
 
1589
- /* Colors */
1590
- /* Fonts */
1591
- /* Gap */
1592
- /* Media */
1593
- /* 512 */
1594
- /* 650 */
1595
- /* 768 */
1596
- /* 1024 */
1597
- /* 1010 */
1598
- /* 1200 */
1599
- /* 511 */
1600
- /* 1023 */
1601
- /* Zindex */
1602
- .Dropdown-module_root__11PNk {
1603
- position: relative;
1604
- z-index: 100;
1605
-
1606
- display: inline-block;
1607
-
1608
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1609
- }
1610
- .Dropdown-module_root__11PNk.Dropdown-module_active__3IwAl .Dropdown-module_menu__3PIqD,
1611
- .Dropdown-module_root__11PNk:hover .Dropdown-module_menu__3PIqD {
1612
- visibility: visible;
1613
-
1614
- opacity: 1;
1615
- }
1616
- .Dropdown-module_root__11PNk ul {
1617
- overflow: hidden;
1618
-
1619
- width: 162px;
1620
- margin: 0;
1621
- padding: 3px 0;
1622
-
1623
- border-radius: 5px;
1624
- background: #fff;
1625
- box-shadow: 0 0 0 1px #c0c0c0, 0 5px 20px 0 rgba(0, 0, 0, 0.2);
1626
-
1627
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1628
- font-size: 14px;
1629
- line-height: 26px;
1630
- }
1631
- .Dropdown-module_root__11PNk a {
1632
- display: block;
1633
-
1634
- padding: 2px 15px;
1635
-
1636
- text-decoration: none;
1637
-
1638
- color: #000;
1639
- box-shadow: none;
1640
- }
1641
- .Dropdown-module_root__11PNk a:hover {
1642
- color: #000;
1643
- background-color: #f7f7f7;
1644
- }
1645
- .Dropdown-module_isInAudioPanel__1zv7F .Dropdown-module_menu__3PIqD {
1646
- right: 0;
1647
- left: auto
1648
- }
1649
- @media only screen and (min-device-width: 64em) {
1650
- .Dropdown-module_isInAudioPanel__1zv7F .Dropdown-module_menu__3PIqD {
1651
- right: auto;
1652
- left: 0
1653
- }
1654
- }
1655
- .Dropdown-module_menu__3PIqD {
1656
- position: absolute;
1657
- top: 100%;
1658
- left: 0;
1659
-
1660
- visibility: hidden;
1661
-
1662
- padding-top: 6px;
1663
-
1664
- opacity: 0;
1665
- }
1666
- .Dropdown-module_menu__3PIqD::after {
1667
- position: absolute;
1668
- z-index: -1;
1669
- top: -10px;
1670
- right: -10px;
1671
- bottom: -10px;
1672
- left: -10px;
1673
-
1674
- content: '';
1675
- }
1676
-
1677
1601
  /* Colors */
1678
1602
  /* Fonts */
1679
1603
  /* Gap */
@@ -1783,38 +1707,144 @@
1783
1707
  display: -ms-flexbox;
1784
1708
  display: flex
1785
1709
  }
1786
- }
1787
- .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
1788
- width: 260px
1710
+ }
1711
+ .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
1712
+ width: 260px
1713
+ }
1714
+ @media only screen and (min-device-width: 32em) {
1715
+ .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
1716
+ width: auto
1717
+ }
1718
+ }
1719
+ .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
1720
+ content: none
1721
+ }
1722
+ @media only screen and (min-device-width: 32em) {
1723
+ .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
1724
+ content: ''
1725
+ }
1726
+ }
1727
+ .Toolbar-module_gameSurvey__1hQEz .Toolbar-module_item__36x7d:first-child::before,
1728
+ .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:first-child::before {
1729
+ content: none;
1730
+ }
1731
+ @media only screen and (min-device-width: 64em) {
1732
+ .Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
1733
+ .Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
1734
+ margin-left: 0
1735
+ }
1736
+ }
1737
+ .Toolbar-module_dark__2Ejc9 .Toolbar-module_item__36x7d::before {
1738
+ border-left-color: rgba(255, 255, 255, 0.2);
1739
+ }
1740
+ [data-context="prodano"] .Toolbar-module_root__2HF2r {
1741
+ display: none;
1742
+ }
1743
+
1744
+ /* Colors */
1745
+ /* Fonts */
1746
+ /* Gap */
1747
+ /* Media */
1748
+ /* 512 */
1749
+ /* 650 */
1750
+ /* 768 */
1751
+ /* 1024 */
1752
+ /* 1010 */
1753
+ /* 1200 */
1754
+ /* 511 */
1755
+ /* 1023 */
1756
+ /* Zindex */
1757
+ .Dropdown-module_root__11PNk {
1758
+ position: relative;
1759
+ z-index: 100;
1760
+
1761
+ display: inline-block;
1762
+
1763
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1764
+ }
1765
+ .Dropdown-module_root__11PNk.Dropdown-module_active__3IwAl .Dropdown-module_menu__3PIqD,
1766
+ .Dropdown-module_root__11PNk:hover .Dropdown-module_menu__3PIqD {
1767
+ visibility: visible;
1768
+
1769
+ opacity: 1;
1789
1770
  }
1790
- @media only screen and (min-device-width: 32em) {
1791
- .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
1792
- width: auto
1771
+ .Dropdown-module_root__11PNk ul {
1772
+ overflow: hidden;
1773
+
1774
+ width: 162px;
1775
+ margin: 0;
1776
+ padding: 3px 0;
1777
+
1778
+ border-radius: 5px;
1779
+ background: #fff;
1780
+ box-shadow: 0 0 0 1px #c0c0c0, 0 5px 20px 0 rgba(0, 0, 0, 0.2);
1781
+
1782
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1783
+ font-size: 14px;
1784
+ line-height: 26px;
1793
1785
  }
1794
- }
1795
- .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
1796
- content: none
1786
+ .Dropdown-module_root__11PNk a {
1787
+ display: block;
1788
+
1789
+ padding: 2px 15px;
1790
+
1791
+ text-decoration: none;
1792
+
1793
+ color: #000;
1794
+ box-shadow: none;
1797
1795
  }
1798
- @media only screen and (min-device-width: 32em) {
1799
- .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
1800
- content: ''
1796
+ .Dropdown-module_root__11PNk a:hover {
1797
+ color: #000;
1798
+ background-color: #f7f7f7;
1801
1799
  }
1802
- }
1803
- .Toolbar-module_gameSurvey__1hQEz .Toolbar-module_item__36x7d:first-child::before,
1804
- .Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:first-child::before {
1805
- content: none;
1800
+ .Dropdown-module_isInAudioPanel__1zv7F .Dropdown-module_menu__3PIqD {
1801
+ right: 0;
1802
+ left: auto
1806
1803
  }
1807
1804
  @media only screen and (min-device-width: 64em) {
1808
- .Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
1809
- .Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
1810
- margin-left: 0
1805
+ .Dropdown-module_isInAudioPanel__1zv7F .Dropdown-module_menu__3PIqD {
1806
+ right: auto;
1807
+ left: 0
1811
1808
  }
1812
1809
  }
1813
- .Toolbar-module_dark__2Ejc9 .Toolbar-module_item__36x7d::before {
1814
- border-left-color: rgba(255, 255, 255, 0.2);
1810
+ .Dropdown-module_menu__3PIqD {
1811
+ position: absolute;
1812
+ top: 100%;
1813
+ left: 0;
1814
+
1815
+ visibility: hidden;
1816
+
1817
+ padding-top: 6px;
1818
+
1819
+ opacity: 0;
1815
1820
  }
1816
- [data-context="prodano"] .Toolbar-module_root__2HF2r {
1817
- display: none;
1821
+ .Dropdown-module_menu__3PIqD::after {
1822
+ position: absolute;
1823
+ z-index: -1;
1824
+ top: -10px;
1825
+ right: -10px;
1826
+ bottom: -10px;
1827
+ left: -10px;
1828
+
1829
+ content: '';
1830
+ }
1831
+
1832
+ /* Colors */
1833
+ /* Fonts */
1834
+ /* Gap */
1835
+ /* Media */
1836
+ /* 512 */
1837
+ /* 650 */
1838
+ /* 768 */
1839
+ /* 1024 */
1840
+ /* 1010 */
1841
+ /* 1200 */
1842
+ /* 511 */
1843
+ /* 1023 */
1844
+ /* Zindex */
1845
+ .Timestamp-module_root__coOvT {
1846
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1847
+ font-weight: normal;
1818
1848
  }
1819
1849
 
1820
1850
  /* Colors */
@@ -1849,13 +1879,16 @@
1849
1879
  width: 100%;
1850
1880
  height: 100%;
1851
1881
  min-height: 120px;
1852
- padding: 10px 10px 0;
1882
+ padding: 10px 0 0;
1853
1883
 
1854
1884
  -webkit-animation: Popover-module_fadeOut__3EZhx 250ms ease both 100ms;
1855
1885
 
1856
1886
  animation: Popover-module_fadeOut__3EZhx 250ms ease both 100ms;
1857
1887
 
1858
1888
  opacity: 1;
1889
+
1890
+ font-size: 16px;
1891
+ line-height: 22px;
1859
1892
  }
1860
1893
  .Popover-module_root__1v6f_.Popover-module_visible__eK5ZQ {
1861
1894
  -webkit-animation: Popover-module_fadeIn__AkrSN 250ms ease both;
@@ -1880,7 +1913,7 @@
1880
1913
  max-width: 420px;
1881
1914
  min-height: 80px;
1882
1915
  margin: 0 auto;
1883
- padding: 15px 20px 40px;
1916
+ padding: 22px 20px 28px;
1884
1917
 
1885
1918
  -webkit-animation: Popover-module_disappear__3Q9LI 350ms ease both;
1886
1919
 
@@ -1935,6 +1968,31 @@
1935
1968
  -webkit-animation: Popover-module_appear__37vPd 350ms ease both;
1936
1969
  animation: Popover-module_appear__37vPd 350ms ease both;
1937
1970
  }
1971
+ .Popover-module_body__3h5UO {
1972
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1973
+ font-size: 16px;
1974
+ line-height: 22px;
1975
+ }
1976
+ .Popover-module_body__3h5UO h3 {
1977
+ margin: 0 0 5px;
1978
+
1979
+ font-size: inherit;
1980
+ font-weight: 600;
1981
+ line-height: inherit;
1982
+ }
1983
+ .Popover-module_body__3h5UO p {
1984
+ margin: 0;
1985
+ }
1986
+ .Popover-module_body__3h5UO p + p {
1987
+ margin-top: 6px;
1988
+ }
1989
+ .Popover-module_body__3h5UO a {
1990
+ color: inherit;
1991
+ box-shadow: inset 0 -1px #b88b59;
1992
+ }
1993
+ .Popover-module_body__3h5UO a:hover {
1994
+ color: #b88b59;
1995
+ }
1938
1996
  @-webkit-keyframes Popover-module_appear__37vPd {
1939
1997
  0% {
1940
1998
  transform: translateY(100%);
@@ -2000,24 +2058,6 @@
2000
2058
  }
2001
2059
  }
2002
2060
 
2003
- /* Colors */
2004
- /* Fonts */
2005
- /* Gap */
2006
- /* Media */
2007
- /* 512 */
2008
- /* 650 */
2009
- /* 768 */
2010
- /* 1024 */
2011
- /* 1010 */
2012
- /* 1200 */
2013
- /* 511 */
2014
- /* 1023 */
2015
- /* Zindex */
2016
- .Timestamp-module_root__coOvT {
2017
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
2018
- font-weight: normal;
2019
- }
2020
-
2021
2061
  /* Colors */
2022
2062
  /* Fonts */
2023
2063
  /* Gap */
@@ -3179,6 +3219,12 @@ span[data-body]:hover {
3179
3219
  background-color: #5B5B5B;
3180
3220
  box-shadow: inset 1px 0 #747474, inset 0 1px #747474, inset -1px 0 #747474, inset 0 -1px #747474;
3181
3221
  }
3222
+ span[data-highlight='true'],
3223
+ span[data-highlight='true']:hover {
3224
+ background-color: #f4efe9;
3225
+ box-shadow: inset 1px 0 #b88b58, inset 0 1px #b88b58, inset -1px 0 #b88b58,
3226
+ inset 0 -1px #b88b58;
3227
+ }
3182
3228
  .SimpleBlock-module_p__Q3azD {
3183
3229
  margin: 0 0 14px;
3184
3230
 
@@ -3567,30 +3613,145 @@ a mark {
3567
3613
  .SimpleTitle-module_root__2jVQN {
3568
3614
  margin: 0 0 18px;
3569
3615
 
3570
- font-family: 'PF Regal', 'PF Regal Text Pro', 'Georgia', serif;
3571
- font-size: 20px;
3572
- font-weight: normal;
3573
- line-height: 23px
3616
+ font-family: 'PF Regal', 'PF Regal Text Pro', 'Georgia', serif;
3617
+ font-size: 20px;
3618
+ font-weight: normal;
3619
+ line-height: 23px
3620
+ }
3621
+ @media only screen and (min-device-width: 48em) {
3622
+ .SimpleTitle-module_root__2jVQN {
3623
+ margin-bottom: 15px;
3624
+
3625
+ font-size: 36px;
3626
+ line-height: 40px
3627
+ }
3628
+ }
3629
+ /* VISIBILITY */
3630
+ @media only screen and (min-device-width: 32em) {
3631
+ .SimpleTitle-module_mobile__11gBz {
3632
+ display: none
3633
+ }
3634
+ }
3635
+ .SimpleTitle-module_desktop__3yXgy {
3636
+ display: none
3637
+ }
3638
+ @media only screen and (min-device-width: 32em) {
3639
+ .SimpleTitle-module_desktop__3yXgy {
3640
+ display: block
3641
+ }
3642
+ }
3643
+
3644
+ /* Colors */
3645
+ /* Fonts */
3646
+ /* Gap */
3647
+ /* Media */
3648
+ /* 512 */
3649
+ /* 650 */
3650
+ /* 768 */
3651
+ /* 1024 */
3652
+ /* 1010 */
3653
+ /* 1200 */
3654
+ /* 511 */
3655
+ /* 1023 */
3656
+ /* Zindex */
3657
+ .SourceBlock-module_root__1P3XD {
3658
+ display: block;
3659
+
3660
+ margin: 18px 0 15px;
3661
+ padding: 12px 11px 13px;
3662
+
3663
+ color: #000;
3664
+ border-left: 4px solid #b88b59;
3665
+ border-radius: 2px 8px 8px 2px;
3666
+ background-color: #f5f5f5;
3667
+
3668
+ font-size: 16px;
3669
+ line-height: 20px
3670
+ }
3671
+ @media only screen and (min-device-width: 48em) {
3672
+ .SourceBlock-module_root__1P3XD {
3673
+ margin-top: 25px;
3674
+ margin-bottom: 25px;
3675
+ padding: 18px 16px 12px
3676
+ }
3677
+ }
3678
+ .SourceBlock-module_root__1P3XD:hover,
3679
+ .SourceBlock-module_root__1P3XD:visited {
3680
+ background-color: #ededed;
3681
+ }
3682
+ .SourceBlock-module_root__1P3XD blockquote {
3683
+ margin: 0;
3684
+ }
3685
+ .SourceBlock-module_root__1P3XD a {
3686
+ text-decoration: none;
3687
+
3688
+ color: inherit;
3689
+ }
3690
+ .SourceBlock-module_text__Si4vm {
3691
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
3692
+ }
3693
+ .SourceBlock-module_text__Si4vm p {
3694
+ margin: 0;
3695
+
3696
+ font-size: 16px;
3697
+ line-height: 22px
3698
+ }
3699
+ @media only screen and (min-device-width: 48em) {
3700
+ .SourceBlock-module_text__Si4vm p {
3701
+ font-size: 18px;
3702
+ line-height: 26px
3703
+ }
3704
+ }
3705
+ .SourceBlock-module_root__1P3XD p + p {
3706
+ margin-top: 12px;
3707
+ }
3708
+ .SourceBlock-module_root__1P3XD footer {
3709
+ margin-top: 12px;
3710
+ padding-top: 10px;
3711
+
3712
+ border-top: 1px solid #d6d6d6
3713
+ }
3714
+ @media only screen and (min-device-width: 48em) {
3715
+ .SourceBlock-module_root__1P3XD footer {
3716
+ margin-top: 18px;
3717
+ padding-top: 12px
3718
+ }
3719
+ }
3720
+ .SourceBlock-module_origin__l3JbO {
3721
+ letter-spacing: 1px;
3722
+ text-transform: uppercase;
3723
+ pointer-events: none;
3724
+
3725
+ color: #292929;
3726
+
3727
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
3728
+ font-size: 16px;
3729
+ font-weight: bold;
3730
+ font-style: normal;
3731
+ line-height: 22px
3574
3732
  }
3575
3733
  @media only screen and (min-device-width: 48em) {
3576
- .SimpleTitle-module_root__2jVQN {
3577
- margin-bottom: 15px;
3578
-
3579
- font-size: 36px;
3580
- line-height: 40px
3734
+ .SourceBlock-module_origin__l3JbO {
3735
+ font-size: 18px;
3736
+ line-height: 26px
3581
3737
  }
3582
3738
  }
3739
+ .SourceBlock-module_center__3P93B {
3740
+ max-width: 650px;
3741
+ margin-right: auto;
3742
+ margin-left: auto;
3743
+ }
3583
3744
  /* VISIBILITY */
3584
3745
  @media only screen and (min-device-width: 32em) {
3585
- .SimpleTitle-module_mobile__11gBz {
3746
+ .SourceBlock-module_mobile__2gw4S {
3586
3747
  display: none
3587
3748
  }
3588
3749
  }
3589
- .SimpleTitle-module_desktop__3yXgy {
3750
+ .SourceBlock-module_desktop__DecT6 {
3590
3751
  display: none
3591
3752
  }
3592
3753
  @media only screen and (min-device-width: 32em) {
3593
- .SimpleTitle-module_desktop__3yXgy {
3754
+ .SourceBlock-module_desktop__DecT6 {
3594
3755
  display: block
3595
3756
  }
3596
3757
  }
@@ -3798,121 +3959,6 @@ a mark {
3798
3959
  }
3799
3960
  }
3800
3961
 
3801
- /* Colors */
3802
- /* Fonts */
3803
- /* Gap */
3804
- /* Media */
3805
- /* 512 */
3806
- /* 650 */
3807
- /* 768 */
3808
- /* 1024 */
3809
- /* 1010 */
3810
- /* 1200 */
3811
- /* 511 */
3812
- /* 1023 */
3813
- /* Zindex */
3814
- .SourceBlock-module_root__1P3XD {
3815
- display: block;
3816
-
3817
- margin: 18px 0 15px;
3818
- padding: 12px 11px 13px;
3819
-
3820
- color: #000;
3821
- border-left: 4px solid #b88b59;
3822
- border-radius: 2px 8px 8px 2px;
3823
- background-color: #f5f5f5;
3824
-
3825
- font-size: 16px;
3826
- line-height: 20px
3827
- }
3828
- @media only screen and (min-device-width: 48em) {
3829
- .SourceBlock-module_root__1P3XD {
3830
- margin-top: 25px;
3831
- margin-bottom: 25px;
3832
- padding: 18px 16px 12px
3833
- }
3834
- }
3835
- .SourceBlock-module_root__1P3XD:hover,
3836
- .SourceBlock-module_root__1P3XD:visited {
3837
- background-color: #ededed;
3838
- }
3839
- .SourceBlock-module_root__1P3XD blockquote {
3840
- margin: 0;
3841
- }
3842
- .SourceBlock-module_root__1P3XD a {
3843
- text-decoration: none;
3844
-
3845
- color: inherit;
3846
- }
3847
- .SourceBlock-module_text__Si4vm {
3848
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
3849
- }
3850
- .SourceBlock-module_text__Si4vm p {
3851
- margin: 0;
3852
-
3853
- font-size: 16px;
3854
- line-height: 22px
3855
- }
3856
- @media only screen and (min-device-width: 48em) {
3857
- .SourceBlock-module_text__Si4vm p {
3858
- font-size: 18px;
3859
- line-height: 26px
3860
- }
3861
- }
3862
- .SourceBlock-module_root__1P3XD p + p {
3863
- margin-top: 12px;
3864
- }
3865
- .SourceBlock-module_root__1P3XD footer {
3866
- margin-top: 12px;
3867
- padding-top: 10px;
3868
-
3869
- border-top: 1px solid #d6d6d6
3870
- }
3871
- @media only screen and (min-device-width: 48em) {
3872
- .SourceBlock-module_root__1P3XD footer {
3873
- margin-top: 18px;
3874
- padding-top: 12px
3875
- }
3876
- }
3877
- .SourceBlock-module_origin__l3JbO {
3878
- letter-spacing: 1px;
3879
- text-transform: uppercase;
3880
- pointer-events: none;
3881
-
3882
- color: #292929;
3883
-
3884
- font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
3885
- font-size: 16px;
3886
- font-weight: bold;
3887
- font-style: normal;
3888
- line-height: 22px
3889
- }
3890
- @media only screen and (min-device-width: 48em) {
3891
- .SourceBlock-module_origin__l3JbO {
3892
- font-size: 18px;
3893
- line-height: 26px
3894
- }
3895
- }
3896
- .SourceBlock-module_center__3P93B {
3897
- max-width: 650px;
3898
- margin-right: auto;
3899
- margin-left: auto;
3900
- }
3901
- /* VISIBILITY */
3902
- @media only screen and (min-device-width: 32em) {
3903
- .SourceBlock-module_mobile__2gw4S {
3904
- display: none
3905
- }
3906
- }
3907
- .SourceBlock-module_desktop__DecT6 {
3908
- display: none
3909
- }
3910
- @media only screen and (min-device-width: 32em) {
3911
- .SourceBlock-module_desktop__DecT6 {
3912
- display: block
3913
- }
3914
- }
3915
-
3916
3962
  /* Colors */
3917
3963
  /* Fonts */
3918
3964
  /* Gap */
@@ -4199,34 +4245,6 @@ a mark {
4199
4245
  }
4200
4246
  }
4201
4247
 
4202
- /* stylelint-disable declaration-empty-line-before */
4203
- /* Colors */
4204
- /* Fonts */
4205
- /* Gap */
4206
- /* Media */
4207
- /* 512 */
4208
- /* 650 */
4209
- /* 768 */
4210
- /* 1024 */
4211
- /* 1010 */
4212
- /* 1200 */
4213
- /* 511 */
4214
- /* 1023 */
4215
- /* Zindex */
4216
- .DocumentItemsCount-module_root__P3q-z {
4217
- display: inline;
4218
-
4219
- line-height: inherit;
4220
- }
4221
- .DocumentItemsCount-module_root__P3q-z svg {
4222
- vertical-align: top;
4223
- }
4224
- .DocumentItemsCount-module_items__3pfxW {
4225
- margin-left: 1px;
4226
-
4227
- vertical-align: top;
4228
- }
4229
-
4230
4248
  /* Colors */
4231
4249
  /* Fonts */
4232
4250
  /* Gap */
@@ -4325,6 +4343,106 @@ a mark {
4325
4343
  fill: currentColor;
4326
4344
  }
4327
4345
 
4346
+ /* stylelint-disable declaration-empty-line-before */
4347
+ /* Colors */
4348
+ /* Fonts */
4349
+ /* Gap */
4350
+ /* Media */
4351
+ /* 512 */
4352
+ /* 650 */
4353
+ /* 768 */
4354
+ /* 1024 */
4355
+ /* 1010 */
4356
+ /* 1200 */
4357
+ /* 511 */
4358
+ /* 1023 */
4359
+ /* Zindex */
4360
+ .DocumentItemsCount-module_root__P3q-z {
4361
+ display: inline;
4362
+
4363
+ line-height: inherit;
4364
+ }
4365
+ .DocumentItemsCount-module_root__P3q-z svg {
4366
+ vertical-align: top;
4367
+ }
4368
+ .DocumentItemsCount-module_items__3pfxW {
4369
+ margin-left: 1px;
4370
+
4371
+ vertical-align: top;
4372
+ }
4373
+
4374
+ /* Colors */
4375
+ /* Fonts */
4376
+ /* Gap */
4377
+ /* Media */
4378
+ /* 512 */
4379
+ /* 650 */
4380
+ /* 768 */
4381
+ /* 1024 */
4382
+ /* 1010 */
4383
+ /* 1200 */
4384
+ /* 511 */
4385
+ /* 1023 */
4386
+ /* Zindex */
4387
+ .Footnote-module_root__2a0-B {
4388
+ position: relative;
4389
+
4390
+ width: 320px;
4391
+ padding: 20px;
4392
+
4393
+ border-radius: 8px;
4394
+ background-color: #fff;
4395
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2);
4396
+ }
4397
+ .Footnote-module_body__259Ly {
4398
+ font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
4399
+ font-size: 16px;
4400
+ line-height: 22px;
4401
+ }
4402
+ .Footnote-module_body__259Ly h3 {
4403
+ margin: 0 0 16px;
4404
+
4405
+ font-size: inherit;
4406
+ font-weight: 600;
4407
+ line-height: inherit;
4408
+ }
4409
+ .Footnote-module_body__259Ly p {
4410
+ margin: 0;
4411
+ }
4412
+ .Footnote-module_body__259Ly p + p {
4413
+ margin-top: 6px;
4414
+ }
4415
+ .Footnote-module_body__259Ly a {
4416
+ color: inherit;
4417
+ box-shadow: inset 0 -1px #b88b59;
4418
+ }
4419
+ .Footnote-module_body__259Ly a:hover {
4420
+ color: #b88b59;
4421
+ }
4422
+ .Footnote-module_dismiss__1HKG5 {
4423
+ position: absolute;
4424
+ top: 0;
4425
+ right: 0;
4426
+
4427
+ margin: 0;
4428
+ padding: 6px 9px 10px;
4429
+
4430
+ cursor: pointer;
4431
+
4432
+ color: #b3b3b3;
4433
+ border-width: 0;
4434
+ outline: none;
4435
+ background-color: transparent;
4436
+ }
4437
+ .Footnote-module_dismiss__1HKG5:hover {
4438
+ color: #757575;
4439
+ }
4440
+ .Footnote-module_dismiss__1HKG5 svg {
4441
+ width: 12px;
4442
+ height: 12px;
4443
+ }
4444
+
4445
+
4328
4446
  /* Colors */
4329
4447
  /* Fonts */
4330
4448
  /* Gap */
@@ -4511,7 +4629,7 @@ a mark {
4511
4629
  display: none
4512
4630
  }
4513
4631
  }
4514
- .EmbedBlock-module_mobile__1P-eo .EmbedBlock-module_figure__vAvcN {
4632
+ .EmbedBlock-module_mobile__1P-eo:first-child .EmbedBlock-module_figure__vAvcN {
4515
4633
  overflow: hidden;
4516
4634
 
4517
4635
  border-radius: 8px 8px 0 0;