This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vdark.user.css
10893 lines (8272 loc) · 609 KB
/
vdark.user.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
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* ==UserStyle==
@name VDARK
@description Perhaps the best dark theme for VK
@namespace https://github.com/Wondermarin/VDARK
@homepageURL https://github.com/Wondermarin/VDARK
@updateURL https://dl.dropboxusercontent.com/s/faysjkwgq5n9m8a/vdark.user.css?dl=0
@supportURL https://github.com/Wondermarin/VDARK
@version 2.4.6
@author Wondermarin (https://wondermarin.com)
@license CC-BY-NC-4.0
@preprocessor stylus
@var checkbox adsDisabled "Отключить рекламу" 0
==/UserStyle== */
@-moz-document regexp("https?://vk.com/(?!blog|!?dev|!?about|!?jobs|!?products|!?biz|!?ads|!?widget|!?apps|!?editapp|!?stats|!?support\\?act=new_app|!?data_protection|!?safety).*") {
#ads_left {
if adsDisabled {
display: none !important;
} else if {
display: block;
}
}
body {
background: #121212!important;
color: #ddd!important;
}
a {
color: #fff!important;
}
h2 {
color: #fff;
}
#page_header_cont .back {
background: #232323!important;
border-bottom: 1px solid transparent!important;
}
.page_block {
background: #1c1c1c!important;
box-shadow: 0 1px 0 0 transparent, 0 0 0 1px transparent!important;
}
.login_mobile_info {
color: #aaa!important;
}
.box_controls .flat_button.secondary, .flat_button.secondary.button_light {
color: #aaa!important;
}
.index_page .flat_button.secondary.button_light:hover {
background-color: #333333!important;
}
.login_app_download_icon {
background-image: url(https://i.imgur.com/gISc6QU.png)!important;
}
.footer_nav {
color: #808080;
}
.fakeinput, div[contenteditable=true], input.big_text, input.dark, input.search, input.text, textarea {
background: #121212!important;
}
.fakeinput, .fakeinput~.placeholder .ph_input, div[contenteditable=true], input.big_text, input.big_text~.placeholder .ph_input, input.dark, input.dark~.placeholder .ph_input, input.search, input.search~.placeholder .ph_input, input.text, input.text~.placeholder .ph_input, textarea, textarea~.placeholder .ph_input {
border-color: #2c2c2c!important;
}
.fakeinput:focus, div[contenteditable=true]:focus, input.big_text:focus, input.dark:focus, input.search:focus, input.text:focus, textarea:focus {
border-color: #2c2c2c!important;
}
.ij_subheader {
color: #808080!important;
}
.ij_label {
color: #d1d1d1!important;
}
.selector_container {
background: #1c1c1c!important;
}
.selector_container table.selector_table {
border-color: #2c2c2c!important;
}
.selector_container td.selector input.focused, .selector_container td.selector input.selected {
color: #aaa !important;
}
input.text.ts_input {
background: #121212 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23c1c1c1' d='M9.95856088,8.72112401 L13.6187184,12.3812816 C13.9604272,12.7229903 13.9604272,13.2770097 13.6187184,13.6187184 C13.2770097,13.9604272 12.7229903,13.9604272 12.3812816,13.6187184 L8.72112401,9.95856088 C7.81577964,10.6137756 6.70299359,11 5.5,11 C2.46243388,11 0,8.53756612 0,5.5 C0,2.46243388 2.46243388,0 5.5,0 C8.53756612,0 11,2.46243388 11,5.5 C11,6.70299359 10.6137756,7.81577964 9.95856088,8.72112401 Z M5.5,9.25 C7.57106781,9.25 9.25,7.57106781 9.25,5.5 C9.25,3.42893219 7.57106781,1.75 5.5,1.75 C3.42893219,1.75 1.75,3.42893219 1.75,5.5 C1.75,7.57106781 3.42893219,9.25 5.5,9.25 Z'/%3E%3C/svg%3E") no-repeat!important;
background-position: left 8px!important;
border-left-color: transparent!important;
}
.ts_wrap .input_back_content {
color: #c1c1c1!important;
}
input.text.ts_input:focus {
background-color: #121212!important;
color: #ccc!important;
}
.index_page .index_footer_wrap {
border-top: 1px solid #252525!important;
}
.top_nav_link:hover {
background-color: transparent!important;
}
.fakeinput, .fakeinput~.placeholder .ph_input, div[contenteditable=true], div[contenteditable=true]~.placeholder .ph_input, input.big_text, input.big_text~.placeholder .ph_input, input.dark, input.dark~.placeholder .ph_input, input.search, input.search~.placeholder .ph_input, input.text, input.text~.placeholder .ph_input, textarea, textarea~.placeholder .ph_input {
color: #ccc!important;
}
.index_users_info {
color: #aaa!important;
}
.index_user_name {
color: #fff!important;
}
img.login_compact_mobile_promo_picture {
z-index: -1!important;
}
.index_user_del_wrap {
background: url(https://i.ibb.co/LQmjH3X/cross.png) no-repeat 50%!important;
}
.box_body {
background-color: #1c1c1c!important;
}
.box_x_button.box_x_tabs {
background: url(https://i.ibb.co/LQmjH3X/cross.png) no-repeat 12px 21px;
}
.login_page #footer_wrap {
border-top: 1px solid #252525!important;
}
.error {
background: #2c2c2c!important;
}
.box_error, .error {
border-color: transparent!important;
}
.login_page .msg .listing {
color: #ccc!important;
}
ul.listing li span {
color: #ccc!important;
}
a b, b a {
color: #ccc!important;
}
.page_block_header {
background: #1c1c1c!important;
border-bottom: 1px solid #2c2c2c!important;
}
.page_block_header {
color: #fff!important;
}
.bottom_row {
background: #2c2c2c!important;
border-top: 1px solid transparent!important;
color: #aaa!important;
}
.box_title_wrap {
background-color: #181818!important;
}
.box_controls {
background-color: #1c1c1c!important;
border-top-color: #2c2c2c!important;
}
.box_botsh .box_controls {
border-top-color: #2c2c2c!important;
}
.login_sure_name_lnk {
color: #fff!important;
}
.box_controls .flat_button.secondary:hover, .flat_button.secondary.button_light:hover {
background-color: #2c2c2c!important;
}
.button_gray button, .flat_button.secondary {
background-color: #2c2c2c!important;
color: #b6b6b6!important;
}
.button_gray button.hover, .button_gray button:hover, .flat_button.secondary.hover, .flat_button.secondary:hover {
background-color: #303030!important;
}
.profile_warning_row {
color: #ddd!important;
}
.profile_warning_hide {
background: url(https://i.ibb.co/LQmjH3X/cross.png) no-repeat 0 0!important;
}
.module_header .header_top {
color: #ddd!important;
}
.module {
border: solid #2c2c2c!important;
border-width: 1px 0 0!important;
}
.page_list_module .group_desc, .page_list_module .people_desc, .page_list_module .people_extra {
color: #aaa!important;
}
.audio_w_covers .audio_row .audio_row__performers a {
color: #aaa!important;
}
.audio_row:hover:not(.audio_row__current) .audio_row_content {
background-color: #252525!important;
}
.audio_w_covers .audio_row .audio_row__cover_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='12' cy='12' r='12' fill='%233c3c3c'/%3E%3Cpath fill='%23ffffff' d='M9.84335571,16.7896383 C9.37758321,17.088598 9,16.885726 9,16.3263902 L9,7.6574922 C9,7.10268766 9.37902442,6.89620947 9.84335571,7.19424408 L16.733151,11.6165123 C17.0561878,11.8238559 17.0599966,12.1575817 16.733151,12.3673701 L9.84335571,16.7896383 Z'/%3E%3C/g%3E%3C/svg%3E")!important;
}
.fakeinput, div[contenteditable=true], input.big_text, input.dark, input.search, input.text, textarea {
background: #1c1c1c!important;
}
#submit_post_box:not(.shown):not(.test_posting_experiment_b):not(.test_posting_experiment_c):not(.own_field) .poster__open-btn-wrapper {
border-left: 1px solid #2c2c2c!important;
}
.wide_column .page_upload_label {
background-image: url(https://i.imgur.com/cmfNzU3.png)!important;
}
.page_counter .count {
color: #ddd!important;
}
.page_counter .label {
color: #999!important;
}
.wide_column .page_top {
border-bottom: 1px solid #2c2c2c!important;
}
.counts_module {
border-top: 1px solid #2c2c2c!important;
}
.profile_info .label {
color: #aaa!important;
}
.profile_more_info_link:hover {
background-color: #252525!important;
}
.profile_label_more {
color: #aaa!important;
}
.profile_label_link {
color: #999!important;
}
.profile_no_info .labeled {
color: #aaa!important;
}
.profile_info_header {
background-color: #1c1c1c!important;
}
.ui_tabs {
border-bottom-color: #2c2c2c!important;
}
.ui_tab_sel, .ui_tabs .ui_tab_sel, .ui_tabs_box .ui_tab_sel {
color: #fff !important;
}
.ui_tab_sel, .ui_tab_sel:hover, .ui_tabs_box .ui_tab_sel, .ui_tabs_box .ui_tab_sel:hover {
border-bottom: 1px solid #fff!important;
}
.ui_tab, .ui_tabs .ui_tab {
color: #aaa!important;
}
.ui_tabs.ui_tabs_sliding .ui_tabs_slider {
background-color: #fff!important;
}
.wall_module .copy_quote {
border-left: 1px solid #4c4c4c!important;
}
.like_cont {
border-top: 1px solid #2c2c2c!important;
}
.page_doc_row .page_doc_title {
color: #fff!important;
}
.post_date, .post_date .post_link, .post_date .wall_text_name_explain_promoted_post {
color: #aaa!important;
}
.like_btn.like .like_button_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' height='100%25' width='100%25'%3E%3Ctitle%3Elike_outline_24%3C/title%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M17,2.9A6.43,6.43,0,0,1,23.4,9.33c0,3.57-1.43,5.36-7.45,10l-2.78,2.16a1.9,1.9,0,0,1-2.33,0L8.05,19.37C2,14.69.6,12.9.6,9.33A6.43,6.43,0,0,1,7,2.9a6.46,6.46,0,0,1,5,2.54A6.46,6.46,0,0,1,17,2.9ZM7,4.7A4.63,4.63,0,0,0,2.4,9.33c0,2.82,1.15,4.26,6.76,8.63l2.78,2.16a.1.1,0,0,0,.12,0L14.84,18c5.61-4.36,6.76-5.8,6.76-8.63A4.63,4.63,0,0,0,17,4.7c-1.56,0-3,.88-4.23,2.73L12,8.5l-.74-1.07C10,5.58,8.58,4.7,7,4.7Z' fill='%23999999'/%3E%3C/svg%3E")!important;
}
.like_button_count, .like_button_label {
color: #aaa!important;
}
.like_btn.comment .like_button_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3Ecomment_outline_24%3C/title%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M7.84,22.53A2,2,0,0,1,7.1,21V18.9H5.5a3.26,3.26,0,0,1-3.4-3.4v-9A3.26,3.26,0,0,1,5.5,3.1h13a3.26,3.26,0,0,1,3.4,3.4v9a3.26,3.26,0,0,1-3.4,3.4H13.84l-3.72,3.26A1.69,1.69,0,0,1,7.84,22.53Zm4.93-5.09a1.4,1.4,0,0,1,.92-.35H18.5a1.47,1.47,0,0,0,1.6-1.6v-9a1.47,1.47,0,0,0-1.6-1.6H5.5A1.47,1.47,0,0,0,3.9,6.5v9a1.47,1.47,0,0,0,1.6,1.6H8c.7.2.7.2.9.9v2.83Z' fill='%23999999'/%3E%3C/svg%3E")!important;
}
.like_btn.share .like_button_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3Eshare_outline_24%3C/title%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M12.1,7.87V4.4a1.32,1.32,0,0,1,2.17-1L23.21,11a1.32,1.32,0,0,1,.15,1.86l-.15.15-8.94,7.6a1.32,1.32,0,0,1-2.17-1V16.16c-4.68.11-8,1.09-9.89,2.87a1.15,1.15,0,0,1-1.9-1.11C1.84,11.56,5.82,8.16,12.1,7.87Zm1.8-2.42v4.2H13c-5.3,0-8.72,2.25-10.39,6.86C5.06,15.06,8.53,14.35,13,14.35h.9v4.2L21.61,12Z' fill='%23999999'/%3E%3C/svg%3E")!important;
}
.like_views {
color: #999!important;
}
.wall_module .reply_form {
background-color: #1c1c1c!important;
}
.deep_active .replies .reply_field_wrap .reply_field, .deep_active .replies .wl_reply_form_wrap .reply_field_wrap .reply_field, .deep_active.wall_module .replies .reply_field_wrap .reply_field, .deep_active.wall_module .replies .wl_reply_form_wrap .reply_field_wrap .reply_field, .deep_active.wall_module .wl_replies_block_wrap .reply_field_wrap .reply_field, .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_field_wrap .reply_field, .deep_active .wl_replies_block_wrap .reply_field_wrap .reply_field, .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_field_wrap .reply_field {
background-color: #1c1c1c!important;
border: 1px solid transparent!important;
}
.deep_active .replies .reply_box div.submit_post_field, .deep_active .replies .reply_box div.submit_post_field[contenteditable=true], .deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field, .deep_active .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true], .deep_active.wall_module .replies .reply_box div.submit_post_field, .deep_active.wall_module .replies .reply_box div.submit_post_field[contenteditable=true], .deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field, .deep_active.wall_module .replies .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true], .deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field, .deep_active.wall_module .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true], .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field, .deep_active.wall_module .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true], .deep_active .wl_replies_block_wrap .reply_box div.submit_post_field, .deep_active .wl_replies_block_wrap .reply_box div.submit_post_field[contenteditable=true], .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field, .deep_active .wl_replies_block_wrap .wl_reply_form_wrap .reply_box div.submit_post_field[contenteditable=true] {
border-color: #2c2c2c!important;
}
.wall_module .reply_box, .wall_module .reply_fakebox_wrap {
background-color: transparent!important;
}
.deep_active .replies .replies_list:empty, .deep_active.wall_module .replies .replies_list:empty, .deep_active.wall_module .wl_replies_block_wrap .replies_list:empty, .deep_active .wl_replies_block_wrap .replies_list:empty {
border-top: 1px solid #2c2c2c!important;
}
.ms_items_more {
background: #1c1c1c!important;
border-color: #2c2c2c!important;
}
.media_selector .ms_items_more .ms_item:hover {
background-color: #252525!important;
}
.wall_module .replies_list {
border-top: 1px solid #2c2c2c!important;
}
.ms_items_more_wrap.to_down .ms_items_more:after {
border-bottom-color: #2c2c2c!important;
}
.ms_items_more_wrap.to_down .ms_items_more:before {
border-bottom-color: #2c2c2c!important;
}
.media_selector .ms_item:before {
background-image: url(https://i.imgur.com/G35UeRP.png)!important;
}
.deep_active .replies .reply_box_more_attaches:before, .deep_active.wall_module .replies .reply_box_more_attaches:before, .deep_active.wall_module .wl_replies_block_wrap .reply_box_more_attaches:before, .deep_active .wl_replies_block_wrap .reply_box_more_attaches:before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath stroke='%23999999' stroke-width='1.8' d='M20.0291094,15.0279907 L14.6443834,20.2583795 L14.6443834,20.2583795 C12.0566785,22.7719155 7.93029511,22.7421861 5.37907548,20.1916257 L5.37907548,20.1916257 L5.37907548,20.1916257 L5.37907548,20.1916257 C2.76745218,17.5806772 2.76690514,13.3469463 5.37785362,10.735323 C5.38546336,10.7277113 5.39309146,10.720118 5.40073787,10.7125431 L13.4673115,2.72143747 L13.4673115,2.72143747 C15.2274317,0.977784268 18.0678013,0.991133451 19.8114545,2.7512537 C19.8205797,2.76046506 19.8296649,2.76971594 19.8387099,2.77900608 L19.8387099,2.77900608 L19.8387099,2.77900608 C21.5887922,4.57652514 21.569373,7.4467765 19.7951292,9.22045114 L11.6642625,17.3487092 L11.6642625,17.3487092 C10.8163456,18.196354 9.46403082,18.26344 8.53638318,17.5038779 L8.40267048,17.3943933 L8.40267048,17.3943933 C7.50791768,16.6617656 7.37648933,15.342513 8.10911705,14.4477602 C8.14767542,14.4006692 8.18826865,14.3552816 8.23078109,14.311727 L13.6981137,8.71035836' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/g%3E %3C/svg%3E") no-repeat!important;
background-size: 18px!important;
}
.wall_module .reply_box_photo {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23999999' stroke-width='1.7'%3E%3Cpath d='M14.134 3.65c.853 0 1.46.278 1.988.899.017.019.494.61.66.815.228.281.674.536.945.536h.41C20.556 5.9 22 7.463 22 9.95v5.85c0 2.241-2 4.2-4.273 4.2H6.273c-2.267 0-4.223-1.953-4.223-4.2V9.95c0-2.496 1.4-4.05 3.814-4.05h.409c.271 0 .717-.255.945-.536.166-.204.643-.796.66-.815.528-.621 1.135-.899 1.988-.899h4.268z'/%3E%3Ccircle cx='12' cy='12' r='3.85'/%3E%3C/g%3E%3C/svg%3E") 50% no-repeat!important;
background-size: 20px!important;
}
.emoji_smile_icon_vector {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath opacity='.4' d='M0 0h24v24H0z'/%3E%3Cpath fill='%23999999' fill-rule='nonzero' d='M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12zm18.3 0a8.3 8.3 0 1 0-16.6 0 8.3 8.3 0 0 0 16.6 0zm-11.05-.5a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5zm5.5 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5z'/%3E%3Cpath stroke='%23999999' stroke-width='1.7' d='M9 14.85c.833.767 1.833 1.15 3 1.15s2.167-.383 3-1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E") !important;
}
.wall_module .emoji_smile_icon_vector {
background-repeat: no-repeat !important;
background-size: 20px !important;
background-position: 2px 2px !important;
}
.deep_active .replies .reply_send_button:before, .deep_active.wall_module .replies .reply_send_button:before, .deep_active.wall_module .wl_replies_block_wrap .reply_send_button:before, .deep_active .wl_replies_block_wrap .reply_send_button:before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23999999' d='M4.7 15.8c-.7 1.9-1.1 3.2-1.3 3.9-.6 2.4-1 2.9 1.1 1.8 2.1-1.1 12-6.7 14.3-7.9 2.9-1.6 2.9-1.5-.2-3.2-2.3-1.4-12.2-6.8-14-7.9s-1.7-.6-1.2 1.8c.2.8.6 2.1 1.3 3.9.5 1.3 1.6 2.3 3 2.5l5.8 1.1c.1 0 .1.1.1.1s0 .1-.1.1l-5.8 1.1c-1.3.4-2.5 1.3-3 2.7z'/%3E%3C/svg%3E") 50% no-repeat!important;
}
.tt_default, .tt_default_right {
background: #1c1c1c!important;
border: 1px solid #2c2c2c!important;
}
.reply_submit_hint_title {
color: #ddd!important;
}
.reply_submit_hint_opts .radiobtn {
color: #aaa!important;
}
.tt_default_right.tt_up:before {
border-bottom-color: #2c2c2c!important;
}
.tt_default_right.tt_up:after {
border-bottom-color: #2c2c2c!important;
}
.radiobtn:before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Ccircle id='a' cx='7' cy='7' r='7'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cuse fill='%231c1c1c' xlink:href='%23a'/%3E%3Ccircle cx='7' cy='7' r='6.5' stroke='%234c4c4c'/%3E%3C/g%3E%3C/svg%3E") no-repeat 0!important;
}
.wall_signed_by {
background: url("data:image/svg+xml,%3Csvg width='8' height='9' viewBox='20 203 8 9' xmlns='http://www.w3.org/2000/svg' style='fill:%23dddddd!important;'%3E%3Cpath d='M24 209c3.5 0 4 1 4 2.5 0 .5 0 .5-1 .5h-6c-1 0-1 0-1-.5 0-1.5.5-2.5 4-2.5zm0-1c-1.1 0-2-1.12-2-2.5s.9-2.5 2-2.5 2 1.12 2 2.5-.9 2.5-2 2.5z'/%3E%3C/svg%3E") no-repeat!important;
background-position: left 3px!important;
}
.like_views:before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='1 2 14 10' style='fill:%23999999!important;'%3E%3Cpath d='M8 12C3.8 12 1 8 1 7 1 6 3.8 2 8 2 12.2 2 15 6 15 7 15 8 12.2 12 8 12ZM8 10.5C9.9 10.5 11.5 8.9 11.5 7 11.5 5.1 9.9 3.5 8 3.5 6.1 3.5 4.5 5.1 4.5 7 4.5 8.9 6.1 10.5 8 10.5ZM8 8.6C7.1 8.6 6.4 7.9 6.4 7 6.4 6.1 7.1 5.4 8 5.4 8.9 5.4 9.6 6.1 9.6 7 9.6 7.9 8.9 8.6 8 8.6Z'/%3E%3C/svg%3E") no-repeat 50% / contain!important;
}
.ui_tab_search:after {
background: url(https://i.imgur.com/NYHcHb1.png) no-repeat!important;
background-position: 100%!important;
}
.ui_search_reset {
background: url(https://i.ibb.co/LQmjH3X/cross.png) no-repeat 50%!important;
}
input.ui_search_field {
background: url(https://i.imgur.com/NYHcHb1.png) no-repeat!important;
background-position: 0!important;
color: #ddd!important;
}
input[type="text"]::-webkit-input-placeholder {
color: #999!important;
}
input[type="text"]:active::-webkit-input-placeholder {
color: #ddd!important;
}
input[type="text"]:focus::-webkit-input-placeholder {
color: #ddd!important;
}
.ui_search {
background-color: #1c1c1c!important;
border-bottom-color: #2c2c2c!important;
}
a:hover ~ .label {
color: #ddd !important;
}
[dir] .media_selector .ms_item.ms_item_article:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='%23cccccc' d='M8,6 L8,13 C8,13.5522847 7.55228475,14 7,14 C6.44771525,14 6,13.5522847 6,13 L6,6 L4,6 C3.44771525,6 3,5.55228475 3,5 L3,5 L3,5 C3,4.44771525 3.44771525,4 4,4 L4,4 L10,4 C10.5522847,4 11,4.44771525 11,5 L11,5 C11,5.55228475 10.5522847,6 10,6 L8,6 Z M12,12 L20,12 C20.5522847,12 21,12.4477153 21,13 C21,13.5522847 20.5522847,14 20,14 L12,14 C11.4477153,14 11,13.5522847 11,13 C11,12.4477153 11.4477153,12 12,12 Z M14,7 L20,7 C20.5522847,7 21,7.44771525 21,8 C21,8.55228475 20.5522847,9 20,9 L14,9 C13.4477153,9 13,8.55228475 13,8 C13,7.44771525 13.4477153,7 14,7 Z M6,17 L20,17 C20.5522847,17 21,17.4477153 21,18 C21,18.5522847 20.5522847,19 20,19 L6,19 C5.44771525,19 5,18.5522847 5,18 C5,17.4477153 5.44771525,17 6,17 Z'/%3E %3C/g%3E %3C/svg%3E")!important;
}
.poster__change-bkg-btn {
background-color: #2c2c2c!important;
}
.poster__toolbar {
background: #1c1c1c!important;
}
.poster__slider-arrow {
background: #1c1c1c no-repeat!important;
}
.poster__slider-arrow._left {
background-image: url("data:image/svg+xml,%3Csvg height='55' viewBox='0 0 26 55' width='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' transform=''%3E%3Cpath d='m0 0h26v55h-26z'/%3E%3Cpath d='m10 23 5 5-5 5' opacity='.7' stroke='%23cccccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' transform='matrix(-1 0 0 1 25 0)'/%3E%3C/g%3E%3C/svg%3E")!important;
box-shadow: 5px 0 5px 0px #1c1c1c!important;
}
.poster__slider-arrow._right {
background-image: url("data:image/svg+xml,%3Csvg height='55' viewBox='0 0 26 55' width='26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' transform=''%3E%3Cpath d='m0 0h26v55h-26z'/%3E%3Cpath d='m11 22 5 5-5 5' opacity='.7' stroke='%23cccccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E")!important;
box-shadow: 5px 0 5px 0px #1c1c1c!important;
}
.poster__slider-arrow:hover {
background-color: #2c2c2c!important;
}
[dir] .post_actions_btns {
border-top-color: #2c2c2c;
}
.poster__toolbar-wrapper {
border-top: 1px solid #2c2c2c!important;
}
.poster__close-button {
background-image: url("data:image/svg+xml,%3Csvg height='55' viewBox='0 0 31 55' width='31' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' transform=''%3E%3Cpath d='m0 0h31v55h-31z'/%3E%3Crect fill='%23cccccc' height='18.5' rx='9.25' stroke='transparent' stroke-opacity='.071983' stroke-width='.5' width='18.5' x='6.25' y='18.25'/%3E%3Cpath d='m15.5 26.4658563 2.8141831-2.8141831c.2855709-.2855709.7485728-.2855709 1.0341437 0s.2855709.7485728 0 1.0341437l-2.8141831 2.8141831 2.8141831 2.8141831c.2855709.2855709.2855709.7485728 0 1.0341437s-.7485728.2855709-1.0341437 0l-2.8141831-2.8141831-2.8141831 2.8141831c-.2855709.2855709-.7485728.2855709-1.0341437 0s-.2855709-.7485728 0-1.0341437l2.8141831-2.8141831-2.8141831-2.8141831c-.2855709-.2855709-.2855709-.7485728 0-1.0341437s.7485728-.2855709 1.0341437 0z' fill='%231c1c1c' fill-rule='nonzero'/%3E%3C/g%3E%3C/svg%3E")!important;
}
.poster__settings-btn-wrapper {
border-left: 1px solid #5c5c5c!important;
}
.post_settings .checkbox_pic {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23cccccc' d='M5.186 2.953c.386-.216.8-.39 1.235-.512L6.823.193c.012-.07.023-.095.04-.12A.16.16 0 0 1 6.929.02C6.956.006 6.982 0 7.053 0h1.894c.071 0 .097.006.124.019a.16.16 0 0 1 .066.055c.017.024.028.048.04.119L9.58 2.44c.435.123.849.296 1.235.512l1.874-1.306c.059-.04.084-.05.113-.056a.16.16 0 0 1 .085.008c.028.01.05.024.101.074l1.34 1.34c.05.05.064.073.074.1a.16.16 0 0 1 .008.086c-.005.03-.015.054-.056.113l-1.306 1.874c.216.386.39.8.512 1.235l2.248.402c.07.012.095.023.12.04a.16.16 0 0 1 .054.066c.013.027.019.053.019.124v1.894c0 .071-.006.097-.019.124a.16.16 0 0 1-.055.066c-.024.017-.048.028-.119.04l-2.248.402c-.123.435-.296.849-.512 1.235l1.306 1.874c.04.059.05.084.056.113a.16.16 0 0 1-.008.085c-.01.028-.024.05-.074.101l-1.34 1.34c-.05.05-.073.064-.1.074a.16.16 0 0 1-.086.008c-.03-.005-.054-.015-.113-.056l-1.874-1.306c-.386.216-.8.39-1.235.512l-.402 2.248c-.012.07-.023.095-.04.12a.16.16 0 0 1-.066.054c-.027.013-.053.019-.124.019H7.053c-.071 0-.097-.006-.124-.019a.16.16 0 0 1-.066-.055c-.017-.024-.028-.048-.04-.119L6.42 13.56a5.742 5.742 0 0 1-1.235-.512l-1.874 1.306c-.059.04-.084.05-.113.056a.16.16 0 0 1-.085-.008c-.028-.01-.05-.024-.101-.074l-1.34-1.34c-.05-.05-.064-.073-.074-.1a.16.16 0 0 1-.008-.086c.005-.03.015-.054.056-.113l1.306-1.874A5.742 5.742 0 0 1 2.44 9.58L.193 9.177c-.07-.012-.095-.023-.12-.04a.16.16 0 0 1-.054-.066C.006 9.044 0 9.018 0 8.947V7.053c0-.071.006-.097.019-.124a.16.16 0 0 1 .055-.066c.024-.017.048-.028.119-.04L2.44 6.42c.123-.435.296-.849.512-1.235L1.647 3.312c-.04-.059-.05-.084-.056-.113a.16.16 0 0 1 .008-.085c.01-.028.024-.05.074-.101l1.34-1.34c.05-.05.073-.064.1-.074A.16.16 0 0 1 3.2 1.59c.03.005.054.015.113.056l1.874 1.306zM8 10.667a2.667 2.667 0 1 0 0-5.334 2.667 2.667 0 0 0 0 5.334z' opacity='.8'/%3E%3C/svg%3E") 50% / 100% no-repeat!important;
}
.eltt {
background-color: #1c1c1c!important;
border: 1px solid #2c2c2c!important;
box-shadow: 0 5px 26px 0px rgba(0,0,0,.32)!important;
color: #ddd!important;
}
.eltt.eltt_top.eltt_arrow_size_normal>.eltt_arrow_back .eltt_arrow {
border-top: 7px solid #2c2c2c !important;
}
.eltt.eltt_top.eltt_arrow_size_normal>.eltt_arrow_back {
border-top: 8px solid #2c2c2c !important;
}
.checkbox:before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Crect id='a' width='15' height='15' rx='3'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cuse fill='%231c1c1c' xlink:href='%23a'/%3E%3Crect width='14' height='14' x='.5' y='.5' stroke='%234c4c4c' rx='3'/%3E%3C/g%3E%3C/svg%3E") no-repeat 0!important;
}
.checkbox:hover:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Crect id='a' width='15' height='15' rx='3'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cuse fill='%231c1c1c' xlink:href='%23a'/%3E%3Crect width='14' height='14' x='.5' y='.5' stroke='%234c4c4c' rx='3'/%3E%3C/g%3E%3C/svg%3E")!important;
}
.post_action_tt_item {
color: #ddd!important;
}
.post_action_tt_item:hover {
background-color: #3c3c3c!important;
}
.post_action_tt_item.radiobtn.on:before {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ddd' d='M10 16c-.3 0-.5-.1-.7-.3l-3.5-3.5c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l2.8 2.8 6.3-6.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-7 7c-.2.2-.4.3-.7.3z'/%3E%3C/svg%3E") 50% no-repeat!important;
}
.post_action_btn.on {
color: #fff!important;
}
.medadd_h {
color: #ddd!important;
}
.medadd_c_timer {
color: #999!important;
}
.datepicker_control {
border: 1px solid transparent!important;
}
.datepicker_text {
background: #121212 url(https://i.imgur.com/1Kq5Rw9.png) no-repeat!important;
background-position: right 6px!important;
color: #ccc!important;
}
.cal_table .month, .cal_table .month_arr {
background-color: #2c2c2c!important;
}
.cal_table .daysofweek {
background-color: #2c2c2c!important;
color: #ddd!important;
}
.cal_table {
background-color: #3c3c3c!important;
border: 1px solid transparent!important;
color: #fff!important;
}
.cal_table .past_day {
color: #999!important;
}
.cal_table .day.sel, .cal_table .day.sel.hover {
background-color: #2c2c2c!important;
border: 1px solid #2c2c2c!important;
}
.cal_table .day.hover {
background-color: #4c4c4c!important;
}
.submit_post {
background: #1c1c1c!important;
border-top: 1px solid transparent!important;
}
.poster__open-btn-wrapper {
border-right: 1px solid #2c2c2c!important;
}
.media_selector .ms_item_more_label {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='944 1152 8 4'%3E%3Cpath d='M945.2 1152.2C944.9 1152 944.5 1152 944.3 1152.3 944.1 1152.6 944.1 1153 944.4 1153.2L947.6 1155.8C947.8 1156 948.2 1156 948.4 1155.8L951.6 1153.2C951.9 1153 951.9 1152.6 951.7 1152.3 951.5 1152 951.1 1152 950.8 1152.2L948 1154.5 945.2 1152.2Z' fill='%23cccccc'/%3E%3C/svg%3E") no-repeat!important;
background-position: right 7px!important;
}
.post_action_btn .post_action_btn_layout:after {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='944 1152 8 4'%3E%3Cpath d='M945.2 1152.2C944.9 1152 944.5 1152 944.3 1152.3 944.1 1152.6 944.1 1153 944.4 1153.2L947.6 1155.8C947.8 1156 948.2 1156 948.4 1155.8L951.6 1153.2C951.9 1153 951.9 1152.6 951.7 1152.3 951.5 1152 951.1 1152 950.8 1152.2L948 1154.5 945.2 1152.2Z' fill='%23cccccc'/%3E%3C/svg%3E") no-repeat!important;
}
.post_action_btn {
color: #999!important;
}
.my_current_info:hover, .no_current_info:hover {
background-color: #252525!important;
}
.no_current_info {
color: #aaa!important;
}
.page_status_editor .editor {
background-color: #1c1c1c!important;
border-color: #2c2c2c!important;
}
.chat_onl_inner {
background-color: #1c1c1c!important;
}
.chat_tab_wrap:hover {
background-color: #252525!important;
}
.chat_onl {
color: #ccc!important;
}
.chat_onl:after {
background: url(https://i.imgur.com/te0Xn5b.png) no-repeat 0 -116px!important;
}
.top_nav_btn#top_notify_btn .top_nav_btn_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%235c5c5c' fill-rule='evenodd' d='M8,18 C6.64583333,18 5.5,17.3 5.5,16 L10.5,16 C10.5,17.3 9.35416667,18 8,18 Z M13.9956933,11 C13.9956933,12.5 16,12.5 16,13.5 C16,14 16,15 13.8955984,15 L1.98430985,15 C-6.19060359e-13,15 -1.62536651e-13,14 -1.63424829e-13,13.5 C-1.63369318e-13,12.5 1.98430985,12.5 2,11 L2,8 C2,4 4.09724901,1.5 7,1.1 L7,1 C7,0.4 7.5,5.74053187e-17 8,0 C8.5,0 9,0.4 9,1 L9,1.1 C11.902751,1.5 13.9956933,4 13.9956933,8 L13.9956933,11 Z' transform='translate(2 1)'/%3E%3C/svg%3E")!important;
}
.top_nav_btn:hover {
background-color: #2c2c2c!important;
}
.top_nav_btn#top_notify_btn:hover .top_nav_btn_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23121212' fill-rule='evenodd' d='M8,18 C6.64583333,18 5.5,17.3 5.5,16 L10.5,16 C10.5,17.3 9.35416667,18 8,18 Z M13.9956933,11 C13.9956933,12.5 16,12.5 16,13.5 C16,14 16,15 13.8955984,15 L1.98430985,15 C-6.19060359e-13,15 -1.62536651e-13,14 -1.63424829e-13,13.5 C-1.63369318e-13,12.5 1.98430985,12.5 2,11 L2,8 C2,4 4.09724901,1.5 7,1.1 L7,1 C7,0.4 7.5,5.74053187e-17 8,0 C8.5,0 9,0.4 9,1 L9,1.1 C11.902751,1.5 13.9956933,4 13.9956933,8 L13.9956933,11 Z' transform='translate(2 1)'/%3E%3C/svg%3E")!important;
}
.top_nav_btn.active {
background-color: #2c2c2c!important;
}
.top_nav_btn#top_audio .top_nav_btn_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%235c5c5c' fill-rule='evenodd' d='M14,11.1552322 L14,5.5 L7,7.5 L7,15.2999878 C7,15.2999878 6.99923979,15.2998738 6.99774901,15.2996427 C6.99305423,16.449672 5.98201611,17.5525634 4.53840209,17.8858479 C2.90786903,18.2622862 1.34293783,17.5143682 1.04303041,16.2153265 C0.743122996,14.9162848 1.82180821,13.5580399 3.45234127,13.1816017 C3.98965862,13.0575522 4.51985206,13.0556001 5,13.1552322 L5,3.9955775 C5,3.44483697 5.42843442,2.88315425 5.95693506,2.73901771 L15.0430649,0.26098229 C15.568787,0.117603555 16,0.447563354 16,0.999660731 L16,13.2999878 C15.999253,13.2998718 15.9985027,13.2997528 15.9977491,13.2996309 C15.9930612,14.4496644 14.9820211,15.5525622 13.5384021,15.8858479 C11.907869,16.2622862 10.3429378,15.5143682 10.0430304,14.2153265 C9.743123,12.9162848 10.8218082,11.5580399 12.4523413,11.1816017 C12.9896586,11.0575522 13.5198521,11.0556001 14,11.1552322 Z' transform='translate(1 1)'/%3E%3C/svg%3E")!important;
}
.top_nav_btn#top_audio:hover .top_nav_btn_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23121212' fill-rule='evenodd' d='M14,11.1552322 L14,5.5 L7,7.5 L7,15.2999878 C7,15.2999878 6.99923979,15.2998738 6.99774901,15.2996427 C6.99305423,16.449672 5.98201611,17.5525634 4.53840209,17.8858479 C2.90786903,18.2622862 1.34293783,17.5143682 1.04303041,16.2153265 C0.743122996,14.9162848 1.82180821,13.5580399 3.45234127,13.1816017 C3.98965862,13.0575522 4.51985206,13.0556001 5,13.1552322 L5,3.9955775 C5,3.44483697 5.42843442,2.88315425 5.95693506,2.73901771 L15.0430649,0.26098229 C15.568787,0.117603555 16,0.447563354 16,0.999660731 L16,13.2999878 C15.999253,13.2998718 15.9985027,13.2997528 15.9977491,13.2996309 C15.9930612,14.4496644 14.9820211,15.5525622 13.5384021,15.8858479 C11.907869,16.2622862 10.3429378,15.5143682 10.0430304,14.2153265 C9.743123,12.9162848 10.8218082,11.5580399 12.4523413,11.1816017 C12.9896586,11.0575522 13.5198521,11.0556001 14,11.1552322 Z' transform='translate(1 1)'/%3E%3C/svg%3E")!important;
}
.top_audio_play__button {
background-color: #5c5c5c!important;
}
.top_audio_play__button:before {
background-color: #5c5c5c!important;
}
.top_audio_play__button:hover, .top_audio_play__button:hover:before {
background-color: #4c4c4c!important;
}
.top_audio_play__button:after {
background: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.797 9.836c-.44.327-.797.152-.797-.41V.574C0 .02.353-.166.797.163l5.962 4.42c.31.23.31.603 0 .833L.797 9.836z' fill='%23232323' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat!important;
}
#side_bar ol li .left_row {
color: #ddd!important;
}
#side_bar ol li .left_row:hover {
background: #252525!important;
}
[dir] #side_bar .left_icon {
background: url("data:image/svg+xml,%3Csvg width='18' height='1045' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E %3Cdefs%3E %3Cpath id='a' d='M0 0h18v1045H0z'/%3E %3C/defs%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cmask id='b' fill='%23fff'%3E %3Cuse xlink:href='%23a'/%3E %3C/mask%3E %3Cg mask='url(%23b)' fill='%23ddd' fill-rule='nonzero'%3E %3Cpath d='M3.34314575 908.656854c-3.12419433-3.124194-3.12419433-8.189514 0-11.313708 3.12419433-3.124195 8.18951415-3.124195 11.31370845 0 3.1241944 3.124194 3.1241944 8.189514 0 11.313708-3.1241943 3.124195-8.18951412 3.124195-11.31370845 0zm3.53553391-3.535534c1.41421356 1.414214 1.92503606 2.344536 1.92503606 2.344536.31386927.465139.80527777.475584 1.1203791.029206 0 0 1.90433228-1.666635-.92409482-4.495062-2.82842712-2.828427-4.49506166-.924095-4.49506166-.924095-.46357352.288318-.43330227.816712.02920587 1.120379 0 0 .93032188.510823 2.34453545 1.925036zm3.72102664-1.968055c.3167775.452405 1.1236967.433954 1.8023045-.041212.6786078-.475167.9719292-1.227112.6551516-1.679517-.3167775-.452405-1.1236967-.433954-1.8023045.041212-.6786077.475167-.9719291 1.227112-.6551516 1.679517zm.8087715 2.271479c.1664955.35705.7356371.44404 1.2712132.194297.5355762-.249743.8347752-.741647.6682797-1.098698-.1664955-.357051-.7356371-.44404-1.2712132-.194297-.5355762.249743-.8347752.741647-.6682797 1.098698zm-4.85646959-4.85647c.35705078.166495.84895454-.132703 1.09869781-.66828.24974327-.535576.16275335-1.104717-.19429743-1.271213-.35705078-.166495-.84895455.132704-1.09869781.66828-.24974327.535576-.16275335 1.104717.19429743 1.271213zm2.29473037.832023c.45240518.316778 1.20435042.023457 1.67951672-.655151.4751663-.678608.4936178-1.485527.0412126-1.802305-.4524052-.316777-1.20435043-.023456-1.67951671.655152-.47516628.678608-.49361779 1.485527-.04121261 1.802304zM8.99262937 867c3.42948403 0 6.47506643 2.179347 7.57841983 5.423131 1.110154 3.261905.0148198 6.854683-2.7255203 8.940236-.6850163.52129-1.448574.927284-2.269367 1.206542-.8397404.28543-1.70880616.43013-2.58317874.43013h-.00031448c-1.22576476-.000039-2.41186572-.278315-3.52540041-.827043-1.91655958-.943008-3.35078534-2.576496-4.03839605-4.599546-1.1100361-3.261945-.01450539-6.85492 2.72614927-8.940669.68462315-.521015 1.44798425-.926813 2.2688559-1.206149C7.25618826 867.143521 8.12041885 867 8.99262937 867zm.77405343 1.763251c-3.2638316 2.48396-3.50079234 5.308581-3.49560342 6.115026l.0011793.186368.1766985.059044c.41377718.138253.81273448.208343 1.18578648.208343.33409579 0 .65321446-.056253.94843264-.167264l.15566764-.058493.01242197-.165967c.08408411-1.13032.60997344-3.350353 3.18749159-5.518222l.3088194-.2598-.3638928-.174379c-.4985295-.238926-1.024694-.415467-1.5637915-.52467l-.1102253-.022407-.0918675.06494c-.11836242.083652-.23648901.170291-.351117.257481zm-6.91600679 3.652293l-.06777046.16121.12374792.123748c.40905997.408981 1.05563103 1.005511 1.81305632 1.524835l.35107771.240735.0545623-.42219c.16608479-1.286931.75577427-3.218153 2.6218598-5.110065l.63450289-.643348-.87960081.207007c-.22823392.053658-.44691551.116121-.64983379.185504-.68399419.232046-1.32097361.570506-1.89332737 1.006061-.92575076.704514-1.65479422 1.647325-2.10827451 2.726503zm-.23904418 4.487748l.08907649.05299c1.86875861 1.114203 3.63436776 1.679206 5.24776854 1.679206.04119689 0 .0824724-.000275.12343343-.001061 1.38269033-.024844 2.35262551-.464094 2.92285661-.828184l.2768604-.176895-.2353884-.229256c-.4584726-.446365-.9867599-.846305-1.57023837-1.188656l-.11710453-.068714-.12335481.056607c-.49337995.226622-1.02595198.341486-1.58285691.341486-1.96557917 0-3.88595183-1.433518-4.8557298-2.288l-.38779326-.341683-.04390928.515001c-.06816356.800745.00860889 1.600586.2281553 2.377312l.02822459.099847zm10.13683327 3.609367l.1658882-.112977-.0669449-.189199c-.1731213-.489292-.403478-.96569-.6847018-1.415986l-.1438746-.230317-.2242637.153466c-.7540839.516691-2.03303511 1.1326-3.84337905 1.1326-1.12013876 0-2.31009211-.23928-3.53683962-.711157l-1.06085927-.408078.77731616.829245c.55037946.587174 1.19734362 1.066048 1.92292781 1.423337.92881694.457293 1.91773889.689144 2.93936676.689144.72975105 0 1.45470631-.120957 2.15469961-.359254.5611111-.190497 1.099619-.459888 1.6006644-.800824zm2.4421344-3.027028l.0404893-.101105-.0435555-.099887c-1.2780471-2.924665-3.217092-4.085765-4.2592397-4.517585l-.2197822-.091121-.1105791.210702c-.4539913.865252-.5992025 1.589068-.64106767 2.043924l-.01509504.16467.14265601.08373c2.0675494 1.213067 3.119328 2.840148 3.6376305 3.991499l.1725316.383469.266404-.325369c.4309556-.526243.7773555-1.11267 1.0296078-1.742927zm-.0066041-2.681729l.5227839.74921-.0491376-.912229c-.0335314-.61984-.1487097-1.222148-.3425081-1.79006-.3677451-1.081811-1.0127045-2.056306-1.8650241-2.818095l-.1609745-.143953-.1711558.131531c-.5676759.436027-1.0678958.899099-1.486744 1.376401l-.2276835.259642.3122394.14757c.9357355.442159 2.2970019 1.321563 3.4682043 2.999983zM9.92410215 851.01354l-.92379693-.89343-.92461085.89343c-1.36087089 1.31528-3.56658866 1.31528-4.92745955 0-1.53097976-1.480762-1.53097976-3.875531 0-5.355436l5.15697828-4.986051c.38762006-.374772 1.00256418-.374772 1.39018424 0l5.15697826 4.986051c1.5301659 1.479905 1.5301659 3.875532 0 5.355436-1.3608709 1.31528-3.5674026 1.31528-4.92827345 0zM6.99999237 855l1.99999976-4 1.99999977 4s-.99999989.5-1.99999977.5c-.99999988 0-1.99999976-.5-1.99999976-.5zM11.8177979 818.099115c1.6989336-5.76-3.27044701-8-3.27044701-8-.33978671 2.88-2.03872024 3.48-3.82260044 5-2.97313368 2.52-2.71829365 5-2.71829365 5-.21236669 3.84 4.8844339 5.52 4.8844339 5.52-2.33603361-4 1.10430679-6 1.10430679-6-.12742001 5.16 4.20486051 6.48 4.20486051 6.48 7.0930475-3.64 2.0811936-11.24 2.0811936-11.24-.1698934 2.6-2.4634537 3.24-2.4634537 3.24zM3.46972561 765c-.26403164 0-.48255645-.2052934-.49902629-.46881086l-.41295762-6.60732189c-.00626404-.10022472.03082317-.19831191.10183103-.26931977.1366835-.1366835.35829125-.1366835.49497475 0L6.5 761l2.18695048-4.37390097c.0338673-.06773459.08879017-.12265746.15652476-.15652475.17289248-.08644624.38312804-.01636772.46957428.15652475L11.5 761l3.3454525-3.34545252c.0710079-.07100786.1690951-.10809508.2693198-.10183103.1929232.0120577.3395437.17822758.327486.3711508l-.4129576 6.60732189C15.0128308 764.7947066 14.794306 765 14.5302744 765H3.46972561zm.17124569 1h10.7180574c.2228797 0 .3037012.0232064.3851827.0667832.0814815.0435767.1454287.1075239.1890054.1890054.0435768.0814815.0667832.162303.0667832.3851827v.7180574c0 .2228797-.0232064.3037012-.0667832.3851827-.0435767.0814815-.1075239.1454287-.1890054.1890054-.0814815.0435768-.162303.0667832-.3851827.0667832H3.6409713c-.22287968 0-.30370124-.0232064-.38518273-.0667832-.08148148-.0435767-.14542862-.1075239-.18900539-.1890054C3.0232064 767.6627299 3 767.5819084 3 767.3590287v-.7180574c0-.2228797.0232064-.3037012.06678318-.3851827.04357677-.0814815.10752391-.1454287.18900539-.1890054C3.33727006 766.0232064 3.41809162 766 3.6409713 766zM16.6710289 790.95792l.0480191.113795c.5299824.602009.7836924 1.371923.7809297 2.140426-.0041441.85081-.3204759 1.70303-.9826085 2.322441v1.759938c0 .388955-.3103458.70548-.6906807.70548h-1.6143511c-.3812558 0-.6906807-.316525-.6906807-.70548V796H4.47788318v1.29452c0 .388955-.30942496.70548-.69068073.70548H2.17285136c-.38125576 0-.69068073-.316525-.69068073-.70548 0 0-.01335316-1.805559-.02025997-1.811673-.62391493-.58696-.9651112-1.416604-.96188803-2.334669.00322318-.743106.24588234-1.485741.74639564-2.075523l.05116863-.117002C.46828724 790.891209 0 790.491009 0 789.982728 0 789.439729.62512952 789 1.39542906 789c.20334189 0 .44627711.050412.6936548.145813l.12981288-.296831c.43420795-1.161691.99458025-2.303157 1.63461106-2.733971 2.21248061-1.486681 8.0809646-1.486681 10.2934452 0 .6395703.430343 1.2022449 1.570399 1.6341506 2.733971l.125895.298345c.2487296-.096382.4931572-.147327.6975723-.147327C17.3748705 789 18 789.439729 18 789.982728c0 .514658-.4801115.918506-1.3289711.975192zm-12.03366161-3.480102c-.34508322.253407-.78896042 1.273244-1.19480426 2.522182H14.6721461c-.4067715-1.249455-.8506487-2.269809-1.1957319-2.522182-1.7755088-1.303757-7.06261044-1.303757-8.83904691 0zM3.59544126 792c-.77029953 0-1.39542905.439729-1.39542905.982728 0 .542998.53444431.962648 1.47254039.981359.54535749.009958 2.01765864.113493 2.02742803-.084343C5.70750991 792.72521 4.36668653 792 3.59544126 792zm10.80911744 0c-.7712452 0-2.1120686.72521-2.1045393 1.879744.0097694.197836 1.4820705.094301 2.027428.084343.9380961-.018711 1.4725404-.438361 1.4725404-.981359 0-.542999-.6251295-.982728-1.3954291-.982728zM2.96145695 700h4.0770861c.33431953 0 .45555187.03481.57777409.100175.12222222.065365.21814294.161286.2835081.283508C7.9651904 700.505905 8 700.627137 8 700.961457v4.077086c0 .33432-.0348096.455552-.10017476.577774s-.16128588.218143-.2835081.283508C7.49409492 705.96519 7.37286258 706 7.03854305 706h-4.0770861c-.33431953 0-.45555187-.03481-.57777409-.100175-.12222222-.065365-.21814294-.161286-.2835081-.283508C2.0348096 705.494095 2 705.372863 2 705.038543v-4.077086c0-.33432.0348096-.455552.10017476-.577774s.16128588-.218143.2835081-.283508C2.50590508 700.03481 2.62713742 700 2.96145695 700zm0 8h4.0770861c.33431953 0 .45555187.03481.57777409.100175.12222222.065365.21814294.161286.2835081.283508C7.9651904 708.505905 8 708.627137 8 708.961457v4.077086c0 .33432-.0348096.455552-.10017476.577774s-.16128588.218143-.2835081.283508C7.49409492 713.96519 7.37286258 714 7.03854305 714h-4.0770861c-.33431953 0-.45555187-.03481-.57777409-.100175-.12222222-.065365-.21814294-.161286-.2835081-.283508C2.0348096 713.494095 2 713.372863 2 713.038543v-4.077086c0-.33432.0348096-.455552.10017476-.577774s.16128588-.218143.2835081-.283508C2.50590508 708.03481 2.62713742 708 2.96145695 708zm7.99999995 0h4.0770862c.3343195 0 .4555518.03481.577774.100175.1222223.065365.218143.161286.2835081.283508.0653652.122222.1001748.243454.1001748.577774v4.077086c0 .33432-.0348096.455552-.1001748.577774-.0653651.122222-.1612858.218143-.2835081.283508-.1222222.065365-.2434545.100175-.577774.100175h-4.0770862c-.3343195 0-.4555518-.03481-.577774-.100175-.1222223-.065365-.218143-.161286-.2835081-.283508C10.0348096 713.494095 10 713.372863 10 713.038543v-4.077086c0-.33432.0348096-.455552.1001748-.577774.0653651-.122222.1612858-.218143.2835081-.283508.1222222-.065365.2434545-.100175.577774-.100175zm2.7183958-8.562788l2.8829353 2.882935c.2363996.2364.2975097.346738.3377137.479383.040204.132644.040204.268296 0 .40094-.040204.132645-.1013141.242983-.3377137.479383l-2.8829353 2.882935c-.2363996.2364-.3467379.29751-.4793822.337714-.1326443.040204-.2682967.040204-.400941 0s-.2429826-.101314-.4793822-.337714l-2.88293526-2.882935c-.2363996-.2364-.2975097-.346738-.33771372-.479383-.04020401-.132644-.04020401-.268296 0-.40094.04020402-.132645.10131412-.242983.33771372-.479383l2.88293526-2.882935c.2363996-.2364.3467379-.29751.4793822-.337714.1326443-.040204.2682967-.040204.400941 0s.2429826.101314.4793822.337714zM8 741.929111c-3.06569114-.438513-5.49059835-2.86342-5.92911113-5.929111H1c-.55228475 0-1-.447715-1-1s.44771525-1 1-1h1.07088887C2.50940165 730.934309 4.93430886 728.509402 8 728.070889V727c0-.552285.44771525-1 1-1s1 .447715 1 1v1.070889c3.0656911.438513 5.4905983 2.86342 5.9291111 5.929111H17c.5522847 0 1 .447715 1 1s-.4477153 1-1 1h-1.0708889c-.4385128 3.065691-2.86342 5.490598-5.9291111 5.929111V743c0 .552285-.44771525 1-1 1s-1-.447715-1-1v-1.070889zM9 740c2.7614237 0 5-2.238576 5-5s-2.2385763-5-5-5c-2.76142375 0-5 2.238576-5 5s2.23857625 5 5 5zm0-3c-1.1045695 0-2-.895431-2-2 0-1.104569.8954305-2 2-2s2 .895431 2 2c0 1.104569-.8954305 2-2 2zM10.7142183 675.888889c0 1.981 2.0459196 3.027889 3.7987079 7C15.0709042 684.152778 16.5039907 686 9 686c-7.50399075 0-6.07090422-1.847222-5.51292615-3.111111 1.75278824-3.972111 3.79870782-5.019 3.79870782-7v-2.333333h-.42855458c-.23656213 0-.42855459-.174223-.42855459-.388889v-.777778c0-.214667.19199246-.388889.42855459-.388889h4.28554581c.2365621 0 .4285546.174222.4285546.388889v.777778c0 .214666-.1919925.388889-.4285546.388889h-.4285546v2.333333zm1.735443 8.069203c.1783937-.04876.2478885-.235997.1848417-.408281-.1576169-.435586-.4563727-1.187786-1.0108977-2.029053-.4556562-.691737-.1339743.323114-1.3067875.323114-1.17281325 0-2.58205184-2.376871-3.94042315-.323114-.55595788.840617-.85328071 1.593467-1.01089763 2.029053-.06304677.172284.00644796.360172.18484166.408281C6.05327996 684.094619 7.05414743 684.25 9 684.25c1.9458526 0 2.94672-.155381 3.4496613-.291908zM14.7651429 625.421307c-.7225715 1.161648-3.03 2.012216-5.7651429 2.012216-2.73514286 0-5.04257143-.850568-5.766-2.012216-.15257143-.247159-.234-.115057-.234.005966v1.70625C3 628.786932 5.68628571 630.5 9 630.5c3.3137143 0 6-1.713068 6-3.365625v-1.70625c0-.121875-.0822857-.253977-.2348571-.006818zm.0094285-4.360227c-.7114285 1.026988-3.0274285 1.78125-5.7745714 1.78125-2.74714286 0-5.064-.754262-5.77542857-1.78125C3.078 620.849716 3 620.964773 3 621.059375v2.008807c0 1.501704 2.68628571 2.717898 6 2.717898 3.3137143 0 6-1.217046 6-2.717898v-2.008807c0-.094602-.0788571-.209659-.2254286.001705zM9 615.5c-3.31371429 0-6 1.005682-6 2.244034v1.073864c0 1.313352 2.68628571 2.378693 6 2.378693 3.3137143 0 6-1.065341 6-2.378693v-1.073864C15 616.505682 12.3137143 615.5 9 615.5z'/%3E %3Cpath d='M14.7651429 624.921307c-.7225715 1.161648-3.03 2.012216-5.7651429 2.012216-2.73514286 0-5.04257143-.850568-5.766-2.012216-.15257143-.247159-.234-.115057-.234.005966v1.70625C3 628.286932 5.68628571 630 9 630c3.3137143 0 6-1.713068 6-3.365625v-1.70625c0-.121875-.0822857-.253977-.2348571-.006818zm.0094285-4.360227c-.7114285 1.026988-3.0274285 1.78125-5.7745714 1.78125-2.74714286 0-5.064-.754262-5.77542857-1.78125C3.078 620.349716 3 620.464773 3 620.559375v2.008807c0 1.501704 2.68628571 2.717898 6 2.717898 3.3137143 0 6-1.217046 6-2.717898v-2.008807c0-.094602-.0788571-.209659-.2254286.001705zM9 615c-3.31371429 0-6 1.005682-6 2.244034v1.073864c0 1.313352 2.68628571 2.378693 6 2.378693 3.3137143 0 6-1.065341 6-2.378693v-1.073864C15 616.005682 12.3137143 615 9 615zM12.9371701 654.002258c.1074811.531128.206315.76532.466883.991883L5.03026389 655c.05160041-1.108983 3.14833772-3 3.14833772-5.5-.52472295.5-2.76294717 1.285628-3.14833772 1.5-.06826304.04026-1.37206726-.706153-1.57416886-1-.44612852-.650436-.46646006-.746281-.45355996-.875427.0252627-.254632.32111869-.378538.48129495-.465332.00806257-.004183.85502645-.466534 1.59946983-1.451599.31443999-.7571.56466377-1.397048 1.83209878-2.023432.48751635-.240515.95084501-.424039 1.28517266-.544819-.04850158-.210334-.2864851-1.143496-.54669263-1.639391 0 0 .88145622.136433 1.57352833.534546.55544928.319521.93401641.909582 1.05008641.965454.317665.153198.8018519.011257 2.0988918 1C15 647.5 13.5112876 650.47804 13.5 650.5l-.5628299 3.502258zM3.6409713 655h10.7180574c.2228797 0 .3037012.023206.3851827.066783.0814815.043577.1454287.107524.1890054.189006.0435768.081481.0667832.162303.0667832.385182v1.718058c0 .222879-.0232064.303701-.0667832.385182-.0435767.081482-.1075239.145429-.1890054.189006-.0814815.043577-.162303.066783-.3851827.066783H3.6409713c-.22287968 0-.30370124-.023206-.38518273-.066783-.08148148-.043577-.14542862-.107524-.18900539-.189006C3.0232064 657.66273 3 657.581908 3 657.359029v-1.718058c0-.222879.0232064-.303701.06678318-.385182.04357677-.081482.10752391-.145429.18900539-.189006.08148149-.043577.16230305-.066783.38518273-.066783zM14.83824 598.079066C14.4605335 599.548962 13.2008894 602 9 602c-4.20088941 0-5.46053351-2.451038-5.83824002-3.920934l-1.02341576.089538 1.73092217-3.162896 2.25385662 2.814273-.93084685.081438c.28818399.756608 1.00829889 1.75627 2.80772384 2.027917v-6.100042C6.83480763 593.417458 6 592.306219 6 591c0-1.656854 1.34314575-3 3-3 1.6568542 0 3 1.343146 3 3 0 1.306219-.8348076 2.417458-2 2.829294v6.100042c1.799425-.271647 2.5195399-1.271309 2.8077238-2.027917l-.9308468-.081438 2.2538566-2.814273 1.7309222 3.162896-1.0234158-.089538zM9 592c.55228475 0 1-.447715 1-1s-.44771525-1-1-1-1 .447715-1 1 .44771525 1 1 1zM1.25284123 561.8042858c-.04792191-.54774995.35637394-1.03055912.90501873-1.07855932l8.97456364-.78517258c.5477499-.0479219 1.0305591.35637394 1.0785593.90501873l.7851726 8.97456367c.0479219.5477499-.356374 1.0305591-.9050187 1.0785593l-8.97456367.7851726c-.54774996.0479219-1.03055913-.356374-1.07855933-.9050188l-.78517257-8.9745636zM4 564c.55228475 0 1-.44771525 1-1s-.44771525-1-1-1-1 .44771525-1 1 .44771525 1 1 1zm3 3c.55228475 0 1-.44771525 1-1s-.44771525-1-1-1-1 .44771525-1 1 .44771525 1 1 1zm3 2c.55228475 0 1-.44771525 1-1s-.44771525-1-1-1-1 .44771525-1 1 .44771525 1 1 1zm3.9274295-4.18030647l2.1975875.19226399c.5477499.04792191.9530189.52991453.9050187 1.07855932l-.7851726 8.97456366c-.0479219.5477499-.5299145.9530189-1.0785593.9050187l-8.9745636-.7851726c-.54774996-.0479219-.95301893-.5299145-.90501873-1.0785593l.0864965-.9886595 8.21791113-.7189741c.5486448-.0480002.9529407-.5308093.9050188-1.0785593l-.5687184-6.50048087zM1 542.515023c0-.270884.21505737-.490479.49047852-.490479h3.01904296c.27088381 0 .49047852.215058.49047852.490479v3.019043c0 .270884-.21505737.490478-.49047852.490478H1.49047852C1.21959471 546.024544 1 545.809487 1 545.534066v-3.019043zm5 0c0-.270884.21505737-.490479.49047852-.490479h3.01904296c.27088381 0 .49047852.215058.49047852.490479v3.019043c0 .270884-.21505737.490478-.49047852.490478H6.49047852C6.21959471 546.024544 6 545.809487 6 545.534066v-3.019043zm5 0c0-.270884.2150574-.490479.4904785-.490479h3.019043c.2708838 0 .4904785.215058.4904785.490479v3.019043c0 .270884-.2150574.490478-.4904785.490478h-3.019043c-.2708838 0-.4904785-.215057-.4904785-.490478v-3.019043zm-5-5c0-.270884.21505737-.490479.49047852-.490479h3.01904296c.27088381 0 .49047852.215058.49047852.490479v3.019043c0 .270884-.21505737.490478-.49047852.490478H6.49047852C6.21959471 541.024544 6 540.809487 6 540.534066v-3.019043zm5.5468329-4.141708c-.1915438-.191544-.1947522-.498889 0-.693641l2.1347857-2.134786c.1915438-.191544.4988893-.194752.6936414 0l2.1347858 2.134786c.1915437.191543.1947521.498889 0 .693641l-2.1347858 2.134786c-.1915438.191544-.4988892.194752-.6936414 0l-2.1347857-2.134786zM1 537.515023c0-.270884.21505737-.490479.49047852-.490479h3.01904296c.27088381 0 .49047852.215058.49047852.490479v3.019043c0 .270884-.21505737.490478-.49047852.490478H1.49047852C1.21959471 541.024544 1 540.809487 1 540.534066v-3.019043zm0-5c0-.270884.21505737-.490479.49047852-.490479h3.01904296c.27088381 0 .49047852.215058.49047852.490479v3.019043c0 .270884-.21505737.490478-.49047852.490478H1.49047852C1.21959471 536.024544 1 535.809487 1 535.534066v-3.019043zm5.04522705.707787c-.1354419-.234593-.05899411-.532296.1795276-.670006l2.6145679-1.509522c.23459226-.135442.53229554-.058994.67000612.179528l1.50952153 2.614568c.1354419.234592.0589941.532295-.1795276.670006l-2.61456795 1.509521c-.23459226.135442-.53229554.058994-.67000611-.179527l-1.50952149-2.614568zm6.40954585 2.900024c.135442-.234592.4314845-.317238.6700062-.179528l2.6145679 1.509522c.2345922.135442.3172381.431484.1795276.670006l-1.5095215 2.614568c-.1354419.234592-.4314844.317238-.6700061.179528l-2.6145679-1.509522c-.2345923-.135442-.3172382-.431484-.1795276-.670006l1.5095214-2.614568zM5 392.000488v3.999024l1.5-2 1.5 2v-3.999024h5.5044548c.8259668 0 1.4955452.675249 1.4955452 1.498246v10.501754H4.50034732c-.27134675 0-.50034732.223858-.50034732.5 0 .268067.22401312.5.50034732.5H15v.501733c0 .275185-.2290006.498267-.5003473.498267H4.49554521C3.6695784 406.000488 3 405.325239 3 404.502243v-11.003509c0-.827458.67955446-1.498246 1.49554521-1.498246H5zM8.96145695 420h1.07708615c.3343195 0 .4555518.03481.577774.100175.1222223.065365.218143.161286.2835081.283508.0653652.122222.1001748.243454.1001748.577774v11.077086c0 .33432-.0348096.455552-.1001748.577774-.0653651.122222-.1612858.218143-.2835081.283508-.1222222.065365-.2434545.100175-.577774.100175H8.96145695c-.33431953 0-.45555187-.03481-.57777409-.100175-.12222222-.065365-.21814294-.161286-.2835081-.283508C8.0348096 432.494095 8 432.372863 8 432.038543v-11.077086c0-.33432.0348096-.455552.10017476-.577774s.16128588-.218143.2835081-.283508C8.50590508 420.03481 8.62713742 420 8.96145695 420zm-5 6.98435h1.0770861c.33431953 0 .45555187.03481.57777409.100175.12222222.065365.21814294.161286.2835081.283508C5.9651904 427.490255 6 427.611488 6 427.945807v4.077086c0 .33432-.0348096.455552-.10017476.577774s-.16128588.218143-.2835081.283508c-.12222222.065365-.24345456.100175-.57777409.100175h-1.0770861c-.33431953 0-.45555187-.03481-.57777409-.100175-.12222222-.065365-.21814294-.161286-.2835081-.283508C3.0348096 432.478445 3 432.357213 3 432.022893v-4.077086c0-.334319.0348096-.455552.10017476-.577774s.16128588-.218143.2835081-.283508c.12222222-.065365.24345456-.100175.57777409-.100175zM13.9614569 423h1.0770862c.3343195 0 .4555518.03481.577774.100175.1222223.065365.218143.161286.2835081.283508.0653652.122222.1001748.243454.1001748.577774v8.077086c0 .33432-.0348096.455552-.1001748.577774-.0653651.122222-.1612858.218143-.2835081.283508-.1222222.065365-.2434545.100175-.577774.100175h-1.0770862c-.3343195 0-.4555518-.03481-.577774-.100175-.1222223-.065365-.218143-.161286-.2835081-.283508C13.0348096 432.494095 13 432.372863 13 432.038543v-8.077086c0-.33432.0348096-.455552.1001748-.577774.0653651-.122222.1612858-.218143.2835081-.283508.1222222-.065365.2434545-.100175.577774-.100175zM10.8419872 513.044184c.4118834 3.51457-.2735035 3.258415-4.03743348 4.862167-.71876085.306272-.96540245-.190923-.76353078-.736644.20105768-.544926.64550097-1.74933.64550097-1.74933l-2.10825661-2.106515s-1.20309007.444691-1.74846919.64516c-.54537912.20206-1.04273232-.045344-.73585482-.762896 1.60357743-3.764361 1.34798184-4.449296 4.86282818-4.038017 0 0 4.05127153-5.74598 8.68862203-5.108775.1025638.013524.1701257.047731.2140816.091484.043142.043753.0773299.112167.0911679.213197.637361 4.637833-5.1086558 8.690169-5.1086558 8.690169zm.8213247-4.706247c.4859572.486058 1.2755359.486058 1.7631212 0 .4867712-.488444.4867712-1.277592 0-1.763649-.4875853-.486058-1.27635-.486058-1.7631212 0-.4867712.487648-.4867712 1.276 0 1.763649zM8 455.000977v1h3v-1h5v5.009222c0 .547191-.4474894.990778-.9985023.990778H3.99850233C3.44704472 461.000977 3 460.550001 3 460.010199v-5.009222h5zm-6-3.990632c0-.557459.44892021-1.009368 1.00748397-1.009368H15.992516c.5564181 0 1.007484.443353 1.007484 1.009368v2.990632H2v-2.990632zM7 450H5.5l1-2h6l1 2H12l-.5-1h-4l-.5 1zM9.61250802 307.724397l1.55804178 4.386363h3.8891124c.3589851 0 .65.291015.65.65 0 .203909-.0956876.396001-.2584489.518833l-3.2073249 2.420493 1.2017619 4.452355c.093548.346582-.1115766.703378-.4581585.796926-.195015.052638-.4034183.011621-.5639414-.110992L9 318.223357l-3.42285182 2.61497c-.28526332.217934-.69318517.163352-.91111894-.121911-.12262072-.160504-.16365866-.36889-.11105024-.563902l1.20113256-4.452428-3.20732489-2.420493c-.28654357-.216248-.34352961-.623841-.12728189-.910384.12283217-.162761.31492375-.258449.51883303-.258449h3.88911244l1.55804174-4.386363c.12015708-.338279.49179281-.515101.83007165-.394944.18438244.065492.3294515.210562.39494438.394944zM4.5 258c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm5 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zm5 0c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zM14.9595514 346.479776L12 345v-6l2.9595514-1.479776v-.010574c0-.281472.2206524-.50965.4958467-.50965h.0487552c.2738486 0 .4958467.227653.4958467.50965v8.9807c0 .281472-.2206524.50965-.4958467.50965h-.0487552c-.2738485 0-.4958467-.227653-.4958467-.50965v-.010574zM8.16623492 345l.59956759 3.778868c.08211273.517528-.27086121 1.003633-.78838934 1.085745-.00621676.000987-.01244318.001911-.01867833.002774-.53402898.073867-1.03003984-.290166-1.11969938-.821771L6.15670995 345H4.99686968C3.34174426 345 2 343.653483 2 342c0-1.656854 1.34739093-3 2.99686968-3H11v6H8.16623492zM10 284.502301V280l5 5h-4.5023012C10.2148438 285 10 284.777173 10 284.502301zM4.2819426 280H9v4.718057c0 .44576.04641281.607403.13356635.770366.08715355.162963.21504784.290857.3780108.378011.16296296.087153.32460608.133566.77036545.133566H15v6.718057c0 .44576-.0464128.607403-.1335664.770366-.0871535.162963-.2150478.290857-.3780107.378011-.162963.087153-.3246061.133566-.7703655.133566H4.2819426c-.44575937 0-.60740249-.046413-.77036545-.133566-.16296296-.087154-.29085725-.215048-.3780108-.378011C3.04641281 293.32546 3 293.163817 3 292.718057v-11.436114c0-.44576.04641281-.607403.13356635-.770366.08715355-.162963.21504784-.290857.3780108-.378011.16296296-.087153.32460608-.133566.77036545-.133566zM15.4974334 142.07563c.8527902 0 1.5989817.764706 1.4923829 1.638656v7.647059c0 .873949-.7461914 1.638655-1.5989816 1.638655H2.59898163C1.74619143 153 1 152.235294 1 151.361345v-7.428572c0-.873949.74619143-1.857143 1.59898163-1.857143h1.38578408c.31979632 0 .53299387-.218487.63959265-.436975l.53299387-1.20168c.10659878-.218488.4263951-.436975.63959265-.436975h6.50252532c.3197963 0 .5329938.218487.6395926.436975l.5329939 1.20168c.1065988.218488.4263951.436975.6395926.436975h1.3857841zM9 151c2.1714286 0 4-1.828571 4-4s-1.8285714-4-4-4c-2.17142857 0-4 1.828571-4 4s1.82857143 4 4 4zm0-6.5c1.4130435 0 2.5 1.086957 2.5 2.5s-1.0869565 2.5-2.5 2.5c-1.41304348 0-2.5-1.086957-2.5-2.5s1.08695652-2.5 2.5-2.5zM13.0000003 176.822313l-1e-7-5.822313-6.00000013 2v7.5s-.02790912-.006998-.07712396-.020993c.13156025.916545-.60227365 1.920746-1.77303785 2.346869-1.29744476.472231-2.64017405.055693-2.99906981-.930365-.35889577-.986058.40194853-2.168235 1.69939329-2.640467.39135719-.142442.78683459-.20402 1.15818869-.193495-.00167862-.020301-.00253569-.040818-.00253569-.061549v-9.043823L15.0000002 167v11.5c0 .011614-.0298575.007042-.0823026-.010114-.0287355.812672-.6742896 1.659959-1.6753085 2.084866-1.2709519.539487-2.633641.193792-3.0436512-.772131-.41001023-.965924.287921-2.1863 1.558873-2.725787.4165313-.176807.842916-.258538 1.2423894-.254521zM12 210H6v-2H4v2h-.99315453C2.45078007 210 2 209.550051 2 208.993155v-11.98631C2 196.45078 2.44994876 196 3.00684547 196H4v2h2v-2h6v2h2v-2h.9931545C15.5492199 196 16 196.449949 16 197.006845v11.98631C16 209.54922 15.5500512 210 14.9931545 210H14v-2h-2v2zm-6-8v-2H4v2h2zm8 0v-2h-2v2h2zm-8 4v-2H4v2h2zm8 0v-2h-2v2h2zM16.7700878 232.254457c.0995654.403513.9956538 4.539525-1.5930461 4.741282-1.0952191.100878-2.2900037-1.614054-3.1860921-2.521959-.796523-1.008783-1.6926114-1.513175-3.08652675-1.513175-1.39391531 0-2.19043835.504392-3.08652676 1.513175-.89608841.907905-2.09087296 2.622837-3.08652675 2.521959-2.48913449-.100879-1.59304607-4.337769-1.49348069-4.741282C1.63615016 230.035133 3.03006547 226 5.81789609 226c0 0 .89608841.100878 1.59304607.504392 1.19478455.504391 1.79217682.504391 3.08652674 0C11.2939919 226.100878 12.090515 226 12.090515 226c2.887396 0 4.1817459 3.934255 4.6795728 6.254457zM11 230.5c0 .268066.2238576.5.5.5.2680664 0 .5-.223858.5-.5 0-.268066-.2238576-.5-.5-.5-.2680664 0-.5.223858-.5.5zm2 0c0 .268066.2238576.5.5.5.2680664 0 .5-.223858.5-.5 0-.268066-.2238576-.5-.5-.5-.2680664 0-.5.223858-.5.5zm-7-.5v-.5c0-.276142-.22385763-.5-.5-.5-.27614237 0-.5.223858-.5.5v.5h-.5c-.27614237 0-.5.223858-.5.5s.22385763.5.5.5H5v.5c0 .276142.22385763.5.5.5.27614237 0 .5-.223858.5-.5v-.5h.5c.27614237 0 .5-.223858.5-.5s-.22385763-.5-.5-.5H6zM9 92c5.4 0 6 2.7 6 4.1 0 .7-.24.9-1.68.9H4.8c-1.44 0-1.8-.2-1.8-.9 0-1.5.6-4.1 6-4.1zm0-1c-1.65685425 0-3-1.1666667-3-3.5S7.34314575 84 9 84c1.6568542 0 3 1.1666667 3 3.5S10.6568542 91 9 91zM1 123.1c0-1.5 0-4.1 5-4.1s5 2.7 5 4.1c0 .7-.2.9-1.4.9H2.5c-1.2 0-1.5-.2-1.5-.9zm11.5888378.9c.0076614-.087343.0111607-.181103.0111607-.281667 0-1.366528-.0360801-3.335002-1.4736169-4.689226C11.3991584 119.009997 11.6899671 119 12 119c4.5 0 5 2.7 5 4.1 0 .7-.2.9-1.4.9h-3.0111622zM6 118c-1.1045695 0-2-.833333-2-2.5s.8954305-2.5 2-2.5 2 .833333 2 2.5-.8954305 2.5-2 2.5zm6 0c-1.1045695 0-2-.833333-2-2.5s.8954305-2.5 2-2.5 2 .833333 2 2.5-.8954305 2.5-2 2.5zM13.2276469 30.3559519C15.4383532 31.0930238 17 32.8945374 17 35.0000031c0 1.7856435-1.1232489 3.3526628-2.8130558 4.2371485.085624.4846394.3884255 1.1327788.826289 1.7789863-1.5830134 0-2.4263434-.4200033-2.8895897-1.1036649-.3639838.0574652-.7396.0875331-1.1236435.0875331-.3188002 0-.6317933-.0207195-.9371458-.0606309C12.6570816 38.9412165 14.5 36.7046958 14.5 34c0-1.367561-.4711538-2.6154301-1.2723531-3.6440481zM5.87559716 38.912347c-.46259633.6734773-1.30776189 1.0876591-2.8955938 1.0876591.44584613-.6429487.75166072-1.2878546.83075488-1.7640638C2.12223085 37.3512391 1 35.784831 1 33.9999969c0-2.7614254 2.6862915-5.000003 6-5.000003s6 2.2385776 6 5.000003C13 36.7614224 10.3137085 39 7 39c-.38431053 0-.76018205-.0301098-1.12440284-.087653zM9 70c-1.1 0-2-.9-2-2h4c0 1.1-.9 2-2 2zm4.8461546-6s1.163079.8000031 1.7015406 1.6000004C16.5061561 66.8999939 15.8600039 67 14.3738447 67H3.63059629c-1.49574637 0-2.13678052-.1-1.17522929-1.4.53419513-.8 1.69847929-1.6 1.69847929-1.6v-3c0-2.6 1.18617441-4.5 3.66154035-5 0 0 0-1 1.18461382-1 1.18461384 0 1.18461384 1 1.18461384 1 2.2067821.5 3.6615403 2.4 3.6615403 5v3zM9.65018866.29787234c-.40173693-.39716312-1.00434233-.39716312-1.30564503 0L1.21371306 7.24822695c-.40173693.39716312-.20086847.69503546.3013027.69503546L3 8v5c0 1 0 1 1 1h2.50461102C6.7782068 14 7 13.7721195 7 13.5089948V9.99791312C7 8.89449617 7.88772964 8 9 8c1.1045695 0 2 .89826062 2 1.99791312v3.51108168C11 13.7801695 11.2157526 14 11.495389 14H14c1 0 1 0 1-1V8l1.5801508-.05673759c.4017369-.09929078.6026054-.39716312.2008684-.69503546L9.65018866.29787234zM5.00247329 937H1.99117881C1.44956458 937 1 936.554345 1 936.004602V927h2v6.496577c0 .27052.22319652.503423.49852337.503423H4v-9.993155C4 923.45078 4.45576096 923 5.00247329 923h9.99505341C15.5511774 923 16 923.449949 16 924.006845v11.49491C16 936.329213 15.3204455 937 14.5044548 937H5.00247329zM7 926.490479v3.019042c0 .275422.21983051.490479.49100518.490479h5.01798962C12.7721195 930 13 929.780405 13 929.509521v-3.019042c0-.275422-.2198305-.490479-.4910052-.490479H7.49100518C7.22788048 926 7 926.219595 7 926.490479zM7 931.5c0 .268066.21983051.5.49100518.5h5.01798962C12.7721195 932 13 931.776142 13 931.5c0-.268066-.2198305-.5-.4910052-.5H7.49100518C7.22788048 931 7 931.223858 7 931.5zm0 2c0 .268066.21959471.5.49047852.5h3.01904298C10.7849426 934 11 933.776142 11 933.5c0-.268066-.2195947-.5-.4904785-.5H7.49047852C7.21505737 933 7 933.223858 7 933.5zM5 953c0-2.209139 1.790861-4 4-4s4 1.790861 4 4h.7180574c.4457594 0 .6074025.04641281.7703655.13356635.1629629.08715355.2908572.21504784.3780107.3780108.0871536.16296296.1335664.32460608.1335664.77036545v8.4361148c0 .4457594-.0464128.6074025-.1335664.7703655-.0871535.1629629-.2150478.2908572-.3780107.3780107-.162963.0871536-.3246061.1335664-.7703655.1335664H4.2819426c-.44575937 0-.60740249-.0464128-.77036545-.1335664-.16296297-.0871535-.29085725-.2150478-.3780108-.3780107C3.04641281 963.3254599 3 963.1638168 3 962.7180574v-8.4361148c0-.44575937.0464128-.60740249.13356635-.77036545s.21504783-.29085725.3780108-.3780108C3.6745401 953.04641281 3.83618323 953 4.2819426 953H5zm1.25 0h5.5c0-1.51878306-1.23121694-2.75-2.75-2.75s-2.75 1.23121694-2.75 2.75zM7.91448459 973.63597946C8.243947 973.54532649 8.60578547 973.5 9 973.5c.39421453 0 .756053.04532649 1.08551541.13597946L10.9 972.55c.2485281-.33137085.7186292-.39852814 1.05-.15.3313708.24852814.3985281.71862915.15 1.05l-.7072098.94294637c.5731737.5832726.9422437 1.45229048 1.1072098 2.60705363h-7c.16496616-1.15476314.53403609-2.02378102 1.10720978-2.60705363L5.9 973.45c-.24852814-.33137085-.18137085-.80147186.15-1.05s.80147186-.18137085 1.05.15l.81448459 1.08597946zm-3.60229728 5.33742426C4.35969993 978.63665834 4.42230416 978.31078336 4.5 978h9c.0776941.31077637.1402973.63664367.1878095.97338098l.5356572-.35710482c.0574965-.03833102.0965631-.0987508.1079234-.16691269l.4287771-2.57266271c.0680963-.40857774.454517-.68459249.8630947-.6164962.4085778.06809629.6845925.45451694.6164962.86309468l-.4287771 2.57266258c-.0795222.47713405-.3529882.90007256-.7554639 1.16838975l-1.2557259.83715056c-.0048915.86166345-.0957328 1.74576027-.2725238 2.59491857l1.6815745 1.4013121c.3070809.2559005.5173004.6092172.5956938 1.0011842l.430774 2.1538701c.0812339.4061698-.1821786.8012886-.5883484.8825226-.4061698.0812339-.8012887-.1821786-.8825226-.5883484l-.430774-2.1538702c-.0111991-.0559952-.0412304-.1064689-.0850991-.1430262l-1.1689618-.9741348C12.3201723 986.9388652 10.96030438 988.5 9 988.5c-1.96032979 0-3.32020757-1.5611752-4.07963333-3.6241501l-1.16905806.974215c-.04386869.0365573-.07390003.087031-.08509908.1430263l-.43077402 2.1538701c-.08123397.4061698-.4763528.6695823-.88252261.5883484-.40616982-.081234-.66958237-.4763528-.5883484-.8825226l.43077401-2.1538701c.07839341-.391967.28861291-.7452836.59569365-1.0011841l1.68168185-1.4014016c-.17677708-.8491227-.2676121-1.73317886-.27250508-2.59480419l-1.25576326-.83717551c-.40247573-.26831716-.67594166-.69125562-.75546402-1.16838978l-.4287771-2.57266258c-.06809628-.40857774.20791847-.79499839.61649621-.86309468.40857774-.06809629.79499839.20791846.86309468.6164962l.4287771 2.57266258c.01136034.06816202.0504269.1285818.10792343.16691282l.53569134.35712756zM3.34314575 1014.65685c-3.12419433-3.12419-3.12419433-8.18951 0-11.3137 3.12419433-3.1242 8.18951415-3.1242 11.31370845 0 3.1241944 3.12419 3.1241944 8.18951 0 11.3137-3.1241943 3.1242-8.18951412 3.1242-11.31370845 0zm7.42714775-3.89162c-.000844.00085-.0016862.0017-.0025265.00254-.97631078.97631-2.55922322.97631-3.53553395 0-.97631073-.97631-.97631073-2.55923 0-3.53554.97631073-.97631 2.55922317-.97631 3.53553395 0 .0013199.00132.0026443.00265.0039732.004l-.0000163.00001c.2759811.27861.7051161.3361 1.044701.13997.3230058-.18656.4336168-.59965.2470566-.92266-.019161-.03317-.0411099-.06465-.0656092-.09411-.0606228-.07291-.1171102-.13553-.1694452-.18787-1.5620971-1.56209-4.09475706-1.56209-5.65685422 0-1.56209717 1.5621-1.56209717 4.09476 0 5.65686 1.56209716 1.56209 4.09475712 1.56209 5.65685422 0 .0514726-.05148.1069946-.11293.1665658-.18436l.0000272.00002c.2389566-.28654.2003802-.71255-.0861627-.9515-.0294615-.02457-.0609622-.04659-.0941605-.06581-.3391791-.19638-.7681089-.13952-1.0444062.13845zM9 1045c-4.418278 0-8-3.58172-8-8s3.581722-8 8-8 8 3.58172 8 8-3.581722 8-8 8zm.5-5c.27614237 0 .5-.22386.5-.5s-.22385763-.5-.5-.5H8v-1h1.5c1.75 0 3-1 3-2.5s-1.26875-2.4875-3-2.4875h-2c-.27614237 0-.5.22386-.5.5V1037l-.50003906-.00625c-.00205719-.00003-.00411453-.00004-.00617188-.00004-.27271217 0-.49378906.22108-.49378906.49379 0 .27715.22283503.50279.49996094.50625L7 1038v1.0125l-.50003906-.00625c-.00205719-.00003-.00411453-.00004-.00617188-.00004-.27271217 0-.49378906.22108-.49378906.49379 0 .27715.22283503.50279.49996094.50625L7 1040.0125v.48746c0 .00206.00001286.00412.00003858.00617.0034089.27272.22724925.49103.49996142.48762.27714757-.00346.5-.22912.5-.50629V1040h1.5zm-1.5-6h1.5c1.5 0 2 .75 2 1.49879 0 .74879-.5 1.49879-2 1.49879H8V1034zM14.6567251 365.343094c3.1242276 3.124126 3.1242276 8.189061.0008333 11.313187-3.125061 3.124959-8.19015992 3.124959-11.31522095 0-3.12339433-3.123293-3.12339433-8.188227.0016667-11.313187 3.12339433-3.124125 8.18849325-3.124125 11.31272095 0zm-8.13134675 8.131416c1.36717114 1.36732 3.58264265 1.36732 4.94981385 0 1.3656495-1.366559 1.3671711-3.582271 0-4.949591-1.3671712-1.366559-3.58416432-1.366559-4.94981385 0-1.36717113 1.366559-1.36717113 3.582271 0 4.949591zm6.93048995-.075687l1.487529.799156c1.072521-1.989974 1.072521-4.405776-.0016667-6.39825l-1.4858623.79999c.8075157 1.49998.8066824 3.299957 0 4.799104zm-1.2566912-8.341558c-1.9925389-1.072486-4.40675275-1.072486-6.39845831.000833l.80084897 1.485814c1.49752925-.805823 3.2975644-.805823 4.79676034 0l.800849-1.486647zm-9.14101187 2.742464c-1.07335429 1.992474-1.07418764 4.407443-.00083335 6.39825l1.4866957-.800823c-.80584907-1.499147-.80584907-3.29829.00083335-4.796604l-1.4866957-.800823zm2.74088686 9.140714c1.99253891 1.074153 4.40758611 1.074153 6.40095831.001667l-.800849-1.487481c-1.49919589.80749-3.30006439.80749-4.79926034 0l-.80084897 1.485814zM9.00041664 475.000122c4.41060366 0 7.99958336 3.589167 7.99958336 8s-3.5889797 8-7.99958336 8c-4.41227019 0-8.00041664-3.589167-8.00041664-8s3.58814645-8 8.00041664-8zm6.82297796 8c0-3.004167-1.9532316-5.56-4.6564241-6.468333-.1674913.203333-.2916515.399166-.2799854.53.1824904 1.825833 1.4274256.455833 1.6682464.724166.8607885.953334-1.6157492 1.284167-.7549607 3.0075.4149784.828334.8941201 1.059167 1.5924171 1.069167.6991302.011667.9566168 1.204167 1.011614 1.699167.0583303.495833-.0074997 1.769166-.2599865 2.319166-.249987.546667.0158325 1.074167.2658195 1.269167.8832873-1.15 1.4132597-2.589167 1.4132597-4.15zm-7.76042913-6.755833c-2.48820374.345-4.5522629 2.034166-5.4297172 4.31.50247383.0525 1.70741107.066666 1.85823655.491666.15415864.4275-.53163898.870834-.53163898 1.760834 0 .9875 1.26493412.975833 1.26493412 1.718333 0 .743333.2733191 1.610833.2733191 1.858333 0 .2475 1.05577834 1.613334 1.4482579 1.613334.39081298 0 .08332899-1.526667.10416124-1.931667.01083277-.261667.18665695-1.0625.23748763-1.25.33831572-1.2775 1.60908286-1.1475 1.89906776-1.919167.91495231-2.426666-1.95573147-2.565-2.34654445-2.703333-.38997969-.136667-1.05411177-.141667-1.30576533-.058333-.25165356.081666-.75496067-.34-.75496067-.698334 0-.358333.99661475-1.070833 1.30576532-1.565833.3066507-.495.55163794-.423333 1.12160825-.939167.26165304-.239166.69246393-.368333.85578876-.686666zm-1.20910369 13.230833c.67496484.224167 1.39659393.348333 2.14572158.348333 1.38826104 0 2.68236024-.418333 3.76147074-1.135833-.2999844-.545-1.414093-.62-1.9790636-.574167-.6691318.055-1.4299255.486667-1.85490337.579167-.47914171.105833-.82495703.2525-1.2499349.271667-.37164731.014166-.41331181.294166-.82329045.510833z'/%3E %3C/g%3E %3C/g%3E %3C/svg%3E") no-repeat 7px -441px;
}
#side_bar .more_div {
border-top: 1px solid #2c2c2c!important;
}
.online:after {
border: 2px solid #1c1c1c !important;
}
.online.mobile:after {
background-color: #1c1c1c!important;
}
.nim-dialog:not(.nim-dialog_deleted).nim-dialog_hovered .nim-dialog--photo .online.mobile:after, .nim-dialog:not(.nim-dialog_deleted).nim-dialog_unread.nim-dialog_classic .nim-dialog--photo .online.mobile:after, .nim-dialog:not(.nim-dialog_deleted):hover .nim-dialog--photo .online.mobile:after {
background-color: #1c1c1c!important;
}
.module_header .header_count {
color: #aaa!important;
}
.header_right_link {
color: #999!important;
}
.ads_ad_box.redesign .ads_ad_title_box {
color: #ddd!important;
}
.ads_ad_box.redesign .ads_ad_domain {
color: #999!important;
}
.ads_ad_box.redesign .ads_ad_box_border {
border-color: #2c2c2c!important;
}
.ads_ad_box.redesign .ads_ad_description {
color: #bbb!important;
}
.left_menu_nav {
color: #aaa!important;
}
.top_nav_link.active {
background-color: #1c1c1c!important;
}
#top_profile_menu {
background: #1c1c1c!important;
border-color: #2c2c2c!important;
}
#top_profile_menu:before {
border-bottom-color: #232323!important;
}
#top_profile_menu:after {
border-bottom-color: #232323!important;
}
.top_profile_mrow {
color: #ddd!important;
}
.top_profile_mrow:hover {
background-color: #2c2c2c!important;
}
.top_profile_sep {
border-top: 1px solid #2c2c2c!important;
}
.wall_module .post_header .ui_actions_menu_icons {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M0 0h24v24H0z'/%3E %3Cpath stroke='%23ccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.875' d='M6.5 10l5.5 4.5 5.5-4.5'/%3E %3C/g%3E %3C/svg%3E")!important;
background-position-x: 1px!important;
}
.ui_actions_menu {
background: #1c1c1c!important;
border-color: #2c2c2c!important;
box-shadow: 0 5px 26px 0px rgba(0,0,0,.32)!important;
}
.ui_actions_menu:before {
border-bottom-color: transparent!important;
}
.ui_actions_menu:after {
border-bottom-color: transparent!important;
}
.ui_actions_menu_item {
color: #ddd!important;
}
.ui_actions_menu_item:hover {
background-color: #3c3c3c!important;
}
.ui_actions_menu_item.ui_actions_menu_item_lock {
color: #ddd !important;
pointer-events: none!important;
}
.wl_head_wrap {
background: #1c1c1c!important;
}
.wl_post_body_wrap {
background: #1c1c1c!important;
}
#wl_post_actions_wrap {
background: #1c1c1c!important;
}
#wl_reply_form {
background: #1c1c1c!important;
}
.deep_active.wl_post .replies .wl_replies_empty, .deep_active.wl_post.wall_module .replies .wl_replies_empty, .deep_active.wl_post.wall_module .wl_replies_block_wrap .wl_replies_empty, .deep_active.wl_post .wl_replies_block_wrap .wl_replies_empty {
border-top: 1px solid #2c2c2c!important;
}
.like_wrap .ui_actions_menu_more {
color: #aaa!important;
}
.like_wrap .ui_actions_menu_more:after {
background: url("data:image/svg+xml,%3Csvg height='8' viewBox='0 0 8 8' width='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' transform=''%3E%3Cpath d='m0 0h8v8h-8z'/%3E%3Cpath d='m.79998779 2.69995117 3.20001221 2.60009766 3.20001221-2.60009766' stroke='%23aaa' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3'/%3E%3C/g%3E%3C/svg%3E") no-repeat 50% / contain!important;
}
.photos_choose_upload_area {
background: #181818!important;
color: #ddd!important;
}
.web_cam_photo {
background: #181818!important;
color: #ddd!important;
}
.photo_upload_separator {
background-color: #2c2c2c!important;
}
.photos_choose_upload_area_label {
background-image: url(https://i.imgur.com/WNqRQUF.png)!important;
}
.web_cam_photo_icon {
background: url(https://i.imgur.com/qiMncHL.png) left 4px no-repeat!important;
}
.photos_choose_upload_area:hover {
background: #202020!important;
}
.web_cam_photo:hover {
background: #202020!important;
}
/* .media_preview_has_medias {
border-bottom: 1px solid #2c2c2c!important;
} */
.video_choose_upload_area {
background: #181818!important;
color: #ddd!important;
}
.video_add_external {
background-color: #181818!important;
color: #ddd!important;
}
#video_choose_wrap {
background: #1c1c1c!important;
}
.ui_search_new .ui_search_input_inner {
border: 1px solid #2c2c2c!important;
}
.ui_search_new.ui_search_field_empty .ui_search_button_search {
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='1284 207 24 24'%3E%3Cg fill='none'%3E%3Cpath d='M1298.5 222.9C1297.5 223.6 1296.3 224 1295 224 1291.7 224 1289 221.3 1289 218 1289 214.7 1291.7 212 1295 212 1298.3 212 1301 214.7 1301 218 1301 219.3 1300.6 220.5 1299.9 221.5L1302.7 224.2C1303 224.6 1303.1 225.3 1302.7 225.7 1302.3 226 1301.6 226 1301.2 225.7L1298.5 222.9ZM1295 222C1297.2 222 1299 220.2 1299 218 1299 215.8 1297.2 214 1295 214 1292.8 214 1291 215.8 1291 218 1291 220.2 1292.8 222 1295 222Z' fill='%23ddd'/%3E%3C/g%3E%3C/svg%3E") #2c2c2c no-repeat 50%!important;
}
.ui_search_new .ui_search_button_search {
border: 1px solid transparent!important;
}
.ui_tab_count {
color: #aaa!important;
}
.video_choose_upload_area_label {
background-image: url(https://i.imgur.com/WNqRQUF.png)!important;
}
.video_add_external_icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' hechoose_video_uploadight='24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath stroke='%23ddd' stroke-width='1.75' d='M10 14l4-4' stroke-linecap='round'/%3E%3Cpath stroke='%23ddd' stroke-width='1.75' d='M16.5 13.5c3-3 3.5-5.5 1.5-7.5s-4.5-1.5-7.5 1.5M7.5 10.5C4.5 13.5 4 16 6 18s4.5 1.5 7.5-1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E")!important;
}
.video_choose_upload_separator {
background-color: #2c2c2c!important;
}
.video_choose_upload_area:hover {
background: #202020!important;
}
.video_add_external:hover {
background: #202020!important;
}
.subheader, h4.subheader {
color: #fff!important;
}
.video_upload_share_descr {
color: #999!important;
}
.box_title .back:hover {
background-color: #3c3c3c!important;
}
.video_item_info {
color: #aaa!important;
}
::-webkit-scrollbar {
width: 12px!important;
background: #1c1c1c!important;
}
::-webkit-scrollbar-thumb {
background: #2c2c2c!important;
}
.audio_row .audio_row__duration {
color: #aaa!important;
}
.left_settings_inner {
background: url(https://i.imgur.com/PIa2P9B.png) no-repeat 0 -60px!important;
}
.stl_active.over_fast #stl_bg {
background-color: #1c1c1c!important;
}
#stl_text {
color: #ccc!important;
background: url(https://i.imgur.com/tlgftGc.png) no-repeat!important;
}
.ui_rmenu_item:hover, .ui_rmenu_subitem:hover, .ui_rmenu_item_sel, .ui_rmenu_item_sel:hover {
background-color: #252525!important;