-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.htm
6666 lines (6493 loc) · 454 KB
/
youtube.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html style="font-size: 10px;font-family: Roboto, Arial, sans-serif;" lang="ru-RU" dir="ltr" gl="RU">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style name="www-roboto">@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}</style>
<style name="global_styles">body{padding:0;margin:0;overflow-y:scroll}body.autoscroll{overflow-y:auto}body.no-scroll{overflow:hidden}body.no-y-scroll{overflow-y:hidden}.hidden{display:none}textarea{--paper-input-container-input_-_white-space:pre-wrap}.grecaptcha-badge{visibility:hidden}</style>
<style name="masthead_shell">ytd-masthead.shell{background:rgba(255,255,255,0.98);position:fixed;top:0;right:0;left:0;display:-ms-flex;display:-webkit-flex;display:flex;height:56px;-ms-flex-align:center;-webkit-align-items:center;align-items:center}ytd-masthead.shell #menu-icon{margin-left:16px}ytd-app>ytd-masthead.chunked{position:fixed;top:0;width:100%}ytd-masthead.shell.dark,ytd-masthead.shell.theater{background:rgba(40,40,40,0.98)}ytd-masthead.shell.full-window-mode{background:rgba(40,40,40,0.98);opacity:0;transform:translateY(calc(-100% - 5px))}ytd-masthead.shell>*:first-child{padding-left:16px}ytd-masthead.shell>*:last-child{padding-right:16px}ytd-masthead #masthead-logo{display:-ms-flex;display:-webkit-flex;display:flex}ytd-masthead #masthead-logo #country-code{margin-right:2px}ytd-masthead.shell #yt-logo-svg,ytd-masthead.shell #yt-logo-red-svg{align-self:center;margin-left:8px;padding:0;color:black}ytd-masthead.shell #a11y-skip-nav{display:none}ytd-masthead.shell svg{width:40px;height:40px;padding:8px;margin-right:8px;box-sizing:border-box;color:#606060;fill:currentColor}ytd-masthead .external-icon{width:24px;height:24px}ytd-masthead .yt-icons-ext{fill:currentColor;color:#606060}ytd-masthead.shell.dark .yt-icons-ext ytd-masthead.shell.theater .yt-icons-ext{fill:#fff}ytd-masthead svg#yt-logo-svg{width:80px}ytd-masthead svg#yt-logo-red-svg{width:106.4px}@media (max-width:656px){ytd-masthead.shell>*:first-child{padding-left:8px}ytd-masthead.shell>*:last-child{padding-right:8px}ytd-masthead.shell svg{margin-right:0}ytd-masthead #masthead-logo{-ms-flex:1 1 .000000001px;-webkit-flex:1;flex:1;-webkit-flex-basis:.000000001px;flex-basis:.000000001px}ytd-masthead.shell #yt-logo-svg,ytd-masthead.shell #yt-logo-red-svg{margin-left:4px}}@media (min-width:876px){ytd-masthead #masthead-logo{width:129px}}#masthead-skeleton-icons{display:flex;flex:1;flex-direction:row;justify-content:flex-end}ytd-masthead.masthead-finish #masthead-skeleton-icons{display:none}.masthead-skeleton-icon{border-radius:50%;height:32px;width:32px;margin:0 8px;background-color:hsl(0,0%,89%)}ytd-masthead.dark .masthead-skeleton-icon{background-color:hsl(0,0%,16%)}</style>
<style name="masthead_custom_styles" is="custom-style" id="ext-styles">ytd-masthead .yt-icons-ext{color:var(--yt-spec-icon-active-other)}ytd-masthead svg#yt-logo-svg #youtube-paths path,ytd-masthead svg#yt-logo-red-svg #youtube-red-paths path{fill:#282828}ytd-masthead.dark svg#yt-logo-svg #youtube-paths path,ytd-masthead.dark svg#yt-logo-red-svg #youtube-red-paths path,ytd-masthead.theater svg#yt-logo-svg #youtube-paths path,ytd-masthead.theater svg#yt-logo-red-svg #youtube-red-paths path{fill:#fff}</style>
<style name="searchbox">#search-input.ytd-searchbox-spt input{-webkit-appearance:none;-webkit-font-smoothing:antialiased;background-color:transparent;border:none;box-shadow:none;color:inherit;font-family:'Roboto','Noto',sans-serif;font-size:16px;font-weight:400;line-height:24px;margin-left:4px;max-width:100%;outline:none;text-align:inherit;width:100%;-ms-flex:1 1 .000000001px;-webkit-flex:1;flex:1;-webkit-flex-basis:.000000001px;flex-basis:.000000001px}#search-container.ytd-searchbox-spt{pointer-events:none;position:absolute;top:0;right:0;bottom:0;left:0}#search-input.ytd-searchbox-spt #search::-webkit-input-placeholder,#search-input.ytd-searchbox-spt #search::-moz-input-placeholder,#search-input.ytd-searchbox-spt #search:-ms-input-placeholder{color:hsl(0,0%,53.3%)}</style>
<style name="kevlar_global_styles">html{background-color:#f9f9f9!important;-webkit-text-size-adjust:none}html[dark]{background-color:#181818!important}#logo-red-icon-container.ytd-topbar-logo-renderer{width:86px}</style>
<style name="emergencycssformatted">.ytd-rich-shelf-renderer #title-container {
-ms-flex-pack: center; -webkit-justify-content: center; justify-content: center
}</style>
</head>
<body>
<div inlined-html="">
<style>
/*** uncss> filename: YouTube_files/css ***/
/*
* See: https://fonts.google.com/license/googlerestricted
*/
/* latin-ext */
@font-face {
font-family: 'YT Sans';
font-style: normal;
font-weight: 300;
src: local('YTSans Light'), local('YTSans-Light');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'YT Sans';
font-style: normal;
font-weight: 300;
src: local('YTSans Light'), local('YTSans-Light');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
font-family: 'YT Sans';
font-style: normal;
font-weight: 500;
src: local('YTSans Medium'), local('YTSans-Medium');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'YT Sans';
font-style: normal;
font-weight: 500;
src: local('YTSans Medium'), local('YTSans-Medium');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
font-family: 'YT Sans';
font-style: normal;
font-weight: 700;
src: local('YTSans Bold'), local('YTSans-Bold');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'YT Sans';
font-style: normal;
font-weight: 700;
src: local('YTSans Bold'), local('YTSans-Bold');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*** uncss> filename: big.css ***/
html:not(.style-scope) {
--yt-spec-white-1: #FFFFFF;
--yt-spec-white-2: #F9F9F9;
--yt-spec-white-3: #F1F1F1;
--yt-spec-white-4: #E9E9E9;
--yt-spec-black-1: #282828;
--yt-spec-black-2: #1F1F1F;
--yt-spec-black-3: #161616;
--yt-spec-black-4: #0D0D0D;
--yt-spec-black-pure: #000000;
--yt-spec-grey-1: #CCCCCC;
--yt-spec-grey-2: #AAAAAA;
--yt-spec-grey-3: #909090;
--yt-spec-grey-4: #717171;
--yt-spec-grey-5: #606060;
--yt-brand-youtube-red: #FF0000;
--yt-brand-medium-red: #CC0000;
--yt-brand-light-red: #FF4E45;
--yt-spec-red-30: #FF8983;
--yt-spec-red-70: #990412;
--yt-spec-pale-blue: #F2F8FF;
--yt-spec-light-blue: #3EA6FF;
--yt-spec-dark-blue: #065FD4;
--yt-spec-navy-blue: #252A3A;
--yt-spec-light-green: #2BA640;
--yt-spec-dark-green: #107516;
--yt-spec-yellow: #FBC02D;
--yt-spec-black-pure-alpha-5: rgba(0, 0, 0, 0.05);
--yt-spec-black-pure-alpha-10: rgba(0, 0, 0, 0.10);
--yt-spec-black-pure-alpha-15: rgba(0, 0, 0, 0.15);
--yt-spec-black-pure-alpha-30: rgba(0, 0, 0, 0.30);
--yt-spec-black-pure-alpha-60: rgba(0, 0, 0, 0.60);
--yt-spec-black-pure-alpha-80: rgba(0, 0, 0, 0.80);
--yt-spec-black-1-alpha-98: rgba(40, 40, 40, 0.98);
--yt-spec-black-1-alpha-95: rgba(40, 40, 40, 0.95);
--yt-spec-white-1-alpha-10: rgba(255, 255, 255, 0.10);
--yt-spec-white-1-alpha-20: rgba(255, 255, 255, 0.20);
--yt-spec-white-1-alpha-25: rgba(255, 255, 255, 0.25);
--yt-spec-white-1-alpha-30: rgba(255, 255, 255, 0.30);
--yt-spec-white-1-alpha-70: rgba(255, 255, 255, 0.70);
--yt-spec-white-1-alpha-95: rgba(255, 255, 255, 0.95);
--yt-spec-white-1-alpha-98: rgba(255, 255, 255, 0.98);
--yt-brand-medium-red-alpha-90: rgba(204, 0, 0, 0.90);
--yt-brand-medium-red-alpha-30: rgba(204, 0, 0, 0.30);
--yt-brand-light-red-alpha-30: rgba(255, 78, 69, 0.30);
--yt-spec-light-blue-alpha-30: rgba(62, 166, 255, 0.30);
--yt-spec-dark-blue-alpha-30: rgba(6, 95, 212, 0.30);
}
html:not(.style-scope) {
--yt-luna-black: #111111;
--yt-opalescence-grey: #888888;
--yt-opalescence-soft-grey: #eeeeee;
--yt-opalescence-dark-grey: #333333;
--yt-red: #e62117;
--yt-white: white;
--yt-blue: #2793e6;
--ad-yellow: #e6bc27;
--yt-surface-100: white;
--yt-surface-200: #fafafa;
--yt-surface-300: whitesmoke;
--yt-surface-400: #ededed;
--yt-body-500: rgba(0, 0, 0, 0.87);
--yt-body-400: rgba(0, 0, 0, 0.74);
--yt-body-300: rgba(0, 0, 0, 0.54);
--yt-body-200: rgba(0, 0, 0, 0.26);
--yt-body-100: rgba(0, 0, 0, 0.04);
--yt-opacity-lighten-1: 0.8;
--yt-opacity-lighten-2: 0.6;
--yt-opacity-lighten-3: 0.4;
--yt-opacity-lighten-4: 0.2;
--yt-opacity-lighten-5: 0.1;
--yt-luna-black-opacity-lighten-1:hsla(0, 0%, 6.7%, var(--yt-opacity-lighten-1));
--yt-luna-black-opacity-lighten-2:hsla(0, 0%, 6.7%, var(--yt-opacity-lighten-2));
--yt-luna-black-opacity-lighten-2-hex: #707070;
--yt-luna-black-opacity-lighten-3:hsla(0, 0%, 6.7%, var(--yt-opacity-lighten-3));
--yt-luna-black-opacity-lighten-4:hsla(0, 0%, 6.7%, var(--yt-opacity-lighten-4));
--yt-opalescence-grey-opacity-lighten-1:hsla(0, 0%, 53.3%, var(--yt-opacity-lighten-1));
--yt-opalescence-grey-opacity-lighten-2:hsla(0, 0%, 53.3%, var(--yt-opacity-lighten-2));
--yt-opalescence-grey-opacity-lighten-3:hsla(0, 0%, 53.3%, var(--yt-opacity-lighten-3));
--yt-opalescence-grey-opacity-lighten-4:hsla(0, 0%, 53.3%, var(--yt-opacity-lighten-4));
--yt-opalescence-grey-opacity-lighten-5:hsla(0, 0%, 53.3%, var(--yt-opacity-lighten-5));
--yt-opalescence-soft-grey-opacity-lighten-1:hsla(0, 0%, 93.3%, var(--yt-opacity-lighten-1));
--yt-opalescence-soft-grey-opacity-lighten-2:hsla(0, 0%, 93.3%, var(--yt-opacity-lighten-2));
--yt-opalescence-soft-grey-opacity-lighten-3:hsla(0, 0%, 93.3%, var(--yt-opacity-lighten-3));
--yt-opalescence-soft-grey-opacity-lighten-4:hsla(0, 0%, 93.3%, var(--yt-opacity-lighten-4));
--yt-white-opacity-lighten-1:hsla(0, 0%, 100%, var(--yt-opacity-lighten-1));
--yt-white-opacity-lighten-2:hsla(0, 0%, 100%, var(--yt-opacity-lighten-2));
--yt-white-opacity-lighten-3:hsla(0, 0%, 100%, var(--yt-opacity-lighten-3));
--yt-white-opacity-lighten-4:hsla(0, 0%, 100%, var(--yt-opacity-lighten-4));
--yt-blue-opacity-lighten-2:hsla(206.1, 79.3%, 52.7%, var(--yt-opacity-lighten-2));
--yt-blue-opacity-lighten-4:hsla(206.1, 79.3%, 52.7%, var(--yt-opacity-lighten-4));
--yt-playability-button-color: #262626;
--yt-blue-light: #167ac6;
--yt-blue-suggestive: #f2f8ff;
--yt-grey: #222222;
--yt-section-4-light: #e3e3e3;
--yt-dark-surface-100: #121212;
--yt-dark-surface-200: #1c1c1c;
--yt-dark-surface-200-lighten-1: rgba(28, 28, 28, 0.8);
--yt-dark-surface-300: #242424;
--yt-dark-surface-400: #292929;
--yt-dark-body-500: rgba(255, 255, 255, 0.88);
--yt-dark-body-400: rgba(255, 255, 255, 0.74);
--yt-dark-body-300: rgba(255, 255, 255, 0.5);
--yt-dark-body-200: rgba(255, 255, 255, 0.26);
--yt-dark-body-100: rgba(255, 255, 255, 0.08);
--yt-section-4-dark: #292929;
--yt-subscribe-button-count: rgba(255, 255, 255, 0.85);
}
html:not(.style-scope) {
--yt-std-body-200:var(--yt-body-200);
--yt-std-body-300:var(--yt-body-300);
--yt-std-surface-200:var(--yt-surface-200);
--yt-std-surface-300:var(--yt-surface-300);
--yt-std-surface-400:var(--yt-surface-400);
--yt-primary-color:var(--yt-luna-black);
--yt-primary-text-color:var(--yt-luna-black);
--yt-secondary-text-color:var(--yt-luna-black-opacity-lighten-1);
--yt-tertiary-text-color:var(--yt-luna-black-opacity-lighten-2);
--yt-placeholder-text-color:var(--yt-luna-black-opacity-lighten-2);
--yt-border-color:var(--yt-opalescence-soft-grey);
--yt-commentbox-border-inactive:var(--yt-opalescence-soft-grey);
--yt-commentbox-border-active:var(--yt-luna-black-opacity-lighten-2);
--yt-primary-disabled-button-text-color:var(--yt-white);
--yt-paper-radio-button-checked-color:var(--yt-opalescence-grey);
--yt-paper-button-ink-color:var(--yt-opalescence-grey);
--yt-icon-color:var(--yt-luna-black-opacity-lighten-3);
--yt-icon-hover-color:var(--yt-luna-black-opacity-lighten-1);
--yt-icon-disabled-color:var(--yt-luna-black-opacity-lighten-2);
--yt-icon-active-color:var(--yt-luna-black);
--yt-expand-color:var(--yt-luna-black-opacity-lighten-2);
--yt-metadata-color:var(--yt-luna-black-opacity-lighten-2);
--yt-placeholder-text:var(--yt-luna-black-opacity-lighten-2);
--yt-playlist-background-header:var(--yt-opalescence-soft-grey);
--yt-playlist-background-item:var(--yt-opalescence-soft-grey-opacity-lighten-2);
--yt-playlist-title-text:var(--yt-luna-black);
--yt-playlist-message-text:var(--yt-luna-black-opacity-lighten-2);
--yt-subscribe-button-text-color:var(--yt-white);
--yt-button-text-color:var(--yt-luna-black-opacity-lighten-2);
--yt-button-payment-text-color:var(--yt-white);
--yt-button-active-color:var(--yt-luna-black);
--yt-copyright-text:var(--yt-luna-black-opacity-lighten-2);
--yt-guide-entry-text-color:var(--yt-luna-black-opacity-lighten-1);
--yt-thumbnail-placeholder-color:var(--yt-section-4-light);
--yt-featured-channel-title-text-color:var(--yt-body-300);
--yt-formatted-string-deemphasize-color:var(--yt-opalescence-grey);
--yt-alert-background:var(--yt-opalescence-soft-grey-opacity-lighten-3);
--yt-video-secondary-info-description-background:var(--yt-opalescence-soft-grey-opacity-lighten-2);
--yt-searchbox-text-color:var(--yt-primary-text-color);
--yt-simple-menu-header-background:var(--yt-opalescence-soft-grey);
--yt-item-section-header-color:var(--yt-luna-black-opacity-lighten-2);
--yt-menu-hover-backgound-color:var(--yt-opalescence-soft-grey);
--yt-menu-focus-background-color:var(--yt-luna-black-opacity-lighten-4);
--yt-app-background:var(--yt-white);
--yt-main-app-background:var(--yt-surface-200);
--yt-main-app-background-tmp:var(--yt-surface-100);
--yt-guide-background:var(--yt-surface-300);
--yt-dialog-background:var(--yt-white);
--yt-searchbox-background:var(--yt-white);
--yt-channel-header-background:var(--yt-surface-200);
--yt-sidebar-background:var(--yt-surface-200);
--yt-transcript-background:var(--yt-white);
}
html:not(.style-scope) {
--yt-spec-brand-background-solid: #fff;
--yt-spec-brand-background-primary: rgba(255, 255, 255, 0.98);
--yt-spec-brand-background-secondary: rgba(255, 255, 255, 0.95);
--yt-spec-general-background-a: #f9f9f9;
--yt-spec-general-background-b: #f1f1f1;
--yt-spec-general-background-c: #e9e9e9;
--yt-spec-error-background: #181818;
--yt-spec-text-primary: #030303;
--yt-spec-text-primary-inverse: #fff;
--yt-spec-text-secondary: #606060;
--yt-spec-text-disabled: #909090;
--yt-spec-call-to-action: #065fd4;
--yt-spec-icon-active-other: #606060;
--yt-spec-icon-inactive: #909090;
--yt-spec-icon-disabled: #ccc;
--yt-spec-badge-chip-background: rgba(0, 0, 0, 0.05);
--yt-spec-verified-badge-background: rgba(0, 0, 0, 0.15);
--yt-spec-suggested-action: #f2f8ff;
--yt-spec-button-chip-background-hover: rgba(0, 0, 0, 0.1);
--yt-spec-touch-response: #000;
--yt-spec-paper-tab-ink: rgba(0, 0, 0, 0.3);
--yt-spec-filled-button-text: #fff;
--yt-spec-call-to-action-inverse: #3ea6ff;
--yt-spec-brand-icon-active: #f00;
--yt-spec-brand-icon-inactive: #606060;
--yt-spec-brand-button-background: #c00;
--yt-spec-brand-link-text: #c00;
--yt-spec-filled-button-focus-outline: rgba(0, 0, 0, 0.6);
--yt-spec-call-to-action-button-focus-outline: rgba(6, 95, 212, 0.3);
--yt-spec-brand-text-button-focus-outline: rgba(204, 0, 0, 0.3);
--yt-spec-inactive-text-button-focus-outline: #ccc;
--yt-spec-ad-indicator: #00716c;
--yt-spec-brand-subscribe-button-background:var(--yt-spec-brand-button-background);
--yt-spec-wordmark-text: #212121;
--yt-spec-10-percent-layer: rgba(0, 0, 0, 0.1);
--yt-spec-snackbar-background: #212121;
--yt-spec-selected-nav-text: #c00;
--yt-spec-themed-blue: #065fd4;
--yt-spec-themed-green: #107516;
--yt-spec-themed-overlay-background: rgba(255, 255, 255, 0.7);
--yt-spec-static-brand-red: #f00;
--yt-spec-static-brand-white: #fff;
--yt-spec-static-brand-black: #212121;
--yt-spec-static-ad-yellow: #fbc02d;
--yt-spec-static-overlay-background-solid: #000;
--yt-spec-static-overlay-background-heavy: rgba(0, 0, 0, 0.8);
--yt-spec-static-overlay-background-medium: rgba(0, 0, 0, 0.6);
--yt-spec-static-overlay-background-medium-light: rgba(0, 0, 0, 0.3);
--yt-spec-static-overlay-background-light: rgba(0, 0, 0, 0.1);
--yt-spec-static-overlay-text-primary: #fff;
--yt-spec-static-overlay-text-secondary: rgba(255, 255, 255, 0.7);
--yt-spec-static-overlay-text-disabled: rgba(255, 255, 255, 0.3);
--yt-spec-static-overlay-call-to-action: #3ea6ff;
--yt-spec-static-overlay-icon-active-other: #fff;
--yt-spec-static-overlay-icon-inactive: rgba(255, 255, 255, 0.7);
--yt-spec-static-overlay-icon-disabled: rgba(255, 255, 255, 0.3);
--yt-spec-static-overlay-button-primary: rgba(255, 255, 255, 0.3);
--yt-spec-static-overlay-button-secondary: rgba(255, 255, 255, 0.1);
--yt-spec-static-overlay-background-brand: rgba(204, 0, 0, 0.9);
}
html:not(.style-scope) {
--ytd-promo-header-title_-_font-size: 3.2rem; --ytd-promo-header-title_-_font-weight: 500; --ytd-promo-header-title_-_line-height: 3.8rem;;
}
html:not(.style-scope) {
--yt-redeem-code-title_-_font-size: 2.4rem; --yt-redeem-code-title_-_font-weight: 400; --yt-redeem-code-title_-_line-height: 2.8rem;
--yt-redeem-input-text_-_font-size: 1.6rem; --yt-redeem-input-text_-_font-weight: 400; --yt-redeem-input-text_-_line-height: 1.6rem;
--yt-redeem-error-message_-_font-size: 1.2rem; --yt-redeem-error-message_-_font-weight: 400; --yt-redeem-error-message_-_line-height: 2.0rem;
--yt-post-redemption-section-title_-_font-size: 2.6rem; --yt-post-redemption-section-title_-_font-weight: 400; --yt-post-redemption-section-title_-_font-family: 'YT Sans'; --yt-post-redemption-section-title_-_line-height: 3rem; --yt-post-redemption-section-title_-_-moz-osx-font-smoothing: grayscale; --yt-post-redemption-section-title_-_-webkit-font-smoothing: antialiased;
}
html:not(.style-scope) {
--ytd-channel-title_-_font-size: var(--yt-channel-title-font-size, 2.4rem); --ytd-channel-title_-_font-weight: 400; --ytd-channel-title_-_line-height: var(--yt-channel-title-line-height, 3rem);;
--yt-navbar-title-font-size: 1.8rem;
--ytd-navbar-title_-_font-size: var(--yt-navbar-title-font-size); --ytd-navbar-title_-_font-weight: 400; --ytd-navbar-title_-_line-height: var(--yt-navbar-title-line-height, 2.4rem);;
--ytd-navbar-title-two-lines_-_display: block; --ytd-navbar-title-two-lines_-_max-height: calc(2 * var(--yt-navbar-title-line-height, 2.4rem)); --ytd-navbar-title-two-lines_-_overflow: hidden; --ytd-navbar-title-two-lines_-_font-size: var(--ytd-navbar-title_-_font-size); --ytd-navbar-title-two-lines_-_font-weight: var(--ytd-navbar-title_-_font-weight); --ytd-navbar-title-two-lines_-_line-height: var(--ytd-navbar-title_-_line-height);;
--ytd-subheadline_-_font-size: var(--yt-subheadline-font-size, 1.6rem); --ytd-subheadline_-_font-weight: 400; --ytd-subheadline_-_line-height: var(--yt-subheadline-line-height, 2rem); --ytd-subheadline_-_letter-spacing: var(--yt-subheadline-letter-spacing, normal);;
--ytd-subheadline-one-line_-_display: block; --ytd-subheadline-one-line_-_max-height: var(--yt-subheadline-line-height, 2rem); --ytd-subheadline-one-line_-_overflow: hidden; --ytd-subheadline-one-line_-_font-size: var(--ytd-subheadline_-_font-size); --ytd-subheadline-one-line_-_font-weight: var(--ytd-subheadline_-_font-weight); --ytd-subheadline-one-line_-_line-height: var(--ytd-subheadline_-_line-height); --ytd-subheadline-one-line_-_letter-spacing: var(--ytd-subheadline_-_letter-spacing);;
--ytd-subheadline-one-line-ellipsis_-_white-space: nowrap; --ytd-subheadline-one-line-ellipsis_-_text-overflow: ellipsis; --ytd-subheadline-one-line-ellipsis_-_display: var(--ytd-subheadline-one-line_-_display); --ytd-subheadline-one-line-ellipsis_-_max-height: var(--ytd-subheadline-one-line_-_max-height); --ytd-subheadline-one-line-ellipsis_-_overflow: var(--ytd-subheadline-one-line_-_overflow); --ytd-subheadline-one-line-ellipsis_-_font-size: var(--ytd-subheadline-one-line_-_font-size); --ytd-subheadline-one-line-ellipsis_-_font-weight: var(--ytd-subheadline-one-line_-_font-weight); --ytd-subheadline-one-line-ellipsis_-_line-height: var(--ytd-subheadline-one-line_-_line-height); --ytd-subheadline-one-line-ellipsis_-_letter-spacing: var(--ytd-subheadline-one-line_-_letter-spacing);;
--ytd-subheadline-link_-_font-size: var(--yt-subheadline-font-size, 1.6rem); --ytd-subheadline-link_-_font-weight: 500; --ytd-subheadline-link_-_line-height: var(--yt-subheadline-line-height, 2rem); --ytd-subheadline-link_-_letter-spacing: var(--yt-subheadline-link-letter-spacing, normal);;
--ytd-link_-_font-size: var(--yt-link-font-size, 1.4rem); --ytd-link_-_font-weight: 500; --ytd-link_-_line-height: var(--yt-link-line-height, 1.6rem); --ytd-link_-_letter-spacing: var(--yt-link-letter-spacing, normal);;
--ytd-link-one-line_-_display: block; --ytd-link-one-line_-_max-height: var(--yt-link-line-height, 1.6rem); --ytd-link-one-line_-_white-space: nowrap; --ytd-link-one-line_-_overflow: hidden; --ytd-link-one-line_-_font-size: var(--ytd-link_-_font-size); --ytd-link-one-line_-_font-weight: var(--ytd-link_-_font-weight); --ytd-link-one-line_-_line-height: var(--ytd-link_-_line-height); --ytd-link-one-line_-_letter-spacing: var(--ytd-link_-_letter-spacing);;
--ytd-link-two-lines_-_display: block; --ytd-link-two-lines_-_max-height: calc(2 * var(--yt-link-line-height, 1.6rem)); --ytd-link-two-lines_-_overflow: hidden; --ytd-link-two-lines_-_font-size: var(--ytd-link_-_font-size); --ytd-link-two-lines_-_font-weight: var(--ytd-link_-_font-weight); --ytd-link-two-lines_-_line-height: var(--ytd-link_-_line-height); --ytd-link-two-lines_-_letter-spacing: var(--ytd-link_-_letter-spacing);;
--ytd-thumbnail-attribution_-_font-size: var(--yt-thumbnail-attribution-font-size, 1.3rem); --ytd-thumbnail-attribution_-_font-weight: 400; --ytd-thumbnail-attribution_-_line-height: var(--yt-thumbnail-attribution-line-height, 1.8rem); --ytd-thumbnail-attribution_-_letter-spacing: var(--yt-thumbnail-attribution-letter-spacing, inherit); --ytd-thumbnail-attribution_-_text-transform: none;;
--ytd-thumbnail-attribution-one-line_-_display: block; --ytd-thumbnail-attribution-one-line_-_max-height: var(--yt-thumbnail-attribution-line-height, 1.8rem); --ytd-thumbnail-attribution-one-line_-_overflow: hidden; --ytd-thumbnail-attribution-one-line_-_font-size: var(--ytd-thumbnail-attribution_-_font-size); --ytd-thumbnail-attribution-one-line_-_font-weight: var(--ytd-thumbnail-attribution_-_font-weight); --ytd-thumbnail-attribution-one-line_-_line-height: var(--ytd-thumbnail-attribution_-_line-height); --ytd-thumbnail-attribution-one-line_-_letter-spacing: var(--ytd-thumbnail-attribution_-_letter-spacing); --ytd-thumbnail-attribution-one-line_-_text-transform: var(--ytd-thumbnail-attribution_-_text-transform);;
--ytd-thumbnail-attribution-two-line_-_display: block; --ytd-thumbnail-attribution-two-line_-_max-height: calc(2 * var(--yt-thumbnail-attribution-line-height, 1.8rem)); --ytd-thumbnail-attribution-two-line_-_overflow: hidden; --ytd-thumbnail-attribution-two-line_-_font-size: var(--ytd-thumbnail-attribution_-_font-size); --ytd-thumbnail-attribution-two-line_-_font-weight: var(--ytd-thumbnail-attribution_-_font-weight); --ytd-thumbnail-attribution-two-line_-_line-height: var(--ytd-thumbnail-attribution_-_line-height); --ytd-thumbnail-attribution-two-line_-_letter-spacing: var(--ytd-thumbnail-attribution_-_letter-spacing); --ytd-thumbnail-attribution-two-line_-_text-transform: var(--ytd-thumbnail-attribution_-_text-transform);;
--ytd-thumbnail-attribution-two-line-ellipsis_-_display: -webkit-box; --ytd-thumbnail-attribution-two-line-ellipsis_-_-webkit-box-orient: vertical; --ytd-thumbnail-attribution-two-line-ellipsis_-_max-height: calc(2 * var(--yt-thumbnail-attribution-line-height, 1.8rem)); --ytd-thumbnail-attribution-two-line-ellipsis_-_overflow: hidden; --ytd-thumbnail-attribution-two-line-ellipsis_-_text-overflow: ellipsis; --ytd-thumbnail-attribution-two-line-ellipsis_-_white-space: normal; --ytd-thumbnail-attribution-two-line-ellipsis_-_-webkit-line-clamp: 2; --ytd-thumbnail-attribution-two-line-ellipsis_-_font-size: var(--ytd-thumbnail-attribution_-_font-size); --ytd-thumbnail-attribution-two-line-ellipsis_-_font-weight: var(--ytd-thumbnail-attribution_-_font-weight); --ytd-thumbnail-attribution-two-line-ellipsis_-_line-height: var(--ytd-thumbnail-attribution_-_line-height); --ytd-thumbnail-attribution-two-line-ellipsis_-_letter-spacing: var(--ytd-thumbnail-attribution_-_letter-spacing); --ytd-thumbnail-attribution-two-line-ellipsis_-_text-transform: var(--ytd-thumbnail-attribution_-_text-transform);;
--ytd-user-comment_-_font-size: var(--yt-user-comment-font-size, 1.4rem); --ytd-user-comment_-_font-weight: 400; --ytd-user-comment_-_line-height: var(--yt-user-comment-line-height, 2.1rem); --ytd-user-comment_-_letter-spacing: var(--yt-user-comment-letter-spacing, normal);;
--ytd-user-comment-two-line_-_display: block; --ytd-user-comment-two-line_-_max-height: calc(2 * var(--yt-user-comment-line-height, 2.1rem)); --ytd-user-comment-two-line_-_overflow: hidden; --ytd-user-comment-two-line_-_font-size: var(--ytd-user-comment_-_font-size); --ytd-user-comment-two-line_-_font-weight: var(--ytd-user-comment_-_font-weight); --ytd-user-comment-two-line_-_line-height: var(--ytd-user-comment_-_line-height); --ytd-user-comment-two-line_-_letter-spacing: var(--ytd-user-comment_-_letter-spacing);;
--ytd-tab-system_-_font-size: var(--yt-tab-system-font-size, 1.4rem); --ytd-tab-system_-_font-weight: 500; --ytd-tab-system_-_letter-spacing: .007px; --ytd-tab-system_-_text-transform: uppercase;;
--ytd-caption_-_font-size: var(--yt-caption-font-size, 1.3rem); --ytd-caption_-_line-height: var(--yt-caption-line-height, normal); --ytd-caption_-_font-weight: 500; --ytd-caption_-_letter-spacing: var(--yt-caption-letter-spacing, .007px); --ytd-caption_-_text-transform: uppercase;;
--ytd-floating-input-thumbnail-attribution_-_font-size: 1.7rem; --ytd-floating-input-thumbnail-attribution_-_font-weight: 400; --ytd-floating-input-thumbnail-attribution_-_line-height: 2.4rem;;
--ytd-badge_-_font-size: var(--yt-badge-font-size, 1.2rem); --ytd-badge_-_font-weight: 500; --ytd-badge_-_line-height: var(--yt-badge-line-height, 1.2rem);;
--ytd-comment-link_-_font-size: 1.3rem; --ytd-comment-link_-_font-weight: 500; --ytd-comment-link_-_line-height: 1.8rem;;
--ytd-mini-attribution_-_font-size: 1.2rem; --ytd-mini-attribution_-_font-weight: 400; --ytd-mini-attribution_-_line-height: 1.5rem;;
--ytd-mini-attribution-endpoint_-_font-size: 1.2rem; --ytd-mini-attribution-endpoint_-_font-weight: 500; --ytd-mini-attribution-endpoint_-_line-height: 1.5rem;;
--ytd-label_-_font-size: 1.0rem; --ytd-label_-_font-weight: 400; --ytd-label_-_line-height: 1.4rem;;
--ytd-label-one-line-ellipsis_-_display: block; --ytd-label-one-line-ellipsis_-_max-height: 1.4rem; --ytd-label-one-line-ellipsis_-_overflow: hidden; --ytd-label-one-line-ellipsis_-_text-overflow: ellipsis; --ytd-label-one-line-ellipsis_-_white-space: nowrap; --ytd-label-one-line-ellipsis_-_font-size: var(--ytd-label_-_font-size); --ytd-label-one-line-ellipsis_-_font-weight: var(--ytd-label_-_font-weight); --ytd-label-one-line-ellipsis_-_line-height: var(--ytd-label_-_line-height);;
--ytd-code-snippet_-_font-family: 'Roboto Mono', monospace; --ytd-code-snippet_-_font-size: 1.4rem; --ytd-code-snippet_-_font-weight: 400; --ytd-code-snippet_-_line-height: 2.4rem;;
--ytd-conversation-metadata_-_font-size: 1.2rem; --ytd-conversation-metadata_-_font-weight: 400; --ytd-conversation-metadata_-_line-height: 1.6rem;;
--yt-code_-_font-family: 'Roboto Mono', monospace; --yt-code_-_font-size: 1.4rem; --yt-code_-_font-weight: 500; --yt-code_-_line-height: 2.1rem;;
--ytd-guide-highlight_-_font-size: 1.4rem; --ytd-guide-highlight_-_font-weight: 500; --ytd-guide-highlight_-_line-height: var(--yt-guide-highlight-line-height, 1.8rem); --ytd-guide-highlight_-_letter-spacing: var(--yt-guide-highlight-letter-spacing, normal);;
--ytd-item-section-header-title_-_font-size: 1.6em; --ytd-item-section-header-title_-_line-height: 1.4em; --ytd-item-section-header-title_-_font-weight: 500;;
}
html:not(.style-scope) {
--ytd-grid-base: 103px;
--ytd-margin-base: 4px;
--ytd-avatar-size: 32px;
--ytd-toolbar-height: 56px;
--ytd-margin-2x: 8px;
--ytd-margin-3x: 12px;
--ytd-margin-4x: 16px;
--ytd-margin-5x: 20px;
--ytd-margin-6x: 24px;
--ytd-margin-7x: 28px;
--ytd-margin-8x: 32px;
--ytd-margin-9x: 36px;
--ytd-margin-10x: 40px;
--ytd-margin-11x: 44px;
--ytd-margin-12x: 48px;
--ytd-margin-14x: 56px;
--ytd-margin-16x: 64px;
--ytd-margin-17x: 68px;
--ytd-margin-24x: 96px;
--ytd-margin-25x: 100px;
--ytd-margin-35x: 140px;
--ytd-neg-margin-base: -4px;
--ytd-neg-margin-2x: -8px;
--ytd-neg-margin-3x: -12px;
--ytd-neg-margin-4x: -16px;
--ytd-neg-margin-5x: -20px;
--ytd-neg-margin-6x: -24px;
--ytd-neg-margin-7x: -28px;
--ytd-neg-margin-8x: -32px;
--ytd-neg-margin-10x: -40px;
--ytd-neg-margin-11x: -44px;
--ytd-neg-margin-12x: -48px;
--ytd-neg-margin-14x: -56px;
--ytd-neg-margin-16x: -64px;
--ytd-neg-margin-24x: -96px;
--ytd-neg-margin-25x: -100px;
--ytd-grid-1x1_-_height: 103px; --ytd-grid-1x1_-_width: 103px;;
--ytd-safari-layout-fix_-_-ms-flex: var(--layout-flex-none_-_-ms-flex); --ytd-safari-layout-fix_-_-webkit-flex: var(--layout-flex-none_-_-webkit-flex); --ytd-safari-layout-fix_-_flex: var(--layout-flex-none_-_flex);;
--yt-report-form-modal-renderer-min-width: 250px;
--yt-legal-report-details-form-renderer-min-width: 250px;
--yt-circular_-_border-radius: 50%; --yt-circular_-_background-color: transparent; --yt-circular_-_overflow: hidden;;
--yt-multi-line-ellipsis_-_-webkit-box-orient: vertical; --yt-multi-line-ellipsis_-_text-overflow: ellipsis; --yt-multi-line-ellipsis_-_white-space: normal; --yt-multi-line-ellipsis_-_display: -webkit-box;;
--yt-upsell-dialog-layout-vertical-width: 400px;
--yt-upsell-dialog-layout-horizontal-width: 800px;
}
html:not(.style-scope) {
--ytd-rich-grid-metadata_-_font-size: 1.4rem; --ytd-rich-grid-metadata_-_font-weight: 400; --ytd-rich-grid-metadata_-_line-height: 1.8rem;;
--ytd-rich-grid-metadata-mini_-_font-size: 1.2rem; --ytd-rich-grid-metadata-mini_-_line-height: 1.6rem;;
--ytd-rich-grid-items-per-row: 3;
--ytd-rich-grid-posts-per-row: 3;
--ytd-rich-grid-movies-per-row: 6;
--ytd-rich-grid-item-margin: 16px;
--ytd-rich-grid-item-min-width: 320px;
--ytd-rich-grid-item-max-width: 360px;
--ytd-rich-grid-mini-item-min-width: 240px;
--ytd-rich-grid-mini-item-max-width: 320px;
--ytd-rich-grid-movie-max-width: 220px;
}
html:not(.style-scope) {
--paper-dialog-background-color:var(--yt-spec-brand-background-solid);
--paper-listbox-background-color:var(--yt-spec-brand-background-solid);
--paper-listbox-color:var(--yt-spec-text-primary);
--paper-spinner-layer-1-color:var(--yt-spec-icon-inactive);
--paper-spinner-layer-2-color:var(--yt-spec-icon-inactive);
--paper-spinner-layer-3-color:var(--yt-spec-icon-inactive);
--paper-spinner-layer-4-color:var(--yt-spec-icon-inactive);
--paper-spinner-color:var(--yt-spec-icon-inactive);
--paper-input-container-focus-color:var(--yt-spec-themed-blue);
--paper-input-container-input-color:var(--yt-spec-text-primary);
--paper-input-container-label-floating_-_font-size: var(--ytd-floating-input-thumbnail-attribution_-_font-size); --paper-input-container-label-floating_-_font-weight: var(--ytd-floating-input-thumbnail-attribution_-_font-weight); --paper-input-container-label-floating_-_line-height: var(--ytd-floating-input-thumbnail-attribution_-_line-height);;
--paper-input-container-invalid-color:var(--yt-spec-brand-link-text);
--paper-checkbox-unchecked-color:var(--yt-spec-icon-inactive);
--paper-checkbox-unchecked-ink-color:var(--yt-spec-icon-inactive);
--paper-checkbox-checked-color:var(--yt-spec-call-to-action);
--paper-checkbox-checked-ink-color:var(--yt-spec-call-to-action);
--paper-checkbox-label-color:var(--yt-spec-text-primary);
--paper-checkbox-label-spacing: 16px;
--paper-checkbox-size: 20px;
--paper-checkbox-checkmark-color:var(--yt-spec-text-primary-inverse);
--paper-radio-button-unchecked-color:var(--yt-spec-icon-inactive);
--paper-radio-button-unchecked-ink-color:var(--yt-spec-icon-inactive);
--paper-radio-button-checked-color:var(--yt-spec-call-to-action);
--paper-radio-button-checked-ink-color:var(--yt-spec-call-to-action);
--paper-radio-button-label-spacing: 16px;
--paper-radio-button-label-color:var(--yt-spec-text-primary);
--paper-radio-button-size: 20px;
--paper-item_-_white-space: nowrap; --paper-item_-_font-size: initial; --paper-item_-_font-weight: initial; --paper-item_-_line-height: initial; --paper-item_-_letter-spacing: initial;;
--paper-input-error_-_overflow: hidden;;
--paper-toggle-button-unchecked-bar-color:var(--yt-spec-icon-disabled);
--paper-toggle-button-unchecked-button-color:var(--yt-spec-icon-inactive);
--paper-toggle-button-checked-bar-color:var(--yt-spec-icon-disabled);
--paper-toggle-button-checked-button-color:var(--yt-spec-call-to-action);
--paper-toggle-button-checked-ink-color:var(--yt-spec-call-to-action);
--paper-toggle-button-unchecked-ink-color:var(--yt-spec-touch-response);
--paper-tab-content-unselected_-_opacity: 1;;
--paper-menu-disabled-color:var(--yt-spec-text-primary);
--paper-menu-background-color:var(--yt-spec-brand-background-solid);
--paper-menu-color:var(--yt-spec-text-primary);
--yt-icon-width: 40px;
--yt-icon-height: 40px;
--yt-search-correction_-_margin-top: 24px;;
--yt-search-correction-corrected_-_color: var(--yt-spec-text-primary); --yt-search-correction-corrected_-_font-size: var(--ytd-thumbnail-attribution_-_font-size); --yt-search-correction-corrected_-_font-weight: var(--ytd-thumbnail-attribution_-_font-weight); --yt-search-correction-corrected_-_line-height: var(--ytd-thumbnail-attribution_-_line-height); --yt-search-correction-corrected_-_letter-spacing: var(--ytd-thumbnail-attribution_-_letter-spacing); --yt-search-correction-corrected_-_text-transform: var(--ytd-thumbnail-attribution_-_text-transform);;
--yt-search-correction-corrected-link_-_font-size: var(--ytd-link_-_font-size); --yt-search-correction-corrected-link_-_font-weight: var(--ytd-link_-_font-weight); --yt-search-correction-corrected-link_-_line-height: var(--ytd-link_-_line-height); --yt-search-correction-corrected-link_-_letter-spacing: var(--ytd-link_-_letter-spacing);;
--yt-search-correction-original_-_padding-left: 8px; --yt-search-correction-original_-_color: var(--yt-spec-text-primary); --yt-search-correction-original_-_font-size: var(--ytd-thumbnail-attribution_-_font-size); --yt-search-correction-original_-_font-weight: var(--ytd-thumbnail-attribution_-_font-weight); --yt-search-correction-original_-_line-height: var(--ytd-thumbnail-attribution_-_line-height); --yt-search-correction-original_-_letter-spacing: var(--ytd-thumbnail-attribution_-_letter-spacing); --yt-search-correction-original_-_text-transform: var(--ytd-thumbnail-attribution_-_text-transform);;
--yt-search-correction-original-link_-_font-size: var(--ytd-link_-_font-size); --yt-search-correction-original-link_-_font-weight: var(--ytd-link_-_font-weight); --yt-search-correction-original-link_-_line-height: var(--ytd-link_-_line-height); --yt-search-correction-original-link_-_letter-spacing: var(--ytd-link_-_letter-spacing);;
--yt-endpoint_-_display: inline-block; --yt-endpoint_-_cursor: pointer; --yt-endpoint_-_text-decoration: none; --yt-endpoint_-_color: var(--yt-endpoint-color, var(--yt-spec-text-primary));;
--yt-endpoint-hover_-_color: var(--yt-endpoint-hover-color, var(--yt-spec-text-primary)); --yt-endpoint-hover_-_text-decoration: var(--yt-endpoint-text-decoration, none);;
--yt-notification-button-bubble_-_color: var(--yt-swatch-important-text, var(--yt-white)); --yt-notification-button-bubble_-_background-color: var(--yt-spec-brand-button-background); --yt-notification-button-bubble_-_width: 18px; --yt-notification-button-bubble_-_height: 18px; --yt-notification-button-bubble_-_border-radius: 50%; --yt-notification-button-bubble_-_line-height: 18px; --yt-notification-button-bubble_-_font-size: 10px; --yt-notification-button-bubble_-_text-align: center; --yt-notification-button-bubble_-_cursor: pointer;;
}
html:not(.style-scope) {
--ytd-searchbox-border-color:var(--yt-opalescence-grey-opacity-lighten-4);
--ytd-searchbox-legacy-border-color: #ccc;
--ytd-searchbox-legacy-border-shadow-color: #eee;
--ytd-searchbox-legacy-button-color: #f8f8f8;
--ytd-searchbox-legacy-button-border-color: #d3d3d3;
--ytd-searchbox-legacy-button-focus-color: #e9e9e9;
--ytd-searchbox-legacy-button-hover-color: #f0f0f0;
--ytd-searchbox-legacy-button-hover-border-color: #c6c6c6;
--ytd-searchbox-legacy-button-icon-color: #333;
--ytd-moderation-panel-background:var(--yt-opalescence-soft-grey-opacity-lighten-2);
--ytd-moderation-panel-hover:var(--yt-opalescence-soft-grey-opacity-lighten-1);
--ytd-moderation-panel-comment-text:var(--yt-luna-black);
--ytd-moderation-panel-comment-metadata-text:var(--yt-luna-black-opacity-lighten-2);
--ytd-moderation-icon-color:var(--yt-luna-black-opacity-lighten-2);
--ytd-moderation-icon-hover-color:var(--yt-luna-black);
--ytd-moderation-panel-likely-spam-divider:var(--yt-opalescence-grey-opacity-lighten-5);
--ytd-comment-text-color:var(--yt-luna-black);
--ytd-comment-metadata-text-color:var(--yt-spec-text-secondary);
--ytd-watch-card-secondary-text-color:var(--yt-opalescence-grey);
--ytd-watch-card-album-header-background:var(--yt-white);
--ytd-watch-header-background:var(--yt-surface-300);
--ytd-backstage-metadata-text-color:var(--yt-opalescence-grey);
--ytd-backstage-video-link-background-color:var(--yt-opalescence-soft-grey-opacity-lighten-3);
--ytd-backstage-image-alert-color:var(--yt-luna-black-opacity-lighten-2);
--ytd-backstage-cancel-background-color:var(--yt-white);
--ytd-backstage-cancel-color:var(--yt-luna-black-opacity-lighten-3);
--ytd-backstage-attachment-background-color:var(--yt-surface-100);
--ytd-backstage-creationbox-inactive-color:var(--yt-body-200);
--ytd-backstage-creationbox-text-color:var(--yt-body-300);
--ytd-backstage-creationbox-input-text-color:var(--yt-body-500);
--ytd-backstage-creationbox-disabled-button-color:var(--yt-body-100);
--ytd-backstage-creationbox-disabled-button-text-color:var(--yt-white);
--ytd-backstage-attachment-icon-hover-color:var(--yt-body-400);
--ytd-sponsorships-background-color-focus:var(--yt-opalescence-soft-grey-opacity-lighten-3);
--ytd-badge-disabled-color:var(--yt-opalescence-grey-opacity-lighten-3);
--ytd-collection-badge-color:var(--yt-luna-black-opacity-lighten-1);
--ytd-owner-badge-color:var(--yt-luna-black-opacity-lighten-3);
--ytd-simple-badge-color:var(--yt-luna-black-opacity-lighten-2);
--ytd-shopping-product-info:var(--yt-luna-black-opacity-lighten-1);
--ytd-transcript-cue-hover-background-color:var(--yt-opalescence-soft-grey);
--ytd-transcript-toolbar-background-color:var(--yt-opalescence-soft-grey);
--ytd-transcript-toolbar-text:var(--yt-luna-black);
--ytd-video-publish-date-color:var(--yt-luna-black-opacity-lighten-2);
--ytd-vat-notice-text:var(--yt-luna-black-opacity-lighten-2);
--ytd-offer-background-color:var(--yt-opalescence-soft-grey-opacity-lighten-3);
--ytd-video-game-watch-card-logo-color:var(--yt-luna-black);
--ytd-watch-split-pane-sidebar-background-color:var(--yt-surface-200);
}
html:not(.style-scope) {
--ytd-z-index-report-form-overlay: 100;
--ytd-z-index-watch-fixie-secondary-section-detached: 500;
--ytd-z-index-engagement-panel-scrim: 600;
--ytd-z-index-engagement-panel-scrimmed: 601;
--ytd-z-index-miniplayer-bar: 2008;
--ytd-z-index-masthead: 2020;
--ytd-z-index-user-mention-suggestions-container: 2022;
--ytd-z-index-notification: 2024;
--ytd-z-index-miniplayer: 2025;
--ytd-z-index-channel-name: 300;
--ytd-thumbnail-height: 118px;
--ytd-grid-1-columns-width: 214px;
--ytd-grid-2-columns-width: 428px;
--ytd-grid-3-columns-width: 642px;
--ytd-grid-4-columns-width: 856px;
--ytd-grid-5-columns-width: 1070px;
--ytd-grid-6-columns-width: 1284px;
--ytd-grid-max-width: 1284px;
--ytd-grid-thumbnail_-_height: 118px; --ytd-grid-thumbnail_-_width: 210px;;
--ytd-grid-section_-_margin-bottom: 24px;;
--ytd-grid-video-item_-_display: inline-block; --ytd-grid-video-item_-_width: 210px;;
--ytd-grid-subheader_-_margin: 24px 0;;
--ytd-grid-video-title_-_display: var(--ytd-link-two-lines_-_display, block); --ytd-grid-video-title_-_margin: 8px 0 8px; --ytd-grid-video-title_-_max-height: var(--ytd-link-two-lines_-_max-height); --ytd-grid-video-title_-_overflow: var(--ytd-link-two-lines_-_overflow); --ytd-grid-video-title_-_font-size: var(--ytd-link-two-lines_-_font-size); --ytd-grid-video-title_-_font-weight: var(--ytd-link-two-lines_-_font-weight); --ytd-grid-video-title_-_line-height: var(--ytd-link-two-lines_-_line-height); --ytd-grid-video-title_-_letter-spacing: var(--ytd-link-two-lines_-_letter-spacing);;
--ytd-grid-info-container_-_padding-right: 24px;;
--ytd-scrollbar-width: 8px;
--ytd-scrollbar-scrubber_-_height: 56px; --ytd-scrollbar-scrubber_-_background: var(--yt-opalescence-grey-opacity-lighten-3);;
--ytd-fixed-width-container_-_position: relative; --ytd-fixed-width-container_-_overflow: hidden; --ytd-fixed-width-container_-_display: block;;
--ytd-default-promo-panel-renderer-height: 600px;
}
html:not(.style-scope) {
--paper-tooltip_-_margin: 8px; --paper-tooltip_-_font-size: var(--ytd-thumbnail-attribution_-_font-size); --paper-tooltip_-_font-weight: var(--ytd-thumbnail-attribution_-_font-weight); --paper-tooltip_-_line-height: var(--ytd-thumbnail-attribution_-_line-height); --paper-tooltip_-_letter-spacing: var(--ytd-thumbnail-attribution_-_letter-spacing); --paper-tooltip_-_text-transform: var(--ytd-thumbnail-attribution_-_text-transform);;
--paper-tooltip-delay-in: 1ms;
--paper-tooltip-delay-out: 0;
--paper-tooltip-duration-in: 150ms;
--paper-tooltip-duration-out: 75ms;
--iron-overlay-backdrop-opacity: 0.8;
--paper-tab-content-focused_-_font-weight: 500;;
}
html:not(.style-scope) {
--yt-button-margin: 0;
--yt-button-padding: 10px 16px;
--yt-button-padding-minus-border: 9px 15px;
--yt-button-padding-minus-focus-outline: 8px 14px;
--yt-button-padding-minus-focus-outline-width: 2px;
--yt-button-with-icon-padding-minus-focus-outline: 4px 14px;
--yt-button-border-radius: 2px;
}
html:not(.style-scope) {
--yt-live-chat-background-color: var(--yt-white);
--yt-live-chat-secondary-background-color: var(--yt-opalescence-soft-grey);
--yt-live-chat-action-panel-background-color: var(--yt-opalescence-soft-grey-opacity-lighten-3);
--yt-live-chat-action-panel-background-color-transparent: hsla(0, 0%, 97%, .8);
--yt-live-chat-mode-change-background-color: var(--yt-opalescence-soft-grey-opacity-lighten-3);
--yt-live-chat-primary-text-color: var(--yt-luna-black);
--yt-live-chat-secondary-text-color: var(--yt-luna-black-opacity-lighten-2);
--yt-live-chat-tertiary-text-color: var(--yt-luna-black-opacity-lighten-3);
--yt-live-chat-text-input-field-inactive-underline-color: #b8b8b8;
--yt-live-chat-text-input-field-placeholder-color: var(--yt-luna-black-opacity-lighten-2);
--yt-live-chat-text-input-field-underline-transition-duration: 0.25s;
--yt-live-chat-icon-button-color: var(--yt-luna-black-opacity-lighten-3);
--yt-live-chat-enabled-send-button-color: #4285f4;
--yt-live-chat-disabled-icon-button-color: var(--yt-luna-black-opacity-lighten-4);
--yt-live-chat-picker-button-color: var(--yt-luna-black-opacity-lighten-3);
--yt-live-chat-picker-button-active-color: var(--yt-luna-black-opacity-lighten-1);
--yt-live-chat-picker-button-disabled-color: var(--yt-live-chat-disabled-icon-button-color);
--yt-live-chat-picker-button-hover-color: var(--yt-luna-black-opacity-lighten-2);
--yt-live-chat-mention-background-color: #ff5722;
--yt-live-chat-mention-text-color: var(--yt-white);
--yt-live-chat-deleted-message-color: rgba(0, 0, 0, .5);
--yt-live-chat-deleted-message-bar-color: rgba(11, 11, 11, .2);
--yt-live-chat-disabled-button-background-color: var(--yt-opalescence-soft-grey);
--yt-live-chat-disabled-button-text-color: var(--yt-luna-black-opacity-lighten-3);
--yt-live-chat-sub-panel-background-color: var(--yt-opalescence-soft-grey);
--yt-live-chat-sub-panel-background-color-transparent: hsla(0, 0%, 93%, .7);
--yt-live-chat-header-background-color: var(--yt-opalescence-soft-grey-opacity-lighten-3);
--yt-live-chat-header-button-color: var(--yt-luna-black);
--yt-live-chat-count-color-early-warning: hsl(40, 76%, 55%);
--yt-live-chat-count-color-error: hsl(10, 51%, 49%);
--yt-live-chat-error-message-color: hsl(10, 51%, 49%);
--yt-live-chat-reconnect-message-color: hsla(0, 0%, 7%, 0.2);
--yt-live-chat-moderator-color: hsl(225, 84%, 66%);
--yt-live-chat-owner-color: hsl(40, 76%, 55%);
--yt-live-chat-author-chip-owner-background-color: #ffd600;
--yt-live-chat-author-chip-owner-text-color: rgba(0,0,0,0.87);
--yt-live-chat-author-chip-verified-background-color: var(--yt-spec-grey-1);
--yt-live-chat-author-chip-verified-text-color: var(--yt-spec-grey-5);
--yt-live-chat-message-highlight-background-color: #f8f8f8;
--yt-live-chat-sponsor-color: #107516;
--yt-live-chat-overlay-color: hsla(0, 0%, 0%, 0.6);
--yt-live-chat-dialog-background-color: var(--yt-white);
--yt-live-chat-dialog-text-color: var(--yt-luna-black-opacity-lighten-2);
--yt-live-chat-banner-border-color: var(--yt-spec-10-percent-layer);
--yt-live-chat-banner-animation-duration: 0.35s;
--yt-live-chat-banner-animation-fast-duration: 0.25s;
--yt-live-chat-banner-gradient-scrim: linear-gradient(rgba(255, 255, 255, 0.95), transparent);
--yt-live-chat-banner-indeterminate-bar-background: repeating-linear-gradient(90deg, #fff, #fff 6px, #aaa 6px, #aaa 9px);
--yt-live-chat-banner-bar-animation-duration: 1s;
--yt-live-chat-action-panel-gradient-scrim: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
--yt-live-chat-poll-primary-text-color: var(--yt-spec-static-overlay-text-primary);
--yt-live-chat-poll-secondary-text-color: var(--yt-spec-static-overlay-text-secondary);
--yt-live-chat-poll-tertiary-text-color: var(--yt-spec-static-overlay-text-disabled);
--yt-live-chat-poll-choice-text-color: var(--yt-live-chat-poll-primary-text-color);
--yt-live-chat-poll-choice-background-color: transparent;
--yt-live-chat-poll-choice-border-radius: 2px;
--yt-live-chat-poll-choice-border: 1px solid var(--yt-live-chat-poll-tertiary-text-color);
--yt-live-chat-poll-choice-min-height: 16px;
--yt-live-chat-poll-choice-vote-bar-background-color: var(--yt-spec-static-overlay-button-secondary);
--yt-live-chat-poll-choice-hover-color: rgba(17, 17, 16, 0.1);
--yt-live-chat-poll-choice-animation-duration: 0.5s;
--yt-live-chat-poll-choice-text-padding: 0 16px;
--yt-live-chat-poll-editor-panel-header-border-color: var(--yt-spec-10-percent-layer);
--yt-live-chat-poll-editor-start-button-color: var(--yt-spec-general-background-b);
--yt-live-chat-poll-editor-start-button-background-color: var(--yt-spec-call-to-action);
--yt-live-chat-poll-editor-start-button-background-color-disabled: var(--yt-spec-icon-disabled);
--yt-live-interactivity-component-background-color: #264c8a;
--yt-live-chat-panel-animation-duration: 0.5s;
--yt-live-chat-universal-motion-curve: cubic-bezier(0.05, 0.00, 0.00, 1.00);
--yt-live-chat-moderation-mode-hover-background-color: var(--yt-luna-black-opacity-lighten-4);
--yt-live-chat-additional-inline-action-button-color: var(--yt-white);
--yt-live-chat-additional-inline-action-button-background-color: hsla(0, 0%, 26%, 0.8);
--yt-live-chat-additional-inline-action-button-background-color-hover: hsla(0, 0%, 26%, 1.0);
--yt-formatted-string-emoji-size: 24px;
--yt-live-chat-emoji-size: 24px;
--yt-live-chat-text-input-field-suggestion-background-color: var(--yt-white);
--yt-live-chat-text-input-field-suggestion-background-color-hover: #eee;
--yt-live-chat-text-input-field-suggestion-text-color: #666;
--yt-live-chat-text-input-field-suggestion-text-color-hover: #333;
--yt-live-chat-ticker-arrow-background: hsl(0, 0%, 97.3%);
--yt-emoji-picker-category-background-color: var(--yt-live-chat-action-panel-background-color-transparent);
--yt-emoji-picker-category-color: var(--yt-live-chat-secondary-text-color);
--yt-emoji-picker-category-button-color: var(--yt-live-chat-picker-button-color);
--yt-emoji-picker-search-background-color: var(--yt-white-opacity-lighten-2);
--yt-emoji-picker-search-color: var(--yt-luna-black-opacity-lighten-1);
--yt-emoji-picker-search-placeholder-color: var(--yt-luna-black-opacity-lighten-2);
--yt-live-chat-slider-active-color: #2196f3;
--yt-live-chat-slider-container-color: #c8c8c8;
--yt-live-chat-slider-markers-color: #505050;
--yt-live-chat-toast-action-color: #2196f3;
--yt-live-chat-toast-background-color: var(--yt-opalescence-dark-grey);
--yt-live-chat-toast-text-color: var(--yt-white);
--yt-live-chat-automod-button-background-color: var(--yt-opalescence-soft-grey);
--yt-live-chat-automod-button-background-color-hover: var(--yt-luna-black-opacity-lighten-4);
--yt-live-chat-creator-support-button-border-radius: 2px;
--yt-live-chat-creator-support-button-padding: 10px 16px;
--yt-live-chat-creator-support-button-font-size: inherit;
--yt-live-chat-countdown-opacity: 0.3;
--yt-live-chat-shimmer-background-color: rgba(136, 136, 136, 0.2);
--yt-live-chat-shimmer-linear-gradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 65%);
--yt-live-chat-vem-background-color: var(--yt-opalescence-soft-grey);
--yt-live-chat-upsell-dialog-renderer-button-padding: 10px 16px;
--yt-live-chat-product-picker-icon-color: rgba(17, 17, 17, 0.6);
--yt-live-chat-product-picker-hover-color: rgba(17, 17, 16, 0.1);
--yt-live-chat-product-picker-disabled-icon-color: rgba(17, 17, 17, 0.4);
--yt-pdg-paid-stickers-tab-selection-bar-color: var(--yt-spec-dark-blue);
--yt-pdg-paid-stickers-author-name-font-size: 14px;
--yt-pdg-paid-stickers-author-subtext-font-size: 13px;
--yt-pdg-paid-stickers-margin-left: 38px;
--yt-live-chat-ninja-message-background-color: transparent;
}
html:not(.style-scope) {
--yt-subscription-product-grid-margin: 24px;
--yt-subscription-product-grid-margin-two-thirds: 16px;
--yt-subscription-product-grid-margin-half: 12px;
--yt-subscription-product-grid-margin-one-third: 8px;
}
html:not(.style-scope) {
--yt-live-chat-32px-icon-button_-_width: 40px; --yt-live-chat-32px-icon-button_-_height: 40px; --yt-live-chat-32px-icon-button_-_padding: 8px;;
}
:not(.style-scope)[hidden] {
display: none !important;
}
html:not(.style-scope) {
--layout_-_display: flex;;
--layout-inline_-_display: inline-flex;;
--layout-horizontal_-_display: var(--layout_-_display); --layout-horizontal_-_-ms-flex-direction: row; --layout-horizontal_-_-webkit-flex-direction: row; --layout-horizontal_-_flex-direction: row;;
--layout-horizontal-reverse_-_display: var(--layout_-_display); --layout-horizontal-reverse_-_-ms-flex-direction: row-reverse; --layout-horizontal-reverse_-_-webkit-flex-direction: row-reverse; --layout-horizontal-reverse_-_flex-direction: row-reverse;;
--layout-vertical_-_display: var(--layout_-_display); --layout-vertical_-_-ms-flex-direction: column; --layout-vertical_-_-webkit-flex-direction: column; --layout-vertical_-_flex-direction: column;;
--layout-vertical-reverse_-_display: var(--layout_-_display); --layout-vertical-reverse_-_-ms-flex-direction: column-reverse; --layout-vertical-reverse_-_-webkit-flex-direction: column-reverse; --layout-vertical-reverse_-_flex-direction: column-reverse;;
--layout-wrap_-_-ms-flex-wrap: wrap; --layout-wrap_-_-webkit-flex-wrap: wrap; --layout-wrap_-_flex-wrap: wrap;;
--layout-wrap-reverse_-_-ms-flex-wrap: wrap-reverse; --layout-wrap-reverse_-_-webkit-flex-wrap: wrap-reverse; --layout-wrap-reverse_-_flex-wrap: wrap-reverse;;
--layout-flex-auto_-_-ms-flex: 1 1 auto; --layout-flex-auto_-_-webkit-flex: 1 1 auto; --layout-flex-auto_-_flex: 1 1 auto;;
--layout-flex-none_-_-ms-flex: none; --layout-flex-none_-_-webkit-flex: none; --layout-flex-none_-_flex: none;;
--layout-flex_-_-ms-flex: 1 1 0.000000001px; --layout-flex_-_-webkit-flex: 1; --layout-flex_-_flex: 1; --layout-flex_-_-webkit-flex-basis: 0.000000001px; --layout-flex_-_flex-basis: 0.000000001px;;
--layout-flex-2_-_-ms-flex: 2; --layout-flex-2_-_-webkit-flex: 2; --layout-flex-2_-_flex: 2;;
--layout-flex-3_-_-ms-flex: 3; --layout-flex-3_-_-webkit-flex: 3; --layout-flex-3_-_flex: 3;;
--layout-flex-4_-_-ms-flex: 4; --layout-flex-4_-_-webkit-flex: 4; --layout-flex-4_-_flex: 4;;
--layout-flex-5_-_-ms-flex: 5; --layout-flex-5_-_-webkit-flex: 5; --layout-flex-5_-_flex: 5;;
--layout-flex-6_-_-ms-flex: 6; --layout-flex-6_-_-webkit-flex: 6; --layout-flex-6_-_flex: 6;;
--layout-flex-7_-_-ms-flex: 7; --layout-flex-7_-_-webkit-flex: 7; --layout-flex-7_-_flex: 7;;
--layout-flex-8_-_-ms-flex: 8; --layout-flex-8_-_-webkit-flex: 8; --layout-flex-8_-_flex: 8;;
--layout-flex-9_-_-ms-flex: 9; --layout-flex-9_-_-webkit-flex: 9; --layout-flex-9_-_flex: 9;;
--layout-flex-10_-_-ms-flex: 10; --layout-flex-10_-_-webkit-flex: 10; --layout-flex-10_-_flex: 10;;
--layout-flex-11_-_-ms-flex: 11; --layout-flex-11_-_-webkit-flex: 11; --layout-flex-11_-_flex: 11;;
--layout-flex-12_-_-ms-flex: 12; --layout-flex-12_-_-webkit-flex: 12; --layout-flex-12_-_flex: 12;;
--layout-start_-_-ms-flex-align: start; --layout-start_-_-webkit-align-items: flex-start; --layout-start_-_align-items: flex-start;;
--layout-center_-_-ms-flex-align: center; --layout-center_-_-webkit-align-items: center; --layout-center_-_align-items: center;;
--layout-end_-_-ms-flex-align: end; --layout-end_-_-webkit-align-items: flex-end; --layout-end_-_align-items: flex-end;;
--layout-baseline_-_-ms-flex-align: baseline; --layout-baseline_-_-webkit-align-items: baseline; --layout-baseline_-_align-items: baseline;;
--layout-start-justified_-_-ms-flex-pack: start; --layout-start-justified_-_-webkit-justify-content: flex-start; --layout-start-justified_-_justify-content: flex-start;;
--layout-center-justified_-_-ms-flex-pack: center; --layout-center-justified_-_-webkit-justify-content: center; --layout-center-justified_-_justify-content: center;;
--layout-end-justified_-_-ms-flex-pack: end; --layout-end-justified_-_-webkit-justify-content: flex-end; --layout-end-justified_-_justify-content: flex-end;;
--layout-around-justified_-_-ms-flex-pack: distribute; --layout-around-justified_-_-webkit-justify-content: space-around; --layout-around-justified_-_justify-content: space-around;;
--layout-justified_-_-ms-flex-pack: justify; --layout-justified_-_-webkit-justify-content: space-between; --layout-justified_-_justify-content: space-between;;
--layout-center-center_-_-ms-flex-align: var(--layout-center_-_-ms-flex-align); --layout-center-center_-_-webkit-align-items: var(--layout-center_-_-webkit-align-items); --layout-center-center_-_align-items: var(--layout-center_-_align-items); --layout-center-center_-_-ms-flex-pack: var(--layout-center-justified_-_-ms-flex-pack); --layout-center-center_-_-webkit-justify-content: var(--layout-center-justified_-_-webkit-justify-content); --layout-center-center_-_justify-content: var(--layout-center-justified_-_justify-content);;
--layout-self-start_-_-ms-align-self: flex-start; --layout-self-start_-_-webkit-align-self: flex-start; --layout-self-start_-_align-self: flex-start;;
--layout-self-center_-_-ms-align-self: center; --layout-self-center_-_-webkit-align-self: center; --layout-self-center_-_align-self: center;;
--layout-self-end_-_-ms-align-self: flex-end; --layout-self-end_-_-webkit-align-self: flex-end; --layout-self-end_-_align-self: flex-end;;
--layout-self-stretch_-_-ms-align-self: stretch; --layout-self-stretch_-_-webkit-align-self: stretch; --layout-self-stretch_-_align-self: stretch;;
--layout-self-baseline_-_-ms-align-self: baseline; --layout-self-baseline_-_-webkit-align-self: baseline; --layout-self-baseline_-_align-self: baseline;;
--layout-start-aligned_-_-ms-flex-line-pack: start; --layout-start-aligned_-_-ms-align-content: flex-start; --layout-start-aligned_-_-webkit-align-content: flex-start; --layout-start-aligned_-_align-content: flex-start;;
--layout-end-aligned_-_-ms-flex-line-pack: end; --layout-end-aligned_-_-ms-align-content: flex-end; --layout-end-aligned_-_-webkit-align-content: flex-end; --layout-end-aligned_-_align-content: flex-end;;
--layout-center-aligned_-_-ms-flex-line-pack: center; --layout-center-aligned_-_-ms-align-content: center; --layout-center-aligned_-_-webkit-align-content: center; --layout-center-aligned_-_align-content: center;;
--layout-between-aligned_-_-ms-flex-line-pack: justify; --layout-between-aligned_-_-ms-align-content: space-between; --layout-between-aligned_-_-webkit-align-content: space-between; --layout-between-aligned_-_align-content: space-between;;
--layout-around-aligned_-_-ms-flex-line-pack: distribute; --layout-around-aligned_-_-ms-align-content: space-around; --layout-around-aligned_-_-webkit-align-content: space-around; --layout-around-aligned_-_align-content: space-around;;
--layout-block_-_display: block;;
--layout-invisible_-_visibility: hidden !important;;
--layout-relative_-_position: relative;;
--layout-fit_-_position: absolute; --layout-fit_-_top: 0; --layout-fit_-_right: 0; --layout-fit_-_bottom: 0; --layout-fit_-_left: 0;;
--layout-scroll_-_-webkit-overflow-scrolling: touch; --layout-scroll_-_overflow: auto;;
--layout-fullbleed_-_margin: 0; --layout-fullbleed_-_height: 100vh;;
--layout-fixed-top_-_position: fixed; --layout-fixed-top_-_top: 0; --layout-fixed-top_-_left: 0; --layout-fixed-top_-_right: 0;;
--layout-fixed-right_-_position: fixed; --layout-fixed-right_-_top: 0; --layout-fixed-right_-_right: 0; --layout-fixed-right_-_bottom: 0;;
--layout-fixed-bottom_-_position: fixed; --layout-fixed-bottom_-_right: 0; --layout-fixed-bottom_-_bottom: 0; --layout-fixed-bottom_-_left: 0;;
--layout-fixed-left_-_position: fixed; --layout-fixed-left_-_top: 0; --layout-fixed-left_-_bottom: 0; --layout-fixed-left_-_left: 0;;
}
html:not(.style-scope) {
--shadow-transition_-_transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);;
--shadow-none_-_box-shadow: none;;
--shadow-elevation-2dp_-_box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
0 1px 5px 0 rgba(0, 0, 0, 0.12),
0 3px 1px -2px rgba(0, 0, 0, 0.2);;
--shadow-elevation-3dp_-_box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14),
0 1px 8px 0 rgba(0, 0, 0, 0.12),
0 3px 3px -2px rgba(0, 0, 0, 0.4);;
--shadow-elevation-4dp_-_box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
0 1px 10px 0 rgba(0, 0, 0, 0.12),
0 2px 4px -1px rgba(0, 0, 0, 0.4);;
--shadow-elevation-6dp_-_box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14),
0 1px 18px 0 rgba(0, 0, 0, 0.12),
0 3px 5px -1px rgba(0, 0, 0, 0.4);;
--shadow-elevation-8dp_-_box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 2px rgba(0, 0, 0, 0.12),
0 5px 5px -3px rgba(0, 0, 0, 0.4);;
--shadow-elevation-12dp_-_box-shadow: 0 12px 16px 1px rgba(0, 0, 0, 0.14),
0 4px 22px 3px rgba(0, 0, 0, 0.12),
0 6px 7px -4px rgba(0, 0, 0, 0.4);;
--shadow-elevation-16dp_-_box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
0 6px 30px 5px rgba(0, 0, 0, 0.12),
0 8px 10px -5px rgba(0, 0, 0, 0.4);;
--shadow-elevation-24dp_-_box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
0 9px 46px 8px rgba(0, 0, 0, 0.12),
0 11px 15px -7px rgba(0, 0, 0, 0.4);;
}
html:not(.style-scope) {
--google-red-100: #f4c7c3;
--google-red-300: #e67c73;
--google-red-500: #db4437;
--google-red-700: #c53929;
--google-blue-100: #c6dafc;
--google-blue-300: #7baaf7;
--google-blue-500: #4285f4;
--google-blue-700: #3367d6;
--google-green-100: #b7e1cd;
--google-green-300: #57bb8a;
--google-green-500: #0f9d58;
--google-green-700: #0b8043;
--google-yellow-100: #fce8b2;
--google-yellow-300: #f7cb4d;
--google-yellow-500: #f4b400;
--google-yellow-700: #f09300;
--google-grey-100: #f5f5f5;
--google-grey-300: #e0e0e0;
--google-grey-500: #9e9e9e;
--google-grey-700: #616161;
--paper-red-50: #ffebee;
--paper-red-100: #ffcdd2;
--paper-red-200: #ef9a9a;
--paper-red-300: #e57373;
--paper-red-400: #ef5350;
--paper-red-500: #f44336;
--paper-red-600: #e53935;
--paper-red-700: #d32f2f;
--paper-red-800: #c62828;
--paper-red-900: #b71c1c;
--paper-red-a100: #ff8a80;
--paper-red-a200: #ff5252;
--paper-red-a400: #ff1744;
--paper-red-a700: #d50000;
--paper-pink-50: #fce4ec;
--paper-pink-100: #f8bbd0;
--paper-pink-200: #f48fb1;
--paper-pink-300: #f06292;
--paper-pink-400: #ec407a;
--paper-pink-500: #e91e63;
--paper-pink-600: #d81b60;
--paper-pink-700: #c2185b;
--paper-pink-800: #ad1457;
--paper-pink-900: #880e4f;
--paper-pink-a100: #ff80ab;
--paper-pink-a200: #ff4081;
--paper-pink-a400: #f50057;
--paper-pink-a700: #c51162;
--paper-purple-50: #f3e5f5;
--paper-purple-100: #e1bee7;
--paper-purple-200: #ce93d8;
--paper-purple-300: #ba68c8;
--paper-purple-400: #ab47bc;
--paper-purple-500: #9c27b0;
--paper-purple-600: #8e24aa;
--paper-purple-700: #7b1fa2;
--paper-purple-800: #6a1b9a;
--paper-purple-900: #4a148c;
--paper-purple-a100: #ea80fc;
--paper-purple-a200: #e040fb;
--paper-purple-a400: #d500f9;
--paper-purple-a700: #aa00ff;
--paper-deep-purple-50: #ede7f6;
--paper-deep-purple-100: #d1c4e9;
--paper-deep-purple-200: #b39ddb;
--paper-deep-purple-300: #9575cd;
--paper-deep-purple-400: #7e57c2;
--paper-deep-purple-500: #673ab7;
--paper-deep-purple-600: #5e35b1;
--paper-deep-purple-700: #512da8;
--paper-deep-purple-800: #4527a0;
--paper-deep-purple-900: #311b92;
--paper-deep-purple-a100: #b388ff;
--paper-deep-purple-a200: #7c4dff;
--paper-deep-purple-a400: #651fff;
--paper-deep-purple-a700: #6200ea;
--paper-indigo-50: #e8eaf6;
--paper-indigo-100: #c5cae9;
--paper-indigo-200: #9fa8da;
--paper-indigo-300: #7986cb;
--paper-indigo-400: #5c6bc0;
--paper-indigo-500: #3f51b5;
--paper-indigo-600: #3949ab;
--paper-indigo-700: #303f9f;
--paper-indigo-800: #283593;
--paper-indigo-900: #1a237e;
--paper-indigo-a100: #8c9eff;
--paper-indigo-a200: #536dfe;
--paper-indigo-a400: #3d5afe;
--paper-indigo-a700: #304ffe;
--paper-blue-50: #e3f2fd;
--paper-blue-100: #bbdefb;
--paper-blue-200: #90caf9;
--paper-blue-300: #64b5f6;
--paper-blue-400: #42a5f5;
--paper-blue-500: #2196f3;
--paper-blue-600: #1e88e5;
--paper-blue-700: #1976d2;
--paper-blue-800: #1565c0;
--paper-blue-900: #0d47a1;
--paper-blue-a100: #82b1ff;
--paper-blue-a200: #448aff;
--paper-blue-a400: #2979ff;
--paper-blue-a700: #2962ff;
--paper-light-blue-50: #e1f5fe;
--paper-light-blue-100: #b3e5fc;
--paper-light-blue-200: #81d4fa;
--paper-light-blue-300: #4fc3f7;
--paper-light-blue-400: #29b6f6;
--paper-light-blue-500: #03a9f4;
--paper-light-blue-600: #039be5;
--paper-light-blue-700: #0288d1;
--paper-light-blue-800: #0277bd;
--paper-light-blue-900: #01579b;
--paper-light-blue-a100: #80d8ff;
--paper-light-blue-a200: #40c4ff;
--paper-light-blue-a400: #00b0ff;
--paper-light-blue-a700: #0091ea;
--paper-cyan-50: #e0f7fa;
--paper-cyan-100: #b2ebf2;
--paper-cyan-200: #80deea;
--paper-cyan-300: #4dd0e1;
--paper-cyan-400: #26c6da;
--paper-cyan-500: #00bcd4;
--paper-cyan-600: #00acc1;
--paper-cyan-700: #0097a7;
--paper-cyan-800: #00838f;
--paper-cyan-900: #006064;
--paper-cyan-a100: #84ffff;
--paper-cyan-a200: #18ffff;
--paper-cyan-a400: #00e5ff;
--paper-cyan-a700: #00b8d4;
--paper-teal-50: #e0f2f1;
--paper-teal-100: #b2dfdb;
--paper-teal-200: #80cbc4;
--paper-teal-300: #4db6ac;
--paper-teal-400: #26a69a;
--paper-teal-500: #009688;
--paper-teal-600: #00897b;
--paper-teal-700: #00796b;
--paper-teal-800: #00695c;
--paper-teal-900: #004d40;
--paper-teal-a100: #a7ffeb;
--paper-teal-a200: #64ffda;
--paper-teal-a400: #1de9b6;
--paper-teal-a700: #00bfa5;
--paper-green-50: #e8f5e9;
--paper-green-100: #c8e6c9;
--paper-green-200: #a5d6a7;
--paper-green-300: #81c784;
--paper-green-400: #66bb6a;
--paper-green-500: #4caf50;
--paper-green-600: #43a047;
--paper-green-700: #388e3c;
--paper-green-800: #2e7d32;
--paper-green-900: #1b5e20;
--paper-green-a100: #b9f6ca;
--paper-green-a200: #69f0ae;
--paper-green-a400: #00e676;
--paper-green-a700: #00c853;
--paper-light-green-50: #f1f8e9;
--paper-light-green-100: #dcedc8;
--paper-light-green-200: #c5e1a5;
--paper-light-green-300: #aed581;
--paper-light-green-400: #9ccc65;
--paper-light-green-500: #8bc34a;
--paper-light-green-600: #7cb342;
--paper-light-green-700: #689f38;
--paper-light-green-800: #558b2f;
--paper-light-green-900: #33691e;
--paper-light-green-a100: #ccff90;
--paper-light-green-a200: #b2ff59;
--paper-light-green-a400: #76ff03;
--paper-light-green-a700: #64dd17;
--paper-lime-50: #f9fbe7;
--paper-lime-100: #f0f4c3;
--paper-lime-200: #e6ee9c;
--paper-lime-300: #dce775;
--paper-lime-400: #d4e157;
--paper-lime-500: #cddc39;
--paper-lime-600: #c0ca33;
--paper-lime-700: #afb42b;
--paper-lime-800: #9e9d24;
--paper-lime-900: #827717;
--paper-lime-a100: #f4ff81;
--paper-lime-a200: #eeff41;
--paper-lime-a400: #c6ff00;
--paper-lime-a700: #aeea00;
--paper-yellow-50: #fffde7;
--paper-yellow-100: #fff9c4;
--paper-yellow-200: #fff59d;
--paper-yellow-300: #fff176;
--paper-yellow-400: #ffee58;
--paper-yellow-500: #ffeb3b;
--paper-yellow-600: #fdd835;
--paper-yellow-700: #fbc02d;
--paper-yellow-800: #f9a825;
--paper-yellow-900: #f57f17;
--paper-yellow-a100: #ffff8d;
--paper-yellow-a200: #ffff00;
--paper-yellow-a400: #ffea00;
--paper-yellow-a700: #ffd600;
--paper-amber-50: #fff8e1;
--paper-amber-100: #ffecb3;
--paper-amber-200: #ffe082;
--paper-amber-300: #ffd54f;
--paper-amber-400: #ffca28;
--paper-amber-500: #ffc107;
--paper-amber-600: #ffb300;
--paper-amber-700: #ffa000;
--paper-amber-800: #ff8f00;
--paper-amber-900: #ff6f00;
--paper-amber-a100: #ffe57f;
--paper-amber-a200: #ffd740;
--paper-amber-a400: #ffc400;
--paper-amber-a700: #ffab00;
--paper-orange-50: #fff3e0;
--paper-orange-100: #ffe0b2;
--paper-orange-200: #ffcc80;
--paper-orange-300: #ffb74d;
--paper-orange-400: #ffa726;
--paper-orange-500: #ff9800;
--paper-orange-600: #fb8c00;
--paper-orange-700: #f57c00;
--paper-orange-800: #ef6c00;
--paper-orange-900: #e65100;
--paper-orange-a100: #ffd180;
--paper-orange-a200: #ffab40;
--paper-orange-a400: #ff9100;
--paper-orange-a700: #ff6500;
--paper-deep-orange-50: #fbe9e7;
--paper-deep-orange-100: #ffccbc;
--paper-deep-orange-200: #ffab91;
--paper-deep-orange-300: #ff8a65;
--paper-deep-orange-400: #ff7043;
--paper-deep-orange-500: #ff5722;
--paper-deep-orange-600: #f4511e;
--paper-deep-orange-700: #e64a19;
--paper-deep-orange-800: #d84315;
--paper-deep-orange-900: #bf360c;
--paper-deep-orange-a100: #ff9e80;
--paper-deep-orange-a200: #ff6e40;
--paper-deep-orange-a400: #ff3d00;
--paper-deep-orange-a700: #dd2c00;
--paper-brown-50: #efebe9;
--paper-brown-100: #d7ccc8;
--paper-brown-200: #bcaaa4;
--paper-brown-300: #a1887f;
--paper-brown-400: #8d6e63;