-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathYouTube-Predictions.css
981 lines (921 loc) · 58.7 KB
/
YouTube-Predictions.css
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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,[email protected],300;8..144,400;8..144,500&display=swap');
:root {
--roboto-flex: "Roboto Flex","Roboto","Arial",sans-serif;
}
html {
font-family: var(--roboto-flex) !important;
}
/*icons*/
/*access-point*/
svg path[d="M14,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,10.9,14,12z M8.48,8.45L7.77,7.75C6.68,8.83,6,10.34,6,12 s0.68,3.17,1.77,4.25l0.71-0.71C7.57,14.64,7,13.39,7,12S7.57,9.36,8.48,8.45z M16.23,7.75l-0.71,0.71C16.43,9.36,17,10.61,17,12 s-0.57,2.64-1.48,3.55l0.71,0.71C17.32,15.17,18,13.66,18,12S17.32,8.83,16.23,7.75z M5.65,5.63L4.95,4.92C3.13,6.73,2,9.24,2,12 s1.13,5.27,2.95,7.08l0.71-0.71C4.02,16.74,3,14.49,3,12S4.02,7.26,5.65,5.63z M19.05,4.92l-0.71,0.71C19.98,7.26,21,9.51,21,12 s-1.02,4.74-2.65,6.37l0.71,0.71C20.87,17.27,22,14.76,22,12S20.87,6.73,19.05,4.92z"],
svg path[d="M16.94 6.91l-1.41 1.45c.9.94 1.46 2.22 1.46 3.64s-.56 2.71-1.46 3.64l1.41 1.45c1.27-1.31 2.05-3.11 2.05-5.09s-.78-3.79-2.05-5.09zM19.77 4l-1.41 1.45C19.98 7.13 21 9.44 21 12.01c0 2.57-1.01 4.88-2.64 6.54l1.4 1.45c2.01-2.04 3.24-4.87 3.24-7.99 0-3.13-1.23-5.96-3.23-8.01zM7.06 6.91c-1.27 1.3-2.05 3.1-2.05 5.09s.78 3.79 2.05 5.09l1.41-1.45c-.9-.94-1.46-2.22-1.46-3.64s.56-2.71 1.46-3.64L7.06 6.91zM5.64 5.45L4.24 4C2.23 6.04 1 8.87 1 11.99c0 3.13 1.23 5.96 3.23 8.01l1.41-1.45C4.02 16.87 3 14.56 3 11.99s1.01-4.88 2.64-6.54z"] {
d: path("M5.625 18.375Q4.4 17.125 3.7 15.5T3 12q0-1.875.7-3.5t1.925-2.875l.725.725q-1.1 1.1-1.725 2.55Q4 10.35 4 12q0 1.675.625 3.125T6.35 17.65ZM8.45 15.55q-.675-.7-1.062-1.6Q7 13.05 7 12q0-1.05.388-1.95.387-.9 1.062-1.6l.725.725q-.55.55-.863 1.275Q8 11.175 8 12q0 .825.312 1.55.313.725.863 1.275ZM12 13q-.4 0-.7-.3-.3-.3-.3-.7 0-.4.3-.7.3-.3.7-.3.4 0 .7.3.3.3.3.7 0 .4-.3.7-.3.3-.7.3Zm3.55 2.55-.725-.725q.55-.55.863-1.275Q16 12.825 16 12q0-.825-.312-1.55-.313-.725-.863-1.275l.725-.725q.675.7 1.063 1.6.387.9.387 1.95 0 1.05-.387 1.95-.388.9-1.063 1.6Zm2.825 2.825-.725-.725q1.1-1.1 1.725-2.55Q20 13.65 20 12q0-1.65-.625-3.1-.625-1.45-1.725-2.55l.725-.725Q19.6 6.875 20.3 8.5T21 12q0 1.875-.7 3.5t-1.925 2.875Z");
}
svg path[d="M16.94 6.91l-1.41 1.45c.9.94 1.46 2.22 1.46 3.64s-.56 2.71-1.46 3.64l1.41 1.45c1.27-1.31 2.05-3.11 2.05-5.09s-.78-3.79-2.05-5.09zM19.77 4l-1.41 1.45C19.98 7.13 21 9.44 21 12.01c0 2.57-1.01 4.88-2.64 6.54l1.4 1.45c2.01-2.04 3.24-4.87 3.24-7.99 0-3.13-1.23-5.96-3.23-8.01zM7.06 6.91c-1.27 1.3-2.05 3.1-2.05 5.09s.78 3.79 2.05 5.09l1.41-1.45c-.9-.94-1.46-2.22-1.46-3.64s.56-2.71 1.46-3.64L7.06 6.91zM5.64 5.45L4.24 4C2.23 6.04 1 8.87 1 11.99c0 3.13 1.23 5.96 3.23 8.01l1.41-1.45C4.02 16.87 3 14.56 3 11.99s1.01-4.88 2.64-6.54z"] + circle {
display: none;
}
svg path[d="M14,12c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S14,10.9,14,12z M6.36,6.33L4.95,4.92C3.13,6.73,2,9.24,2,12 s1.13,5.27,2.95,7.08l1.41-1.41C4.9,16.22,4,14.21,4,12S4.9,7.78,6.36,6.33z M19.05,4.92l-1.41,1.41C19.1,7.78,20,9.79,20,12 s-0.9,4.22-2.36,5.67l1.41,1.41C20.87,17.27,22,14.76,22,12S20.87,6.73,19.05,4.92z M9.19,9.16L7.77,7.75C6.68,8.83,6,10.34,6,12 s0.68,3.17,1.77,4.25l1.41-1.41C8.46,14.11,8,13.11,8,12S8.46,9.89,9.19,9.16z M16.23,7.75l-1.41,1.41C15.54,9.89,16,10.89,16,12 s-0.46,2.11-1.19,2.84l1.41,1.41C17.32,15.17,18,13.66,18,12S17.32,8.83,16.23,7.75z"] {
d: path("M5.625 18.375Q4.4 17.125 3.7 15.5T3 12q0-1.875.7-3.5t1.925-2.875l.725.725q-1.1 1.1-1.725 2.55Q4 10.35 4 12q0 1.675.625 3.125T6.35 17.65ZM8.45 15.55q-.675-.7-1.062-1.6Q7 13.05 7 12q0-1.05.388-1.95.387-.9 1.062-1.6l.725.725q-.55.55-.863 1.275Q8 11.175 8 12q0 .825.312 1.55.313.725.863 1.275ZM12 13q-.4 0-.7-.3-.3-.3-.3-.7 0-.4.3-.7.3-.3.7-.3.4 0 .7.3.3.3.3.7 0 .4-.3.7-.3.3-.7.3Zm3.55 2.55-.725-.725q.55-.55.863-1.275Q16 12.825 16 12q0-.825-.312-1.55-.313-.725-.863-1.275l.725-.725q.675.7 1.063 1.6.387.9.387 1.95 0 1.05-.387 1.95-.388.9-1.063 1.6Zm2.825 2.825-.725-.725q1.1-1.1 1.725-2.55Q20 13.65 20 12q0-1.65-.625-3.1-.625-1.45-1.725-2.55l.725-.725Q19.6 6.875 20.3 8.5T21 12q0 1.875-.7 3.5t-1.925 2.875Z");
}
/*arrow-left*/
svg path[d="M21,11v1H5.64l6.72,6.72l-0.71,0.71L3.72,11.5l7.92-7.92l0.71,0.71L5.64,11H21z"] {
d: path("M12 19.225 4.775 12 12 4.775l.725.7L6.7 11.5h12.525v1H6.7l6.025 6.025Z");
}
/*bell*/
svg path[d="M10,20h4c0,1.1-0.9,2-2,2S10,21.1,10,20z M20,17.35V19H4v-1.65l2-1.88v-5.15c0-2.92,1.56-5.22,4-5.98V3.96 c0-1.42,1.49-2.5,2.99-1.76C13.64,2.52,14,3.23,14,3.96l0,0.39c2.44,0.75,4,3.06,4,5.98v5.15L20,17.35z M19,17.77l-2-1.88v-5.47 c0-2.47-1.19-4.36-3.13-5.1c-1.26-0.53-2.64-0.5-3.84,0.03C8.15,6.11,7,7.99,7,10.42v5.47l-2,1.88V18h14V17.77z"] {
d: path("M4.5 18.725v-1h2v-7.5Q6.5 8.3 7.75 6.75T11 4.825v-1.7h2v1.7q2 .375 3.25 1.925t1.25 3.475v7.5h2v1Zm7.5-7Zm0 9.9q-.65 0-1.137-.462-.488-.463-.488-1.163h3.25q0 .7-.462 1.163-.463.462-1.163.462Zm-4.5-3.9h9v-7.5q0-1.85-1.325-3.175Q13.85 5.725 12 5.725q-1.85 0-3.175 1.325Q7.5 8.375 7.5 10.225Z");
}
/*bell-ring*/
svg path[d="M21.5 8.99992H19.5V8.80992C19.5 6.89992 18.39 5.18991 16.6 4.32991L17.47 2.52991C19.96 3.71991 21.5 6.12992 21.5 8.80992V8.99992ZM4.5 8.80992C4.5 6.89992 5.61 5.18991 7.4 4.32991L6.53 2.52991C4.04 3.71991 2.5 6.12992 2.5 8.80992V8.99992H4.5V8.80992ZM12 21.9999C13.1 21.9999 14 21.0999 14 19.9999H10C10 21.0999 10.9 21.9999 12 21.9999ZM20 17.3499V18.9999H4V17.3499L6 15.4699V10.3199C6 7.39991 7.56 5.09992 10 4.33992V3.95991C10 2.53991 11.49 1.45991 12.99 2.19991C13.64 2.51991 14 3.22991 14 3.95991V4.34991C16.44 5.09991 18 7.40991 18 10.3299V15.4799L20 17.3499Z"] {
d: path("M3 10q0-2 .825-3.775t2.3-3.075l.725.7Q5.5 5.025 4.75 6.612 4 8.2 4 10Zm17 0q0-1.8-.75-3.388-.75-1.587-2.1-2.762l.725-.7q1.475 1.3 2.3 3.075Q21 8 21 10ZM4.5 18.725v-1h2v-7.5Q6.5 8.3 7.75 6.75T11 4.825v-1.7h2v1.7q2 .375 3.25 1.925t1.25 3.475v7.5h2v1Zm7.5 2.9q-.65 0-1.137-.462-.488-.463-.488-1.163h3.25q0 .7-.462 1.163-.463.462-1.163.462Z");
}
/*bug*/
svg path[d="M20 10V8H17.19C16.74 7.22 16.12 6.54 15.37 6.04L17 4.41L15.59 3L13.42 5.17C13.39 5.16 13.37 5.16 13.34 5.16C13.18 5.12 13.02 5.1 12.85 5.07C12.79 5.06 12.74 5.05 12.68 5.04C12.46 5.02 12.23 5 12 5C11.51 5 11.03 5.07 10.58 5.18L10.6 5.17L8.41 3L7 4.41L8.62 6.04H8.63C7.88 6.54 7.26 7.22 6.81 8H4V10H6.09C6.03 10.33 6 10.66 6 11V12H4V14H6V15C6 15.34 6.04 15.67 6.09 16H4V18H6.81C7.85 19.79 9.78 21 12 21C14.22 21 16.15 19.79 17.19 18H20V16H17.91C17.96 15.67 18 15.34 18 15V14H20V12H18V11C18 10.66 17.96 10.33 17.91 10H20ZM16 15C16 17.21 14.21 19 12 19C9.79 19 8 17.21 8 15V11C8 8.79 9.79 7 12 7C14.21 7 16 8.79 16 11V15ZM10 14H14V16H10V14ZM10 10H14V12H10V10Z"] {
d: path("M12 20q-1.35 0-2.488-.663-1.137-.662-1.837-1.837h-2.8v-1H7.25q-.225-.725-.237-1.488Q7 14.25 7 13.5H4.875v-1H7q0-.775-.012-1.538-.013-.762.262-1.462H4.875v-1h2.8q.375-.65.925-1.163.55-.512 1.225-.837L8.05 4.7l.65-.65 2.125 2.1q.575-.175 1.163-.175.587 0 1.187.175l2.15-2.1.675.65-1.8 1.8q.675.325 1.213.837.537.513.912 1.163h2.8v1H16.75q.275.7.263 1.462Q17 11.725 17 12.5h2.125v1H17q0 .75-.012 1.512-.013.763-.238 1.488h2.375v1h-2.8q-.7 1.175-1.837 1.837Q13.35 20 12 20Zm0-1q1.65 0 2.825-1.175Q16 16.65 16 15v-4q0-1.65-1.175-2.825Q13.65 7 12 7q-1.65 0-2.825 1.175Q8 9.35 8 11v4q0 1.65 1.175 2.825Q10.35 19 12 19Zm-1.7-3.5h3.4v-1h-3.4Zm0-4h3.4v-1h-3.4ZM12 13Z");
}
/*cancel*/
svg path[d="M18.71 6C20.13 7.59 21 9.69 21 12c0 4.97-4.03 9-9 9-2.31 0-4.41-.87-6-2.29L18.71 6zM3 12c0-4.97 4.03-9 9-9 2.31 0 4.41.87 6 2.29L5.29 18C3.87 16.41 3 14.31 3 12zm9-10c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2z"] {
d: path("M12 21q-1.875 0-3.512-.712-1.638-.713-2.85-1.926-1.213-1.212-1.926-2.85Q3 13.875 3 12t.712-3.513q.713-1.637 1.926-2.85 1.212-1.212 2.85-1.925Q10.125 3 12 3t3.513.712q1.637.713 2.85 1.925 1.212 1.213 1.925 2.85Q21 10.125 21 12t-.712 3.512q-.713 1.638-1.925 2.85-1.213 1.213-2.85 1.926Q13.875 21 12 21Zm0-1q3.35 0 5.675-2.325Q20 15.35 20 12q0-1.475-.525-2.825T18 6.725L6.725 18q1.1.975 2.45 1.488Q10.525 20 12 20Zm-6-2.725L17.275 6Q16.2 5 14.838 4.5 13.475 4 12 4 8.65 4 6.325 6.325 4 8.65 4 12q0 1.475.513 2.825.512 1.35 1.487 2.45Z");
}
/*clock*/
svg path[d="M14.97,16.95L10,13.87V7h2v5.76l4.03,2.49L14.97,16.95z M12,3c-4.96,0-9,4.04-9,9s4.04,9,9,9s9-4.04,9-9S16.96,3,12,3 M12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12S6.48,2,12,2L12,2z"] {
d: path("m15.65 16.35.7-.7-3.85-3.85V7h-1v5.2ZM12 21q-1.875 0-3.512-.712-1.638-.713-2.85-1.926-1.213-1.212-1.926-2.85Q3 13.875 3 12t.712-3.513q.713-1.637 1.926-2.85 1.212-1.212 2.85-1.925Q10.125 3 12 3t3.513.712q1.637.713 2.85 1.925 1.212 1.213 1.925 2.85Q21 10.125 21 12t-.712 3.512q-.713 1.638-1.925 2.85-1.213 1.213-2.85 1.926Q13.875 21 12 21Zm0-9Zm0 8q3.325 0 5.663-2.337Q20 15.325 20 12t-2.337-5.663Q15.325 4 12 4T6.338 6.337Q4 8.675 4 12t2.338 5.663Q8.675 20 12 20Z");
}
/*close*/
svg path[d="M12.7,12l6.6,6.6l-0.7,0.7L12,12.7l-6.6,6.6l-0.7-0.7l6.6-6.6L4.6,5.4l0.7-0.7l6.6,6.6l6.6-6.6l0.7,0.7L12.7,12z"] {
d: path("m6.4 18.3-.7-.7 5.6-5.6-5.6-5.6.7-.7 5.6 5.6 5.6-5.6.7.7-5.6 5.6 5.6 5.6-.7.7-5.6-5.6Z");
}
/*closed-caption*/
svg path[d="M6,14v-4c0-0.55,.45-1,1-1h3c0.55,0,1,.45,1,1v1H9.5v-0.5h-2v3h2V13H11v1c0,.55-0.45,1-1,1H7C6.45,15,6,14.55,6,14z M14,15h3c0.55,0,1-0.45,1-1v-1h-1.5v0.5h-2v-3h2V11H18v-1c0-0.55-0.45-1-1-1h-3c-0.55,0-1,.45-1,1v4C13,14.55,13.45,15,14,15z M20,4H4v16h16V4 M21,3v18H3V3.01C3,3,3,3,3.01,3H21L21,3z"] {
d: path("M6.7 14.7h4.375v-1.475H10.2v.575H7.575v-3.6H10.2v.6h.875V9.3H6.7Zm6.225 0H17.3v-1.475h-.875v.575H13.8v-3.6h2.625v.6h.875V9.3h-4.375ZM4 19V5h16v14Zm1-1h14V6H5Zm0 0V6v12Z");
}
/*code-tags*/
svg path[d="M14.1 24.9L7.2 18.0l6.9-6.9L12.0 9.0l-9.0 9.0 9.0 9.0 2.1-2.1zm7.8 .0l6.9-6.9-6.9-6.9L24.0 9.0l9.0 9.0-9.0 9.0-2.1-2.1z"] {
d: path("M12 25.95L4.05005 18L12 10.05L13.0875 11.1L6.18755 18L13.05 24.9L12 25.95ZM24 25.95L22.9125 24.9L29.8125 18L22.95 11.1L24 10.05L31.95 18L24 25.95Z");
}
/*cog*/
svg path[d="M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,8c-2.21,0-4,1.79-4,4s1.79,4,4,4s4-1.79,4-4 S14.21,8,12,8L12,8z M13.22,3l0.55,2.2l0.13,0.51l0.5,0.18c0.61,0.23,1.19,0.56,1.72,0.98l0.4,0.32l0.5-0.14l2.17-0.62l1.22,2.11 l-1.63,1.59l-0.37,0.36l0.08,0.51c0.05,0.32,0.08,0.64,0.08,0.98s-0.03,0.66-0.08,0.98l-0.08,0.51l0.37,0.36l1.63,1.59l-1.22,2.11 l-2.17-0.62l-0.5-0.14l-0.4,0.32c-0.53,0.43-1.11,0.76-1.72,0.98l-0.5,0.18l-0.13,0.51L13.22,21h-2.44l-0.55-2.2l-0.13-0.51 l-0.5-0.18C9,17.88,8.42,17.55,7.88,17.12l-0.4-0.32l-0.5,0.14l-2.17,0.62L3.6,15.44l1.63-1.59l0.37-0.36l-0.08-0.51 C5.47,12.66,5.44,12.33,5.44,12s0.03-0.66,0.08-0.98l0.08-0.51l-0.37-0.36L3.6,8.56l1.22-2.11l2.17,0.62l0.5,0.14l0.4-0.32 C8.42,6.45,9,6.12,9.61,5.9l0.5-0.18l0.13-0.51L10.78,3H13.22 M14,2h-4L9.26,4.96c-0.73,0.27-1.4,0.66-2,1.14L4.34,5.27l-2,3.46 l2.19,2.13C4.47,11.23,4.44,11.61,4.44,12s0.03,0.77,0.09,1.14l-2.19,2.13l2,3.46l2.92-0.83c0.6,0.48,1.27,0.87,2,1.14L10,22h4 l0.74-2.96c0.73-0.27,1.4-0.66,2-1.14l2.92,0.83l2-3.46l-2.19-2.13c0.06-0.37,0.09-0.75,0.09-1.14s-0.03-0.77-0.09-1.14l2.19-2.13 l-2-3.46L16.74,6.1c-0.6-0.48-1.27-0.87-2-1.14L14,2L14,2z"] {
d: path("m10.125 21-.35-2.9q-.475-.125-1.037-.437Q8.175 17.35 7.8 17l-2.675 1.125-1.875-3.25 2.325-1.75q-.05-.25-.087-.538-.038-.287-.038-.562 0-.25.038-.538.037-.287.087-.612L3.25 9.125l1.875-3.2 2.65 1.1q.45-.375.963-.675.512-.3 1.012-.45l.375-2.9h3.75l.35 2.9q.575.225 1.013.475.437.25.912.65l2.725-1.1 1.875 3.2-2.4 1.8q.1.3.1.563V12q0 .225-.012.488-.013.262-.088.637l2.35 1.75-1.875 3.25-2.675-1.15q-.475.4-.937.675-.463.275-.988.45l-.35 2.9Zm1.85-6.5q1.05 0 1.775-.725.725-.725.725-1.775 0-1.05-.725-1.775-.725-.725-1.775-.725-1.05 0-1.775.725-.725.725-.725 1.775 0 1.05.725 1.775.725.725 1.775.725Zm0-1q-.625 0-1.062-.438-.438-.437-.438-1.062t.438-1.062q.437-.438 1.062-.438t1.063.438q.437.437.437 1.062t-.437 1.062q-.438.438-1.063.438ZM12 12Zm-1 8h1.95l.375-2.7q.75-.2 1.363-.55.612-.35 1.237-.975L18.4 16.85l1-1.7-2.175-1.65q.125-.425.163-.788.037-.362.037-.712 0-.375-.037-.713-.038-.337-.163-.762L19.45 8.85l-1-1.7-2.55 1.075q-.45-.5-1.187-.938-.738-.437-1.413-.587L13 4h-2l-.3 2.7q-.75.15-1.388.512-.637.363-1.262.988l-2.5-1.05-1 1.7 2.175 1.625q-.125.325-.175.725-.05.4-.05.825 0 .375.05.75t.15.725l-2.15 1.65 1 1.7 2.475-1.05q.6.6 1.225.95.625.35 1.425.55Z");
}
/*compass*/
svg path[d="M9.8,9.8l-3.83,8.23l8.23-3.83l3.83-8.23L9.8,9.8z M13.08,12.77c-0.21,0.29-0.51,0.48-0.86,0.54 c-0.07,0.01-0.15,0.02-0.22,0.02c-0.28,0-0.54-0.08-0.77-0.25c-0.29-0.21-0.48-0.51-0.54-0.86c-0.06-0.35,0.02-0.71,0.23-0.99 c0.21-0.29,0.51-0.48,0.86-0.54c0.35-0.06,0.7,0.02,0.99,0.23c0.29,0.21,0.48,0.51,0.54,0.86C13.37,12.13,13.29,12.48,13.08,12.77z M12,3c4.96,0,9,4.04,9,9s-4.04,9-9,9s-9-4.04-9-9S7.04,3,12,3 M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2 L12,2z"] {
d: path("m7.35 16.65 5.95-3.35 3.35-5.95-5.95 3.35ZM12 13q-.425 0-.712-.288Q11 12.425 11 12t.288-.713Q11.575 11 12 11t.713.287Q13 11.575 13 12t-.287.712Q12.425 13 12 13Zm0 7.7q-1.8 0-3.387-.688-1.588-.687-2.763-1.862-1.175-1.175-1.863-2.763Q3.3 13.8 3.3 12t.687-3.388Q4.675 7.025 5.85 5.85t2.763-1.863Q10.2 3.3 12 3.3t3.388.687q1.587.688 2.762 1.863t1.863 2.762Q20.7 10.2 20.7 12q0 1.8-.687 3.387-.688 1.588-1.863 2.763-1.175 1.175-2.762 1.862Q13.8 20.7 12 20.7Zm0-.7q3.35 0 5.675-2.325Q20 15.35 20 12q0-3.35-2.325-5.675Q15.35 4 12 4 8.65 4 6.325 6.325 4 8.65 4 12q0 3.35 2.325 5.675Q8.65 20 12 20Zm0-8Z");
}
/*cut*/
svg path[d="M8,7c0,0.55-0.45,1-1,1S6,7.55,6,7c0-0.55,0.45-1,1-1S8,6.45,8,7z M7,16c-0.55,0-1,0.45-1,1c0,0.55,0.45,1,1,1s1-0.45,1-1 C8,16.45,7.55,16,7,16z M10.79,8.23L21,18.44V20h-3.27l-5.76-5.76l-1.27,1.27C10.89,15.97,11,16.47,11,17c0,2.21-1.79,4-4,4 c-2.21,0-4-1.79-4-4c0-2.21,1.79-4,4-4c0.42,0,0.81,0.08,1.19,0.2l1.37-1.37l-1.11-1.11C8,10.89,7.51,11,7,11c-2.21,0-4-1.79-4-4 c0-2.21,1.79-4,4-4c2.21,0,4,1.79,4,4C11,7.43,10.91,7.84,10.79,8.23z M10.08,8.94L9.65,8.5l0.19-0.58C9.95,7.58,10,7.28,10,7 c0-1.65-1.35-3-3-3S4,5.35,4,7c0,1.65,1.35,3,3,3c0.36,0,0.73-0.07,1.09-0.21L8.7,9.55l0.46,0.46l1.11,1.11l0.71,0.71l-0.71,0.71 L8.9,13.91l-0.43,0.43l-0.58-0.18C7.55,14.05,7.27,14,7,14c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3 c0-0.38-0.07-0.75-0.22-1.12l-0.25-0.61L10,14.8l1.27-1.27l0.71-0.71l0.71,0.71L18.15,19H20v-0.15L10.08,8.94z M17.73,4H21v1.56 l-5.52,5.52l-2.41-2.41L17.73,4z M18.15,5l-3.67,3.67l1,1L20,5.15V5H18.15z"] {
d: path("m19.375 20.55-7.3-7.325L8.95 16.35q.225.375.325.788.1.412.1.862 0 1.375-.963 2.337-.962.963-2.337.963-1.35 0-2.325-.963-.975-.962-.975-2.337 0-1.35.963-2.325.962-.975 2.337-.975.45 0 .863.1.412.1.787.325L10.85 12 7.725 8.875q-.375.225-.787.325-.413.1-.863.1-1.375 0-2.337-.963Q2.775 7.375 2.775 6q0-1.35.963-2.325Q4.7 2.7 6.075 2.7q1.375 0 2.337.962.963.963.963 2.338 0 .45-.1.862-.1.413-.325.788l12.275 12.275v.625Zm-4.75-9.85-1.25-1.25 6-6h1.85v.625Zm-8.55-2.4q.95 0 1.625-.675T8.375 6q0-.95-.675-1.625T6.075 3.7q-.95 0-1.625.675T3.775 6q0 .95.675 1.625t1.625.675Zm6 3.7Zm-6 8.3q.95 0 1.625-.675T8.375 18q0-.95-.675-1.625T6.075 15.7q-.95 0-1.625.675T3.775 18q0 .95.675 1.625t1.625.675Z");
}
/*delete*/
svg path[d="M11,17H9V8h2V17z M15,8h-2v9h2V8z M19,4v1h-1v16H6V5H5V4h4V3h6v1H19z M17,5H7v15h10V5z"] {
d: path("M6 20V6H5V5h4v-.775h6V5h4v1h-1v14Zm1-1h10V6H7Zm2.8-2h1V8h-1Zm3.4 0h1V8h-1ZM7 6v13Z");
}
/*download*/
svg path[d="M17 18V19H6V18H17ZM16.5 11.4L15.8 10.7L12 14.4V4H11V14.4L7.2 10.6L6.5 11.3L11.5 16.3L16.5 11.4Z"] {
d: path("M12 15.225 8.45 11.7l.725-.725L11.5 13.3V4.65h1v8.65l2.325-2.325.725.725ZM5 19v-4h1v3h12v-3h1v4Z");
}
/*dots-horizontal*/
svg path[d="M7.5,12c0,0.83-0.67,1.5-1.5,1.5S4.5,12.83,4.5,12s0.67-1.5,1.5-1.5S7.5,11.17,7.5,12z M12,10.5c-0.83,0-1.5,0.67-1.5,1.5 s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5S12.83,10.5,12,10.5z M18,10.5c-0.83,0-1.5,0.67-1.5,1.5s0.67,1.5,1.5,1.5s1.5-0.67,1.5-1.5 S18.83,10.5,18,10.5z"] {
d: path("M6.45 13q-.4 0-.7-.288-.3-.287-.3-.712t.3-.713q.3-.287.7-.287.425 0 .712.287.288.288.288.713t-.288.712Q6.875 13 6.45 13ZM12 13q-.425 0-.712-.288Q11 12.425 11 12t.288-.713Q11.575 11 12 11t.713.287Q13 11.575 13 12t-.287.712Q12.425 13 12 13Zm5.55 0q-.425 0-.713-.288-.287-.287-.287-.712t.287-.713q.288-.287.713-.287.4 0 .7.287.3.288.3.713t-.3.712q-.3.288-.7.288Z");
}
/*filmstrip*/
svg path[d="M4,21H3V3h1V21z M8,15H6v2h2V15z M8,11H6v2h2V11z M8,7H6v2h2V7z M18,15h-2v2h2V15z M8,19H6v2h2V19z M18,19h-2v2h2V19z M18,11h-2v2h2V11z M18,7h-2v2h2V7z M8,3H6v2h2V3z M18,3h-2v2h2V3z M21,3h-1v18h1V3z"] {
d: path("M4.5 20.5v-17h1v2h3v-2h7v2h3v-2h1v17h-1v-2h-3v2h-7v-2h-3v2Zm1-3h3v-3h-3Zm0-4h3v-3h-3Zm0-4h3v-3h-3Zm10 8h3v-3h-3Zm0-4h3v-3h-3Zm0-4h3v-3h-3Zm-6 10h5v-15h-5Zm0-15h5Z");
}
/*flag*/
svg path[d="M13.18,4l0.24,1.2L13.58,6h0.82H19v7h-5.18l-0.24-1.2L13.42,11H12.6H6V4H13.18 M14,3H5v18h1v-9h6.6l0.4,2h7V5h-5.6L14,3 L14,3z"] {
d: path("M6 20.5V5h7.2l.4 2H19v8h-5.2l-.4-2H7v7.5ZM12.5 10Zm2.15 4H18V8h-5.25l-.4-2H7v6h7.25Z");
}
/*help-circle*/
svg path[d="M15.36,9.96c0,1.09-0.67,1.67-1.31,2.24c-0.53,0.47-1.03,0.9-1.16,1.6L12.85,14h-1.75l0.03-0.28 c0.14-1.17,0.8-1.76,1.47-2.27c0.52-0.4,1.01-0.77,1.01-1.49c0-0.51-0.23-0.97-0.63-1.29c-0.4-0.31-0.92-0.42-1.42-0.29 c-0.59,0.15-1.05,0.67-1.19,1.34L10.32,10H8.57l0.06-0.42c0.2-1.4,1.15-2.53,2.42-2.87c1.05-0.29,2.14-0.08,2.98,0.57 C14.88,7.92,15.36,8.9,15.36,9.96z M12,18c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S11.45,18,12,18z M12,3c-4.96,0-9,4.04-9,9 s4.04,9,9,9s9-4.04,9-9S16.96,3,12,3 M12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12S6.48,2,12,2L12,2z"]
,svg path[d="M2 12C2 6.48 6.48 2 12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12ZM13 16V18H11V16H13ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20ZM8 10C8 7.79 9.79 6 12 6C14.21 6 16 7.79 16 10C16 11.28 15.21 11.97 14.44 12.64C13.71 13.28 13 13.90 13 15H11C11 13.17 11.94 12.45 12.77 11.82C13.42 11.32 14 10.87 14 10C14 8.9 13.1 8 12 8C10.9 8 10 8.9 10 10H8Z"] {
d: path("M15.36,9.96c0,1.09-0.67,1.67-1.31,2.24c-0.53,0.47-1.03,0.9-1.16,1.6L12.85,14h-1.75l0.03-0.28 c0.14-1.17,0.8-1.76,1.47-2.27c0.52-0.4,1.01-0.77,1.01-1.49c0-0.51-0.23-0.97-0.63-1.29c-0.4-0.31-0.92-0.42-1.42-0.29 c-0.59,0.15-1.05,0.67-1.19,1.34L10.32,10H8.57l0.06-0.42c0.2-1.4,1.15-2.53,2.42-2.87c1.05-0.29,2.14-0.08,2.98,0.57 C14.88,7.92,15.36,8.9,15.36,9.96z M12,18c0.55,0,1-0.45,1-1s-0.45-1-1-1s-1,0.45-1,1S11.45,18,12,18z M12,3c-4.96,0-9,4.04-9,9 s4.04,9,9,9s9-4.04,9-9S16.96,3,12,3 M12,2c5.52,0,10,4.48,10,10s-4.48,10-10,10S2,17.52,2,12S6.48,2,12,2L12,2z");
}
/*home*/
svg path[d="M12,4.33l7,6.12V20H15V14H9v6H5V10.45l7-6.12M12,3,4,10V21h6V15h4v6h6V10L12,3Z"] {
d: path("M5 20V9.5l7-5.275L19 9.5V20h-5.15v-6.425h-3.7V20Zm1-1h3.15v-6.425h5.7V19H18v-9l-6-4.5L6 10Zm6-6.75Z");
}
svg path[d="M4,10V21h6V15h4v6h6V10L12,3Z"] {
d: path("M5 20V9.5l7-5.275L19 9.5V20h-5.15v-6.425h-3.7V20Z");
}
/*history*/
svg path[d="M14.97,16.95L10,13.87V7h2v5.76l4.03,2.49L14.97,16.95z M22,12c0,5.51-4.49,10-10,10S2,17.51,2,12h1c0,4.96,4.04,9,9,9 s9-4.04,9-9s-4.04-9-9-9C8.81,3,5.92,4.64,4.28,7.38C4.17,7.56,4.06,7.75,3.97,7.94C3.96,7.96,3.95,7.98,3.94,8H8v1H1.96V3h1v4.74 C3,7.65,3.03,7.57,3.07,7.49C3.18,7.27,3.3,7.07,3.42,6.86C5.22,3.86,8.51,2,12,2C17.51,2,22,6.49,22,12z"] {
d: path("M11.95 20q-3.025 0-5.3-1.988Q4.375 16.025 4.025 13H5.05q.4 2.575 2.338 4.288Q9.325 19 11.95 19q2.925 0 4.963-2.038Q18.95 14.925 18.95 12t-2.037-4.963Q14.875 5 11.95 5q-1.55 0-2.912.65-1.363.65-2.413 1.8h2.5v1H4.95V4.3h1v2.4q1.175-1.275 2.738-1.987Q10.25 4 11.95 4q1.675 0 3.125.625t2.538 1.713q1.087 1.087 1.712 2.537T19.95 12q0 1.675-.625 3.125t-1.712 2.538q-1.088 1.087-2.538 1.712-1.45.625-3.125.625Zm3.225-4.15-3.65-3.65V7h1v4.8l3.35 3.35Z");
}
/*link*/
svg path[d="M5.85 18.0c0.0-2.56 2.08-4.65 4.65-4.65h6.0V10.5H10.5c-4.14 .0-7.5 3.36-7.5 7.5s3.36 7.5 7.5 7.5h6.0v-2.85H10.5c-2.56 .0-4.65-2.08-4.65-4.65zM12.0 19.5h12.0v-3.0H12.0v3.0zm13.5-9.0h-6.0v2.85h6.0c2.56 .0 4.65 2.08 4.65 4.65s-2.08 4.65-4.65 4.65h-6.0V25.5h6.0c4.14 .0 7.5-3.36 7.5-7.5s-3.36-7.5-7.5-7.5z"] {
d: path("M15.9375 24.1125H10.5C8.79995 24.1125 7.35645 23.5185 6.16945 22.3305C4.98145 21.1435 4.38745 19.7 4.38745 18C4.38745 16.3 4.98145 14.8565 6.16945 13.6695C7.35645 12.4815 8.79995 11.8875 10.5 11.8875H15.9375V13.3875H10.5C9.22495 13.3875 8.13745 13.8375 7.23745 14.7375C6.33745 15.6375 5.88745 16.725 5.88745 18C5.88745 19.275 6.33745 20.3625 7.23745 21.2625C8.13745 22.1625 9.22495 22.6125 10.5 22.6125H15.9375V24.1125ZM12.75 18.75V17.25H23.25V18.75H12.75ZM20.0625 24.1125V22.6125H25.5C26.775 22.6125 27.8625 22.1625 28.7625 21.2625C29.6625 20.3625 30.1125 19.275 30.1125 18C30.1125 16.725 29.6625 15.6375 28.7625 14.7375C27.8625 13.8375 26.775 13.3875 25.5 13.3875H20.0625V11.8875H25.5C27.2 11.8875 28.644 12.4815 29.832 13.6695C31.019 14.8565 31.6125 16.3 31.6125 18C31.6125 19.7 31.019 21.1435 29.832 22.3305C28.644 23.5185 27.2 24.1125 25.5 24.1125H20.0625Z");
}
/*login*/
svg path[d="M20,3v18H8v-1h11V4H8V3H20z M11.1,15.1l0.7,0.7l4.4-4.4l-4.4-4.4l-0.7,0.7l3.1,3.1H3v1h11.3L11.1,15.1z"] {
d: path("m11.225 16.05-.7-.725L12.85 13H4.2v-1h8.65l-2.325-2.325.7-.725 3.55 3.55Zm.55 4.95v-1H18.8V5h-7.025V4H19.8v17Z");
}
/*lightbulb*/
svg path[d="M16,21h-2.28c-0.35,0.6-0.98,1-1.72,1s-1.38-0.4-1.72-1H8v-1h8V21z M20,10c0,2.96-1.61,5.54-4,6.92V19H8v-2.08 C5.61,15.54,4,12.96,4,10c0-4.42,3.58-8,8-8S20,5.58,20,10z M15,18v-1.66l0.5-0.29C17.66,14.8,19,12.48,19,10c0-3.86-3.14-7-7-7 s-7,3.14-7,7c0,2.48,1.34,4.8,3.5,6.06L9,16.34V18H15z"] {
d: path("M12 21.15q-.7 0-1.2-.462-.5-.463-.6-1.138h3.6q-.1.675-.6 1.138-.5.462-1.2.462Zm-3.5-3.375v-1h7v1ZM8.55 15q-1.4-.925-2.225-2.35Q5.5 11.225 5.5 9.5q0-2.725 1.888-4.613Q9.275 3 12 3t4.613 1.887Q18.5 6.775 18.5 9.5q0 1.725-.825 3.15-.825 1.425-2.225 2.35Zm.3-1h6.3q1.125-.8 1.738-1.975.612-1.175.612-2.525 0-2.3-1.6-3.9T12 4Q9.7 4 8.1 5.6T6.5 9.5q0 1.35.613 2.525Q7.725 13.2 8.85 14ZM12 14Z");
}
/*keyboard*/
svg path[d="M16,16H8v-2h8V16z M16,11h-2v2h2V11z M19,11h-2v2h2V11z M13,11h-2v2h2V11z M10,11H8v2h2V11z M7,11H5v2h2V11z M16,8h-2v2h2V8 z M19,8h-2v2h2V8z M13,8h-2v2h2V8z M10,8H8v2h2V8z M7,8H5v2h2V8z M22,5v14H2V5H22z M21,6H3v12h18V6z"] {
d: path("M4 17h16V7H4Zm-1 1V6h18v12Zm8.225-8.225h1.55v-1.55h-1.55Zm0 3h1.55v-1.55h-1.55Zm-3-3h1.55v-1.55h-1.55Zm0 3h1.55v-1.55h-1.55Zm-3 0h1.55v-1.55h-1.55Zm0-3h1.55v-1.55h-1.55Zm3 6h7.55v-1.55h-7.55Zm6-3h1.55v-1.55h-1.55Zm0-3h1.55v-1.55h-1.55Zm3 3h1.55v-1.55h-1.55Zm0-3h1.55v-1.55h-1.55ZM4 17V7v10Z");
}
/*magnify*/
svg path[d="M20.87,20.17l-5.59-5.59C16.35,13.35,17,11.75,17,10c0-3.87-3.13-7-7-7s-7,3.13-7,7s3.13,7,7,7c1.75,0,3.35-0.65,4.58-1.71 l5.59,5.59L20.87,20.17z M10,16c-3.31,0-6-2.69-6-6s2.69-6,6-6s6,2.69,6,6S13.31,16,10,16z"] {
d: path("m19.475 20.15-6.25-6.25q-.75.625-1.725.975-.975.35-1.95.35-2.425 0-4.087-1.663Q3.8 11.9 3.8 9.5q0-2.4 1.663-4.063 1.662-1.662 4.062-1.662 2.4 0 4.075 1.662Q15.275 7.1 15.275 9.5q0 1.05-.375 2.025-.375.975-.975 1.65L20.2 19.45ZM9.55 14.225q1.975 0 3.35-1.362Q14.275 11.5 14.275 9.5T12.9 6.137q-1.375-1.362-3.35-1.362-2 0-3.375 1.362Q4.8 7.5 4.8 9.5t1.375 3.363q1.375 1.362 3.375 1.362Z");
}
/*menu*/
svg path[d="M21,6H3V5h18V6z M21,11H3v1h18V11z M21,17H3v1h18V17z"] {
d: path("M3.5 17.275v-1h17v1Zm0-4.775v-1h17v1Zm0-4.775v-1h17v1Z");
}
/*message-alert*/
svg path[d="M13,14h-2v-2h2V14z M13,5h-2v6h2V5z M19,3H5v16.59l3.29-3.29L8.59,16H9h10V3 M20,2v15H9l-5,5V2H20L20,2z"] {
d: path("M11.5 11.45h1V5.375h-1Zm.5 2.975q.25 0 .438-.175.187-.175.187-.45 0-.25-.187-.425Q12.25 13.2 12 13.2t-.438.175q-.187.175-.187.425 0 .275.187.45.188.175.438.175Zm-9 5.65V3h18v14H6.075Zm1-2.425L5.65 16H20V4H4Zm0 0V4v12Z");
}
/*pause*/
svg path[d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"] {
d: path("M14.5 18V6h3.075v12Zm-8.075 0V6H9.5v12Z");
}
/*play*/
svg path[d="M8 5v14l11-7z"] {
d: path("M9 17.2V6.8l8.15 5.2Zm1-5.2Zm0 3.35L15.3 12 10 8.65Z");
}
/*play-box*/
svg path[d="M10,8l6,4l-6,4V8L10,8z M21,3v18H3V3H21z M20,4H4v16h16V4z"] {
d: path("M9.875 15.575 15.45 12 9.875 8.425ZM4 20V4h16v16Zm1-1h14V5H5Zm0 0V5v14Z");
}
/*play-box-multiple*/
svg path[d="M11,7l6,3.5L11,14V7L11,7z M18,20H4V6H3v15h15V20z M21,18H6V3h15V18z M7,17h13V4H7V17z"] {
d: path("M11.5 13.575 17.075 10 11.5 6.425ZM6.5 17V3h14v14Zm1-1h12V4h-12Zm-4 4V6.625h1V19h12.375v1Zm4-4V4v12Z");
}
/*play-speed*/
svg path[d="M10,8v8l6-4L10,8L10,8z M6.3,5L5.7,4.2C7.2,3,9,2.2,11,2l0.1,1C9.3,3.2,7.7,3.9,6.3,5z M5,6.3L4.2,5.7C3,7.2,2.2,9,2,11 l1,.1C3.2,9.3,3.9,7.7,5,6.3z M5,17.7c-1.1-1.4-1.8-3.1-2-4.8L2,13c0.2,2,1,3.8,2.2,5.4L5,17.7z M11.1,21c-1.8-0.2-3.4-0.9-4.8-2 l-0.6,.8C7.2,21,9,21.8,11,22L11.1,21z M22,12c0-5.2-3.9-9.4-9-10l-0.1,1c4.6,.5,8.1,4.3,8.1,9s-3.5,8.5-8.1,9l0.1,1 C18.2,21.5,22,17.2,22,12z"] {
d: path("M4.95 17.6q-.85-1.1-1.3-2.188-.45-1.087-.6-2.412h1q.15 1.1.55 2.087.4.988 1.05 1.813ZM3.05 11q.15-1.325.6-2.413Q4.1 7.5 4.95 6.4l.7.725Q5 7.95 4.6 8.925 4.2 9.9 4.05 11Zm7.9 9.95q-1.45-.2-2.475-.65-1.025-.45-2.125-1.275l.7-.725q.825.625 1.8 1.063.975.437 2.1.587ZM7.1 5.675l-.725-.725q1.1-.8 2.138-1.25Q9.55 3.25 11 3.05v1q-1.125.15-2.113.575Q7.9 5.05 7.1 5.675Zm2.9 9.9v-7.15L15.575 12Zm3 5.375v-1q3.025-.425 5.013-2.675Q20 15.025 20 12q0-3.025-1.987-5.275Q16.025 4.475 13 4.05v-1q3.45.375 5.725 2.925Q21 8.525 21 12q0 3.475-2.275 6.025Q16.45 20.575 13 20.95Z");
}
/*playlist-play*/
svg path[d="M22,7H2v1h20V7z M13,12H2v-1h11V12z M13,16H2v-1h11V16z M15,19v-8l7,4L15,19z"] {
d: path("M3.375 15.5v-1h7v1Zm0-4v-1h11v1Zm0-4v-1h11v1ZM16 20.075v-6.15L20.625 17Z");
}
/*quote-close*/
svg path[d="M17.5,7c1.93,0,3.5,1.57,3.5,3.5c0,1-0.53,4.5-0.85,6.5h-2.02l0.24-1.89l0.14-1.09l-1.1-0.03C15.5,13.94,14,12.4,14,10.5 C14,8.57,15.57,7,17.5,7 M6.5,7C8.43,7,10,8.57,10,10.5c0,1-0.53,4.5-0.85,6.5H7.13l0.24-1.89l0.14-1.09l-1.1-0.03 C4.5,13.94,3,12.4,3,10.5C3,8.57,4.57,7,6.5,7 M17.5,6C15.01,6,13,8.01,13,10.5c0,2.44,1.95,4.42,4.38,4.49L17,18h4c0,0,1-6,1-7.5 C22,8.01,19.99,6,17.5,6L17.5,6z M6.5,6C4.01,6,2,8.01,2,10.5c0,2.44,1.95,4.42,4.38,4.49L6,18h4c0,0,1-6,1-7.5 C11,8.01,8.99,6,6.5,6L6.5,6z"] {
d: path("M14.5 11.5h4v-4h-4Zm-9 0h4v-4h-4Zm10.9 5 1.825-4H13.5v-6h6v6l-1.8 4Zm-9 0 1.825-4H4.5v-6h6v6l-1.8 4Zm.1-7Zm9 0Z");
}
/*repeat*/
svg path[d="M7 7H17V10L21 6L17 2V5H5V11H7V7ZM17 17H7V14L3 18L7 22V19H19V13H17V17Z"] {
d: path("M7.2 21.125 3.875 17.8 7.2 14.5l.7.725L5.8 17.3h11.5v-4h1v5H5.8l2.1 2.1ZM5.7 10.7v-5h12.5l-2.1-2.1.7-.725L20.125 6.2 16.8 9.5l-.7-.725L18.2 6.7H6.7v4Z");
}
/*share*/
svg path[d="M15,5.63L20.66,12L15,18.37V15v-1h-1c-3.96,0-7.14,1-9.75,3.09c1.84-4.07,5.11-6.4,9.89-7.1L15,9.86V9V5.63 M14,3v6 C6.22,10.13,3.11,15.33,2,21c2.78-3.97,6.44-6,12-6v6l8-9L14,3L14,3z"] {
d: path("M3.6 18.5h1V15q0-1.45 1.013-2.475Q6.625 11.5 8.1 11.5h10.4l-4.1 4.1.7.7 5.3-5.3-5.3-5.3-.7.7 4.1 4.1H8.1q-1.875 0-3.187 1.312Q3.6 13.125 3.6 15Z");
}
/*sort-variant*/
svg path[d="M21,6H3V5h18V6z M15,11H3v1h12V11z M9,17H3v1h6V17z"] {
d: path("M3.5 17.5v-1h5v1Zm0-5.375v-1h11v1Zm0-5.4v-1h17v1Z");
}
svg path[d="M21,6.99H3V5h18V6.99z M15,11H3v1.99h12V11z M9,17H3v1.99h6V17z"] {
d: path("M3.5 17.5v-1h5v1Zm0-5.375v-1h11v1Zm0-5.4v-1h17v1Z");
}
/*styler*/
svg path[d="M12.5,6.44v-0.5C13.36,5.71,14,4.93,14,4c0-1.1-0.9-2-2-2s-2,0.9-2,2h1c0-0.55,0.45-1,1-1s1,0.45,1,1s-0.45,1-1,1h-0.5v1.44 L4,13h2v6h1v2h1v-2h2v3h1v-3h2v2h1v-2h1v-3h3v-3h2L12.5,6.44z M6.66,12L12,7.33L17.34,12H6.66z M14,18H7v-5h7V18z M15,15v-2h2v2H15z"] {
d: path("M7.5 21.5v-6H5.4q-.8 0-1.35-.55T3.5 13.6q0-.575.3-1.075t.85-.725l6.85-3.05V7.425q-.875-.175-1.438-.85Q9.5 5.9 9.5 5q0-1.05.725-1.775Q10.95 2.5 12 2.5q1.05 0 1.775.725Q14.5 3.95 14.5 5h-1.05q0-.625-.412-1.062Q12.625 3.5 12 3.5t-1.062.438Q10.5 4.375 10.5 5t.438 1.062Q11.375 6.5 12 6.5q.225 0 .363.137.137.138.137.363v1.75l6.85 3.05q.55.225.85.712.3.488.3 1.088 0 .8-.55 1.35t-1.35.55h-2.1v6Zm1-7h7Zm-3.1 0h2.1v-1h9v1h2.1q.375 0 .638-.275.262-.275.262-.625 0-.3-.137-.513-.138-.212-.388-.337L12 9.65l-6.95 3.1q-.25.1-.4.325-.15.225-.15.525 0 .35.263.625.262.275.637.275Zm3.1 6h7v-6h-7Z");
}
/*subscriptions*/
svg path[d="M10,18v-6l5,3L10,18z M17,3H7v1h10V3z M20,6H4v1h16V6z M22,9H2v12h20V9z M3,10h18v10H3V10z"] {
d: path("M4M7.5 4.45v-1h9v1Zm-3 2.775v-1h15v1ZM3 21V9h18v12Zm1-1h16V10H4Zm6.5-1.925L15.125 15 10.5 11.925ZM4 10v10Z");
}
svg path[d="M20,7H4V6h16V7z M22,9v12H2V9H22z M15,15l-5-3v6L15,15z M17,3H7v1h10V3z"] {
d: path("M7.5 4.45v-1h9v1Zm-3 2.775v-1h15v1ZM3 21V9h18v12Zm7.5-2.925L15.125 15 10.5 11.925Z");
}
/*thumbs-up*/
svg path[d="M18.77,11h-4.23l1.52-4.94C16.38,5.03,15.54,4,14.38,4c-0.58,0-1.14,0.24-1.52,0.65L7,11H3v10h4h1h9.43 c1.06,0,1.98-0.67,2.19-1.61l1.34-6C21.23,12.15,20.18,11,18.77,11z M7,20H4v-8h3V20z M19.98,13.17l-1.34,6 C18.54,19.65,18.03,20,17.43,20H8v-8.61l5.6-6.06C13.79,5.12,14.08,5,14.38,5c0.26,0,0.5,0.11,0.63,0.3 c0.07,0.1,0.15,0.26,0.09,0.47l-1.52,4.94L13.18,12h1.35h4.23c0.41,0,0.8,0.17,1.03,0.46C19.92,12.61,20.05,12.86,19.98,13.17z"] {
d: path("M7.425 20V9L13.7 2.8l.85.875L13.425 9H22v3.175L18.7 20Zm1-1h9.6L21 11.975V10h-8.8l1.15-5.45-4.925 4.875Zm0-9.575V19Zm-1-.425v1H4v9h3.425v1H3V9Z");
}
svg path[d="M3,11h3v10H3V11z M18.77,11h-4.23l1.52-4.94C16.38,5.03,15.54,4,14.38,4c-0.58,0-1.14,0.24-1.52,0.65L7,11v10h10.43 c1.06,0,1.98-0.67,2.19-1.61l1.34-6C21.23,12.15,20.18,11,18.77,11z"] {
d: path("M7.65 20V9l6.275-6.2.875.875L13.675 9H22v3.175L18.7 20Zm-1-11v11H3V9Z");
}
svg path[d="M25.8411 11.9977C26.6778 11.9977 27.4597 12.414 27.9268 13.1082C28.6951 14.2498 28.6876 15.745 27.908 16.8789L27.1796 17.9383L27.8546 19.5037C28.257 20.4368 28.1597 21.5102 27.596 22.3558L26.4999 24V25.9977C26.4999 27.1023 25.6044 27.9977 24.4999 27.9977L11.9999 27.9976C10.8953 27.9976 9.99987 27.1022 9.99987 25.9976V12.8264C9.99987 11.9927 10.2604 11.1799 10.7449 10.5015L15.8632 3.33586C16.0776 3.03569 16.4721 2.92531 16.8112 3.07062C18.5762 3.82706 19.5347 5.74955 19.0766 7.6144L17.9999 11.9976L25.8411 11.9977ZM5 13.4999C3.89543 13.4999 3 14.3954 3 15.4999V25.9999C3 27.1045 3.89543 27.9999 5 27.9999H8V13.4999H5Z"] {
d: path("M23.8 28.2667H9.33337V11.6L18.5 2.46667L19.7667 3.80001C19.9 3.95556 20.0169 4.14979 20.1174 4.38267C20.2169 4.61645 20.2667 4.84445 20.2667 5.06667V5.40001L18.8334 11.6H27.3667C28.1667 11.6 28.8725 11.9053 29.484 12.516C30.0947 13.1276 30.4 13.8333 30.4 14.6333V16.4667C30.4 16.6 30.3836 16.7502 30.3507 16.9173C30.3169 17.0836 30.2667 17.2445 30.2 17.4L26.2667 26.7C26.0445 27.1445 25.7058 27.5165 25.2507 27.816C24.7947 28.1165 24.3111 28.2667 23.8 28.2667ZM8.00003 11.6V28.2667H2.8667V11.6H8.00003Z");
}
/*translate*/
svg path[d="M12.26,16.18l-2.93-2.87c-0.8,0.86-1.64,1.71-2.48,2.54L4.6,18.1L3.9,17.4l2.25-2.25c0.84-0.84,1.68-1.69,2.48-2.55 c-1.18-1.23-2.17-2.64-2.9-4.18L5.73,8.4h1.14c0.65,1.26,1.47,2.43,2.44,3.45c1.59-1.81,2.89-3.69,3.43-5.7H2.08v-1h6.65V3h1v2.15 h6.78v1h-2.73c-0.54,2.32-2.01,4.42-3.77,6.42l2.63,2.58C12.51,15.5,12.39,15.82,12.26,16.18z M21.51,21.01h-0.95l-1.12-3.04h-4.91 l-1.11,3.04h-0.96l4.09-10.81h0.87L21.51,21.01z M19.15,17.2l-2.17-5.89l-2.17,5.89H19.15z"] {
d: path("M11.95 20.45 15.8 10.3h1.75l3.85 10.15h-1.75l-.9-2.575h-4.1l-.925 2.575Zm3.2-4.05h3.025L16.7 12.2h-.05Zm-9.875 1.525-1.225-1.2 4.3-4.3q-.8-.875-1.4-1.825-.6-.95-1.05-1.975h1.75q.4.75.825 1.35.425.6 1.025 1.3.95-1.025 1.575-2.087.625-1.063 1.025-2.263H2.725v-1.7H8.65V3.55h1.7v1.675h5.925v1.7H13.8q-.45 1.475-1.212 2.9-.763 1.425-1.863 2.65l2 2.075-.625 1.75-2.6-2.6Z");
}
/*tune*/
svg path[d="M15,17h6v1h-6V17z M11,17H3v1h8v2h1v-2v-1v-2h-1V17z M14,8h1V6V5V3h-1v2H3v1h11V8z M18,5v1h3V5H18z M6,14h1v-2v-1V9H6v2H3v1 h3V14z M10,12h11v-1H10V12z"],
svg path[d="M15,17h6v1h-6V17z M11,17H3v1h8v2h1v-2v-1v-2h-1V17z M14,8h1V6V5V3h-1v2H3v1h11V8z M18,5v1h3V5H18z M6,14h1v-2v-1V9H6v2H3v1 h3V14z M10,12h11v-1H10V12z"] {
d: path("M3.5 18.5v-1h5v1Zm0-12v-1h9v1Zm8 14v-5h1v2h8v1h-8v2Zm-4-6v-2h-4v-1h4v-2h1v5Zm4-2v-1h9v1Zm4-4v-5h1v2h4v1h-4v2Z");
}
/*volume-high*/
svg path[d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"] {
d: path("M14.075 19.5v-1.05q2.075-.725 3.35-2.5t1.275-3.975q0-2.2-1.275-3.975t-3.35-2.5V4.45q2.475.8 4.05 2.862Q19.7 9.375 19.7 11.975t-1.575 4.662Q16.55 18.7 14.075 19.5ZM4.3 14v-4h3.425L11.3 6.425v11.15L7.725 14Zm9.775 1.3V8.65q.85.55 1.288 1.45.437.9.437 1.9 0 1-.45 1.875T14.075 15.3ZM10.3 8.85 8.15 11H5.3v2h2.85l2.15 2.15ZM7.8 12Z");
}
/*web*/
svg path[d="M11.99,1.98C6.46,1.98,1.98,6.47,1.98,12s4.48,10.02,10.01,10.02c5.54,0,10.03-4.49,10.03-10.02S17.53,1.98,11.99,1.98z M8.86,14.5c-0.16-0.82-0.25-1.65-0.25-2.5c0-0.87,0.09-1.72,0.26-2.55h6.27c0.17,0.83,0.26,1.68,0.26,2.55 c0,0.85-0.09,1.68-0.25,2.5H8.86z M14.89,15.5c-0.54,1.89-1.52,3.64-2.89,5.15c-1.37-1.5-2.35-3.25-2.89-5.15H14.89z M9.12,8.45 c0.54-1.87,1.52-3.61,2.88-5.1c1.36,1.49,2.34,3.22,2.88,5.1H9.12z M16.15,9.45h4.5c0.24,0.81,0.37,1.66,0.37,2.55 c0,0.87-0.13,1.71-0.36,2.5h-4.51c0.15-0.82,0.24-1.65,0.24-2.5C16.39,11.13,16.3,10.28,16.15,9.45z M20.29,8.45h-4.38 c-0.53-1.97-1.47-3.81-2.83-5.4C16.33,3.45,19.04,5.56,20.29,8.45z M10.92,3.05c-1.35,1.59-2.3,3.43-2.83,5.4H3.71 C4.95,5.55,7.67,3.44,10.92,3.05z M3.35,9.45h4.5C7.7,10.28,7.61,11.13,7.61,12c0,0.85,0.09,1.68,0.24,2.5H3.34 c-0.23-0.79-0.36-1.63-0.36-2.5C2.98,11.11,3.11,10.26,3.35,9.45z M3.69,15.5h4.39c0.52,1.99,1.48,3.85,2.84,5.45 C7.65,20.56,4.92,18.42,3.69,15.5z M13.09,20.95c1.36-1.6,2.32-3.46,2.84-5.45h4.39C19.08,18.42,16.35,20.55,13.09,20.95z"] {
d: path("M12 21q-1.85 0-3.5-.712-1.65-.713-2.862-1.926Q4.425 17.15 3.712 15.5 3 13.85 3 12q0-1.875.712-3.513.713-1.637 1.926-2.85Q6.85 4.425 8.5 3.712 10.15 3 12 3q1.875 0 3.513.712 1.637.713 2.85 1.925 1.212 1.213 1.925 2.85Q21 10.125 21 12q0 1.85-.712 3.5-.713 1.65-1.925 2.862-1.213 1.213-2.85 1.926Q13.875 21 12 21Zm0-1q.875-1.125 1.45-2.212.575-1.088.925-2.438h-4.75q.4 1.425.95 2.512Q11.125 18.95 12 20Zm-1.275-.15q-.7-.825-1.275-2.038-.575-1.212-.85-2.462H4.75q.875 1.85 2.45 3.05 1.575 1.2 3.525 1.45Zm2.55 0q1.95-.25 3.525-1.45t2.45-3.05H15.4q-.375 1.275-.95 2.487-.575 1.213-1.175 2.013Zm-8.925-5.5h4.025q-.1-.625-.15-1.2-.05-.575-.05-1.15t.05-1.15q.05-.575.15-1.2H4.35q-.175.525-.262 1.137Q4 11.4 4 12q0 .6.088 1.212.087.613.262 1.138Zm5.025 0h5.25q.1-.625.15-1.188.05-.562.05-1.162 0-.6-.05-1.163-.05-.562-.15-1.187h-5.25q-.1.625-.15 1.187-.05.563-.05 1.163 0 .6.05 1.162.05.563.15 1.188Zm6.25 0h4.025q.175-.525.263-1.138Q20 12.6 20 12t-.087-1.213q-.088-.612-.263-1.137h-4.025q.1.625.15 1.2.05.575.05 1.15t-.05 1.15q-.05.575-.15 1.2Zm-.225-5.7h3.85q-.875-1.9-2.413-3.05-1.537-1.15-3.562-1.475.7.925 1.263 2.113.562 1.187.862 2.412Zm-5.775 0h4.75q-.4-1.4-.975-2.538Q12.825 4.975 12 4q-.825.975-1.4 2.112-.575 1.138-.975 2.538Zm-4.875 0H8.6q.3-1.225.863-2.412.562-1.188 1.262-2.113-2.05.325-3.575 1.487-1.525 1.163-2.4 3.038Z");
}
/*app*/
ytd-app {
background: var(--yt-spec-brand-background-solid);
--app-drawer-content-container-background-color: var( --yt-spec-brand-background-solid );
}
/*guide*/
ytd-app td-mini-guide-renderer.ytd-app {
box-sizing: border-box;
}
ytd-guide-entry-renderer {
border-radius: 10px;
width: calc(100% - 12px);
}
ytd-guide-entry-renderer #endpoint.yt-simple-endpoint.ytd-guide-entry-renderer:hover,
ytd-guide-entry-renderer #endpoint.yt-simple-endpoint.ytd-guide-entry-renderer:focus,
ytd-guide-entry-renderer[guide-refresh] #endpoint.yt-simple-endpoint.ytd-guide-entry-renderer:active {
border-radius: 10px;
}
ytd-guide-entry-renderer tp-yt-paper-item.ytd-guide-entry-renderer {
padding: 0 12px;
}
ytd-guide-entry-renderer yt-interaction.ytd-guide-entry-renderer {
border-radius: 10px;
overflow: hidden;
}
ytd-guide-entry-renderer tp-yt-paper-item.ytd-guide-entry-renderer {
--paper-item-focused-before-border-radius: 10px;
--paper-item-focused-before-background: var( --ytd-guide-entry-renderer-focused-guide-item-background-color, var(--yt-spec-icon-active-other));
}
ytd-guide-entry-renderer[active] tp-yt-paper-item.ytd-guide-entry-renderer[focused] {
--paper-item-focused-before-background: transparent;
}
.title.ytd-guide-entry-renderer {
font-family: var(--roboto-flex);
}
ytd-guide-section-renderer #guide-section-title.ytd-guide-section-renderer {
text-transform: none;
letter-spacing: unset;
padding: 6px 12px 4px;
font-family: var(--roboto-flex);
font-size: 1.6rem;
line-height: 2.2rem;
font-weight: 400;
color: var(--yt-spec-text-primary);
}
ytd-guide-renderer #sections.ytd-guide-renderer > *.ytd-guide-renderer:first-child,
ytd-guide-renderer #sections.ytd-guide-renderer > ytd-guide-section-renderer.ytd-guide-renderer:not(:first-child),
ytd-guide-renderer #sections.ytd-guide-renderer > ytd-guide-subscriptions-section-renderer.ytd-guide-renderer {
padding: 12px;
}
ytd-guide-renderer:hover {
--ytd-guide-entry-renderer-active-guide-item-background-color: transparent;
--ytd-guide-entry-renderer-focused-guide-item-background-color: transparent;
}
ytd-mini-guide-renderer {
padding: 0 4px;
}
ytd-mini-guide-entry-renderer {
border-radius: 10px;
}
ytd-mini-guide-entry-renderer a.ytd-mini-guide-entry-renderer {
width: 64px;
}
/*thumbnails*/
ytd-thumbnail {
overflow: hidden;
}
ytd-thumbnail a.ytd-thumbnail,
ytd-thumbnail:before {
border-radius: 8px;
}
/* ytd-thumbnail-overlay-time-status-renderer {
display: none;
} */
/*compact links*/
ytd-compact-link-renderer[compact-link-style=compact-link-style-type-settings-sidebar] tp-yt-paper-item.ytd-compact-link-renderer {
--paper-item-focused-before-border-radius: 10px;
--paper-item-focused-before-background: var(--yt-spec-icon-active-other);
padding: 0 16px;
}
/*compact videos*/
#video-title.ytd-compact-video-renderer {
font-family: var(--roboto-flex);
}
/*buttons*/
ytd-button-renderer #button.ytd-button-renderer,
tp-yt-paper-button.ytd-subscribe-button-renderer,
#icon-label.yt-dropdown-menu,
ytd-button-renderer[is-paper-button],
yt-button-renderer[is-paper-button] {
text-transform: none;
border-radius: 19px;
}
tp-yt-paper-button.ytd-subscribe-button-renderer {
background-color: var(--yt-spec-icon-inactive);
color: var(--yt-spec-text-primary-inverse);
border-radius: 25px;
margin: 0;
}
tp-yt-paper-button.ytd-subscribe-button-renderer[subscribed] {
background-color: var(--yt-spec-additive-background);
color: var(--yt-spec-text-primary);
}
tp-yt-paper-button {
font-family: var(--roboto-flex);
border-radius: 18px;
}
#label.yt-dropdown-menu {
background-color: var(--yt-spec-additive-background);
height: 36px;
padding: 0 12px;
text-transform: none;
}
ytd-button-renderer.style-suggestive[is-paper-button] tp-yt-paper-button.ytd-button-renderer {
border-color: var(--yt-spec-additive-background);
}
/*tabs*/
tp-yt-paper-tab {
font-family: var(--roboto-flex);
}
ytd-c4-tabbed-header-renderer:not([modern-tabs]) tp-yt-paper-tabs.ytd-c4-tabbed-header-renderer{
font-family: var(--roboto-flex);
font-size: 1.6rem;
line-height: 2.2rem;
font-weight: 500;
}
/*menus*/
ytd-menu-popup-renderer,
ytd-multi-page-menu-renderer,
.dropdown-content.tp-yt-paper-menu-button {
border: 0;
border-radius: 12px;
box-shadow: 0px 4px 32px 0px var(--yt-spec-static-overlay-background-light);
backdrop-filter: blur(8px);
}
ytd-active-account-header-renderer {
background: none;
}
ytd-menu-popup-renderer tp-yt-paper-listbox.ytd-menu-popup-renderer {
background: none;
}
yt-chip-cloud-chip-renderer {
border: 0;
border-radius: 8px;
}
yt-chip-cloud-chip-renderer[chip-style="STYLE_DEFAULT"],
yt-chip-cloud-chip-renderer[chip-style="STYLE_HOME_FILTER"],
yt-chip-cloud-chip-renderer[chip-style="STYLE_REFRESH_TO_NOVEL_CHIP"] {
border: 0;
}
/*toggles*/
#caption.ytd-toggle-item-renderer {
text-transform: none;
}
.toggle-container.tp-yt-paper-toggle-button {
width: 52px;
height: 32px;
}
.toggle-bar.tp-yt-paper-toggle-button {
border: 2px solid var(--paper-toggle-button-unchecked-button-color);
border-radius: 16px;
box-sizing: border-box;
}
tp-yt-paper-toggle-button[checked]:not([disabled]) .toggle-bar.tp-yt-paper-toggle-button {
background-color: var(--primary-color);
border-width: 0;
opacity: 1;
}
.toggle-button.tp-yt-paper-toggle-button {
top: 8px;
width: 16px;
height: 16px;
border-radius: 12px;
box-shadow: none;
transform: translate(8px, 0);
}
tp-yt-paper-toggle-button[checked] .toggle-button.tp-yt-paper-toggle-button {
width: 24px;
height: 24px;
transform: translate(24px, -4px);
}
tp-yt-paper-toggle-button[checked]:not([disabled]) .toggle-button.tp-yt-paper-toggle-button {
background-color: #fff;
}
/*rich shelves*/
ytd-rich-shelf-renderer {
background-color: var(--yt-spec-additive-background);
margin-left: -16px;
margin-top: 16px;
padding: 0 16px 16px;
border: 0;
border-radius: 16px;
}
ytd-rich-shelf-renderer #title.ytd-rich-shelf-renderer {
color: var(--yt-spec-text-primary);
font-family: "YouTube Sans", "Roboto", sans-serif;
font-size: 2rem;
line-height: 2.8rem;
font-weight: 700;
}
ytd-rich-shelf-renderer[is-show-more-hidden] #dismissible.ytd-rich-shelf-renderer {
border-bottom: none;
}
ytd-rich-shelf-renderer #dismissed.ytd-rich-shelf-renderer {
padding-top: 16px;
border-bottom: none;
width: auto;
}
ytd-rich-shelf-renderer #show-more-button.ytd-rich-shelf-renderer {
border: none;
padding: 0px;
max-width: 320px;
}
ytd-rich-shelf-renderer #show-more-button.ytd-rich-shelf-renderer:hover {
background-color: unset;
color: unset;
}
ytd-rich-shelf-renderer #button-container.ytd-rich-shelf-renderer {
justify-content: center;
}
/*badges*/
.badge.ytd-badge-supported-renderer {
border-radius: 4px;
}
/*rich grids*/
ytd-rich-grid-renderer #contents.ytd-rich-grid-renderer {
margin-top: 8px;
}
ytd-rich-grid-media[mini-mode] #video-title.ytd-rich-grid-media {
font-family: var(--roboto-flex);
}
ytd-grid-video-renderer:not([rich-meta]) #byline-container.ytd-grid-video-renderer {
font-family: var(--roboto-flex);
}
/*grid videos*/
ytd-grid-video-renderer #video-title.yt-simple-endpoint.ytd-grid-video-renderer {
font-family: var(--roboto-flex);
}
/*comments*/
.published-time-text.ytd-comment-renderer {
font-family: var(--roboto-flex);
}
#content-text.ytd-comment-renderer {
font-family: var(--roboto-flex);
}
ytd-comment-action-buttons-renderer {
color: var(--yt-spec-text-primary);
}
#vote-count-middle.ytd-comment-action-buttons-renderer {
font-family: var(--roboto-flex);
}
ytd-comment-action-buttons-renderer:not([use-comment-icon]) #reply-button.ytd-comment-action-buttons-renderer ytd-button-renderer.ytd-comment-action-buttons-renderer:not([is-icon-button]).ytd-comment-action-buttons-renderer,
ytd-comment-action-buttons-renderer:not([use-comment-icon]) #reply-button-end.ytd-comment-action-buttons-renderer ytd-button-renderer.ytd-comment-action-buttons-renderer:not([is-icon-button]).ytd-comment-action-buttons-renderer {
color: var(--yt-spec-text-primary);
font-family: var(--roboto-flex);
}
#like-button.ytd-comment-action-buttons-renderer, #dislike-button.ytd-comment-action-buttons-renderer {
--yt-button-icon-size: 40px;
}
ytd-comment-replies-renderer ytd-button-renderer #button.ytd-button-renderer {
text-transform: lowercase;
}
ytd-comment-replies-renderer ytd-button-renderer #button.ytd-button-renderer yt-formatted-string::before {
text-transform: none;
}
ytd-comment-replies-renderer .more-button ytd-button-renderer #button.ytd-button-renderer yt-formatted-string::before {
content: 'View ';
}
ytd-comment-replies-renderer .less-button ytd-button-renderer #button.ytd-button-renderer yt-formatted-string::before {
content: 'Hide ';
}
/*membership dialog*/
#titlebar-text.ytd-sponsorships-offer-renderer {
font-family: var(--roboto-flex);
}
/*masthead*/
ytd-masthead yt-icon-button.ytd-masthead:hover,
ytd-masthead ytd-topbar-menu-button-renderer.ytd-masthead:hover,
ytd-mastheadytd-notification-topbar-button-renderer.ytd-masthead:hover {
background-color: var(--yt-spec-10-percent-layer);
border-radius: 24px;
}
ytd-masthead .ytd-masthead#buttons.ytd-masthead>ytd-topbar-menu-button-renderer.ytd-masthead:last-of-type:hover {
background-color: transparent;
}
ytd-searchbox.ytd-masthead {
background: var(--yt-spec-10-percent-layer);
border-radius: 20px;
padding-right: 0;
}
#container.ytd-searchbox {
background: none;
border: 0;
box-shadow: none;
}
ytd-searchbox[has-focus] #container.ytd-searchbox {
border: 0;
box-shadow: none;
}
#search-input.ytd-searchbox-spt input {
font-family: "YouTube Sans", "Roboto", sans-serif;
font-size: 18px;
font-weight: 700;
}
#search-clear-button.ytd-searchbox ytd-button-renderer.ytd-searchbox {
--yt-icon-button-icon-width: 24px;
--yt-icon-button-icon-height: 24px;
}
ytd-searchbox #search-icon-legacy.ytd-searchbox {
background: none;
border: 0;
border-radius: 20px;
width: 40px;
padding: 0;
}
.sbsb_c {
display: flex;
align-items: center;
vertical-align: middle;
height: 48px;
}
/*notification menu*/
.message.ytd-notification-renderer {
font-family: var(--roboto-flex);
}
.thumbnail-container.ytd-notification-renderer {
border-radius: 12px;
}
/*watch page*/
/*player*/
#player.ytd-watch-flexy {
border-radius: 12px;
overflow: hidden;
}
/*primary*/
ytd-video-primary-info-renderer {
border: 0;
padding-bottom: 16px;
}
.title.ytd-video-primary-info-renderer {
font-family: "YouTube Sans", "Roboto Flex", "Roboto", sans-serif;
font-size: 2rem;
font-weight: 700;
line-height: 2.8rem;
}
ytd-video-view-count-renderer[small],
#info-strings.ytd-video-primary-info-renderer {
font-family: var(--roboto-flex);
font-weight: 500;
}
#info-strings.ytd-video-primary-info-renderer,
span.ytd-video-view-count-renderer {
color: var(--yt-spec-text-primary)
}
span.ytd-video-view-count-renderer {
margin-right: 8px;
}
#dot.ytd-video-primary-info-renderer {
display: none;
}
#menu.ytd-video-primary-info-renderer {
position: unset;
}
ytd-button-renderer[is-icon-button][style-action-button] {
--yt-button-icon-size: 36px;
--yt-button-icon-padding: 8px;
font-size: 1.4rem;
text-transform: none;
height: 36px;
background-color: var(--yt-spec-additive-background);
padding: 0 4px;
padding-right: 12px;
border-radius: 18px;
}
ytd-button-renderer.force-icon-button a.ytd-button-renderer {
padding-right: 8px;
}
ytd-toggle-button-renderer.force-icon-button a.ytd-toggle-button-renderer {
--yt-button-icon-size: 40px;
--yt-button-icon-padding: 8px;
font-size: 1.2rem;
text-transform: none;
height: 36px;
background-color: var(--yt-spec-additive-background);
border-radius: 18px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
padding-left: 6px;
padding-right: 12px;
}
ytd-toggle-button-renderer.force-icon-button:nth-of-type(2) a.ytd-toggle-button-renderer {
position: relative;
border-radius: 18px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
margin-left: -8px;
padding-left: 7px;
padding-right: 6px;
}
ytd-toggle-button-renderer.force-icon-button:nth-of-type(2) a.ytd-toggle-button-renderer::after {
content: '';
width: 1px;
height: 20px;
display: block;
position: absolute;
top: 6px;
left: 0;
background: var(--yt-spec-additive-background);
}
ytd-toggle-button-renderer.force-icon-button:nth-of-type(2) a.ytd-toggle-button-renderer #text {
display: none;
}
ytd-button-renderer.force-icon-button:not([has-no-text]) a.ytd-button-renderer {
padding: 0;
}
#info.ytd-video-primary-info-renderer #button.ytd-menu-renderer {
background-color: var(--yt-spec-additive-background);
border-radius: 18px;
width: auto;
height: 36px;
padding-left: 6px;
padding-right: 6px;
}
#sentiment.ytd-video-primary-info-renderer {
display: none;
}
/*secondary*/
ytd-video-secondary-info-renderer {
border: 0;
margin: 0;
}
#top-row.ytd-video-secondary-info-renderer {
padding-top: 0;
}
ytd-video-owner-renderer {
min-width: 0;
}
ytd-video-owner-renderer:not([modern-metapanel]) #avatar.ytd-video-owner-renderer {
margin-right: 12px;
width: 36px;
height: 36px;
}
ytd-video-owner-renderer #upload-info.ytd-video-owner-renderer {
margin-right: 4px;
overflow: hidden;
}
ytd-video-owner-renderer #channel-name.ytd-video-owner-renderer {
max-width: 100%;
}
ytd-video-owner-renderer #owner-sub-count.ytd-video-owner-renderer {
font-family: var(--roboto-flex);
font-size: 1.2rem;
line-height: 1.8rem;
font-weight: 400;
max-height: 1.8rem;
overflow: hidden;
display: block;
-webkit-line-clamp: 1;
display: box;
display: -webkit-box;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
white-space: normal;
}
ytd-watch-metadata:not([modern-metapanel-order]) #description.ytd-watch-metadata {
min-width: 100%;
min-width: max(381px, 50% - 6px);
}
ytd-expander.ytd-video-secondary-info-renderer {
font-family: "Roboto Flex","Roboto","Arial",sans-serif;
margin-left: 48px;
}
.more-button.ytd-video-secondary-info-renderer, .less-button.ytd-video-secondary-info-renderer {
color: var(--yt-spec-text-primary);
font-size: 1.4rem;
text-transform: none;
}
#topic-link-container.ytd-topic-link-renderer {
background-color: var(--yt-spec-10-percent-layer);
border: 0;
}
/*comments*/
.count-text.ytd-comments-header-renderer {
font-family: "YouTube Sans", "Roboto Flex", "Roboto", sans-serif;
font-weight: 700;
}
/*sidebar*/
ytd-live-chat-frame[collapsed] {
border: 0;
}
ytd-live-chat-frame[collapsed] #show-hide-button.ytd-live-chat-frame > ytd-toggle-button-renderer.ytd-live-chat-frame {
background-color: transparent;
}
ytd-playlist-panel-renderer:not([within-miniplayer]) #container.ytd-playlist-panel-renderer {
background-color: var(--yt-spec-additive-background);
border: 0;
border-radius: 12px;
overflow: hidden;
}
.header.ytd-playlist-panel-renderer {
background: none;
}
ytd-playlist-panel-renderer:not([modern-panels]):not([hide-header-text]) .title.ytd-playlist-panel-renderer {
font-family: "YouTube Sans", "Roboto", sans-serif;
font-size: 2rem;
line-height: 2.8rem;
font-weight: 700;
max-height: 2.8rem;
-webkit-line-clamp: 1;
display: box;
display: -webkit-box;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
white-space: normal;
overflow: hidden;
}
.playlist-items.ytd-playlist-panel-renderer {
background: none;
}
ytd-donation-shelf-renderer {
background-color: var(--yt-spec-additive-background);
border: none;
border-radius: 12px;
overflow: hidden;
}
#header-section.ytd-donation-shelf-renderer {
display: none;
}
#donate-section.ytd-donation-shelf-renderer {
background: none;
border-top: none;
}
#amount-raised.ytd-donation-shelf-renderer {
font-family: var(--roboto-flex);
}
#creator-messages-section.ytd-donation-shelf-renderer,
#nonprofit-section.ytd-donation-shelf-renderer {
background: none;
}
.creator-message.ytd-donation-shelf-renderer,
#campaign-subtitle.ytd-donation-shelf-renderer,
#nonprofit-title.ytd-donation-shelf-renderer,
#nonprofit-subtitle.ytd-donation-shelf-renderer,
#nonprofit-description.ytd-donation-shelf-renderer {
font-family: var(--robot-flex);
}
#collapse-controls-section.ytd-donation-shelf-renderer {
background: none;
font-family: var(--roboto-flex);
text-transform: none;
}
ytd-tvfilm-offer-module-renderer {
background-color: var(--yt-spec-additive-background);
border: 1px solid transparent;
border-radius: 12px;
}
#header.ytd-tvfilm-offer-module-renderer {
background: none;
}
/*player*/
.html5-video-player {
font-family: var(--roboto-flex);
}
svg use {
display: none;
}
svg path[d="M11,11 C9.89,11 9,11.9 9,13 L9,23 C9,24.1 9.89,25 11,25 L25,25 C26.1,25 27,24.1 27,23 L27,13 C27,11.9 26.1,11 25,11 L11,11 Z M17,17 L15.5,17 L15.5,16.5 L13.5,16.5 L13.5,19.5 L15.5,19.5 L15.5,19 L17,19 L17,20 C17,20.55 16.55,21 16,21 L13,21 C12.45,21 12,20.55 12,20 L12,16 C12,15.45 12.45,15 13,15 L16,15 C16.55,15 17,15.45 17,16 L17,17 L17,17 Z M24,17 L22.5,17 L22.5,16.5 L20.5,16.5 L20.5,19.5 L22.5,19.5 L22.5,19 L24,19 L24,20 C24,20.55 23.55,21 23,21 L20,21 C19.45,21 19,20.55 19,20 L19,16 C19,15.45 19.45,15 20,15 L23,15 C23.55,15 24,15.45 24,16 L24,17 L24,17 Z"] {
d: path("M12 20V16C12 15.45 12.45 15 13 15H16C16.55 15 17 15.45 17 16V17H15.5V16.5H13.5V19.5H15.5V19H17V20C17 20.55 16.55 21 16 21H13C12.45 21 12 20.55 12 20ZM20 21H23C23.55 21 24 20.55 24 20V19H22.5V19.5H20.5V16.5H22.5V17H24V16C24 15.45 23.55 15 23 15H20C19.45 15 19 15.45 19 16V20C19 20.55 19.45 21 20 21ZM26 10H10V26H26V10ZM27 9V27H9V9.01C9 9 9 9 9.01 9H27Z");
}
svg path[d="m 23.94,18.78 c .03,-0.25 .05,-0.51 .05,-0.78 0,-0.27 -0.02,-0.52 -0.05,-0.78 l 1.68,-1.32 c .15,-0.12 .19,-0.33 .09,-0.51 l -1.6,-2.76 c -0.09,-0.17 -0.31,-0.24 -0.48,-0.17 l -1.99,.8 c -0.41,-0.32 -0.86,-0.58 -1.35,-0.78 l -0.30,-2.12 c -0.02,-0.19 -0.19,-0.33 -0.39,-0.33 l -3.2,0 c -0.2,0 -0.36,.14 -0.39,.33 l -0.30,2.12 c -0.48,.2 -0.93,.47 -1.35,.78 l -1.99,-0.8 c -0.18,-0.07 -0.39,0 -0.48,.17 l -1.6,2.76 c -0.10,.17 -0.05,.39 .09,.51 l 1.68,1.32 c -0.03,.25 -0.05,.52 -0.05,.78 0,.26 .02,.52 .05,.78 l -1.68,1.32 c -0.15,.12 -0.19,.33 -0.09,.51 l 1.6,2.76 c .09,.17 .31,.24 .48,.17 l 1.99,-0.8 c .41,.32 .86,.58 1.35,.78 l .30,2.12 c .02,.19 .19,.33 .39,.33 l 3.2,0 c .2,0 .36,-0.14 .39,-0.33 l .30,-2.12 c .48,-0.2 .93,-0.47 1.35,-0.78 l 1.99,.8 c .18,.07 .39,0 .48,-0.17 l 1.6,-2.76 c .09,-0.17 .05,-0.39 -0.09,-0.51 l -1.68,-1.32 0,0 z m -5.94,2.01 c -1.54,0 -2.8,-1.25 -2.8,-2.8 0,-1.54 1.25,-2.8 2.8,-2.8 1.54,0 2.8,1.25 2.8,2.8 0,1.54 -1.25,2.8 -2.8,2.8 l 0,0 z"] {
d: path('M18.0037 15C19.6537 15 21.0037 16.35 21.0037 18C21.0037 19.65 19.6537 21 18.0037 21C16.3537 21 15.0037 19.65 15.0037 18C15.0037 16.35 16.3537 15 18.0037 15ZM18.0037 14C15.7937 14 14.0037 15.79 14.0037 18C14.0037 20.21 15.7937 22 18.0037 22C20.2137 22 22.0037 20.21 22.0037 18C22.0037 15.79 20.2137 14 18.0037 14ZM19.2238 9L19.7738 11.2L19.9037 11.71L20.4037 11.89C21.0137 12.12 21.5938 12.45 22.1238 12.87L22.5238 13.19L23.0238 13.05L25.1938 12.43L26.4137 14.54L24.7838 16.13L24.4137 16.49L24.4937 17C24.5437 17.32 24.5737 17.64 24.5737 17.98C24.5737 18.32 24.5437 18.64 24.4937 18.96L24.4137 19.47L24.7838 19.83L26.4137 21.42L25.1938 23.53L23.0238 22.91L22.5238 22.77L22.1238 23.09C21.5938 23.52 21.0137 23.85 20.4037 24.07L19.9037 24.25L19.7738 24.76L19.2238 27H16.7837L16.2337 24.8L16.1038 24.29L15.6038 24.11C15.0038 23.88 14.4237 23.55 13.8837 23.12L13.4838 22.8L12.9838 22.94L10.8138 23.56L9.60375 21.44L11.2338 19.85L11.6037 19.49L11.5238 18.98C11.4738 18.66 11.4438 18.33 11.4438 18C11.4438 17.67 11.4738 17.34 11.5238 17.02L11.6037 16.51L11.2338 16.15L9.60375 14.56L10.8238 12.45L12.9937 13.07L13.4937 13.21L13.8938 12.89C14.4238 12.45 15.0037 12.12 15.6137 11.9L16.1137 11.72L16.2437 11.21L16.7837 9H19.2238ZM20.0037 8H16.0037L15.2638 10.96C14.5338 11.23 13.8638 11.62 13.2638 12.1L10.3438 11.27L8.34375 14.73L10.5338 16.86C10.4738 17.23 10.4438 17.61 10.4438 18C10.4438 18.39 10.4738 18.77 10.5338 19.14L8.34375 21.27L10.3438 24.73L13.2638 23.9C13.8638 24.38 14.5338 24.77 15.2638 25.04L16.0037 28H20.0037L20.7437 25.04C21.4737 24.77 22.1437 24.38 22.7437 23.9L25.6637 24.73L27.6637 21.27L25.4737 19.14C25.5337 18.77 25.5637 18.39 25.5637 18C25.5637 17.61 25.5337 17.23 25.4737 16.86L27.6637 14.73L25.6637 11.27L22.7437 12.1C22.1437 11.62 21.4737 11.23 20.7437 10.96L20.0037 8Z');
}
.ytp-popup {
background-color:rgba(33, 33, 33, 0.98);
border-radius: 12px;
box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8px);
overflow: visible;
}
.ytp-title-text {
font-family: "YouTube Sans", "Roboto", sans-serif;
font-weight: bold;
letter-spacing: .25px;
}
.ytp-swatch-background-color {
background-color: #fff;
}
/*feed filter*/
#chips-wrapper.ytd-feed-filter-chip-bar-renderer {
backdrop-filter: blur(8px);
}
/*history page*/
ytd-two-column-browse-results-renderer[page-subtype=history] #secondary.ytd-two-column-browse-results-renderer {
background-color: var(--yt-spec-general-background-a);
}
/*channel page*/
ytd-browse[page-subtype=channels] {
background: var(--yt-spec-brand-background-solid);
}
#channel-name.ytd-c4-tabbed-header-renderer #text.ytd-channel-name {
font-family: "YouTube Sans", "Roboto Flex", "Roboto", sans-serif;
font-weight: 600;
}
#subscriber-count.ytd-c4-tabbed-header-renderer {
color: var(--yt-spec-text-primary);
}
ytd-backstage-post-thread-renderer {
background-color: var(--yt-spec-additive-background);
border: 0;
border-radius: 16px;
}
.subheadline.ytd-channel-about-metadata-renderer {
font-family: var(--roboto-flex);
}
#description.ytd-channel-about-metadata-renderer,
#bio.ytd-channel-about-metadata-renderer {
font-family: var(--roboto-flex);
}
/*explore page*/
ytd-browse[page-subtype=trending][has-c4-tabbed-header-renderer] {
background: var(--yt-spec-brand-background-solid);
}
ytd-destination-button-renderer {
background: var(--yt-spec-general-background-a);
border-radius: 12px;
}
#destination-label.ytd-destination-button-renderer {
font-family: var(--roboto-flex);
}
/*playlist/show page*/
ytd-browse[page-subtype=playlist],
ytd-browse[page-subtype=show] {
background: var(--yt-spec-brand-background-solid);
}
ytd-browse[page-subtype=playlist] ytd-two-column-browse-results-renderer.ytd-browse,
ytd-browse[page-subtype=show] ytd-two-column-browse-results-renderer.ytd-browse {
background: var(--yt-spec-brand-background-solid);
}
/* ytd-playlist-thumbnail.ytd-playlist-sidebar-primary-info-renderer {
margin-bottom: 60px;
}
ytd-playlist-thumbnail.ytd-playlist-sidebar-primary-info-renderer::before {
background: none;
}
ytd-playlist-thumbnail #thumbnail.ytd-playlist-thumbnail {
overflow: visible;
}
yt-img-shadow.ytd-playlist-video-thumbnail-renderer {
border-radius: 8px;
overflow: hidden;
}
ytd-thumbnail-overlay-side-panel-renderer[bottom-panel] {
position: absolute;
left: 0;
top: 188px;
background-color: #fff;
border-radius: 18px;
width: 144px;
height: 36px;
}
ytd-thumbnail-overlay-side-panel-renderer[bottom-panel] yt-formatted-string.ytd-thumbnail-overlay-side-panel-renderer {
visibility: hidden;
color: black;
font-family: var(--roboto-flex);
}
ytd-thumbnail-overlay-side-panel-renderer[bottom-panel] yt-formatted-string.ytd-thumbnail-overlay-side-panel-renderer::before {
content: 'Play all';
font-size: 1.4rem;
visibility: visible;
line-height: 2rem;
} */
#title.ytd-playlist-sidebar-primary-info-renderer,
ytd-inline-form-renderer[component-style="INLINE_FORM_STYLE_TITLE"] #text-displayed.ytd-inline-form-renderer {
font-family: "YouTube Sans", "Roboto", sans-serif;
font-weight: 700;
}
#stats.ytd-playlist-sidebar-primary-info-renderer yt-formatted-string.ytd-playlist-sidebar-primary-info-renderer:not(:last-of-type) {
margin-right: 8px;
}
#stats.ytd-playlist-sidebar-primary-info-renderer yt-formatted-string.ytd-playlist-sidebar-primary-info-renderer:not(:last-of-type)::after {
content: none;
}
/*settings page*/
ytd-settings-sidebar-renderer {
padding: 18px 0;
}
ytd-settings-sidebar-renderer #title.ytd-settings-sidebar-renderer {
text-transform: none;
font-family: "YouTube Sans", "Roboto", sans-serif;
font-size: 2rem;
line-height: 2.8rem;
font-weight: 600;
}
ytd-settings-sidebar-renderer ytd-compact-link-renderer.ytd-settings-sidebar-renderer {
margin: 0 12px;
border-radius: 10px;
}
/*shorts page*/
.title.ytd-reel-player-header-renderer {
font-family: var(--roboto-flex);
}
ytd-reel-player-overlay-renderer[vertical] #actions.ytd-reel-player-overlay-renderer {
width: 48px;
padding: 0 12px;
justify-content: flex-end;
}
ytd-reel-player-overlay-renderer[vertical] #menu.ytd-reel-player-overlay-renderer {
flex-grow: unset;
}