@meduza/ui-kit-2 0.1.17 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui-kit-2.cjs.development.js +1 -1
- package/dist/ui-kit-2.cjs.production.min.js +1 -1
- package/dist/ui-kit-2.cjs.production.min.js.map +1 -1
- package/dist/ui-kit-2.esm.js +1 -1
- package/dist/ui-kit.css +1017 -993
- package/package.json +1 -1
- package/src/Button/Button.module.css +21 -29
- package/src/MaterialNote/MaterialNote.module.css +1 -1
- package/src/SourceBlock/SourceBlock.module.css +3 -3
- package/src/Spoiler/Spoiler.module.css +29 -10
package/dist/ui-kit.css
CHANGED
|
@@ -16,38 +16,35 @@
|
|
|
16
16
|
|
|
17
17
|
padding: 0;
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
-webkit-user-select: none;
|
|
21
|
+
-moz-user-select: none;
|
|
22
|
+
-ms-user-select: none;
|
|
23
|
+
user-select: none;
|
|
24
|
+
transition: background-color 0.15s ease-out;
|
|
23
25
|
text-align: center;
|
|
24
26
|
|
|
27
|
+
color: #fff;
|
|
25
28
|
border-width: 0;
|
|
26
29
|
outline: none;
|
|
27
30
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
transition: background-color 0.15s ease-out;
|
|
31
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
32
|
+
line-height: 1;
|
|
31
33
|
|
|
32
34
|
-webkit-appearance: none;
|
|
33
35
|
|
|
34
36
|
-moz-appearance: none;
|
|
35
37
|
|
|
36
38
|
appearance: none;
|
|
37
|
-
-webkit-user-select: none;
|
|
38
|
-
-moz-user-select: none;
|
|
39
|
-
-ms-user-select: none;
|
|
40
|
-
user-select: none;
|
|
41
39
|
}
|
|
42
40
|
.Button-module_root__RpsiW::-moz-focus-inner {
|
|
43
41
|
border: 0;
|
|
44
42
|
}
|
|
45
43
|
.Button-module_root__RpsiW[disabled] {
|
|
46
44
|
cursor: default;
|
|
45
|
+
pointer-events: none;
|
|
47
46
|
|
|
48
47
|
opacity: 0.5;
|
|
49
|
-
|
|
50
|
-
pointer-events: none;
|
|
51
48
|
}
|
|
52
49
|
.Button-module_root__RpsiW > span:first-child {
|
|
53
50
|
margin-right: 4px;
|
|
@@ -74,7 +71,6 @@
|
|
|
74
71
|
}
|
|
75
72
|
.Button-module_gray__3IM54 {
|
|
76
73
|
color: #000;
|
|
77
|
-
|
|
78
74
|
background-color: #f0f0f0;
|
|
79
75
|
}
|
|
80
76
|
.Button-module_gray__3IM54.Button-module_isLoading__1g6QO {
|
|
@@ -110,7 +106,6 @@
|
|
|
110
106
|
}
|
|
111
107
|
.Button-module_dark__I0uXx {
|
|
112
108
|
color: #adadad;
|
|
113
|
-
|
|
114
109
|
background-color: #3a3a3a;
|
|
115
110
|
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
|
|
116
111
|
}
|
|
@@ -130,7 +125,6 @@
|
|
|
130
125
|
}
|
|
131
126
|
.Button-module_light__1Y4hG {
|
|
132
127
|
color: #000;
|
|
133
|
-
|
|
134
128
|
background-color: #fff;
|
|
135
129
|
}
|
|
136
130
|
.Button-module_light__1Y4hG:hover {
|
|
@@ -149,7 +143,6 @@
|
|
|
149
143
|
}
|
|
150
144
|
.Button-module_black__3sG3Y {
|
|
151
145
|
color: #7e7d7b;
|
|
152
|
-
|
|
153
146
|
background-color: #000;
|
|
154
147
|
}
|
|
155
148
|
.Button-module_black__3sG3Y.Button-module_isLoading__1g6QO {
|
|
@@ -186,20 +179,21 @@
|
|
|
186
179
|
.Button-module_default__28Vo_ {
|
|
187
180
|
width: 100%;
|
|
188
181
|
height: 42px;
|
|
189
|
-
padding:
|
|
190
|
-
|
|
191
|
-
font-weight: 600;
|
|
192
|
-
|
|
193
|
-
font-size: 12px;
|
|
194
|
-
line-height: 22px;
|
|
182
|
+
padding: 6px 18px;
|
|
195
183
|
|
|
196
184
|
letter-spacing: 1px;
|
|
197
185
|
text-transform: uppercase;
|
|
198
186
|
|
|
199
|
-
border-radius: 8px
|
|
187
|
+
border-radius: 8px;
|
|
188
|
+
|
|
189
|
+
font-size: 12px;
|
|
190
|
+
font-weight: 600;
|
|
191
|
+
line-height: 22px
|
|
200
192
|
}
|
|
201
193
|
@media only screen and (min-device-width: 64em) {
|
|
202
194
|
.Button-module_default__28Vo_ {
|
|
195
|
+
padding: 7px 18px 6px;
|
|
196
|
+
|
|
203
197
|
font-size: 14px;
|
|
204
198
|
line-height: 16px
|
|
205
199
|
}
|
|
@@ -209,16 +203,15 @@
|
|
|
209
203
|
margin-left: 6px;
|
|
210
204
|
}
|
|
211
205
|
.Button-module_ghost__3awCW {
|
|
212
|
-
|
|
213
|
-
color: inherit;
|
|
214
|
-
font-weight: inherit;
|
|
215
|
-
font-size: inherit;
|
|
216
|
-
|
|
217
|
-
font-family: inherit;
|
|
218
206
|
letter-spacing: inherit;
|
|
219
207
|
text-transform: none;
|
|
220
208
|
|
|
209
|
+
color: inherit;
|
|
221
210
|
background-color: transparent;
|
|
211
|
+
|
|
212
|
+
font-family: inherit;
|
|
213
|
+
font-size: inherit;
|
|
214
|
+
font-weight: inherit;
|
|
222
215
|
}
|
|
223
216
|
.Button-module_isInDropdown__1ogKL {
|
|
224
217
|
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
@@ -229,12 +222,11 @@
|
|
|
229
222
|
}
|
|
230
223
|
/* LOADING */
|
|
231
224
|
.Button-module_root__RpsiW.Button-module_isLoading__1g6QO {
|
|
225
|
+
cursor: default;
|
|
226
|
+
pointer-events: none;
|
|
232
227
|
|
|
233
228
|
background-color: transparent;
|
|
234
229
|
box-shadow: none;
|
|
235
|
-
cursor: default;
|
|
236
|
-
|
|
237
|
-
pointer-events: none;
|
|
238
230
|
}
|
|
239
231
|
.Button-module_loader__2pl6d {
|
|
240
232
|
display: block;
|
|
@@ -419,327 +411,117 @@
|
|
|
419
411
|
/* 511 */
|
|
420
412
|
/* 1023 */
|
|
421
413
|
/* Zindex */
|
|
422
|
-
.
|
|
423
|
-
position: relative;
|
|
424
|
-
|
|
425
|
-
display: block;
|
|
426
|
-
|
|
414
|
+
.SvgSymbol-module_root__2CsRW {
|
|
427
415
|
width: 100%;
|
|
416
|
+
height: 100%;
|
|
417
|
+
|
|
418
|
+
vertical-align: middle;
|
|
428
419
|
}
|
|
429
|
-
.
|
|
430
|
-
|
|
431
|
-
animation: DotsOnImage-module_show__2TMBv 400ms ease both 500ms;
|
|
420
|
+
.SvgSymbol-module_small__2g6oR {
|
|
421
|
+
height: 14px;
|
|
432
422
|
}
|
|
433
|
-
.
|
|
434
|
-
|
|
435
|
-
z-index: 10;
|
|
436
|
-
|
|
437
|
-
width: 28px;
|
|
438
|
-
height: 28px;
|
|
439
|
-
|
|
440
|
-
will-change: opacity;
|
|
423
|
+
.SvgSymbol-module_normal__9lFn1 {
|
|
424
|
+
height: 14px;
|
|
441
425
|
}
|
|
442
|
-
.
|
|
426
|
+
.SvgSymbol-module_medium__2eF5L {
|
|
427
|
+
width: 24px;
|
|
428
|
+
height: 24px;
|
|
429
|
+
}
|
|
430
|
+
.SvgSymbol-module_large__2kQrt {
|
|
431
|
+
width: 42px;
|
|
432
|
+
height: 42px;
|
|
433
|
+
}
|
|
434
|
+
.SvgSymbol-module_adaptive__3_68T {
|
|
443
435
|
width: 100%;
|
|
444
436
|
height: 100%;
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
text-align: center;
|
|
437
|
+
}
|
|
438
|
+
.SvgSymbol-module_fb__1whmw {
|
|
439
|
+
width: 16px;
|
|
449
440
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
outline-width: 0;
|
|
455
|
-
background-color: #000;
|
|
456
|
-
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
|
|
441
|
+
fill: #304591;
|
|
442
|
+
}
|
|
443
|
+
.SvgSymbol-module_vk__3VEuu {
|
|
444
|
+
width: 20px;
|
|
457
445
|
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
446
|
+
fill: #527397;
|
|
447
|
+
}
|
|
448
|
+
.SvgSymbol-module_ok__2_1Qb {
|
|
449
|
+
width: 9px;
|
|
462
450
|
|
|
463
|
-
|
|
451
|
+
fill: #eb722e;
|
|
452
|
+
}
|
|
453
|
+
.SvgSymbol-module_tw__2VRG5 {
|
|
454
|
+
width: 20px;
|
|
464
455
|
|
|
465
|
-
|
|
456
|
+
fill: #31adf4;
|
|
457
|
+
}
|
|
458
|
+
.SvgSymbol-module_tg__2xe2f {
|
|
459
|
+
width: 18px;
|
|
466
460
|
|
|
467
|
-
|
|
468
|
-
will-change: opacity;
|
|
461
|
+
fill: #2ba5e0;
|
|
469
462
|
}
|
|
470
|
-
.
|
|
471
|
-
|
|
463
|
+
.SvgSymbol-module_reaction__rrJvf {
|
|
464
|
+
width: 16px;
|
|
472
465
|
|
|
473
|
-
|
|
466
|
+
color: #b88b59;
|
|
467
|
+
|
|
468
|
+
fill: #262626;
|
|
474
469
|
}
|
|
475
|
-
.
|
|
476
|
-
.
|
|
477
|
-
|
|
470
|
+
.SvgSymbol-module_card__1XAqw,
|
|
471
|
+
.SvgSymbol-module_podcast__3oPoo,
|
|
472
|
+
.SvgSymbol-module_read__2V82i,
|
|
473
|
+
.SvgSymbol-module_listened__1oMFV {
|
|
474
|
+
width: 15px;
|
|
475
|
+
height: 15px;
|
|
478
476
|
}
|
|
479
|
-
.
|
|
480
|
-
|
|
481
|
-
|
|
477
|
+
.SvgSymbol-module_menu__2iYFt {
|
|
478
|
+
width: 24px;
|
|
479
|
+
height: 24px;
|
|
482
480
|
}
|
|
483
|
-
.
|
|
484
|
-
|
|
481
|
+
.SvgSymbol-module_cross__J2lCN {
|
|
482
|
+
width: 14px;
|
|
483
|
+
height: 14px;
|
|
485
484
|
}
|
|
486
|
-
.
|
|
487
|
-
|
|
485
|
+
.SvgSymbol-module_isInFeature__cDeTI,
|
|
486
|
+
.SvgSymbol-module_isInCard__pKq4e {
|
|
487
|
+
width: 16px;
|
|
488
|
+
height: 16px;
|
|
488
489
|
}
|
|
489
|
-
.
|
|
490
|
-
|
|
490
|
+
.SvgSymbol-module_isInTopicBlockItem__3Te91 {
|
|
491
|
+
width: 16px;
|
|
492
|
+
height: 16px;
|
|
491
493
|
}
|
|
492
|
-
.
|
|
493
|
-
|
|
494
|
-
|
|
494
|
+
.SvgSymbol-module_isInPageStatic__H31Rd {
|
|
495
|
+
width: 64px;
|
|
496
|
+
height: 64px;
|
|
495
497
|
}
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
transform: scale(0.4);
|
|
499
|
-
|
|
500
|
-
opacity: 0;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
90% {
|
|
504
|
-
transform: scale(1.1);
|
|
505
|
-
|
|
506
|
-
opacity: 1;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
100% {
|
|
510
|
-
transform: scale(1);
|
|
511
|
-
|
|
512
|
-
opacity: 1;
|
|
513
|
-
}
|
|
498
|
+
.SvgSymbol-module_isInMaterialMeta__2IbAw {
|
|
499
|
+
margin-right: 6px;
|
|
514
500
|
}
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
opacity: 0;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
90% {
|
|
523
|
-
transform: scale(1.1);
|
|
524
|
-
|
|
525
|
-
opacity: 1;
|
|
526
|
-
}
|
|
501
|
+
.SvgSymbol-module_isInAudioPlayer__2xlzW {
|
|
502
|
+
width: 29px;
|
|
503
|
+
height: 29px;
|
|
527
504
|
|
|
528
|
-
|
|
529
|
-
transform: scale(1);
|
|
505
|
+
-webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
530
506
|
|
|
531
|
-
|
|
532
|
-
}
|
|
507
|
+
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
533
508
|
}
|
|
509
|
+
.SvgSymbol-module_isInEpisodeBlock__2vY3o {
|
|
510
|
+
width: 38px;
|
|
511
|
+
height: 38px;
|
|
534
512
|
|
|
535
|
-
|
|
536
|
-
/* Fonts */
|
|
537
|
-
/* Gap */
|
|
538
|
-
/* Media */
|
|
539
|
-
/* 512 */
|
|
540
|
-
/* 650 */
|
|
541
|
-
/* 768 */
|
|
542
|
-
/* 1024 */
|
|
543
|
-
/* 1010 */
|
|
544
|
-
/* 1200 */
|
|
545
|
-
/* 511 */
|
|
546
|
-
/* 1023 */
|
|
547
|
-
/* Zindex */
|
|
548
|
-
.Image-module_root__1vsA_ {
|
|
549
|
-
position: relative;
|
|
550
|
-
z-index: 1;
|
|
513
|
+
-webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
551
514
|
|
|
552
|
-
|
|
553
|
-
overflow: hidden
|
|
515
|
+
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
554
516
|
}
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
517
|
+
.SvgSymbol-module_isInButtonPlaybackRate__1L3TW {
|
|
518
|
+
width: 34px;
|
|
519
|
+
height: 28px
|
|
558
520
|
}
|
|
559
|
-
|
|
560
|
-
.
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
top: 0;
|
|
564
|
-
left: 0;
|
|
565
|
-
|
|
566
|
-
width: 100%;
|
|
567
|
-
height: 100%;
|
|
568
|
-
}
|
|
569
|
-
.Image-module_wrapper__3fLjs {
|
|
570
|
-
display: block;
|
|
571
|
-
|
|
572
|
-
width: 100%;
|
|
573
|
-
|
|
574
|
-
background-repeat: no-repeat;
|
|
575
|
-
background-size: 100% auto;
|
|
576
|
-
}
|
|
577
|
-
.Image-module_placeholder__1p4ob {
|
|
578
|
-
transition: background-color 250ms ease;
|
|
579
|
-
|
|
580
|
-
background-color: #f2f2f2;
|
|
581
|
-
}
|
|
582
|
-
.Image-module_loaded__w9FVT {
|
|
583
|
-
background: transparent;
|
|
584
|
-
}
|
|
585
|
-
.Image-module_fullscreen__29apx picture {
|
|
586
|
-
cursor: pointer;
|
|
587
|
-
}
|
|
588
|
-
.Image-module_fullscreen__29apx picture:hover::after {
|
|
589
|
-
opacity: 1;
|
|
590
|
-
}
|
|
591
|
-
.Image-module_fullscreen__29apx picture::after {
|
|
592
|
-
position: absolute;
|
|
593
|
-
right: 12px;
|
|
594
|
-
bottom: 12px;
|
|
595
|
-
|
|
596
|
-
width: 40px;
|
|
597
|
-
height: 40px;
|
|
598
|
-
|
|
599
|
-
transition: opacity 250ms ease;
|
|
600
|
-
pointer-events: none;
|
|
601
|
-
|
|
602
|
-
opacity: 0;
|
|
603
|
-
border: 0.5px solid rgba(255, 255, 255, 0.15);
|
|
604
|
-
border-radius: 20px;
|
|
605
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
606
|
-
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.197 10.207V3.763h-6.463' stroke='%23DBDBDB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.793 4.166l-6.173 6.172' stroke='%23DBDBDB' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.803 13.733v6.444h6.463' stroke='%23DBDBDB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.207 19.774l6.173-6.171' stroke='%23DBDBDB' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
607
|
-
background-repeat: no-repeat;
|
|
608
|
-
background-position: center
|
|
609
|
-
}
|
|
610
|
-
@media only screen and (min-device-width: 64em) {
|
|
611
|
-
.Image-module_fullscreen__29apx picture::after {
|
|
612
|
-
content: ''
|
|
613
|
-
}
|
|
614
|
-
}
|
|
615
|
-
[data-input='mouse'] .Image-module_wrapper__3fLjs {
|
|
616
|
-
outline: none;
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
/* Colors */
|
|
620
|
-
/* Fonts */
|
|
621
|
-
/* Gap */
|
|
622
|
-
/* Media */
|
|
623
|
-
/* 512 */
|
|
624
|
-
/* 650 */
|
|
625
|
-
/* 768 */
|
|
626
|
-
/* 1024 */
|
|
627
|
-
/* 1010 */
|
|
628
|
-
/* 1200 */
|
|
629
|
-
/* 511 */
|
|
630
|
-
/* 1023 */
|
|
631
|
-
/* Zindex */
|
|
632
|
-
.SvgSymbol-module_root__2CsRW {
|
|
633
|
-
width: 100%;
|
|
634
|
-
height: 100%;
|
|
635
|
-
|
|
636
|
-
vertical-align: middle;
|
|
637
|
-
}
|
|
638
|
-
.SvgSymbol-module_small__2g6oR {
|
|
639
|
-
height: 14px;
|
|
640
|
-
}
|
|
641
|
-
.SvgSymbol-module_normal__9lFn1 {
|
|
642
|
-
height: 14px;
|
|
643
|
-
}
|
|
644
|
-
.SvgSymbol-module_medium__2eF5L {
|
|
645
|
-
width: 24px;
|
|
646
|
-
height: 24px;
|
|
647
|
-
}
|
|
648
|
-
.SvgSymbol-module_large__2kQrt {
|
|
649
|
-
width: 42px;
|
|
650
|
-
height: 42px;
|
|
651
|
-
}
|
|
652
|
-
.SvgSymbol-module_adaptive__3_68T {
|
|
653
|
-
width: 100%;
|
|
654
|
-
height: 100%;
|
|
655
|
-
}
|
|
656
|
-
.SvgSymbol-module_fb__1whmw {
|
|
657
|
-
width: 16px;
|
|
658
|
-
|
|
659
|
-
fill: #304591;
|
|
660
|
-
}
|
|
661
|
-
.SvgSymbol-module_vk__3VEuu {
|
|
662
|
-
width: 20px;
|
|
663
|
-
|
|
664
|
-
fill: #527397;
|
|
665
|
-
}
|
|
666
|
-
.SvgSymbol-module_ok__2_1Qb {
|
|
667
|
-
width: 9px;
|
|
668
|
-
|
|
669
|
-
fill: #eb722e;
|
|
670
|
-
}
|
|
671
|
-
.SvgSymbol-module_tw__2VRG5 {
|
|
672
|
-
width: 20px;
|
|
673
|
-
|
|
674
|
-
fill: #31adf4;
|
|
675
|
-
}
|
|
676
|
-
.SvgSymbol-module_tg__2xe2f {
|
|
677
|
-
width: 18px;
|
|
678
|
-
|
|
679
|
-
fill: #2ba5e0;
|
|
680
|
-
}
|
|
681
|
-
.SvgSymbol-module_reaction__rrJvf {
|
|
682
|
-
width: 16px;
|
|
683
|
-
|
|
684
|
-
color: #b88b59;
|
|
685
|
-
|
|
686
|
-
fill: #262626;
|
|
687
|
-
}
|
|
688
|
-
.SvgSymbol-module_card__1XAqw,
|
|
689
|
-
.SvgSymbol-module_podcast__3oPoo,
|
|
690
|
-
.SvgSymbol-module_read__2V82i,
|
|
691
|
-
.SvgSymbol-module_listened__1oMFV {
|
|
692
|
-
width: 15px;
|
|
693
|
-
height: 15px;
|
|
694
|
-
}
|
|
695
|
-
.SvgSymbol-module_menu__2iYFt {
|
|
696
|
-
width: 24px;
|
|
697
|
-
height: 24px;
|
|
698
|
-
}
|
|
699
|
-
.SvgSymbol-module_cross__J2lCN {
|
|
700
|
-
width: 14px;
|
|
701
|
-
height: 14px;
|
|
702
|
-
}
|
|
703
|
-
.SvgSymbol-module_isInFeature__cDeTI,
|
|
704
|
-
.SvgSymbol-module_isInCard__pKq4e {
|
|
705
|
-
width: 16px;
|
|
706
|
-
height: 16px;
|
|
707
|
-
}
|
|
708
|
-
.SvgSymbol-module_isInTopicBlockItem__3Te91 {
|
|
709
|
-
width: 16px;
|
|
710
|
-
height: 16px;
|
|
711
|
-
}
|
|
712
|
-
.SvgSymbol-module_isInPageStatic__H31Rd {
|
|
713
|
-
width: 64px;
|
|
714
|
-
height: 64px;
|
|
715
|
-
}
|
|
716
|
-
.SvgSymbol-module_isInMaterialMeta__2IbAw {
|
|
717
|
-
margin-right: 6px;
|
|
718
|
-
}
|
|
719
|
-
.SvgSymbol-module_isInAudioPlayer__2xlzW {
|
|
720
|
-
width: 29px;
|
|
721
|
-
height: 29px;
|
|
722
|
-
|
|
723
|
-
-webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
724
|
-
|
|
725
|
-
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
726
|
-
}
|
|
727
|
-
.SvgSymbol-module_isInEpisodeBlock__2vY3o {
|
|
728
|
-
width: 38px;
|
|
729
|
-
height: 38px;
|
|
730
|
-
|
|
731
|
-
-webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
732
|
-
|
|
733
|
-
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
|
|
734
|
-
}
|
|
735
|
-
.SvgSymbol-module_isInButtonPlaybackRate__1L3TW {
|
|
736
|
-
width: 34px;
|
|
737
|
-
height: 28px
|
|
738
|
-
}
|
|
739
|
-
@media only screen and (min-device-width: 40.625em) {
|
|
740
|
-
.SvgSymbol-module_isInButtonPlaybackRate__1L3TW {
|
|
741
|
-
width: 28px;
|
|
742
|
-
height: 22px
|
|
521
|
+
@media only screen and (min-device-width: 40.625em) {
|
|
522
|
+
.SvgSymbol-module_isInButtonPlaybackRate__1L3TW {
|
|
523
|
+
width: 28px;
|
|
524
|
+
height: 22px
|
|
743
525
|
}
|
|
744
526
|
}
|
|
745
527
|
.SvgSymbol-module_isInButtonBackward__1Grf9,
|
|
@@ -846,6 +628,90 @@
|
|
|
846
628
|
}
|
|
847
629
|
}
|
|
848
630
|
|
|
631
|
+
/* Colors */
|
|
632
|
+
/* Fonts */
|
|
633
|
+
/* Gap */
|
|
634
|
+
/* Media */
|
|
635
|
+
/* 512 */
|
|
636
|
+
/* 650 */
|
|
637
|
+
/* 768 */
|
|
638
|
+
/* 1024 */
|
|
639
|
+
/* 1010 */
|
|
640
|
+
/* 1200 */
|
|
641
|
+
/* 511 */
|
|
642
|
+
/* 1023 */
|
|
643
|
+
/* Zindex */
|
|
644
|
+
.Image-module_root__1vsA_ {
|
|
645
|
+
position: relative;
|
|
646
|
+
z-index: 1;
|
|
647
|
+
|
|
648
|
+
display: block;
|
|
649
|
+
overflow: hidden
|
|
650
|
+
}
|
|
651
|
+
@media only screen and (min-device-width: 32em) {
|
|
652
|
+
.Image-module_root__1vsA_ {
|
|
653
|
+
border-radius: inherit
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
.Image-module_placeholder__1p4ob,
|
|
657
|
+
.Image-module_root__1vsA_ img {
|
|
658
|
+
position: absolute;
|
|
659
|
+
top: 0;
|
|
660
|
+
left: 0;
|
|
661
|
+
|
|
662
|
+
width: 100%;
|
|
663
|
+
height: 100%;
|
|
664
|
+
}
|
|
665
|
+
.Image-module_wrapper__3fLjs {
|
|
666
|
+
display: block;
|
|
667
|
+
|
|
668
|
+
width: 100%;
|
|
669
|
+
|
|
670
|
+
background-repeat: no-repeat;
|
|
671
|
+
background-size: 100% auto;
|
|
672
|
+
}
|
|
673
|
+
.Image-module_placeholder__1p4ob {
|
|
674
|
+
transition: background-color 250ms ease;
|
|
675
|
+
|
|
676
|
+
background-color: #f2f2f2;
|
|
677
|
+
}
|
|
678
|
+
.Image-module_loaded__w9FVT {
|
|
679
|
+
background: transparent;
|
|
680
|
+
}
|
|
681
|
+
.Image-module_fullscreen__29apx picture {
|
|
682
|
+
cursor: pointer;
|
|
683
|
+
}
|
|
684
|
+
.Image-module_fullscreen__29apx picture:hover::after {
|
|
685
|
+
opacity: 1;
|
|
686
|
+
}
|
|
687
|
+
.Image-module_fullscreen__29apx picture::after {
|
|
688
|
+
position: absolute;
|
|
689
|
+
right: 12px;
|
|
690
|
+
bottom: 12px;
|
|
691
|
+
|
|
692
|
+
width: 40px;
|
|
693
|
+
height: 40px;
|
|
694
|
+
|
|
695
|
+
transition: opacity 250ms ease;
|
|
696
|
+
pointer-events: none;
|
|
697
|
+
|
|
698
|
+
opacity: 0;
|
|
699
|
+
border: 0.5px solid rgba(255, 255, 255, 0.15);
|
|
700
|
+
border-radius: 20px;
|
|
701
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
702
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.197 10.207V3.763h-6.463' stroke='%23DBDBDB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.793 4.166l-6.173 6.172' stroke='%23DBDBDB' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.803 13.733v6.444h6.463' stroke='%23DBDBDB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.207 19.774l6.173-6.171' stroke='%23DBDBDB' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
703
|
+
background-repeat: no-repeat;
|
|
704
|
+
background-position: center
|
|
705
|
+
}
|
|
706
|
+
@media only screen and (min-device-width: 64em) {
|
|
707
|
+
.Image-module_fullscreen__29apx picture::after {
|
|
708
|
+
content: ''
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
[data-input='mouse'] .Image-module_wrapper__3fLjs {
|
|
712
|
+
outline: none;
|
|
713
|
+
}
|
|
714
|
+
|
|
849
715
|
/* Colors */
|
|
850
716
|
/* Fonts */
|
|
851
717
|
/* Gap */
|
|
@@ -866,6 +732,132 @@
|
|
|
866
732
|
color: red;
|
|
867
733
|
}
|
|
868
734
|
|
|
735
|
+
/* Colors */
|
|
736
|
+
/* Fonts */
|
|
737
|
+
/* Gap */
|
|
738
|
+
/* Media */
|
|
739
|
+
/* 512 */
|
|
740
|
+
/* 650 */
|
|
741
|
+
/* 768 */
|
|
742
|
+
/* 1024 */
|
|
743
|
+
/* 1010 */
|
|
744
|
+
/* 1200 */
|
|
745
|
+
/* 511 */
|
|
746
|
+
/* 1023 */
|
|
747
|
+
/* Zindex */
|
|
748
|
+
.DotsOnImage-module_root__2XP3Q {
|
|
749
|
+
position: relative;
|
|
750
|
+
|
|
751
|
+
display: block;
|
|
752
|
+
|
|
753
|
+
width: 100%;
|
|
754
|
+
}
|
|
755
|
+
.DotsOnImage-module_isVisible__Wqqqt .DotsOnImage-module_marker__lH5cP {
|
|
756
|
+
-webkit-animation: DotsOnImage-module_show__2TMBv 400ms ease both 500ms;
|
|
757
|
+
animation: DotsOnImage-module_show__2TMBv 400ms ease both 500ms;
|
|
758
|
+
}
|
|
759
|
+
.DotsOnImage-module_dot__H1wua {
|
|
760
|
+
position: absolute;
|
|
761
|
+
z-index: 10;
|
|
762
|
+
|
|
763
|
+
width: 28px;
|
|
764
|
+
height: 28px;
|
|
765
|
+
|
|
766
|
+
will-change: opacity;
|
|
767
|
+
}
|
|
768
|
+
.DotsOnImage-module_marker__lH5cP {
|
|
769
|
+
width: 100%;
|
|
770
|
+
height: 100%;
|
|
771
|
+
padding: 0;
|
|
772
|
+
|
|
773
|
+
cursor: pointer;
|
|
774
|
+
text-align: center;
|
|
775
|
+
|
|
776
|
+
opacity: 0;
|
|
777
|
+
color: #fff;
|
|
778
|
+
border-width: 0;
|
|
779
|
+
border-radius: 30px;
|
|
780
|
+
outline-width: 0;
|
|
781
|
+
background-color: #000;
|
|
782
|
+
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
|
|
783
|
+
|
|
784
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
785
|
+
font-size: 13px;
|
|
786
|
+
font-weight: 600;
|
|
787
|
+
line-height: 28px;
|
|
788
|
+
|
|
789
|
+
-webkit-appearance: none;
|
|
790
|
+
|
|
791
|
+
-moz-appearance: none;
|
|
792
|
+
|
|
793
|
+
appearance: none;
|
|
794
|
+
will-change: opacity;
|
|
795
|
+
}
|
|
796
|
+
.DotsOnImage-module_marker__lH5cP svg {
|
|
797
|
+
display: block;
|
|
798
|
+
|
|
799
|
+
will-change: opacity;
|
|
800
|
+
}
|
|
801
|
+
.DotsOnImage-module_marker__lH5cP:hover,
|
|
802
|
+
.DotsOnImage-module_marker__lH5cP.DotsOnImage-module_isActive__3hh31 {
|
|
803
|
+
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
|
|
804
|
+
}
|
|
805
|
+
.DotsOnImage-module_popover__35Cpj {
|
|
806
|
+
position: absolute;
|
|
807
|
+
z-index: 10;
|
|
808
|
+
}
|
|
809
|
+
.DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isRight__2RsJe.DotsOnImage-module_isTop__3zmSK {
|
|
810
|
+
transform: translateX(50px);
|
|
811
|
+
}
|
|
812
|
+
.DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isLeft__3quc9.DotsOnImage-module_isTop__3zmSK {
|
|
813
|
+
transform: translateX(-100%) translateX(-22px);
|
|
814
|
+
}
|
|
815
|
+
.DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isRight__2RsJe.DotsOnImage-module_isBottom__3Nk1T {
|
|
816
|
+
transform: translateX(50px) translateY(-100%) translateY(22px);
|
|
817
|
+
}
|
|
818
|
+
.DotsOnImage-module_popover__35Cpj.DotsOnImage-module_isLeft__3quc9.DotsOnImage-module_isBottom__3Nk1T {
|
|
819
|
+
transform: translateX(-100%) translateX(-22px) translateY(-100%)
|
|
820
|
+
translateY(22px);
|
|
821
|
+
}
|
|
822
|
+
@-webkit-keyframes DotsOnImage-module_show__2TMBv {
|
|
823
|
+
0% {
|
|
824
|
+
transform: scale(0.4);
|
|
825
|
+
|
|
826
|
+
opacity: 0;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
90% {
|
|
830
|
+
transform: scale(1.1);
|
|
831
|
+
|
|
832
|
+
opacity: 1;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
100% {
|
|
836
|
+
transform: scale(1);
|
|
837
|
+
|
|
838
|
+
opacity: 1;
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
@keyframes DotsOnImage-module_show__2TMBv {
|
|
842
|
+
0% {
|
|
843
|
+
transform: scale(0.4);
|
|
844
|
+
|
|
845
|
+
opacity: 0;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
90% {
|
|
849
|
+
transform: scale(1.1);
|
|
850
|
+
|
|
851
|
+
opacity: 1;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
100% {
|
|
855
|
+
transform: scale(1);
|
|
856
|
+
|
|
857
|
+
opacity: 1;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
|
|
869
861
|
/* Colors */
|
|
870
862
|
/* Fonts */
|
|
871
863
|
/* Gap */
|
|
@@ -1371,7 +1363,7 @@
|
|
|
1371
1363
|
@media only screen and (min-device-width: 32em) {
|
|
1372
1364
|
.MaterialNote-module_center__18RxI,
|
|
1373
1365
|
.MaterialNote-module_default__1lQPl {
|
|
1374
|
-
margin-top:
|
|
1366
|
+
margin-top: 45px
|
|
1375
1367
|
}
|
|
1376
1368
|
}
|
|
1377
1369
|
.MaterialNote-module_card__OWXbQ:empty,
|
|
@@ -1402,29 +1394,87 @@
|
|
|
1402
1394
|
.MaterialNote-module_game__cADMe {
|
|
1403
1395
|
margin-bottom: 0;
|
|
1404
1396
|
|
|
1405
|
-
text-align: center
|
|
1397
|
+
text-align: center
|
|
1398
|
+
}
|
|
1399
|
+
@media only screen and (min-device-width: 32em) {
|
|
1400
|
+
.MaterialNote-module_game__cADMe {
|
|
1401
|
+
margin-top: 25px
|
|
1402
|
+
}
|
|
1403
|
+
}
|
|
1404
|
+
@media only screen and (max-device-width: 32.1875em) {
|
|
1405
|
+
.MaterialNote-module_game__cADMe.MaterialNote-module_dark__xCry- .MaterialNote-module_note_credit__PuFyX {
|
|
1406
|
+
color: #fff
|
|
1407
|
+
}
|
|
1408
|
+
}
|
|
1409
|
+
.MaterialNote-module_slide__1ZBBq,
|
|
1410
|
+
.MaterialNote-module_card__OWXbQ {
|
|
1411
|
+
margin-bottom: 9px;
|
|
1412
|
+
padding-top: 8px
|
|
1413
|
+
}
|
|
1414
|
+
@media only screen and (min-device-width: 32em) {
|
|
1415
|
+
.MaterialNote-module_slide__1ZBBq,
|
|
1416
|
+
.MaterialNote-module_card__OWXbQ {
|
|
1417
|
+
margin-bottom: 16px
|
|
1418
|
+
}
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
/* Colors */
|
|
1422
|
+
/* Fonts */
|
|
1423
|
+
/* Gap */
|
|
1424
|
+
/* Media */
|
|
1425
|
+
/* 512 */
|
|
1426
|
+
/* 650 */
|
|
1427
|
+
/* 768 */
|
|
1428
|
+
/* 1024 */
|
|
1429
|
+
/* 1010 */
|
|
1430
|
+
/* 1200 */
|
|
1431
|
+
/* 511 */
|
|
1432
|
+
/* 1023 */
|
|
1433
|
+
/* Zindex */
|
|
1434
|
+
.BookmarkButton-module_root__3KmuY {
|
|
1435
|
+
color: #e0e0e0;
|
|
1436
|
+
}
|
|
1437
|
+
.BookmarkButton-module_control__1A0ea {
|
|
1438
|
+
margin: 0;
|
|
1439
|
+
padding: 5px 3px;
|
|
1440
|
+
|
|
1441
|
+
cursor: pointer;
|
|
1442
|
+
|
|
1443
|
+
color: inherit;
|
|
1444
|
+
border-width: 0;
|
|
1445
|
+
outline: none;
|
|
1446
|
+
background-color: transparent;
|
|
1447
|
+
|
|
1448
|
+
-webkit-appearance: none;
|
|
1449
|
+
|
|
1450
|
+
-moz-appearance: none;
|
|
1451
|
+
|
|
1452
|
+
appearance: none;
|
|
1453
|
+
fill: transparent;
|
|
1406
1454
|
}
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
margin-top: 25px
|
|
1455
|
+
.BookmarkButton-module_dark__1cwyi {
|
|
1456
|
+
color: #fff;
|
|
1410
1457
|
}
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
.MaterialNote-module_game__cADMe.MaterialNote-module_dark__xCry- .MaterialNote-module_note_credit__PuFyX {
|
|
1414
|
-
color: #fff
|
|
1458
|
+
.BookmarkButton-module_light__1uQyH {
|
|
1459
|
+
color: #000;
|
|
1415
1460
|
}
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
.MaterialNote-module_card__OWXbQ {
|
|
1419
|
-
margin-bottom: 9px;
|
|
1420
|
-
padding-top: 8px
|
|
1461
|
+
.BookmarkButton-module_isInBookmarks__1_5kB .BookmarkButton-module_control__1A0ea {
|
|
1462
|
+
fill: #e0e0e0;
|
|
1421
1463
|
}
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1464
|
+
.BookmarkButton-module_isInBookmarks__1_5kB.BookmarkButton-module_dark__1cwyi .BookmarkButton-module_control__1A0ea {
|
|
1465
|
+
fill: #fff;
|
|
1466
|
+
}
|
|
1467
|
+
.BookmarkButton-module_isInBookmarks__1_5kB.BookmarkButton-module_light__1uQyH .BookmarkButton-module_control__1A0ea {
|
|
1468
|
+
fill: #000;
|
|
1469
|
+
}
|
|
1470
|
+
@media only screen and (min-device-width: 64em) {
|
|
1471
|
+
.BookmarkButton-module_isInGrid__2pQ2B .BookmarkButton-module_control__1A0ea svg {
|
|
1472
|
+
width: 12px
|
|
1426
1473
|
}
|
|
1427
1474
|
}
|
|
1475
|
+
[data-context='prodano'] .BookmarkButton-module_root__3KmuY {
|
|
1476
|
+
display: none;
|
|
1477
|
+
}
|
|
1428
1478
|
|
|
1429
1479
|
/* Colors */
|
|
1430
1480
|
/* Fonts */
|
|
@@ -1519,64 +1569,6 @@
|
|
|
1519
1569
|
}
|
|
1520
1570
|
|
|
1521
1571
|
|
|
1522
|
-
/* Colors */
|
|
1523
|
-
/* Fonts */
|
|
1524
|
-
/* Gap */
|
|
1525
|
-
/* Media */
|
|
1526
|
-
/* 512 */
|
|
1527
|
-
/* 650 */
|
|
1528
|
-
/* 768 */
|
|
1529
|
-
/* 1024 */
|
|
1530
|
-
/* 1010 */
|
|
1531
|
-
/* 1200 */
|
|
1532
|
-
/* 511 */
|
|
1533
|
-
/* 1023 */
|
|
1534
|
-
/* Zindex */
|
|
1535
|
-
.BookmarkButton-module_root__3KmuY {
|
|
1536
|
-
color: #e0e0e0;
|
|
1537
|
-
}
|
|
1538
|
-
.BookmarkButton-module_control__1A0ea {
|
|
1539
|
-
margin: 0;
|
|
1540
|
-
padding: 5px 3px;
|
|
1541
|
-
|
|
1542
|
-
cursor: pointer;
|
|
1543
|
-
|
|
1544
|
-
color: inherit;
|
|
1545
|
-
border-width: 0;
|
|
1546
|
-
outline: none;
|
|
1547
|
-
background-color: transparent;
|
|
1548
|
-
|
|
1549
|
-
-webkit-appearance: none;
|
|
1550
|
-
|
|
1551
|
-
-moz-appearance: none;
|
|
1552
|
-
|
|
1553
|
-
appearance: none;
|
|
1554
|
-
fill: transparent;
|
|
1555
|
-
}
|
|
1556
|
-
.BookmarkButton-module_dark__1cwyi {
|
|
1557
|
-
color: #fff;
|
|
1558
|
-
}
|
|
1559
|
-
.BookmarkButton-module_light__1uQyH {
|
|
1560
|
-
color: #000;
|
|
1561
|
-
}
|
|
1562
|
-
.BookmarkButton-module_isInBookmarks__1_5kB .BookmarkButton-module_control__1A0ea {
|
|
1563
|
-
fill: #e0e0e0;
|
|
1564
|
-
}
|
|
1565
|
-
.BookmarkButton-module_isInBookmarks__1_5kB.BookmarkButton-module_dark__1cwyi .BookmarkButton-module_control__1A0ea {
|
|
1566
|
-
fill: #fff;
|
|
1567
|
-
}
|
|
1568
|
-
.BookmarkButton-module_isInBookmarks__1_5kB.BookmarkButton-module_light__1uQyH .BookmarkButton-module_control__1A0ea {
|
|
1569
|
-
fill: #000;
|
|
1570
|
-
}
|
|
1571
|
-
@media only screen and (min-device-width: 64em) {
|
|
1572
|
-
.BookmarkButton-module_isInGrid__2pQ2B .BookmarkButton-module_control__1A0ea svg {
|
|
1573
|
-
width: 12px
|
|
1574
|
-
}
|
|
1575
|
-
}
|
|
1576
|
-
[data-context='prodano'] .BookmarkButton-module_root__3KmuY {
|
|
1577
|
-
display: none;
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
1572
|
/* Colors */
|
|
1581
1573
|
/* Fonts */
|
|
1582
1574
|
/* Gap */
|
|
@@ -1637,77 +1629,220 @@
|
|
|
1637
1629
|
right: 0;
|
|
1638
1630
|
left: auto
|
|
1639
1631
|
}
|
|
1640
|
-
@media only screen and (min-device-width: 64em) {
|
|
1641
|
-
.Dropdown-module_isInAudioPanel__1zv7F .Dropdown-module_menu__3PIqD {
|
|
1642
|
-
right: auto;
|
|
1643
|
-
left: 0
|
|
1632
|
+
@media only screen and (min-device-width: 64em) {
|
|
1633
|
+
.Dropdown-module_isInAudioPanel__1zv7F .Dropdown-module_menu__3PIqD {
|
|
1634
|
+
right: auto;
|
|
1635
|
+
left: 0
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
.Dropdown-module_menu__3PIqD {
|
|
1639
|
+
position: absolute;
|
|
1640
|
+
top: 100%;
|
|
1641
|
+
left: 0;
|
|
1642
|
+
|
|
1643
|
+
visibility: hidden;
|
|
1644
|
+
|
|
1645
|
+
padding-top: 6px;
|
|
1646
|
+
|
|
1647
|
+
opacity: 0;
|
|
1648
|
+
}
|
|
1649
|
+
.Dropdown-module_menu__3PIqD::after {
|
|
1650
|
+
position: absolute;
|
|
1651
|
+
z-index: -1;
|
|
1652
|
+
top: -10px;
|
|
1653
|
+
right: -10px;
|
|
1654
|
+
bottom: -10px;
|
|
1655
|
+
left: -10px;
|
|
1656
|
+
|
|
1657
|
+
content: '';
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
/* Colors */
|
|
1661
|
+
/* Fonts */
|
|
1662
|
+
/* Gap */
|
|
1663
|
+
/* Media */
|
|
1664
|
+
/* 512 */
|
|
1665
|
+
/* 650 */
|
|
1666
|
+
/* 768 */
|
|
1667
|
+
/* 1024 */
|
|
1668
|
+
/* 1010 */
|
|
1669
|
+
/* 1200 */
|
|
1670
|
+
/* 511 */
|
|
1671
|
+
/* 1023 */
|
|
1672
|
+
/* Zindex */
|
|
1673
|
+
.MaterialTitle-module_root__18ku- {
|
|
1674
|
+
display: block;
|
|
1675
|
+
}
|
|
1676
|
+
.MaterialTitle-module_root__18ku- {
|
|
1677
|
+
margin: 0;
|
|
1678
|
+
|
|
1679
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
1680
|
+
font-size: 25px;
|
|
1681
|
+
font-weight: normal;
|
|
1682
|
+
line-height: 27px
|
|
1683
|
+
}
|
|
1684
|
+
@media only screen and (min-device-width: 48em) {
|
|
1685
|
+
.MaterialTitle-module_root__18ku- {
|
|
1686
|
+
font-size: 37px;
|
|
1687
|
+
line-height: 38px
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1690
|
+
.MaterialTitle-module_primary__2Sfmx {
|
|
1691
|
+
font-family: 'PF Regal', 'PF Regal Text Pro', 'Georgia', serif;
|
|
1692
|
+
font-weight: normal;
|
|
1693
|
+
}
|
|
1694
|
+
.MaterialTitle-module_secondary__3uDp4 {
|
|
1695
|
+
font-size: 24px;
|
|
1696
|
+
font-weight: 700
|
|
1697
|
+
}
|
|
1698
|
+
@media only screen and (min-device-width: 48em) {
|
|
1699
|
+
.MaterialTitle-module_secondary__3uDp4 {
|
|
1700
|
+
font-size: 36px
|
|
1701
|
+
}
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
/* Colors */
|
|
1705
|
+
/* Fonts */
|
|
1706
|
+
/* Gap */
|
|
1707
|
+
/* Media */
|
|
1708
|
+
/* 512 */
|
|
1709
|
+
/* 650 */
|
|
1710
|
+
/* 768 */
|
|
1711
|
+
/* 1024 */
|
|
1712
|
+
/* 1010 */
|
|
1713
|
+
/* 1200 */
|
|
1714
|
+
/* 511 */
|
|
1715
|
+
/* 1023 */
|
|
1716
|
+
/* Zindex */
|
|
1717
|
+
.Toolbar-module_root__2HF2r {
|
|
1718
|
+
overflow: hidden;
|
|
1719
|
+
|
|
1720
|
+
transform: translateZ(0);
|
|
1721
|
+
|
|
1722
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
1723
|
+
}
|
|
1724
|
+
.Toolbar-module_list__1n5ny {
|
|
1725
|
+
display: -webkit-box;
|
|
1726
|
+
display: -webkit-flex;
|
|
1727
|
+
display: -ms-flexbox;
|
|
1728
|
+
display: flex;
|
|
1729
|
+
flex-flow: row wrap;
|
|
1730
|
+
|
|
1731
|
+
margin: 0 0 0 -10px;
|
|
1732
|
+
padding: 0;
|
|
1733
|
+
|
|
1734
|
+
list-style: none
|
|
1735
|
+
}
|
|
1736
|
+
@media only screen and (min-device-width: 64em) {
|
|
1737
|
+
.Toolbar-module_list__1n5ny {
|
|
1738
|
+
margin: 0 0 0 -15px
|
|
1739
|
+
}
|
|
1740
|
+
}
|
|
1741
|
+
.Toolbar-module_item__36x7d {
|
|
1742
|
+
position: relative;
|
|
1743
|
+
|
|
1744
|
+
min-width: 42px;
|
|
1745
|
+
height: 32px;
|
|
1746
|
+
padding-right: 10px;
|
|
1747
|
+
padding-left: 10px;
|
|
1748
|
+
|
|
1749
|
+
cursor: pointer;
|
|
1750
|
+
transition: color 250ms ease;
|
|
1751
|
+
text-align: center;
|
|
1752
|
+
|
|
1753
|
+
color: #808080;
|
|
1754
|
+
|
|
1755
|
+
line-height: 1
|
|
1756
|
+
}
|
|
1757
|
+
@media only screen and (min-device-width: 64em) {
|
|
1758
|
+
.Toolbar-module_item__36x7d {
|
|
1759
|
+
padding-right: 15px;
|
|
1760
|
+
padding-left: 15px
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1763
|
+
.Toolbar-module_item__36x7d:last-child {
|
|
1764
|
+
margin-right: 0;
|
|
1765
|
+
}
|
|
1766
|
+
.Toolbar-module_item__36x7d::before {
|
|
1767
|
+
position: absolute;
|
|
1768
|
+
top: 7px;
|
|
1769
|
+
left: 0;
|
|
1770
|
+
|
|
1771
|
+
height: 18px;
|
|
1772
|
+
|
|
1773
|
+
content: '';
|
|
1774
|
+
vertical-align: middle;
|
|
1775
|
+
|
|
1776
|
+
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
|
1777
|
+
}
|
|
1778
|
+
.Toolbar-module_item__36x7d:empty {
|
|
1779
|
+
display: none;
|
|
1780
|
+
}
|
|
1781
|
+
.Toolbar-module_isInTopbar__223iP {
|
|
1782
|
+
height: 100%;
|
|
1783
|
+
}
|
|
1784
|
+
.Toolbar-module_isInTopbar__223iP .Toolbar-module_item__36x7d {
|
|
1785
|
+
height: 100%;
|
|
1786
|
+
}
|
|
1787
|
+
.Toolbar-module_center__3_H8M {
|
|
1788
|
+
width: 100%;
|
|
1789
|
+
max-width: 650px;
|
|
1790
|
+
margin-right: auto;
|
|
1791
|
+
margin-left: auto;
|
|
1792
|
+
}
|
|
1793
|
+
.Toolbar-module_game__5-jY_ {
|
|
1794
|
+
margin-top: 11px
|
|
1644
1795
|
}
|
|
1645
|
-
|
|
1646
|
-
.
|
|
1647
|
-
|
|
1648
|
-
top: 100%;
|
|
1649
|
-
left: 0;
|
|
1650
|
-
|
|
1651
|
-
visibility: hidden;
|
|
1652
|
-
|
|
1653
|
-
padding-top: 6px;
|
|
1654
|
-
|
|
1655
|
-
opacity: 0;
|
|
1796
|
+
@media only screen and (min-device-width: 32em) {
|
|
1797
|
+
.Toolbar-module_game__5-jY_ {
|
|
1798
|
+
margin-top: 18px
|
|
1656
1799
|
}
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
right: -10px;
|
|
1662
|
-
bottom: -10px;
|
|
1663
|
-
left: -10px;
|
|
1664
|
-
|
|
1665
|
-
content: '';
|
|
1800
|
+
}
|
|
1801
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
|
|
1802
|
+
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
|
|
1803
|
+
justify-content: center
|
|
1666
1804
|
}
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
/* 768 */
|
|
1675
|
-
/* 1024 */
|
|
1676
|
-
/* 1010 */
|
|
1677
|
-
/* 1200 */
|
|
1678
|
-
/* 511 */
|
|
1679
|
-
/* 1023 */
|
|
1680
|
-
/* Zindex */
|
|
1681
|
-
.MaterialTitle-module_root__18ku- {
|
|
1682
|
-
display: block;
|
|
1805
|
+
@media only screen and (min-device-width: 32em) {
|
|
1806
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
|
|
1807
|
+
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
|
|
1808
|
+
display: -webkit-box;
|
|
1809
|
+
display: -webkit-flex;
|
|
1810
|
+
display: -ms-flexbox;
|
|
1811
|
+
display: flex
|
|
1683
1812
|
}
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
1688
|
-
font-size: 25px;
|
|
1689
|
-
font-weight: normal;
|
|
1690
|
-
line-height: 27px
|
|
1813
|
+
}
|
|
1814
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
|
|
1815
|
+
width: 260px
|
|
1691
1816
|
}
|
|
1692
|
-
@media only screen and (min-device-width:
|
|
1693
|
-
.
|
|
1694
|
-
|
|
1695
|
-
line-height: 38px
|
|
1817
|
+
@media only screen and (min-device-width: 32em) {
|
|
1818
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
|
|
1819
|
+
width: auto
|
|
1696
1820
|
}
|
|
1697
1821
|
}
|
|
1698
|
-
.
|
|
1699
|
-
|
|
1700
|
-
font-weight: normal;
|
|
1822
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
|
|
1823
|
+
content: none
|
|
1701
1824
|
}
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1825
|
+
@media only screen and (min-device-width: 32em) {
|
|
1826
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
|
|
1827
|
+
content: ''
|
|
1705
1828
|
}
|
|
1706
|
-
|
|
1707
|
-
.
|
|
1708
|
-
|
|
1829
|
+
}
|
|
1830
|
+
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_item__36x7d:first-child::before,
|
|
1831
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:first-child::before {
|
|
1832
|
+
content: none;
|
|
1833
|
+
}
|
|
1834
|
+
@media only screen and (min-device-width: 64em) {
|
|
1835
|
+
.Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
|
|
1836
|
+
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
|
|
1837
|
+
margin-left: 0
|
|
1709
1838
|
}
|
|
1710
1839
|
}
|
|
1840
|
+
.Toolbar-module_dark__2Ejc9 .Toolbar-module_item__36x7d::before {
|
|
1841
|
+
border-left-color: rgba(255, 255, 255, 0.2);
|
|
1842
|
+
}
|
|
1843
|
+
[data-context="prodano"] .Toolbar-module_root__2HF2r {
|
|
1844
|
+
display: none;
|
|
1845
|
+
}
|
|
1711
1846
|
|
|
1712
1847
|
/* Colors */
|
|
1713
1848
|
/* Fonts */
|
|
@@ -1901,166 +2036,23 @@
|
|
|
1901
2036
|
}
|
|
1902
2037
|
100% {
|
|
1903
2038
|
opacity: 1;
|
|
1904
|
-
}
|
|
1905
|
-
}
|
|
1906
|
-
@-webkit-keyframes Popover-module_fadeOut__3EZhx {
|
|
1907
|
-
0% {
|
|
1908
|
-
opacity: 1;
|
|
1909
|
-
}
|
|
1910
|
-
100% {
|
|
1911
|
-
opacity: 0;
|
|
1912
|
-
}
|
|
1913
|
-
}
|
|
1914
|
-
@keyframes Popover-module_fadeOut__3EZhx {
|
|
1915
|
-
0% {
|
|
1916
|
-
opacity: 1;
|
|
1917
|
-
}
|
|
1918
|
-
100% {
|
|
1919
|
-
opacity: 0;
|
|
1920
|
-
}
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
/* Colors */
|
|
1924
|
-
/* Fonts */
|
|
1925
|
-
/* Gap */
|
|
1926
|
-
/* Media */
|
|
1927
|
-
/* 512 */
|
|
1928
|
-
/* 650 */
|
|
1929
|
-
/* 768 */
|
|
1930
|
-
/* 1024 */
|
|
1931
|
-
/* 1010 */
|
|
1932
|
-
/* 1200 */
|
|
1933
|
-
/* 511 */
|
|
1934
|
-
/* 1023 */
|
|
1935
|
-
/* Zindex */
|
|
1936
|
-
.Toolbar-module_root__2HF2r {
|
|
1937
|
-
overflow: hidden;
|
|
1938
|
-
|
|
1939
|
-
transform: translateZ(0);
|
|
1940
|
-
|
|
1941
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
1942
|
-
}
|
|
1943
|
-
.Toolbar-module_list__1n5ny {
|
|
1944
|
-
display: -webkit-box;
|
|
1945
|
-
display: -webkit-flex;
|
|
1946
|
-
display: -ms-flexbox;
|
|
1947
|
-
display: flex;
|
|
1948
|
-
flex-flow: row wrap;
|
|
1949
|
-
|
|
1950
|
-
margin: 0 0 0 -10px;
|
|
1951
|
-
padding: 0;
|
|
1952
|
-
|
|
1953
|
-
list-style: none
|
|
1954
|
-
}
|
|
1955
|
-
@media only screen and (min-device-width: 64em) {
|
|
1956
|
-
.Toolbar-module_list__1n5ny {
|
|
1957
|
-
margin: 0 0 0 -15px
|
|
1958
|
-
}
|
|
1959
|
-
}
|
|
1960
|
-
.Toolbar-module_item__36x7d {
|
|
1961
|
-
position: relative;
|
|
1962
|
-
|
|
1963
|
-
min-width: 42px;
|
|
1964
|
-
height: 32px;
|
|
1965
|
-
padding-right: 10px;
|
|
1966
|
-
padding-left: 10px;
|
|
1967
|
-
|
|
1968
|
-
cursor: pointer;
|
|
1969
|
-
transition: color 250ms ease;
|
|
1970
|
-
text-align: center;
|
|
1971
|
-
|
|
1972
|
-
color: #808080;
|
|
1973
|
-
|
|
1974
|
-
line-height: 1
|
|
1975
|
-
}
|
|
1976
|
-
@media only screen and (min-device-width: 64em) {
|
|
1977
|
-
.Toolbar-module_item__36x7d {
|
|
1978
|
-
padding-right: 15px;
|
|
1979
|
-
padding-left: 15px
|
|
1980
|
-
}
|
|
1981
|
-
}
|
|
1982
|
-
.Toolbar-module_item__36x7d:last-child {
|
|
1983
|
-
margin-right: 0;
|
|
1984
|
-
}
|
|
1985
|
-
.Toolbar-module_item__36x7d::before {
|
|
1986
|
-
position: absolute;
|
|
1987
|
-
top: 7px;
|
|
1988
|
-
left: 0;
|
|
1989
|
-
|
|
1990
|
-
height: 18px;
|
|
1991
|
-
|
|
1992
|
-
content: '';
|
|
1993
|
-
vertical-align: middle;
|
|
1994
|
-
|
|
1995
|
-
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
|
1996
|
-
}
|
|
1997
|
-
.Toolbar-module_item__36x7d:empty {
|
|
1998
|
-
display: none;
|
|
1999
|
-
}
|
|
2000
|
-
.Toolbar-module_isInTopbar__223iP {
|
|
2001
|
-
height: 100%;
|
|
2002
|
-
}
|
|
2003
|
-
.Toolbar-module_isInTopbar__223iP .Toolbar-module_item__36x7d {
|
|
2004
|
-
height: 100%;
|
|
2005
|
-
}
|
|
2006
|
-
.Toolbar-module_center__3_H8M {
|
|
2007
|
-
width: 100%;
|
|
2008
|
-
max-width: 650px;
|
|
2009
|
-
margin-right: auto;
|
|
2010
|
-
margin-left: auto;
|
|
2011
|
-
}
|
|
2012
|
-
.Toolbar-module_game__5-jY_ {
|
|
2013
|
-
margin-top: 11px
|
|
2014
|
-
}
|
|
2015
|
-
@media only screen and (min-device-width: 32em) {
|
|
2016
|
-
.Toolbar-module_game__5-jY_ {
|
|
2017
|
-
margin-top: 18px
|
|
2018
|
-
}
|
|
2019
|
-
}
|
|
2020
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
|
|
2021
|
-
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
|
|
2022
|
-
justify-content: center
|
|
2023
|
-
}
|
|
2024
|
-
@media only screen and (min-device-width: 32em) {
|
|
2025
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
|
|
2026
|
-
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
|
|
2027
|
-
display: -webkit-box;
|
|
2028
|
-
display: -webkit-flex;
|
|
2029
|
-
display: -ms-flexbox;
|
|
2030
|
-
display: flex
|
|
2031
|
-
}
|
|
2032
|
-
}
|
|
2033
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
|
|
2034
|
-
width: 260px
|
|
2035
|
-
}
|
|
2036
|
-
@media only screen and (min-device-width: 32em) {
|
|
2037
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child {
|
|
2038
|
-
width: auto
|
|
2039
|
-
}
|
|
2040
|
-
}
|
|
2041
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
|
|
2042
|
-
content: none
|
|
2043
|
-
}
|
|
2044
|
-
@media only screen and (min-device-width: 32em) {
|
|
2045
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:last-child::before {
|
|
2046
|
-
content: ''
|
|
2047
|
-
}
|
|
2048
|
-
}
|
|
2049
|
-
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_item__36x7d:first-child::before,
|
|
2050
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_item__36x7d:first-child::before {
|
|
2051
|
-
content: none;
|
|
2052
|
-
}
|
|
2053
|
-
@media only screen and (min-device-width: 64em) {
|
|
2054
|
-
.Toolbar-module_game__5-jY_ .Toolbar-module_list__1n5ny,
|
|
2055
|
-
.Toolbar-module_gameSurvey__1hQEz .Toolbar-module_list__1n5ny {
|
|
2056
|
-
margin-left: 0
|
|
2039
|
+
}
|
|
2057
2040
|
}
|
|
2041
|
+
@-webkit-keyframes Popover-module_fadeOut__3EZhx {
|
|
2042
|
+
0% {
|
|
2043
|
+
opacity: 1;
|
|
2044
|
+
}
|
|
2045
|
+
100% {
|
|
2046
|
+
opacity: 0;
|
|
2058
2047
|
}
|
|
2059
|
-
.Toolbar-module_dark__2Ejc9 .Toolbar-module_item__36x7d::before {
|
|
2060
|
-
border-left-color: rgba(255, 255, 255, 0.2);
|
|
2061
2048
|
}
|
|
2062
|
-
|
|
2063
|
-
|
|
2049
|
+
@keyframes Popover-module_fadeOut__3EZhx {
|
|
2050
|
+
0% {
|
|
2051
|
+
opacity: 1;
|
|
2052
|
+
}
|
|
2053
|
+
100% {
|
|
2054
|
+
opacity: 0;
|
|
2055
|
+
}
|
|
2064
2056
|
}
|
|
2065
2057
|
|
|
2066
2058
|
/* Colors */
|
|
@@ -2179,24 +2171,6 @@
|
|
|
2179
2171
|
}
|
|
2180
2172
|
}
|
|
2181
2173
|
|
|
2182
|
-
/* Colors */
|
|
2183
|
-
/* Fonts */
|
|
2184
|
-
/* Gap */
|
|
2185
|
-
/* Media */
|
|
2186
|
-
/* 512 */
|
|
2187
|
-
/* 650 */
|
|
2188
|
-
/* 768 */
|
|
2189
|
-
/* 1024 */
|
|
2190
|
-
/* 1010 */
|
|
2191
|
-
/* 1200 */
|
|
2192
|
-
/* 511 */
|
|
2193
|
-
/* 1023 */
|
|
2194
|
-
/* Zindex */
|
|
2195
|
-
.Timestamp-module_root__coOvT {
|
|
2196
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
2197
|
-
font-weight: normal;
|
|
2198
|
-
}
|
|
2199
|
-
|
|
2200
2174
|
/* Colors */
|
|
2201
2175
|
/* Fonts */
|
|
2202
2176
|
/* Gap */
|
|
@@ -2283,6 +2257,24 @@
|
|
|
2283
2257
|
margin-left: auto;
|
|
2284
2258
|
}
|
|
2285
2259
|
|
|
2260
|
+
/* Colors */
|
|
2261
|
+
/* Fonts */
|
|
2262
|
+
/* Gap */
|
|
2263
|
+
/* Media */
|
|
2264
|
+
/* 512 */
|
|
2265
|
+
/* 650 */
|
|
2266
|
+
/* 768 */
|
|
2267
|
+
/* 1024 */
|
|
2268
|
+
/* 1010 */
|
|
2269
|
+
/* 1200 */
|
|
2270
|
+
/* 511 */
|
|
2271
|
+
/* 1023 */
|
|
2272
|
+
/* Zindex */
|
|
2273
|
+
.Timestamp-module_root__coOvT {
|
|
2274
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
2275
|
+
font-weight: normal;
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2286
2278
|
/* Colors */
|
|
2287
2279
|
/* Fonts */
|
|
2288
2280
|
/* Gap */
|
|
@@ -2728,225 +2720,24 @@
|
|
|
2728
2720
|
@media only screen and (min-device-width: 64em) {
|
|
2729
2721
|
.HalfBlock-module_image__2lYel {
|
|
2730
2722
|
width: 50%;
|
|
2731
|
-
margin: 0
|
|
2732
|
-
}
|
|
2733
|
-
}
|
|
2734
|
-
/* VISIBILITY */
|
|
2735
|
-
@media only screen and (min-device-width: 32em) {
|
|
2736
|
-
.HalfBlock-module_mobile__2latf {
|
|
2737
|
-
display: none
|
|
2738
|
-
}
|
|
2739
|
-
}
|
|
2740
|
-
.HalfBlock-module_desktop__3B1Ej {
|
|
2741
|
-
display: none
|
|
2742
|
-
}
|
|
2743
|
-
@media only screen and (min-device-width: 32em) {
|
|
2744
|
-
.HalfBlock-module_desktop__3B1Ej {
|
|
2745
|
-
display: block
|
|
2746
|
-
}
|
|
2747
|
-
}
|
|
2748
|
-
|
|
2749
|
-
/* Colors */
|
|
2750
|
-
/* Fonts */
|
|
2751
|
-
/* Gap */
|
|
2752
|
-
/* Media */
|
|
2753
|
-
/* 512 */
|
|
2754
|
-
/* 650 */
|
|
2755
|
-
/* 768 */
|
|
2756
|
-
/* 1024 */
|
|
2757
|
-
/* 1010 */
|
|
2758
|
-
/* 1200 */
|
|
2759
|
-
/* 511 */
|
|
2760
|
-
/* 1023 */
|
|
2761
|
-
/* Zindex */
|
|
2762
|
-
.RelatedBlock-module_root__IKcQq {
|
|
2763
|
-
margin: 16px 0;
|
|
2764
|
-
|
|
2765
|
-
border-radius: 8px;
|
|
2766
|
-
background-color: #f5f5f5;
|
|
2767
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 4px 0 0 #b78b5c
|
|
2768
|
-
}
|
|
2769
|
-
@media only screen and (min-device-width: 48em) {
|
|
2770
|
-
.RelatedBlock-module_root__IKcQq {
|
|
2771
|
-
margin: 25px 0
|
|
2772
|
-
}
|
|
2773
|
-
}
|
|
2774
|
-
.RelatedBlock-module_root__IKcQq:last-child {
|
|
2775
|
-
margin-bottom: 0;
|
|
2776
|
-
}
|
|
2777
|
-
.RelatedBlock-module_root__IKcQq:first-child {
|
|
2778
|
-
margin-top: 0;
|
|
2779
|
-
}
|
|
2780
|
-
.RelatedBlock-module_root__IKcQq a {
|
|
2781
|
-
display: block;
|
|
2782
|
-
|
|
2783
|
-
padding: 12px 12px 13px;
|
|
2784
|
-
|
|
2785
|
-
transition: color 0.15s;
|
|
2786
|
-
text-decoration: none;
|
|
2787
|
-
|
|
2788
|
-
color: #000;
|
|
2789
|
-
box-shadow: none;
|
|
2790
|
-
|
|
2791
|
-
font-size: 17px;
|
|
2792
|
-
line-height: 20px
|
|
2793
|
-
}
|
|
2794
|
-
@media only screen and (min-device-width: 48em) {
|
|
2795
|
-
.RelatedBlock-module_root__IKcQq a {
|
|
2796
|
-
padding: 15px 20px 17px;
|
|
2797
|
-
|
|
2798
|
-
font-size: 19px;
|
|
2799
|
-
line-height: 23px
|
|
2800
|
-
}
|
|
2801
|
-
}
|
|
2802
|
-
.RelatedBlock-module_root__IKcQq a:hover {
|
|
2803
|
-
color: #5c5c5c;
|
|
2804
|
-
}
|
|
2805
|
-
.RelatedBlock-module_header__2SuWP {
|
|
2806
|
-
margin: 0;
|
|
2807
|
-
padding: 14px 12px 3px;
|
|
2808
|
-
|
|
2809
|
-
letter-spacing: 1px;
|
|
2810
|
-
text-transform: uppercase;
|
|
2811
|
-
|
|
2812
|
-
color: #7F7F7F;
|
|
2813
|
-
|
|
2814
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
2815
|
-
font-size: 12px;
|
|
2816
|
-
font-weight: 600;
|
|
2817
|
-
line-height: 17px
|
|
2818
|
-
}
|
|
2819
|
-
@media only screen and (min-device-width: 48em) {
|
|
2820
|
-
.RelatedBlock-module_header__2SuWP {
|
|
2821
|
-
padding: 20px 20px 14px;
|
|
2822
|
-
|
|
2823
|
-
font-size: 14px;
|
|
2824
|
-
line-height: 16px
|
|
2825
|
-
}
|
|
2826
|
-
}
|
|
2827
|
-
.RelatedBlock-module_items__2V-Ap {
|
|
2828
|
-
margin: 0;
|
|
2829
|
-
padding-left: 0;
|
|
2830
|
-
|
|
2831
|
-
list-style: none;
|
|
2832
|
-
}
|
|
2833
|
-
.RelatedBlock-module_items__2V-Ap li {
|
|
2834
|
-
padding: 0;
|
|
2835
|
-
}
|
|
2836
|
-
.RelatedBlock-module_items__2V-Ap li + li {
|
|
2837
|
-
border-top: 1px solid #e6e6e6;
|
|
2838
|
-
}
|
|
2839
|
-
.RelatedBlock-module_rich__ddaHq .RelatedBlock-module_first__BKItW {
|
|
2840
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
2841
|
-
font-size: 16px;
|
|
2842
|
-
font-weight: 700;
|
|
2843
|
-
line-height: 18px
|
|
2844
|
-
}
|
|
2845
|
-
@media only screen and (min-device-width: 48em) {
|
|
2846
|
-
.RelatedBlock-module_rich__ddaHq .RelatedBlock-module_first__BKItW {
|
|
2847
|
-
font-size: 18px
|
|
2848
|
-
}
|
|
2849
|
-
}
|
|
2850
|
-
.RelatedBlock-module_simple__29HVO {
|
|
2851
|
-
}
|
|
2852
|
-
.RelatedBlock-module_center__1LmW8 {
|
|
2853
|
-
max-width: 650px;
|
|
2854
|
-
margin-right: auto;
|
|
2855
|
-
margin-left: auto;
|
|
2856
|
-
}
|
|
2857
|
-
.RelatedBlock-module_isInSlideMaterial__2YSYG:first-child {
|
|
2858
|
-
margin-top: 0;
|
|
2859
|
-
}
|
|
2860
|
-
.RelatedBlock-module_isInSlideMaterial__2YSYG:last-child {
|
|
2861
|
-
margin-bottom: 0;
|
|
2862
|
-
}
|
|
2863
|
-
/* VISIBILITY */
|
|
2864
|
-
@media only screen and (min-device-width: 32em) {
|
|
2865
|
-
.RelatedBlock-module_mobile__2XM5a {
|
|
2866
|
-
display: none
|
|
2867
|
-
}
|
|
2868
|
-
}
|
|
2869
|
-
.RelatedBlock-module_desktop__2mXeq {
|
|
2870
|
-
display: none
|
|
2871
|
-
}
|
|
2872
|
-
@media only screen and (min-device-width: 32em) {
|
|
2873
|
-
.RelatedBlock-module_desktop__2mXeq {
|
|
2874
|
-
display: block
|
|
2875
|
-
}
|
|
2876
|
-
}
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
/* Colors */
|
|
2880
|
-
/* Fonts */
|
|
2881
|
-
/* Gap */
|
|
2882
|
-
/* Media */
|
|
2883
|
-
/* 512 */
|
|
2884
|
-
/* 650 */
|
|
2885
|
-
/* 768 */
|
|
2886
|
-
/* 1024 */
|
|
2887
|
-
/* 1010 */
|
|
2888
|
-
/* 1200 */
|
|
2889
|
-
/* 511 */
|
|
2890
|
-
/* 1023 */
|
|
2891
|
-
/* Zindex */
|
|
2892
|
-
.ImportantLead-module_root__2BdT3 {
|
|
2893
|
-
margin: 18px 0;
|
|
2894
|
-
padding: 12px 12px 13px;
|
|
2895
|
-
|
|
2896
|
-
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
2897
|
-
border-radius: 4px;
|
|
2898
|
-
border-radius: 8px;
|
|
2899
|
-
background: #FFF8C4;
|
|
2900
|
-
|
|
2901
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
2902
|
-
font-size: 16px;
|
|
2903
|
-
font-weight: normal;
|
|
2904
|
-
line-height: 20px
|
|
2905
|
-
}
|
|
2906
|
-
@media only screen and (min-device-width: 32em) {
|
|
2907
|
-
.ImportantLead-module_root__2BdT3 {
|
|
2908
|
-
margin: 25px 0;
|
|
2909
|
-
padding: 12px 15px 13px;
|
|
2910
|
-
|
|
2911
|
-
font-size: 17px;
|
|
2912
|
-
line-height: 24px
|
|
2913
|
-
}
|
|
2914
|
-
}
|
|
2915
|
-
.ImportantLead-module_root__2BdT3:last-child {
|
|
2916
|
-
margin-bottom: 0;
|
|
2917
|
-
}
|
|
2918
|
-
.ImportantLead-module_root__2BdT3:first-child {
|
|
2919
|
-
margin-top: 0;
|
|
2920
|
-
}
|
|
2921
|
-
.ImportantLead-module_root__2BdT3 a {
|
|
2922
|
-
color: #000;
|
|
2923
|
-
box-shadow: inset 0 -1px #000;
|
|
2924
|
-
}
|
|
2925
|
-
.ImportantLead-module_root__2BdT3 a:hover {
|
|
2926
|
-
color: #b88b59;
|
|
2927
|
-
box-shadow: inset 0 -1px #b88b59;
|
|
2928
|
-
}
|
|
2929
|
-
.ImportantLead-module_slide__3kQ9x {
|
|
2930
|
-
max-width: 650px;
|
|
2931
|
-
margin-right: auto;
|
|
2932
|
-
margin-left: auto;
|
|
2723
|
+
margin: 0
|
|
2933
2724
|
}
|
|
2725
|
+
}
|
|
2934
2726
|
/* VISIBILITY */
|
|
2935
2727
|
@media only screen and (min-device-width: 32em) {
|
|
2936
|
-
.
|
|
2728
|
+
.HalfBlock-module_mobile__2latf {
|
|
2937
2729
|
display: none
|
|
2938
2730
|
}
|
|
2939
2731
|
}
|
|
2940
|
-
.
|
|
2732
|
+
.HalfBlock-module_desktop__3B1Ej {
|
|
2941
2733
|
display: none
|
|
2942
2734
|
}
|
|
2943
2735
|
@media only screen and (min-device-width: 32em) {
|
|
2944
|
-
.
|
|
2736
|
+
.HalfBlock-module_desktop__3B1Ej {
|
|
2945
2737
|
display: block
|
|
2946
2738
|
}
|
|
2947
2739
|
}
|
|
2948
2740
|
|
|
2949
|
-
|
|
2950
2741
|
/* Colors */
|
|
2951
2742
|
/* Fonts */
|
|
2952
2743
|
/* Gap */
|
|
@@ -3109,6 +2900,207 @@
|
|
|
3109
2900
|
}
|
|
3110
2901
|
}
|
|
3111
2902
|
|
|
2903
|
+
/* Colors */
|
|
2904
|
+
/* Fonts */
|
|
2905
|
+
/* Gap */
|
|
2906
|
+
/* Media */
|
|
2907
|
+
/* 512 */
|
|
2908
|
+
/* 650 */
|
|
2909
|
+
/* 768 */
|
|
2910
|
+
/* 1024 */
|
|
2911
|
+
/* 1010 */
|
|
2912
|
+
/* 1200 */
|
|
2913
|
+
/* 511 */
|
|
2914
|
+
/* 1023 */
|
|
2915
|
+
/* Zindex */
|
|
2916
|
+
.ImportantLead-module_root__2BdT3 {
|
|
2917
|
+
margin: 18px 0;
|
|
2918
|
+
padding: 12px 12px 13px;
|
|
2919
|
+
|
|
2920
|
+
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
2921
|
+
border-radius: 4px;
|
|
2922
|
+
border-radius: 8px;
|
|
2923
|
+
background: #FFF8C4;
|
|
2924
|
+
|
|
2925
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
2926
|
+
font-size: 16px;
|
|
2927
|
+
font-weight: normal;
|
|
2928
|
+
line-height: 20px
|
|
2929
|
+
}
|
|
2930
|
+
@media only screen and (min-device-width: 32em) {
|
|
2931
|
+
.ImportantLead-module_root__2BdT3 {
|
|
2932
|
+
margin: 25px 0;
|
|
2933
|
+
padding: 12px 15px 13px;
|
|
2934
|
+
|
|
2935
|
+
font-size: 17px;
|
|
2936
|
+
line-height: 24px
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
.ImportantLead-module_root__2BdT3:last-child {
|
|
2940
|
+
margin-bottom: 0;
|
|
2941
|
+
}
|
|
2942
|
+
.ImportantLead-module_root__2BdT3:first-child {
|
|
2943
|
+
margin-top: 0;
|
|
2944
|
+
}
|
|
2945
|
+
.ImportantLead-module_root__2BdT3 a {
|
|
2946
|
+
color: #000;
|
|
2947
|
+
box-shadow: inset 0 -1px #000;
|
|
2948
|
+
}
|
|
2949
|
+
.ImportantLead-module_root__2BdT3 a:hover {
|
|
2950
|
+
color: #b88b59;
|
|
2951
|
+
box-shadow: inset 0 -1px #b88b59;
|
|
2952
|
+
}
|
|
2953
|
+
.ImportantLead-module_slide__3kQ9x {
|
|
2954
|
+
max-width: 650px;
|
|
2955
|
+
margin-right: auto;
|
|
2956
|
+
margin-left: auto;
|
|
2957
|
+
}
|
|
2958
|
+
/* VISIBILITY */
|
|
2959
|
+
@media only screen and (min-device-width: 32em) {
|
|
2960
|
+
.ImportantLead-module_mobile__3BXbm {
|
|
2961
|
+
display: none
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2964
|
+
.ImportantLead-module_desktop__3Zljc {
|
|
2965
|
+
display: none
|
|
2966
|
+
}
|
|
2967
|
+
@media only screen and (min-device-width: 32em) {
|
|
2968
|
+
.ImportantLead-module_desktop__3Zljc {
|
|
2969
|
+
display: block
|
|
2970
|
+
}
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
|
|
2974
|
+
/* Colors */
|
|
2975
|
+
/* Fonts */
|
|
2976
|
+
/* Gap */
|
|
2977
|
+
/* Media */
|
|
2978
|
+
/* 512 */
|
|
2979
|
+
/* 650 */
|
|
2980
|
+
/* 768 */
|
|
2981
|
+
/* 1024 */
|
|
2982
|
+
/* 1010 */
|
|
2983
|
+
/* 1200 */
|
|
2984
|
+
/* 511 */
|
|
2985
|
+
/* 1023 */
|
|
2986
|
+
/* Zindex */
|
|
2987
|
+
.RelatedBlock-module_root__IKcQq {
|
|
2988
|
+
margin: 16px 0;
|
|
2989
|
+
|
|
2990
|
+
border-radius: 8px;
|
|
2991
|
+
background-color: #f5f5f5;
|
|
2992
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 4px 0 0 #b78b5c
|
|
2993
|
+
}
|
|
2994
|
+
@media only screen and (min-device-width: 48em) {
|
|
2995
|
+
.RelatedBlock-module_root__IKcQq {
|
|
2996
|
+
margin: 25px 0
|
|
2997
|
+
}
|
|
2998
|
+
}
|
|
2999
|
+
.RelatedBlock-module_root__IKcQq:last-child {
|
|
3000
|
+
margin-bottom: 0;
|
|
3001
|
+
}
|
|
3002
|
+
.RelatedBlock-module_root__IKcQq:first-child {
|
|
3003
|
+
margin-top: 0;
|
|
3004
|
+
}
|
|
3005
|
+
.RelatedBlock-module_root__IKcQq a {
|
|
3006
|
+
display: block;
|
|
3007
|
+
|
|
3008
|
+
padding: 12px 12px 13px;
|
|
3009
|
+
|
|
3010
|
+
transition: color 0.15s;
|
|
3011
|
+
text-decoration: none;
|
|
3012
|
+
|
|
3013
|
+
color: #000;
|
|
3014
|
+
box-shadow: none;
|
|
3015
|
+
|
|
3016
|
+
font-size: 17px;
|
|
3017
|
+
line-height: 20px
|
|
3018
|
+
}
|
|
3019
|
+
@media only screen and (min-device-width: 48em) {
|
|
3020
|
+
.RelatedBlock-module_root__IKcQq a {
|
|
3021
|
+
padding: 15px 20px 17px;
|
|
3022
|
+
|
|
3023
|
+
font-size: 19px;
|
|
3024
|
+
line-height: 23px
|
|
3025
|
+
}
|
|
3026
|
+
}
|
|
3027
|
+
.RelatedBlock-module_root__IKcQq a:hover {
|
|
3028
|
+
color: #5c5c5c;
|
|
3029
|
+
}
|
|
3030
|
+
.RelatedBlock-module_header__2SuWP {
|
|
3031
|
+
margin: 0;
|
|
3032
|
+
padding: 14px 12px 3px;
|
|
3033
|
+
|
|
3034
|
+
letter-spacing: 1px;
|
|
3035
|
+
text-transform: uppercase;
|
|
3036
|
+
|
|
3037
|
+
color: #7F7F7F;
|
|
3038
|
+
|
|
3039
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
3040
|
+
font-size: 12px;
|
|
3041
|
+
font-weight: 600;
|
|
3042
|
+
line-height: 17px
|
|
3043
|
+
}
|
|
3044
|
+
@media only screen and (min-device-width: 48em) {
|
|
3045
|
+
.RelatedBlock-module_header__2SuWP {
|
|
3046
|
+
padding: 20px 20px 14px;
|
|
3047
|
+
|
|
3048
|
+
font-size: 14px;
|
|
3049
|
+
line-height: 16px
|
|
3050
|
+
}
|
|
3051
|
+
}
|
|
3052
|
+
.RelatedBlock-module_items__2V-Ap {
|
|
3053
|
+
margin: 0;
|
|
3054
|
+
padding-left: 0;
|
|
3055
|
+
|
|
3056
|
+
list-style: none;
|
|
3057
|
+
}
|
|
3058
|
+
.RelatedBlock-module_items__2V-Ap li {
|
|
3059
|
+
padding: 0;
|
|
3060
|
+
}
|
|
3061
|
+
.RelatedBlock-module_items__2V-Ap li + li {
|
|
3062
|
+
border-top: 1px solid #e6e6e6;
|
|
3063
|
+
}
|
|
3064
|
+
.RelatedBlock-module_rich__ddaHq .RelatedBlock-module_first__BKItW {
|
|
3065
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
3066
|
+
font-size: 16px;
|
|
3067
|
+
font-weight: 700;
|
|
3068
|
+
line-height: 18px
|
|
3069
|
+
}
|
|
3070
|
+
@media only screen and (min-device-width: 48em) {
|
|
3071
|
+
.RelatedBlock-module_rich__ddaHq .RelatedBlock-module_first__BKItW {
|
|
3072
|
+
font-size: 18px
|
|
3073
|
+
}
|
|
3074
|
+
}
|
|
3075
|
+
.RelatedBlock-module_simple__29HVO {
|
|
3076
|
+
}
|
|
3077
|
+
.RelatedBlock-module_center__1LmW8 {
|
|
3078
|
+
max-width: 650px;
|
|
3079
|
+
margin-right: auto;
|
|
3080
|
+
margin-left: auto;
|
|
3081
|
+
}
|
|
3082
|
+
.RelatedBlock-module_isInSlideMaterial__2YSYG:first-child {
|
|
3083
|
+
margin-top: 0;
|
|
3084
|
+
}
|
|
3085
|
+
.RelatedBlock-module_isInSlideMaterial__2YSYG:last-child {
|
|
3086
|
+
margin-bottom: 0;
|
|
3087
|
+
}
|
|
3088
|
+
/* VISIBILITY */
|
|
3089
|
+
@media only screen and (min-device-width: 32em) {
|
|
3090
|
+
.RelatedBlock-module_mobile__2XM5a {
|
|
3091
|
+
display: none
|
|
3092
|
+
}
|
|
3093
|
+
}
|
|
3094
|
+
.RelatedBlock-module_desktop__2mXeq {
|
|
3095
|
+
display: none
|
|
3096
|
+
}
|
|
3097
|
+
@media only screen and (min-device-width: 32em) {
|
|
3098
|
+
.RelatedBlock-module_desktop__2mXeq {
|
|
3099
|
+
display: block
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
|
|
3112
3104
|
/* Colors */
|
|
3113
3105
|
/* Fonts */
|
|
3114
3106
|
/* Gap */
|
|
@@ -3589,77 +3581,33 @@ a mark {
|
|
|
3589
3581
|
font-size: 34px
|
|
3590
3582
|
}
|
|
3591
3583
|
}
|
|
3592
|
-
.RichTitle-module_game__1g8Bn:first-child {
|
|
3593
|
-
padding-top: 9px;
|
|
3594
|
-
}
|
|
3595
|
-
.RichTitle-module_featured__wJfaQ {
|
|
3596
|
-
letter-spacing: 0.3px;
|
|
3597
|
-
|
|
3598
|
-
font-size: 28px;
|
|
3599
|
-
line-height: 30px;
|
|
3600
|
-
}
|
|
3601
|
-
.RichTitle-module_featured__wJfaQ span {
|
|
3602
|
-
display: block;
|
|
3603
|
-
|
|
3604
|
-
padding-top: 2px;
|
|
3605
|
-
|
|
3606
|
-
font-size: 18px;
|
|
3607
|
-
line-height: 24px;
|
|
3608
|
-
}
|
|
3609
|
-
@media only screen and (min-device-width: 32em) {
|
|
3610
|
-
.RichTitle-module_mobile__1Cb6E {
|
|
3611
|
-
display: none
|
|
3612
|
-
}
|
|
3613
|
-
}
|
|
3614
|
-
.RichTitle-module_desktop__2ixSQ {
|
|
3615
|
-
display: none
|
|
3616
|
-
}
|
|
3617
|
-
@media only screen and (min-device-width: 32em) {
|
|
3618
|
-
.RichTitle-module_desktop__2ixSQ {
|
|
3619
|
-
display: block
|
|
3620
|
-
}
|
|
3621
|
-
}
|
|
3622
|
-
|
|
3623
|
-
/* Colors */
|
|
3624
|
-
/* Fonts */
|
|
3625
|
-
/* Gap */
|
|
3626
|
-
/* Media */
|
|
3627
|
-
/* 512 */
|
|
3628
|
-
/* 650 */
|
|
3629
|
-
/* 768 */
|
|
3630
|
-
/* 1024 */
|
|
3631
|
-
/* 1010 */
|
|
3632
|
-
/* 1200 */
|
|
3633
|
-
/* 511 */
|
|
3634
|
-
/* 1023 */
|
|
3635
|
-
/* Zindex */
|
|
3636
|
-
.SimpleTitle-module_root__2jVQN {
|
|
3637
|
-
margin: 0 0 18px;
|
|
3584
|
+
.RichTitle-module_game__1g8Bn:first-child {
|
|
3585
|
+
padding-top: 9px;
|
|
3586
|
+
}
|
|
3587
|
+
.RichTitle-module_featured__wJfaQ {
|
|
3588
|
+
letter-spacing: 0.3px;
|
|
3638
3589
|
|
|
3639
|
-
font-
|
|
3640
|
-
|
|
3641
|
-
font-weight: normal;
|
|
3642
|
-
line-height: 23px
|
|
3590
|
+
font-size: 28px;
|
|
3591
|
+
line-height: 30px;
|
|
3643
3592
|
}
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
margin-bottom: 15px;
|
|
3593
|
+
.RichTitle-module_featured__wJfaQ span {
|
|
3594
|
+
display: block;
|
|
3647
3595
|
|
|
3648
|
-
|
|
3649
|
-
|
|
3596
|
+
padding-top: 2px;
|
|
3597
|
+
|
|
3598
|
+
font-size: 18px;
|
|
3599
|
+
line-height: 24px;
|
|
3650
3600
|
}
|
|
3651
|
-
}
|
|
3652
|
-
/* VISIBILITY */
|
|
3653
3601
|
@media only screen and (min-device-width: 32em) {
|
|
3654
|
-
.
|
|
3602
|
+
.RichTitle-module_mobile__1Cb6E {
|
|
3655
3603
|
display: none
|
|
3656
3604
|
}
|
|
3657
3605
|
}
|
|
3658
|
-
.
|
|
3606
|
+
.RichTitle-module_desktop__2ixSQ {
|
|
3659
3607
|
display: none
|
|
3660
3608
|
}
|
|
3661
3609
|
@media only screen and (min-device-width: 32em) {
|
|
3662
|
-
.
|
|
3610
|
+
.RichTitle-module_desktop__2ixSQ {
|
|
3663
3611
|
display: block
|
|
3664
3612
|
}
|
|
3665
3613
|
}
|
|
@@ -3681,12 +3629,12 @@ a mark {
|
|
|
3681
3629
|
display: block;
|
|
3682
3630
|
|
|
3683
3631
|
margin: 18px 0 15px;
|
|
3684
|
-
padding: 12px 11px
|
|
3632
|
+
padding: 12px 11px 17px;
|
|
3685
3633
|
|
|
3686
3634
|
color: #000;
|
|
3687
|
-
border-left: 4px solid #b88b59;
|
|
3688
3635
|
border-radius: 2px 8px 8px 2px;
|
|
3689
3636
|
background-color: #f5f5f5;
|
|
3637
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 4px 0 0 0 #b78b5c;
|
|
3690
3638
|
|
|
3691
3639
|
font-size: 16px;
|
|
3692
3640
|
line-height: 20px
|
|
@@ -3695,7 +3643,7 @@ a mark {
|
|
|
3695
3643
|
.SourceBlock-module_root__1P3XD {
|
|
3696
3644
|
margin-top: 25px;
|
|
3697
3645
|
margin-bottom: 25px;
|
|
3698
|
-
padding: 18px 16px
|
|
3646
|
+
padding: 18px 16px 16px
|
|
3699
3647
|
}
|
|
3700
3648
|
}
|
|
3701
3649
|
.SourceBlock-module_root__1P3XD:hover,
|
|
@@ -3779,6 +3727,50 @@ a mark {
|
|
|
3779
3727
|
}
|
|
3780
3728
|
}
|
|
3781
3729
|
|
|
3730
|
+
/* Colors */
|
|
3731
|
+
/* Fonts */
|
|
3732
|
+
/* Gap */
|
|
3733
|
+
/* Media */
|
|
3734
|
+
/* 512 */
|
|
3735
|
+
/* 650 */
|
|
3736
|
+
/* 768 */
|
|
3737
|
+
/* 1024 */
|
|
3738
|
+
/* 1010 */
|
|
3739
|
+
/* 1200 */
|
|
3740
|
+
/* 511 */
|
|
3741
|
+
/* 1023 */
|
|
3742
|
+
/* Zindex */
|
|
3743
|
+
.SimpleTitle-module_root__2jVQN {
|
|
3744
|
+
margin: 0 0 18px;
|
|
3745
|
+
|
|
3746
|
+
font-family: 'PF Regal', 'PF Regal Text Pro', 'Georgia', serif;
|
|
3747
|
+
font-size: 20px;
|
|
3748
|
+
font-weight: normal;
|
|
3749
|
+
line-height: 23px
|
|
3750
|
+
}
|
|
3751
|
+
@media only screen and (min-device-width: 48em) {
|
|
3752
|
+
.SimpleTitle-module_root__2jVQN {
|
|
3753
|
+
margin-bottom: 15px;
|
|
3754
|
+
|
|
3755
|
+
font-size: 36px;
|
|
3756
|
+
line-height: 40px
|
|
3757
|
+
}
|
|
3758
|
+
}
|
|
3759
|
+
/* VISIBILITY */
|
|
3760
|
+
@media only screen and (min-device-width: 32em) {
|
|
3761
|
+
.SimpleTitle-module_mobile__11gBz {
|
|
3762
|
+
display: none
|
|
3763
|
+
}
|
|
3764
|
+
}
|
|
3765
|
+
.SimpleTitle-module_desktop__3yXgy {
|
|
3766
|
+
display: none
|
|
3767
|
+
}
|
|
3768
|
+
@media only screen and (min-device-width: 32em) {
|
|
3769
|
+
.SimpleTitle-module_desktop__3yXgy {
|
|
3770
|
+
display: block
|
|
3771
|
+
}
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3782
3774
|
/* Colors */
|
|
3783
3775
|
/* Fonts */
|
|
3784
3776
|
/* Gap */
|
|
@@ -3830,9 +3822,10 @@ a mark {
|
|
|
3830
3822
|
margin-top: 0;
|
|
3831
3823
|
margin-bottom: 18px;
|
|
3832
3824
|
|
|
3833
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
3834
|
-
font-size: 21px;
|
|
3835
3825
|
font-weight: 700;
|
|
3826
|
+
font-size: 21px;
|
|
3827
|
+
|
|
3828
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
3836
3829
|
line-height: 26px
|
|
3837
3830
|
}
|
|
3838
3831
|
@media only screen and (min-device-width: 32em) {
|
|
@@ -3860,8 +3853,13 @@ a mark {
|
|
|
3860
3853
|
}
|
|
3861
3854
|
}
|
|
3862
3855
|
.Spoiler-module_spoiled__1A5r4 {
|
|
3863
|
-
min-height: auto
|
|
3856
|
+
min-height: auto
|
|
3857
|
+
}
|
|
3858
|
+
@media only screen and (max-device-width: 32.1875em) {
|
|
3859
|
+
.Spoiler-module_spoiled__1A5r4 {
|
|
3860
|
+
padding-bottom: 0
|
|
3864
3861
|
}
|
|
3862
|
+
}
|
|
3865
3863
|
.Spoiler-module_spoiled__1A5r4 .Spoiler-module_body__Q1e_c {
|
|
3866
3864
|
display: block;
|
|
3867
3865
|
}
|
|
@@ -3871,22 +3869,22 @@ a mark {
|
|
|
3871
3869
|
.Spoiler-module_spoiled__1A5r4 .Spoiler-module_footer__23mh7 {
|
|
3872
3870
|
position: -webkit-sticky;
|
|
3873
3871
|
position: sticky;
|
|
3874
|
-
z-index: 10;
|
|
3875
3872
|
bottom: 0;
|
|
3873
|
+
z-index: 10;
|
|
3876
3874
|
|
|
3877
3875
|
margin-right: -20px;
|
|
3878
3876
|
margin-left: -20px;
|
|
3879
3877
|
padding: 12px 20px 20px;
|
|
3880
3878
|
|
|
3881
|
-
-
|
|
3879
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(64%, #fff));
|
|
3882
3880
|
|
|
3883
|
-
|
|
3881
|
+
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 64%);
|
|
3884
3882
|
|
|
3885
|
-
background-image: -
|
|
3883
|
+
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 64%);
|
|
3886
3884
|
|
|
3887
|
-
|
|
3885
|
+
-webkit-animation: Spoiler-module_spoilerSticky__3Kd30 500ms ease both;
|
|
3888
3886
|
|
|
3889
|
-
|
|
3887
|
+
animation: Spoiler-module_spoilerSticky__3Kd30 500ms ease both
|
|
3890
3888
|
}
|
|
3891
3889
|
@media only screen and (min-device-width: 32em) {
|
|
3892
3890
|
.Spoiler-module_spoiled__1A5r4 .Spoiler-module_footer__23mh7 {
|
|
@@ -3896,25 +3894,29 @@ a mark {
|
|
|
3896
3894
|
margin-left: 0;
|
|
3897
3895
|
padding: 0;
|
|
3898
3896
|
|
|
3899
|
-
-
|
|
3897
|
+
background-image: none;
|
|
3900
3898
|
|
|
3901
|
-
|
|
3899
|
+
-webkit-animation: none;
|
|
3902
3900
|
|
|
3903
|
-
|
|
3901
|
+
animation: none
|
|
3904
3902
|
}
|
|
3905
3903
|
}
|
|
3906
3904
|
.Spoiler-module_spoiled__1A5r4 .Spoiler-module_footer__23mh7::after {
|
|
3907
3905
|
position: absolute;
|
|
3908
|
-
z-index: -1;
|
|
3909
3906
|
top: 100%;
|
|
3910
3907
|
right: 0;
|
|
3911
3908
|
left: 0;
|
|
3909
|
+
z-index: -1;
|
|
3912
3910
|
|
|
3913
3911
|
height: 16px;
|
|
3914
3912
|
|
|
3915
|
-
|
|
3913
|
+
background-color: #fff;
|
|
3914
|
+
|
|
3915
|
+
-webkit-animation: Spoiler-module_spoilerStickyBg__nYdlo 1ms ease both 500ms;
|
|
3916
|
+
|
|
3917
|
+
animation: Spoiler-module_spoilerStickyBg__nYdlo 1ms ease both 500ms;
|
|
3916
3918
|
|
|
3917
|
-
|
|
3919
|
+
content: ''
|
|
3918
3920
|
}
|
|
3919
3921
|
@media only screen and (min-device-width: 32em) {
|
|
3920
3922
|
.Spoiler-module_spoiled__1A5r4 .Spoiler-module_footer__23mh7::after {
|
|
@@ -3941,9 +3943,11 @@ a mark {
|
|
|
3941
3943
|
0% {
|
|
3942
3944
|
transform: translateY(62px);
|
|
3943
3945
|
}
|
|
3946
|
+
|
|
3944
3947
|
50% {
|
|
3945
3948
|
transform: translateY(-16px);
|
|
3946
3949
|
}
|
|
3950
|
+
|
|
3947
3951
|
100% {
|
|
3948
3952
|
transform: translateY(0);
|
|
3949
3953
|
}
|
|
@@ -3952,13 +3956,33 @@ a mark {
|
|
|
3952
3956
|
0% {
|
|
3953
3957
|
transform: translateY(62px);
|
|
3954
3958
|
}
|
|
3959
|
+
|
|
3955
3960
|
50% {
|
|
3956
3961
|
transform: translateY(-16px);
|
|
3957
3962
|
}
|
|
3963
|
+
|
|
3958
3964
|
100% {
|
|
3959
3965
|
transform: translateY(0);
|
|
3960
3966
|
}
|
|
3961
3967
|
}
|
|
3968
|
+
@-webkit-keyframes Spoiler-module_spoilerStickyBg__nYdlo {
|
|
3969
|
+
0% {
|
|
3970
|
+
background-color: #fff;
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
100% {
|
|
3974
|
+
background-color: transparent;
|
|
3975
|
+
}
|
|
3976
|
+
}
|
|
3977
|
+
@keyframes Spoiler-module_spoilerStickyBg__nYdlo {
|
|
3978
|
+
0% {
|
|
3979
|
+
background-color: #fff;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
100% {
|
|
3983
|
+
background-color: transparent;
|
|
3984
|
+
}
|
|
3985
|
+
}
|
|
3962
3986
|
[data-gdpr-panel='true'] .Spoiler-module_spoiled__1A5r4 .Spoiler-module_footer__23mh7 {
|
|
3963
3987
|
bottom: 45px
|
|
3964
3988
|
}
|
|
@@ -4296,6 +4320,78 @@ a mark {
|
|
|
4296
4320
|
vertical-align: top;
|
|
4297
4321
|
}
|
|
4298
4322
|
|
|
4323
|
+
/* Colors */
|
|
4324
|
+
/* Fonts */
|
|
4325
|
+
/* Gap */
|
|
4326
|
+
/* Media */
|
|
4327
|
+
/* 512 */
|
|
4328
|
+
/* 650 */
|
|
4329
|
+
/* 768 */
|
|
4330
|
+
/* 1024 */
|
|
4331
|
+
/* 1010 */
|
|
4332
|
+
/* 1200 */
|
|
4333
|
+
/* 511 */
|
|
4334
|
+
/* 1023 */
|
|
4335
|
+
/* Zindex */
|
|
4336
|
+
.Footnote-module_root__2a0-B {
|
|
4337
|
+
position: relative;
|
|
4338
|
+
|
|
4339
|
+
width: 320px;
|
|
4340
|
+
padding: 20px;
|
|
4341
|
+
|
|
4342
|
+
border-radius: 8px;
|
|
4343
|
+
background-color: #fff;
|
|
4344
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2);
|
|
4345
|
+
}
|
|
4346
|
+
.Footnote-module_body__259Ly {
|
|
4347
|
+
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
4348
|
+
font-size: 16px;
|
|
4349
|
+
line-height: 22px;
|
|
4350
|
+
}
|
|
4351
|
+
.Footnote-module_body__259Ly h3 {
|
|
4352
|
+
margin: 0 0 16px;
|
|
4353
|
+
|
|
4354
|
+
font-size: inherit;
|
|
4355
|
+
font-weight: 700;
|
|
4356
|
+
line-height: inherit;
|
|
4357
|
+
}
|
|
4358
|
+
.Footnote-module_body__259Ly p {
|
|
4359
|
+
margin: 0;
|
|
4360
|
+
}
|
|
4361
|
+
.Footnote-module_body__259Ly p + p {
|
|
4362
|
+
margin-top: 6px;
|
|
4363
|
+
}
|
|
4364
|
+
.Footnote-module_body__259Ly a {
|
|
4365
|
+
color: inherit;
|
|
4366
|
+
box-shadow: inset 0 -1px #b88b59;
|
|
4367
|
+
}
|
|
4368
|
+
.Footnote-module_body__259Ly a:hover {
|
|
4369
|
+
color: #b88b59;
|
|
4370
|
+
}
|
|
4371
|
+
.Footnote-module_dismiss__1HKG5 {
|
|
4372
|
+
position: absolute;
|
|
4373
|
+
top: 0;
|
|
4374
|
+
right: 0;
|
|
4375
|
+
|
|
4376
|
+
margin: 0;
|
|
4377
|
+
padding: 6px 9px 10px;
|
|
4378
|
+
|
|
4379
|
+
cursor: pointer;
|
|
4380
|
+
|
|
4381
|
+
color: #b3b3b3;
|
|
4382
|
+
border-width: 0;
|
|
4383
|
+
outline: none;
|
|
4384
|
+
background-color: transparent;
|
|
4385
|
+
}
|
|
4386
|
+
.Footnote-module_dismiss__1HKG5:hover {
|
|
4387
|
+
color: #757575;
|
|
4388
|
+
}
|
|
4389
|
+
.Footnote-module_dismiss__1HKG5 svg {
|
|
4390
|
+
width: 12px;
|
|
4391
|
+
height: 12px;
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
|
|
4299
4395
|
/* Colors */
|
|
4300
4396
|
/* Fonts */
|
|
4301
4397
|
/* Gap */
|
|
@@ -4394,78 +4490,6 @@ a mark {
|
|
|
4394
4490
|
fill: currentColor;
|
|
4395
4491
|
}
|
|
4396
4492
|
|
|
4397
|
-
/* Colors */
|
|
4398
|
-
/* Fonts */
|
|
4399
|
-
/* Gap */
|
|
4400
|
-
/* Media */
|
|
4401
|
-
/* 512 */
|
|
4402
|
-
/* 650 */
|
|
4403
|
-
/* 768 */
|
|
4404
|
-
/* 1024 */
|
|
4405
|
-
/* 1010 */
|
|
4406
|
-
/* 1200 */
|
|
4407
|
-
/* 511 */
|
|
4408
|
-
/* 1023 */
|
|
4409
|
-
/* Zindex */
|
|
4410
|
-
.Footnote-module_root__2a0-B {
|
|
4411
|
-
position: relative;
|
|
4412
|
-
|
|
4413
|
-
width: 320px;
|
|
4414
|
-
padding: 20px;
|
|
4415
|
-
|
|
4416
|
-
border-radius: 8px;
|
|
4417
|
-
background-color: #fff;
|
|
4418
|
-
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2);
|
|
4419
|
-
}
|
|
4420
|
-
.Footnote-module_body__259Ly {
|
|
4421
|
-
font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
|
|
4422
|
-
font-size: 16px;
|
|
4423
|
-
line-height: 22px;
|
|
4424
|
-
}
|
|
4425
|
-
.Footnote-module_body__259Ly h3 {
|
|
4426
|
-
margin: 0 0 16px;
|
|
4427
|
-
|
|
4428
|
-
font-size: inherit;
|
|
4429
|
-
font-weight: 700;
|
|
4430
|
-
line-height: inherit;
|
|
4431
|
-
}
|
|
4432
|
-
.Footnote-module_body__259Ly p {
|
|
4433
|
-
margin: 0;
|
|
4434
|
-
}
|
|
4435
|
-
.Footnote-module_body__259Ly p + p {
|
|
4436
|
-
margin-top: 6px;
|
|
4437
|
-
}
|
|
4438
|
-
.Footnote-module_body__259Ly a {
|
|
4439
|
-
color: inherit;
|
|
4440
|
-
box-shadow: inset 0 -1px #b88b59;
|
|
4441
|
-
}
|
|
4442
|
-
.Footnote-module_body__259Ly a:hover {
|
|
4443
|
-
color: #b88b59;
|
|
4444
|
-
}
|
|
4445
|
-
.Footnote-module_dismiss__1HKG5 {
|
|
4446
|
-
position: absolute;
|
|
4447
|
-
top: 0;
|
|
4448
|
-
right: 0;
|
|
4449
|
-
|
|
4450
|
-
margin: 0;
|
|
4451
|
-
padding: 6px 9px 10px;
|
|
4452
|
-
|
|
4453
|
-
cursor: pointer;
|
|
4454
|
-
|
|
4455
|
-
color: #b3b3b3;
|
|
4456
|
-
border-width: 0;
|
|
4457
|
-
outline: none;
|
|
4458
|
-
background-color: transparent;
|
|
4459
|
-
}
|
|
4460
|
-
.Footnote-module_dismiss__1HKG5:hover {
|
|
4461
|
-
color: #757575;
|
|
4462
|
-
}
|
|
4463
|
-
.Footnote-module_dismiss__1HKG5 svg {
|
|
4464
|
-
width: 12px;
|
|
4465
|
-
height: 12px;
|
|
4466
|
-
}
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
4493
|
/* Colors */
|
|
4470
4494
|
/* Fonts */
|
|
4471
4495
|
/* Gap */
|