This repository has been archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontainer.css
7546 lines (7232 loc) · 425 KB
/
container.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
/**
* @name DiscordOMW
* @author danliend#2738
* @version 5
* @invite Ac4GaWwx5e
* @description Get The Old Discord Back
* @source https://github.com/auslie/DiscordOMW/blob/main/2015.css
*/
:root {
--showRtcConnectionStatusIcon: block;
/* Show: block | Hide: none | show the vc ping/status icon */
--jumboEmojiSize: 2rem;
/* Old: 2rem | New: 3rem | size of jumbo emojis */
--channelBarWidth: 2px;
/* 2015: 4px | 2016: 2px | changes width of the blurple bar to the left of selected channels */
}
.theme-dark, .theme-light, .theme-dark.newBrand, .theme-light.newBrand {
--font-primary: Whitney;
--font-display: Whitney,"Helvetica Neue",Helvetica,Arial,sans-serif!important;
--text-positive: hsl(152.6,calc(var(--saturation-factor, 1) * 46%),48.6%);
--blurple: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%);
--blurple-hover: hsl(227.1,calc(var(--saturation-factor, 1) * 44.1%),58.6%);
--blurple-active: hsl(226.3,calc(var(--saturation-factor, 1) * 33.9%),52%);
--blurple-inverted: hsl(228,calc(var(--saturation-factor, 1) * 55.6%),98.2%);
--blurple-inverted-active: hsl(228.6,calc(var(--saturation-factor, 1) * 60%),93.1%);
--red: hsl(0,calc(var(--saturation-factor, 1) * 84.9%),61%);
--red-hover: hsl(0,calc(var(--saturation-factor, 1) * 66.1%),54.9%);
--red-active: hsl(0,calc(var(--saturation-factor, 1) * 54.2%),48.8%);
--red-inverted: hsl(0,calc(var(--saturation-factor, 1) * 80%),98%);
--red-inverted-active: hsl(0,calc(var(--saturation-factor, 1) * 85%),92.2%);
--yellow: hsl(37.5,calc(var(--saturation-factor, 1) * 95.7%),54.1%);
--yellow-hover: hsl(37.4,calc(var(--saturation-factor, 1) * 81.5%),48.6%);
--yellow-inverted: hsl(38.2,calc(var(--saturation-factor, 1) * 100%),97.8%);
--yellow-inverted-active: hsl(37.3,calc(var(--saturation-factor, 1) * 95.7%),90.8%);
--green: hsl(152.6,calc(var(--saturation-factor, 1) * 46%),48.6%);
--green-hover: hsl(152.6,calc(var(--saturation-factor, 1) * 46.2%),43.7%);
--green-active: hsl(152.3,calc(var(--saturation-factor, 1) * 45.7%),39%);
--green-inverted: hsl(156,calc(var(--saturation-factor, 1) * 38.5%),97.5%);
--green-inverted-active: hsl(153.9,calc(var(--saturation-factor, 1) * 43.4%),89.6%);
--brand-experiment-100: hsl(228,calc(var(--saturation-factor, 1) * 55.6%),98.2%);
--brand-experiment-130: hsl(228,calc(var(--saturation-factor, 1) * 62.5%),96.9%);
--brand-experiment-160: hsl(228,calc(var(--saturation-factor, 1) * 60%),95.1%);
--brand-experiment-200: hsl(228.6,calc(var(--saturation-factor, 1) * 60%),93.1%);
--brand-experiment-230: hsl(226.7,calc(var(--saturation-factor, 1) * 57.4%),90.8%);
--brand-experiment-260: hsl(225.9,calc(var(--saturation-factor, 1) * 58.6%),88.6%);
--brand-experiment-300: hsl(226.8,calc(var(--saturation-factor, 1) * 57.7%),86.1%);
--brand-experiment-330: hsl(226.9,calc(var(--saturation-factor, 1) * 59.1%),81.8%);
--brand-experiment-360: hsl(227.3,calc(var(--saturation-factor, 1) * 57.9%),77.6%);
--brand-experiment-400: hsl(226.3,calc(var(--saturation-factor, 1) * 58%),72%);
--brand-experiment-430: hsl(226.5,calc(var(--saturation-factor, 1) * 58.2%),70%);
--brand-experiment-460: hsl(226.9,calc(var(--saturation-factor, 1) * 58.5%),67.8%);
--brand-experiment: var(--blurple);
--brand-experiment-500: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%);
--brand-experiment-530: hsl(226.6,calc(var(--saturation-factor, 1) * 45.2%),59.2%);
--brand-experiment-560: hsl(226.6,calc(var(--saturation-factor, 1) * 35.3%),52.7%);
--brand-experiment-600: hsl(227.1,calc(var(--saturation-factor, 1) * 31%),44.3%);
--brand-experiment-630: hsl(226.2,calc(var(--saturation-factor, 1) * 31.3%),38.2%);
--brand-experiment-660: hsl(226.4,calc(var(--saturation-factor, 1) * 31%),33.5%);
--brand-experiment-700: hsl(226.8,calc(var(--saturation-factor, 1) * 30.8%),26.1%);
--brand-experiment-730: hsl(227.7,calc(var(--saturation-factor, 1) * 31.2%),24.5%);
--brand-experiment-760: hsl(226.7,calc(var(--saturation-factor, 1) * 31.6%),22.4%);
--brand-experiment-800: hsl(226.5,calc(var(--saturation-factor, 1) * 31.3%),19.4%);
--brand-experiment-830: hsl(225,calc(var(--saturation-factor, 1) * 31.6%),14.9%);
--brand-experiment-860: hsl(225,calc(var(--saturation-factor, 1) * 32%),9.8%);
--brand-experiment-900: hsl(228,calc(var(--saturation-factor, 1) * 29.4%),3.3%);
--brand-experiment-05a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.05);
--brand-experiment-10a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.1);
--brand-experiment-15a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.15);
--brand-experiment-20a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.2);
--brand-experiment-25a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.25);
--brand-experiment-30a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.3);
--brand-experiment-35a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.35);
--brand-experiment-40a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.4);
--brand-experiment-45a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.45);
--brand-experiment-50a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.5);
--brand-experiment-55a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.55);
--brand-experiment-60a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.6);
--brand-experiment-65a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.65);
--brand-experiment-70a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.7);
--brand-experiment-75a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.75);
--brand-experiment-80a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.8);
--brand-experiment-85a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.85);
--brand-experiment-90a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.9);
--brand-experiment-95a: hsl(226.7,calc(var(--saturation-factor, 1) * 58.4%),65.1%,0.95);
}
.socialLinks-3ywLUf:before {
display: block;
font-size: 12px;
white-space: pre-wrap;
color: var(--text-muted);
content: "DTM-16 Build " "205" "\a" "Jul 11, 2022";
margin-bottom: 20px;
}
.platform-win:after {
content: "";
position: fixed;
font-family: Whitney;
top: 4px;
font-size: 12px;
left: 80px;
font-weight: 600;
color: var(--interactive-muted);
opacity: 0.6;
pointer-events: none;
}
.theme-light {
--background-secondary: #f3f3f3;
}
.theme-dark {
--header-primary: #fff;
--header-secondary: #b9bbbe;
--text-normal: #dcddde;
--text-muted: #72767d;
--text-link: hsl(196.7,calc(var(--saturation-factor, 1) * 100%),47.8%);
--channels-default: #8e9297;
--interactive-normal: #b9bbbe;
--interactive-hover: #dcddde;
--interactive-active: #fff;
--interactive-muted: #4f545c;
--background-primary: #36393e;
--background-secondary: #2e3136;
--background-secondary-alt: #282b30;
--background-tertiary: #1e2124;
--background-accent: #4f545c;
--background-floating: #18191c;
--background-mobile-primary: #36393f;
--background-mobile-secondary: #2f3136;
--background-modifier-hover: rgba(79,84,92,0.16);
--background-modifier-active: rgba(79,84,92,0.24);
--background-modifier-selected: rgba(79,84,92,0.32);
--background-modifier-accent: hsla(0,0%,100%,0.06);
--background-mentioned: rgba(250,166,26,0.05);
--background-mentioned-hover: rgba(250,166,26,0.08);
--background-message-hover: rgba(4,4,5,0.07);
--elevation-stroke: 0 0 0 1px rgba(4,4,5,0.15);
--elevation-low: 0 1px 0 rgba(4,4,5,0.2),0 1.5px 0 rgba(6,6,7,0.05),0 2px 0 rgba(4,4,5,0.05);
--elevation-medium: 0 4px 4px rgba(0,0,0,0.16);
--elevation-high: 0 8px 16px rgba(0,0,0,0.24);
--logo-primary: #fff;
--focus-primary: #00b0f4;
--guild-header-text-shadow: 0 1px 1px rgba(0,0,0,0.4);
--channeltextarea-background: #40444b;
--activity-card-background: #202225;
--textbox-markdown-syntax: #8e9297;
--deprecated-card-bg: rgba(32,34,37,0.6);
--deprecated-card-editable-bg: rgba(32,34,37,0.3);
--deprecated-store-bg: #36393f;
--deprecated-quickswitcher-input-background: #72767d;
--deprecated-quickswitcher-input-placeholder: hsla(0,0%,100%,0.3);
--deprecated-text-input-bg: rgba(0,0,0,0.1);
--deprecated-text-input-border: rgba(0,0,0,0.3);
--deprecated-text-input-border-hover: #040405;
--deprecated-text-input-border-disabled: #202225;
--deprecated-text-input-prefix: #dcddde;
}
[fill="hsl(139, calc(var(--saturation-factor, 1) * 47.3%), 43.9%)"] {
fill: var(--green);
}
.iconBadge-32fMme.participating-2Z81oO {
background: var(--green);
}
.betaTag-1BuJUk[style="background-color: hsl(235, calc(var(--saturation-factor, 1) * 85.6%), 64.7%);"] {
backgronud-color: var(--blurple) !important;
}
.gifTag-1TvtGO {
background: url(https://cdn.discordapp.com/attachments/619899344727834654/643462240426655744/f08d762d18b676262c8d40c5aff9e640.svg?);
background-size: 36px 22px;
width: 36px;
height: 22px;
}
.messageFilterBetaTag-3fpO6C {
background: var(--blurple) !important;
border-radius: 3px;
padding: 0 3px;
}
[src="/assets/55b367aaef0b83c837ac6c3bfe01da4c.svg"] {
content: url(https://cdn.discordapp.com/attachments/733624227378495488/977270319343632404/b73a63cb14a22dd24f0f8da07b186335.svg?);
}
.permissionCheckmark-ji-OoY {
background: url(https://cdn.discordapp.com/attachments/733624227378495488/977270929757454446/checkmark.svg?) no-repeat;
}
.a11y-font-scaled-down .avatar-2e8lTP {
width: 40px;
height: 40px;
}
.a11y-font-scaled-down .cozy-VmLDNB.wrapper-30-Nkg {
padding-left: 72px;
}
.lookFilled-1GseHa.select-1Ia3hD {
background: var(--deprecated-text-input-bg);
border: solid 1px var(--deprecated-text-input-border);
border-radius: 3px;
}
.input-2g-os5, .container-1SX9VC {
background: var(--deprecated-text-input-bg);
border: solid 1px var(--deprecated-text-input-border);
transition: 0.2s;
border-radius: 3px;
}
.input-2g-os5:focus, .input-2g-os5:focus-within, .container-1SX9VC:focus, .container-1SX9VC:focus-within {
border-color: var(--blurple);
}
.lookFilled-1GseHa.select-1Ia3hD.open-1FRZsK {
border-bottom: none;
}
.addFriendInputWrapper-kkoSV9 {
background: var(--deprecated-text-input-bg);
border: solid 1px var(--deprecated-text-input-border);
transition: 0.18s;
}
.addFriendInputWrapper-kkoSV9 .input-2g-os5 {
background: none !important;
border: none !important;
}
.note-Go5ZP2 .input-2g-os5 {
background: none;
border: none;
}
.inputWrapper-3a4ywb .input-2g-os5 {
border: none;
background: none;
}
/*
.banner-oA34U0 {
&.tier1-314rFD {
background-image: linear-gradient(8.62deg,#738ef5,#b3aeff 75.25%)
}
&.tier2-2lPk-q {
background-image: linear-gradient(90deg,#b473f5,#e292aa)
}
&.canceled-3FVVhC {
background-image: linear-gradient(90deg,#f18623,#f6a12a 56%,#fab930)
}
&.failedPayment-2RYzVK {
background-image: linear-gradient(90deg,#f25a5d,#f14e76 77%,#f04a7f)
}
}*/
.banner-oA34U0.tier1-314rFD {
background: url(https://cdn.discordapp.com/attachments/859405015974412329/988313761628708864/unknown.png);
}
.banner-oA34U0.tier2-2lPk-q {
background-image: url(https://cdn.discordapp.com/attachments/859405015974412329/988313909708607538/unknown.png);
}
.banner-oA34U0.canceled-3FVVhC {
background-image: url(https://cdn.discordapp.com/attachments/859405015974412329/988313976813289492/unknown.png);
}
.banner-oA34U0.failedPayment-2RYzVK {
background-image: url(https://cdn.discordapp.com/attachments/859405015974412329/988314023172907048/unknown.png);
}
.bannerBackgroundImage-1gV9hv {
display: none;
}
.planName-3i1IN1 {
transform-origin: bottom left;
transform: translate(0, -12px);
}
.planName-3i1IN1 [d="M23.3458 2.64035H26.9082C27.7674 2.64035 28.5008 2.76608 29.0875 3.0385C29.6324 3.26901 30.0934 3.66715 30.4287 4.17008C30.722 4.673 30.8897 5.23879 30.8687 5.80458C30.8687 6.39132 30.722 6.95711 30.4077 7.46004C30.0724 7.98392 29.5695 8.38207 29.0037 8.63353C28.3751 8.9269 27.5788 9.07359 26.6567 9.07359H23.3458V2.64035V2.64035ZM26.6358 7.41813C27.2225 7.41813 27.6626 7.27144 27.9769 6.97807C28.2912 6.66374 28.4589 6.24464 28.4379 5.78363C28.4589 5.36452 28.3122 4.96637 28.0188 4.673C27.7464 4.40058 27.3273 4.2539 26.7615 4.2539H25.6509V7.39717H26.6358V7.41813Z"],
.planName-3i1IN1 [d="M36.2331 9.05262C35.7721 8.92689 35.3111 8.7383 34.892 8.48683V6.95711C35.2482 7.22952 35.6673 7.41812 36.0864 7.5229C36.5684 7.66958 37.0504 7.73245 37.5533 7.7534C37.7209 7.7534 37.8886 7.73245 38.0562 7.66958C38.161 7.60672 38.2238 7.54385 38.2238 7.46003C38.2238 7.37621 38.2029 7.29239 38.14 7.22952C38.0352 7.1457 37.9095 7.10379 37.7838 7.08284L36.6941 6.83137C36.0655 6.68469 35.6254 6.47514 35.353 6.22368C35.0806 5.95126 34.9339 5.57407 34.9548 5.19687C34.9548 4.86159 35.0806 4.52631 35.3111 4.27484C35.5835 3.98147 35.9188 3.77192 36.296 3.66714C36.7779 3.52046 37.2809 3.43664 37.8047 3.45759C38.2867 3.45759 38.7477 3.4995 39.2087 3.62523C39.5859 3.70906 39.9422 3.85574 40.2774 4.04434V5.49024C39.9631 5.30165 39.6278 5.17592 39.2926 5.0921C38.9154 4.98732 38.5172 4.94541 38.14 4.94541C37.5742 4.94541 37.2809 5.05019 37.2809 5.23878C37.2809 5.3226 37.3228 5.40642 37.4066 5.44833C37.5533 5.5112 37.7209 5.55311 37.8886 5.59502L38.8106 5.76266C39.3973 5.86744 39.8583 6.05603 40.1517 6.3075C40.4451 6.55896 40.5918 6.95711 40.5918 7.46003C40.5918 8.00486 40.3194 8.50779 39.8583 8.78021C39.3764 9.09453 38.6849 9.26218 37.7838 9.26218C37.2599 9.24122 36.736 9.17835 36.2331 9.05262Z"],
.planName-3i1IN1 [d="M42.7294 8.86404C42.2475 8.63353 41.8284 8.2773 41.535 7.81628C41.2626 7.37622 41.1368 6.85234 41.1368 6.32847C41.1368 5.80459 41.2626 5.30166 41.5559 4.8616C41.8493 4.40059 42.2684 4.06531 42.7713 3.8348C43.379 3.58334 44.0287 3.43665 44.6783 3.45761C45.6003 3.45761 46.3547 3.6462 46.9624 4.04435V5.72077C46.7319 5.57408 46.4804 5.44835 46.208 5.36453C45.9146 5.28071 45.6003 5.21784 45.286 5.21784C44.7202 5.21784 44.2801 5.32262 43.9448 5.53217C43.4838 5.78363 43.3371 6.34942 43.5886 6.81043C43.6724 6.95712 43.7981 7.08285 43.9448 7.16667C44.2592 7.37622 44.6992 7.481 45.3069 7.481C45.6212 7.481 45.9146 7.43909 46.208 7.35527C46.4804 7.27145 46.7319 7.16667 46.9624 7.01999V8.63353C46.2499 9.05264 45.4536 9.26219 44.6364 9.24123C43.9867 9.26219 43.3162 9.13646 42.7294 8.86404Z"],
.planName-3i1IN1 [d="M49.2463 8.86402C48.7434 8.63352 48.3243 8.27728 48.0309 7.81627C47.7585 7.37621 47.6118 6.85233 47.6118 6.32845C47.6118 5.80457 47.7375 5.30165 48.0309 4.86159C48.3243 4.42153 48.7434 4.06529 49.2463 3.85574C50.4408 3.37377 51.8028 3.37377 52.9973 3.85574C53.4793 4.06529 53.8984 4.42153 54.1917 4.86159C54.4641 5.30165 54.6108 5.82552 54.6108 6.32845C54.6108 6.85233 54.4641 7.37621 54.1917 7.81627C53.8984 8.27728 53.4793 8.63352 52.9973 8.86402C51.7819 9.36695 50.4408 9.36695 49.2463 8.86402ZM52.0124 7.22952C52.2429 6.99901 52.3686 6.66373 52.3477 6.3494C52.3686 6.01412 52.2429 5.69979 52.0124 5.46929C51.7609 5.23878 51.4257 5.134 51.0904 5.134C50.7551 5.11305 50.4198 5.23878 50.1683 5.46929C49.9378 5.69979 49.8121 6.01412 49.8331 6.3494C49.8121 6.68469 49.9378 6.99901 50.1683 7.22952C50.4198 7.46003 50.7551 7.58576 51.0904 7.5648C51.4466 7.58576 51.7819 7.46003 52.0124 7.22952Z"],
.planName-3i1IN1 [d="M60.1012 3.79287V5.78361C59.8288 5.61597 59.5145 5.53215 59.2002 5.55311C58.7182 5.55311 58.341 5.69979 58.0686 5.99316C57.8171 6.28654 57.6704 6.74755 57.6704 7.3762V9.05262H55.4282V3.6881H57.6285V5.38546C57.7543 4.75681 57.9429 4.2958 58.2153 4.00242C58.4877 3.70905 58.8649 3.54141 59.263 3.56237C59.5564 3.56237 59.8498 3.64619 60.1012 3.79287Z"],
.planName-3i1IN1 [d="M67.5613 2.45178V9.05266H65.3191V7.85821C65.1514 8.27732 64.8371 8.65451 64.4599 8.88502C64.0199 9.13648 63.5379 9.26221 63.035 9.24126C62.5739 9.26221 62.1129 9.11552 61.7148 8.86406C61.3376 8.6126 61.0233 8.25636 60.8347 7.83726C60.6251 7.37625 60.5203 6.87332 60.5203 6.3704C60.4994 5.84652 60.6251 5.32264 60.8347 4.86163C61.0442 4.42157 61.3795 4.06533 61.7776 3.81387C62.1968 3.56241 62.6787 3.43667 63.1607 3.43667C64.2294 3.43667 64.9419 3.89769 65.3191 4.81972V2.45178H67.5613ZM64.9838 7.18765C65.2143 6.95714 65.34 6.64282 65.3191 6.32849C65.3191 6.01416 65.1933 5.69983 64.9838 5.49028C64.4599 5.05022 63.7055 5.05022 63.1607 5.49028C62.9302 5.72079 62.8045 6.01416 62.8254 6.32849C62.8045 6.64282 62.9302 6.95714 63.1607 7.18765C63.4121 7.41816 63.7265 7.52293 64.0618 7.52293C64.418 7.54389 64.7323 7.41816 64.9838 7.18765Z"],
.planName-3i1IN1 [d="M15.0895 1.04776C13.9999 0.565789 12.8473 0.209552 11.6529 0C11.4853 0.293372 11.3386 0.586745 11.2128 0.901072C9.95553 0.712476 8.65631 0.712476 7.399 0.901072C7.27327 0.586745 7.12659 0.293372 6.95894 0C5.78546 0.209552 4.63292 0.565789 3.5223 1.06871C1.36391 4.27485 0.77717 7.39717 1.07054 10.4985C2.34881 11.4415 3.77376 12.154 5.28253 12.615C5.61781 12.154 5.93214 11.672 6.1836 11.1691C5.70163 10.9805 5.21967 10.75 4.75865 10.4985C4.88438 10.4147 4.98916 10.3309 5.11489 10.2471C7.7762 11.5044 10.8566 11.5044 13.5389 10.2471C13.6436 10.3309 13.7694 10.4357 13.8951 10.4985C13.4341 10.771 12.9731 11.0015 12.4702 11.1691C12.7216 11.672 13.0359 12.154 13.3712 12.615C14.88 12.154 16.3049 11.4415 17.5832 10.4985C17.9185 6.9152 16.9755 3.81384 15.0895 1.04776ZM6.53984 8.59162C5.72259 8.59162 5.03107 7.83723 5.03107 6.93616C5.03107 6.03509 5.68068 5.25975 6.51889 5.25975C7.35709 5.25975 8.02766 6.01413 8.02766 6.93616C8.02766 7.85819 7.37805 8.59162 6.53984 8.59162ZM12.072 8.59162C11.2548 8.59162 10.5842 7.83723 10.5842 6.93616C10.5842 6.03509 11.2338 5.25975 12.072 5.25975C12.9102 5.25975 13.5808 6.01413 13.5598 6.93616C13.5598 7.85819 12.9102 8.59162 12.072 8.59162Z"],
.planName-3i1IN1 [d="M32.7757 4.27485C33.389 4.27485 33.8863 3.82452 33.8863 3.269C33.8863 2.71349 33.389 2.26315 32.7757 2.26315C32.1623 2.26315 31.665 2.71349 31.665 3.269C31.665 3.82452 32.1623 4.27485 32.7757 4.27485Z"],
.planName-3i1IN1 [d="M31.665 4.9664C32.3775 5.25977 33.1948 5.25977 33.9072 4.9664V9.09457H31.665V4.9664Z"] {
display: none;
}
.planInfo-3eXANS {
margin-top: 0;
}
.container-3PVapX .image-ZPv20Y[src="https://cdn.discordapp.com/attachments/788092557757513788/836317219955802132/discordnew.png"] {
content: url(https://cdn.discordapp.com/attachments/733624227378495488/977275704502784010/skillissue.png);
}
.fixed-cTX7Hp, .fixed-cTX7Hp:after {
color: var(--red);
}
.panels-3wFtMD {
background-color: #ebebeb;
}
.theme-dark .panels-3wFtMD {
background-color: #282b30;
}
.panels-3wFtMD .button-12Fmur {
background-color: var(--background-secondary);
border-radius: 0;
}
.panels-3wFtMD .button-12Fmur svg {
color: rgba(46, 49, 54, 0.4);
width: 16px;
height: 16px;
}
.theme-dark .panels-3wFtMD .button-12Fmur svg {
color: rgba(255, 255, 255, 0.2);
}
.panels-3wFtMD .button-12Fmur svg path[d="M21.1169 1.11603L22.8839 2.88403L19.7679 6.00003L22.8839 9.11603L21.1169 10.884L17.9999 7.76803L14.8839 10.884L13.1169 9.11603L16.2329 6.00003L13.1169 2.88403L14.8839 1.11603L17.9999 4.23203L21.1169 1.11603ZM18 22H13C6.925 22 2 17.075 2 11V6C2 5.447 2.448 5 3 5H7C7.553 5 8 5.447 8 6V10C8 10.553 7.553 11 7 11H6C6.063 14.938 9 18 13 18V17C13 16.447 13.447 16 14 16H18C18.553 16 19 16.447 19 17V21C19 21.553 18.553 22 18 22Z"] {
d: path("M 19.800781 0 C 15.750781 0.15 10.8 4.0492187 7.5 7.1992188 C 4.05 10.649219 -0.0003909665 15.3 -0.15039062 19.5 C -0.15039062 21 3.3007812 23.550781 3.3007812 23.550781 C 4.2007813 24.150781 5.2492187 24.000391 5.6992188 23.400391 C 5.9992187 23.100391 8.7 19.049609 9 18.599609 C 9.15 18.449609 9.1503906 18.149609 9.1503906 17.849609 C 9.1503906 17.549609 8.9996094 17.100391 8.8496094 16.650391 C 8.6996094 16.200391 7.9503906 15.150781 7.6503906 14.550781 C 7.9503906 14.100781 9.0007812 12.899609 10.800781 11.099609 C 12.750781 9.2996094 13.950391 8.3992187 14.400391 7.9492188 C 15.000391 8.2492188 16.2 9.0003906 16.5 9.1503906 C 17.25 9.6003906 17.999219 9.6007813 18.449219 9.3007812 C 18.899219 9.0007812 22.950391 6.4503906 23.400391 6.1503906 C 23.700391 5.8503906 24 5.3992187 24 4.9492188 C 24.15 4.4992187 23.999219 4.0496094 23.699219 3.5996094 C 23.699219 3.5996094 21.150781 0 19.800781 0 z M 19.800781 1.6503906 C 20.250781 1.8003906 21.6 3.15 22.5 4.5 C 22.65 4.65 22.650391 4.6492187 22.650391 4.9492188 C 22.050391 5.3992188 18.599609 7.6492187 17.849609 7.9492188 C 17.849609 7.9492188 17.550391 7.9507813 17.400391 7.8007812 C 17.100391 7.6507813 16.350781 7.1996094 15.300781 6.5996094 L 14.550781 6.1503906 L 13.800781 6.5996094 C 13.200781 7.0496094 11.850391 7.9503906 9.9003906 9.9003906 C 7.9503906 11.700391 7.0496094 13.05 6.5996094 13.5 L 6 14.400391 L 6.4492188 15.300781 C 6.8992188 16.050781 7.5003906 17.100391 7.6503906 17.400391 C 7.8003906 17.700391 7.8007812 17.849609 7.8007812 17.849609 C 7.5007813 18.449609 5.1003906 21.9 4.6503906 22.5 C 4.6503906 22.5 4.4996094 22.499609 4.3496094 22.349609 C 2.9996094 21.299609 1.6496094 19.95 1.3496094 19.5 C 1.4996094 16.65 4.0507812 12.750391 8.5507812 8.4003906 C 13.050781 4.0503906 16.950781 1.6503906 19.800781 1.6503906 z M 15.673828 14.925781 C 15.486328 14.925781 15.300391 15.000391 15.150391 15.150391 C 14.850391 15.450391 14.850391 15.901172 15.150391 16.201172 L 18.375 19.425781 L 15.150391 22.650391 C 14.850391 22.950391 14.850391 23.401172 15.150391 23.701172 C 15.450391 24.001172 15.899219 24.001172 16.199219 23.701172 L 19.425781 20.476562 L 22.650391 23.701172 C 22.950391 24.001172 23.399219 24.001172 23.699219 23.701172 C 23.999219 23.401172 23.999219 22.950391 23.699219 22.650391 L 20.474609 19.425781 L 23.699219 16.201172 C 23.999219 15.901172 23.999219 15.450391 23.699219 15.150391 C 23.399219 14.850391 22.950391 14.850391 22.650391 15.150391 L 19.425781 18.375 L 16.199219 15.150391 C 16.049219 15.000391 15.861328 14.925781 15.673828 14.925781 z ");
}
.panels-3wFtMD .button-12Fmur svg path[d="M19.738 10H22V14H19.739C19.498 14.931 19.1 15.798 18.565 16.564L20 18L18 20L16.565 18.564C15.797 19.099 14.932 19.498 14 19.738V22H10V19.738C9.069 19.498 8.203 19.099 7.436 18.564L6 20L4 18L5.436 16.564C4.901 15.799 4.502 14.932 4.262 14H2V10H4.262C4.502 9.068 4.9 8.202 5.436 7.436L4 6L6 4L7.436 5.436C8.202 4.9 9.068 4.502 10 4.262V2H14V4.261C14.932 4.502 15.797 4.9 16.565 5.435L18 3.999L20 5.999L18.564 7.436C19.099 8.202 19.498 9.069 19.738 10ZM12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z"] {
d: path("M12 7.5C9.45 7.5 7.5 9.45 7.5 12C7.5 14.55 9.45 16.5 12 16.5C14.55 16.5 16.5 14.55 16.5 12C16.5 9.45 14.55 7.5 12 7.5ZM12 15C10.35 15 9 13.65 9 12C9 10.35 10.35 9 12 9C13.65 9 15 10.35 15 12C15 13.65 13.65 15 12 15ZM24 12C24 10.5 22.8 9.15 21.3 9C21.15 8.55 20.85 7.95 20.7 7.5C21.75 6.3 21.6 4.65 20.55 3.45C19.5 2.4 17.7 2.25 16.5 3.3C16.05 3 15.6 2.85 15 2.7C14.85 1.2 13.5 0 12 0C10.5 0 9.15 1.2 9 2.7C8.55 2.85 7.95 3.15 7.5 3.3C6.3 2.4 4.65 2.4 3.45 3.45C2.4 4.65 2.4 6.3 3.3 7.5C3.15 7.95 2.85 8.55 2.7 9C1.2 9.15 0 10.5 0 12C0 13.5 1.2 14.85 2.7 15C2.85 15.45 3.15 16.05 3.3 16.5C2.25 17.7 2.4 19.35 3.45 20.55C4.5 21.6 6.3 21.75 7.5 20.7C7.95 21 8.4 21.15 9 21.3C9.15 22.8 10.5 24 12 24C13.5 24 14.85 22.8 15 21.3C15.45 21.15 16.05 20.85 16.5 20.7C17.7 21.75 19.35 21.6 20.55 20.55C21.6 19.5 21.75 17.7 20.7 16.5C21 16.05 21.15 15.6 21.3 15C22.8 14.85 24 13.5 24 12ZM20.1 13.5C19.95 14.7 19.35 15.75 18.75 16.65L19.35 17.25C19.95 17.85 19.95 18.75 19.35 19.35C18.75 19.95 17.85 19.95 17.25 19.35L16.65 18.75C15.75 19.5 14.7 19.95 13.5 20.1V21C13.5 21.9 12.9 22.5 12 22.5C11.1 22.5 10.5 21.9 10.5 21V20.1C9.3 19.95 8.25 19.35 7.35 18.75L6.75 19.35C6.15 19.95 5.25 19.95 4.65 19.35C4.05 18.75 4.05 17.85 4.65 17.25L5.25 16.65C4.5 15.75 4.05 14.7 3.9 13.5H3C2.1 13.5 1.5 12.9 1.5 12C1.5 11.1 2.1 10.5 3 10.5H3.9C4.05 9.3 4.5 8.25 5.25 7.35L4.65 6.75C4.05 6.15 4.05 5.25 4.65 4.65C5.25 4.05 6.15 4.05 6.75 4.65L7.35 5.25C8.25 4.5 9.3 4.05 10.5 3.9V3C10.5 2.1 11.1 1.5 12 1.5C12.9 1.5 13.5 2.1 13.5 3V3.9C14.7 4.05 15.75 4.65 16.65 5.25L17.25 4.65C17.85 4.05 18.75 4.05 19.35 4.65C19.95 5.25 19.95 6.15 19.35 6.75L18.75 7.35C19.5 8.25 19.95 9.3 20.1 10.5H21C21.9 10.5 22.5 11.1 22.5 12C22.5 12.9 21.9 13.5 21 13.5H20.1Z");
}
.panels-3wFtMD .button-12Fmur svg path[d="M4 2.5C2.897 2.5 2 3.397 2 4.5V15.5C2 16.604 2.897 17.5 4 17.5H11V19.5H7V21.5H17V19.5H13V17.5H20C21.103 17.5 22 16.604 22 15.5V4.5C22 3.397 21.103 2.5 20 2.5H4ZM14.5483 6L16 7.45174L13.4466 9.99485L16 12.5483L14.5483 14L12.0051 11.4466L9.45174 14L8 12.5483L10.5534 9.99485L8 7.45174L9.45174 6L12.0051 8.55341L14.5483 6Z"] {
d: path("M2.25 0C1.0035 0 0 1.0035 0 2.25V15.75C0 16.9965 1.0035 18 2.25 18H9V22.5H2.25C1.8345 22.5 1.5 22.8345 1.5 23.25C1.5 23.6655 1.8345 24 2.25 24H21.75C22.1655 24 22.5 23.6655 22.5 23.25C22.5 22.8345 22.1655 22.5 21.75 22.5H15V18H21.75C22.9965 18 24 16.9965 24 15.75V2.25C24 1.0035 22.9965 0 21.75 0H2.25ZM2.25 1.5H21.75C22.1655 1.5 22.5 1.8345 22.5 2.25V15.75C22.5 16.1655 22.1655 16.5 21.75 16.5H2.25C1.8345 16.5 1.5 16.1655 1.5 15.75V2.25C1.5 1.8345 1.8345 1.5 2.25 1.5ZM8.83594 5.04785C8.65621 5.03587 8.48108 5.09216 8.35254 5.2207L8.2207 5.35254C7.96363 5.60962 7.99428 6.05483 8.28809 6.34863L10.9395 9L8.28809 11.6514C7.99428 11.9452 7.97202 12.3959 8.23828 12.6621L8.33789 12.7617C8.60415 13.028 9.05483 13.0057 9.34863 12.7119L12 10.0605L14.6514 12.7119C14.9452 13.0057 15.3904 13.0364 15.6475 12.7793L15.7793 12.6475C16.0364 12.3904 16.0057 11.9452 15.7119 11.6514L13.0605 9L15.7119 6.34863C16.0057 6.05483 16.028 5.60415 15.7617 5.33789L15.6621 5.23828C15.3959 4.97202 14.9452 4.99428 14.6514 5.28809L12 7.93945L9.34863 5.28809C9.20173 5.14118 9.01567 5.05983 8.83594 5.04785ZM10.5 18H13.5V22.5H10.5V18Z");
}
.panels-3wFtMD .button-12Fmur svg path[d="M12 2.00305C6.486 2.00305 2 6.48805 2 12.0031V20.0031C2 21.1071 2.895 22.0031 4 22.0031H6C7.104 22.0031 8 21.1071 8 20.0031V17.0031C8 15.8991 7.104 15.0031 6 15.0031H4V12.0031C4 7.59105 7.589 4.00305 12 4.00305C16.411 4.00305 20 7.59105 20 12.0031V15.0031H18C16.896 15.0031 16 15.8991 16 17.0031V20.0031C16 21.1071 16.896 22.0031 18 22.0031H20C21.104 22.0031 22 21.1071 22 20.0031V12.0031C22 6.48805 17.514 2.00305 12 2.00305Z"] {
d: path("M23.85 13.5C24 13.05 24 12.45 24 12C24 5.4 18.6 0 12 0C5.4 0 0 5.4 0 12C0 12.45 0 13.05 0.15 13.5C0 13.8 0 13.95 0 14.25V20.25C0 21.45 1.05 22.5 2.25 22.5H5.25C6.45 22.5 7.5 21.45 7.5 20.25V14.25C7.5 13.05 6.45 12 5.25 12H2.25C1.95 12 1.8 12 1.5 12.15V12C1.5 6.15 6.15 1.5 12 1.5C17.85 1.5 22.5 6.15 22.5 12V12.15C22.2 12 22.05 12 21.75 12H18.75C17.55 12 16.5 13.05 16.5 14.25V20.25C16.5 21.45 17.55 22.5 18.75 22.5H21.75C22.95 22.5 24 21.45 24 20.25V14.25C24 13.95 24 13.8 23.85 13.5ZM2.25 13.5H5.25C5.7 13.5 6 13.8 6 14.25V20.25C6 20.7 5.7 21 5.25 21H2.25C1.8 21 1.5 20.7 1.5 20.25V14.25C1.5 13.8 1.8 13.5 2.25 13.5ZM22.5 20.25C22.5 20.7 22.2 21 21.75 21H18.75C18.3 21 18 20.7 18 20.25V14.25C18 13.8 18.3 13.5 18.75 13.5H21.75C22.2 13.5 22.5 13.8 22.5 14.25V20.25Z");
}
.panels-3wFtMD .button-12Fmur svg path[d="M14.99 11C14.99 12.66 13.66 14 12 14C10.34 14 9 12.66 9 11V5C9 3.34 10.34 2 12 2C13.66 2 15 3.34 15 5L14.99 11ZM12 16.1C14.76 16.1 17.3 14 17.3 11H19C19 14.42 16.28 17.24 13 17.72V21H11V17.72C7.72 17.23 5 14.41 5 11H6.7C6.7 14 9.24 16.1 12 16.1ZM12 4C11.2 4 11 4.66667 11 5V11C11 11.3333 11.2 12 12 12C12.8 12 13 11.3333 13 11V5C13 4.66667 12.8 4 12 4Z"] {
display: none;
}
.panels-3wFtMD .button-12Fmur svg path[d="M14.99 11C14.99 12.66 13.66 14 12 14C10.34 14 9 12.66 9 11V5C9 3.34 10.34 2 12 2C13.66 2 15 3.34 15 5L14.99 11ZM12 16.1C14.76 16.1 17.3 14 17.3 11H19C19 14.42 16.28 17.24 13 17.72V22H11V17.72C7.72 17.23 5 14.41 5 11H6.7C6.7 14 9.24 16.1 12 16.1Z"] {
d: path("M18.75 12V13.5C18.75 16.8 16.05 19.5 12.75 19.5H11.25C7.95 19.5 5.25 16.8 5.25 13.5V12H3.75V13.5C3.75 17.7 7.05 21 11.25 21V22.5H10.5C10.05 22.5 9.75 22.8 9.75 23.25C9.75 23.7 10.05 24 10.5 24H13.5C13.95 24 14.25 23.7 14.25 23.25C14.25 22.8 13.95 22.5 13.5 22.5H12.75V21C16.95 21 20.25 17.7 20.25 13.5V12H18.75ZM12 18C14.85 18 17.25 15.6 17.25 12.75V5.25C17.25 2.4 14.85 0 12 0C9.15 0 6.75 2.4 6.75 5.25V12.75C6.75 15.6 9.15 18 12 18ZM8.25 5.25C8.25 3.15 9.9 1.5 12 1.5C14.1 1.5 15.75 3.15 15.75 5.25V12.75C15.75 14.85 14.1 16.5 12 16.5C9.9 16.5 8.25 14.85 8.25 12.75V5.25Z");
}
.panels-3wFtMD .button-12Fmur svg path[d="M9.01 11.085C9.015 11.1125 9.02 11.14 9.02 11.17L15 5.18V5C15 3.34 13.66 2 12 2C10.34 2 9 3.34 9 5V11C9 11.03 9.005 11.0575 9.01 11.085Z"] {
display: none;
}
.panels-3wFtMD .button-12Fmur svg [d="M11.7237 16.0927L10.9632 16.8531L10.2533 17.5688C10.4978 17.633 10.747 17.6839 11 17.72V22H13V17.72C16.28 17.23 19 14.41 19 11H17.3C17.3 14 14.76 16.1 12 16.1C11.9076 16.1 11.8155 16.0975 11.7237 16.0927Z"] {
d: path("M8.25 12.3V5.25C8.25 3.15 9.9 1.5 12 1.5C13.95 1.5 15.6 3 15.75 4.95L16.95 3.75C16.35 1.5 14.4 0 12 0C9.15 0 6.75 2.4 6.75 5.25V12.75C6.75 13.05 6.75 13.5 6.9 13.8L8.25 12.3ZM15.75 12.75C15.75 14.85 14.1 16.5 12 16.5C11.25 16.5 10.5 16.35 10.05 15.9L9 16.95C9.75 17.55 10.8 18 12 18C14.85 18 17.25 15.6 17.25 12.75V8.7L15.75 10.2V12.75ZM18.75 12V13.5C18.75 16.8 16.05 19.5 12.75 19.5H11.25C9.9 19.5 8.7 19.05 7.65 18.3L6.6 19.35C7.8 20.4 9.45 21 11.25 21V22.5H10.5C10.05 22.5 9.75 22.8 9.75 23.25C9.75 23.7 10.05 24 10.5 24H13.5C13.95 24 14.25 23.7 14.25 23.25C14.25 22.8 13.95 22.5 13.5 22.5H12.75V21C16.95 21 20.25 17.7 20.25 13.5V12H18.75ZM5.25 12H3.75V13.5C3.75 14.55 3.9 15.45 4.35 16.35L5.55 15.15C5.4 14.55 5.25 14.1 5.25 13.5V12Z");
}
.panels-3wFtMD .button-12Fmur svg [d="M21 4.27L19.73 3L3 19.73L4.27 21L8.46 16.82L9.69 15.58L11.35 13.92L14.99 10.28L21 4.27Z"] {
d: path("M23.8501 1.0501L18.3001 6.6001L6.6001 18.3001L1.0501 23.8501L-0.149902 22.8001L22.8001 -0.149902L23.8501 1.0501Z");
}
.panels-3wFtMD .button-12Fmur svg [d="M6.16204 15.0065C6.10859 15.0022 6.05455 15 6 15H4V12C4 7.588 7.589 4 12 4C13.4809 4 14.8691 4.40439 16.0599 5.10859L17.5102 3.65835C15.9292 2.61064 14.0346 2 12 2C6.486 2 2 6.485 2 12V19.1685L6.16204 15.0065Z"] {
display: none;
}
.panels-3wFtMD .button-12Fmur svg [d="M19.725 9.91686C19.9043 10.5813 20 11.2796 20 12V15H18C16.896 15 16 15.896 16 17V20C16 21.104 16.896 22 18 22H20C21.105 22 22 21.104 22 20V12C22 10.7075 21.7536 9.47149 21.3053 8.33658L19.725 9.91686Z"] {
d: path("M19.05 2.25C17.1 0.9 14.7 0 12 0C5.4 0 0 5.4 0 12C0 12.45 0 13.05 0.15 13.5C0 13.8 0 13.95 0 14.25V20.25C0 20.55 0 20.85 0.15 21.15L1.5 19.8V14.25C1.5 13.8 1.8 13.5 2.25 13.5H5.25C5.7 13.5 6 13.8 6 14.25V15.3L7.5 13.8C7.35 12.9 6.3 12 5.25 12H2.25C1.95 12 1.8 12 1.5 12.15V12C1.5 6.15 6.15 1.5 12 1.5C14.25 1.5 16.35 2.25 18 3.45L19.05 2.25ZM23.85 13.5C24 13.05 24 12.45 24 12C24 9.3 23.1 6.9 21.75 4.95L20.55 6C21.75 7.65 22.5 9.75 22.5 12V12.15C22.2 12 22.05 12 21.75 12H18.75C17.55 12 16.5 13.05 16.5 14.25V20.25C16.5 21.45 17.55 22.5 18.75 22.5H21.75C22.95 22.5 24 21.45 24 20.25V14.25C24 13.95 24 13.8 23.85 13.5ZM22.5 20.25C22.5 20.7 22.2 21 21.75 21H18.75C18.3 21 18 20.7 18 20.25V14.25C18 13.8 18.3 13.5 18.75 13.5H21.75C22.2 13.5 22.5 13.8 22.5 14.25V20.25ZM7.2 19.5L4.2 22.5H5.25C6.45 22.5 7.5 21.45 7.5 20.25V19.2L7.2 19.5Z");
}
.panels-3wFtMD .button-12Fmur svg [d="M3.20101 23.6243L1.7868 22.2101L21.5858 2.41113L23 3.82535L3.20101 23.6243Z"] {
d: path("M24.1501 0.900098L6.9001 18.1501L0.900098 24.1501L-0.149902 23.1001L5.8501 17.1001L17.1001 5.8501L23.1001 -0.149902L24.1501 0.900098Z");
}
.panels-3wFtMD .button-12Fmur.enabled-9OeuTA:hover {
background: var(--background-secondary);
}
.panels-3wFtMD .button-12Fmur.enabled-9OeuTA:hover svg {
color: #2e3136;
}
.theme-dark .panels-3wFtMD .button-12Fmur.enabled-9OeuTA:hover svg {
color: rgba(255, 255, 255, 0.7);
}
.panels-3wFtMD .wrapper-3Hk9OB .rtcConnectionStatus-c5A6Av svg {
display: var(--showRtcConnectionStatusIcon);
}
.panels-3wFtMD .wrapper-3Hk9OB .subtext-2HDqJ7 {
font-size: 10px;
color: #fff;
opacity: 0.3;
}
.panels-3wFtMD .wrapper-3Hk9OB .alignStretch-3myso- {
border: solid 1px #1C1E22;
border-radius: 3px;
}
.panels-3wFtMD .wrapper-3Hk9OB .alignStretch-3myso- button:first-of-type {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
border-right: solid 1px #1C1E22;
}
.panels-3wFtMD .wrapper-3Hk9OB .alignStretch-3myso- button:last-of-type {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-left: solid 1px #373B42;
}
.panels-3wFtMD .wrapper-3Hk9OB .alignStretch-3myso- button:only-of-type {
border: none;
}
.panels-3wFtMD .wrapper-3Hk9OB .alignStretch-3myso- button:active {
background: #33373C;
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN {
border-top: solid 1px #1C1E22;
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP {
flex: 1 1 50%;
transition: 0.2s;
font-size: 16px;
background: none;
border: solid 1px #747F8D66;
color: #fff6;
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP:hover, .panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP:active {
border-color: #7289da88;
color: #fff;
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP:active {
border-color: var(--blurple);
background: #7289da22;
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP.buttonActive-Uc1jHx {
border-color: hsl(152.6, calc(var(--saturation-factor, 1) * 46%), 48.6%, 0.53);
color: var(--green);
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP.buttonActive-Uc1jHx:hover, .panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP.buttonActive-Uc1jHx:active {
border-color: var(--green);
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP.buttonActive-Uc1jHx:active {
background: hsl(152.6, calc(var(--saturation-factor, 1) * 46%), 48.6%, 0.14);
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M21.526 8.149C21.231 7.966 20.862 7.951 20.553 8.105L18 9.382V7C18 5.897 17.103 5 16 5H4C2.897 5 2 5.897 2 7V17C2 18.104 2.897 19 4 19H16C17.103 19 18 18.104 18 17V14.618L20.553 15.894C20.694 15.965 20.847 16 21 16C21.183 16 21.365 15.949 21.526 15.851C21.82 15.668 22 15.347 22 15V9C22 8.653 21.82 8.332 21.526 8.149Z"] {
d: path("M21.5999 6L16.7999 9.42857V7.2C16.7999 6.53726 16.2626 6 15.5999 6H3.5999C2.93716 6 2.3999 6.53726 2.3999 7.2V16.8C2.3999 17.4627 2.93716 18 3.5999 18H15.5999C16.2626 18 16.7999 17.4627 16.7999 16.8V14.5714L21.5999 18V6ZM15.5999 12.2396V16.8H3.5999V7.2L15.5999 7.2V11.7604L20.3999 8.33183V15.6682L15.5999 12.2396Z");
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M2 4.5C2 3.397 2.897 2.5 4 2.5H20C21.103 2.5 22 3.397 22 4.5V15.5C22 16.604 21.103 17.5 20 17.5H13V19.5H17V21.5H7V19.5H11V17.5H4C2.897 17.5 2 16.604 2 15.5V4.5ZM13.2 14.3375V11.6C9.864 11.6 7.668 12.6625 6 15C6.672 11.6625 8.532 8.3375 13.2 7.6625V5L18 9.6625L13.2 14.3375Z"] {
d: path("M4.1999 2.3999C3.2027 2.3999 2.3999 3.2027 2.3999 4.1999V12.5999V14.9999C2.3999 15.9971 3.2027 16.7999 4.1999 16.7999H9.5999V20.3999H4.1999C3.8675 20.3999 3.5999 20.6675 3.5999 20.9999C3.5999 21.3323 3.8675 21.5999 4.1999 21.5999H19.7999C20.1323 21.5999 20.3999 21.3323 20.3999 20.9999C20.3999 20.6675 20.1323 20.3999 19.7999 20.3999H14.3999V16.7999H19.7999C20.7971 16.7999 21.5999 15.9971 21.5999 14.9999V12.5999V11.3999V10.7999V10.1999C21.5999 9.8675 21.3323 9.5999 20.9999 9.5999C20.6675 9.5999 20.3999 9.8675 20.3999 10.1999V10.7999V11.3999V11.9999V13.1999V14.9999C20.3999 15.3323 20.1323 15.5999 19.7999 15.5999H4.1999C3.8675 15.5999 3.5999 15.3323 3.5999 14.9999V13.1999V11.9999V4.1999C3.5999 3.8675 3.8675 3.5999 4.1999 3.5999H10.7999H11.3999C11.7323 3.5999 11.9999 3.3323 11.9999 2.9999C11.9999 2.6675 11.7323 2.3999 11.3999 2.3999H10.7999H4.1999ZM13.7999 2.3999C13.4675 2.3999 13.1999 2.6675 13.1999 2.9999V7.7999C13.1999 8.1323 13.4675 8.3999 13.7999 8.3999H18.5999C18.9323 8.3999 19.1999 8.1323 19.1999 7.7999V6.40068L19.7999 6.8999L21.5999 8.3999V5.3999V2.3999L19.7999 3.8999L19.1999 4.39912V2.9999C19.1999 2.6675 18.9323 2.3999 18.5999 2.3999H13.7999ZM10.7999 16.7999H13.1999V20.3999H10.7999V16.7999Z");
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M5.79335761,5 L18.2066424,5 C19.7805584,5 21.0868816,6.21634264 21.1990185,7.78625885 L21.8575059,17.0050826 C21.9307825,18.0309548 21.1585512,18.9219909 20.132679,18.9952675 C20.088523,18.9984215 20.0442685,19 20,19 C18.8245863,19 17.8000084,18.2000338 17.5149287,17.059715 L17,15 L7,15 L6.48507125,17.059715 C6.19999155,18.2000338 5.1754137,19 4,19 C2.97151413,19 2.13776159,18.1662475 2.13776159,17.1377616 C2.13776159,17.0934931 2.1393401,17.0492386 2.1424941,17.0050826 L2.80098151,7.78625885 C2.91311838,6.21634264 4.21944161,5 5.79335761,5 Z M14.5,10 C15.3284271,10 16,9.32842712 16,8.5 C16,7.67157288 15.3284271,7 14.5,7 C13.6715729,7 13,7.67157288 13,8.5 C13,9.32842712 13.6715729,10 14.5,10 Z M18.5,13 C19.3284271,13 20,12.3284271 20,11.5 C20,10.6715729 19.3284271,10 18.5,10 C17.6715729,10 17,10.6715729 17,11.5 C17,12.3284271 17.6715729,13 18.5,13 Z M6,9 L4,9 L4,11 L6,11 L6,13 L8,13 L8,11 L10,11 L10,9 L8,9 L8,7 L6,7 L6,9 Z"] {
d: path("M15.5999 7.1999V2.3999H8.3999V7.1999L11.9999 10.7999L15.5999 7.1999ZM11.9999 9.10285L9.5999 6.70285V3.5999H14.3999V6.70285L11.9999 9.10285Z M7.1999 8.3999L2.3999 8.3999V15.5999L7.1999 15.5999L10.7999 11.9999L7.1999 8.3999ZM6.70285 14.3999L3.5999 14.3999V9.5999L6.70285 9.5999L9.10285 11.9999L6.70285 14.3999Z M8.3999 16.7999L8.3999 21.5999L15.5999 21.5999V16.7999L11.9999 13.1999L8.3999 16.7999ZM9.5999 20.3999L9.5999 17.297L11.9999 14.897L14.3999 17.297V20.3999L9.5999 20.3999Z M16.7999 15.5999H21.5999V8.3999H16.7999L13.1999 11.9999L16.7999 15.5999ZM14.897 11.9999L17.297 9.5999H20.3999V14.3999H17.297L14.897 11.9999Z");
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M4.92871 13.4149L10.5857 19.0709L18.3639 11.2927C19.7781 9.87859 22.6066 6.48376 21.1923 2.80748C17.5153 1.3932 14.1213 4.22173 12.7074 5.63625L4.92871 13.4149ZM16.064 9.93309C17.1686 9.93309 18.064 9.03766 18.064 7.93309C18.064 6.82852 17.1686 5.93309 16.064 5.93309C14.9594 5.93309 14.064 6.82852 14.064 7.93309C14.064 9.03766 14.9594 9.93309 16.064 9.93309Z"] {
d: path("M15.5999 7.1999V2.3999H8.3999V7.1999L11.9999 10.7999L15.5999 7.1999ZM11.9999 9.10285L9.5999 6.70285V3.5999H14.3999V6.70285L11.9999 9.10285Z M7.1999 8.3999L2.3999 8.3999V15.5999L7.1999 15.5999L10.7999 11.9999L7.1999 8.3999ZM6.70285 14.3999L3.5999 14.3999V9.5999L6.70285 9.5999L9.10285 11.9999L6.70285 14.3999Z M8.3999 16.7999L8.3999 21.5999L15.5999 21.5999V16.7999L11.9999 13.1999L8.3999 16.7999ZM9.5999 20.3999L9.5999 17.297L11.9999 14.897L14.3999 17.297V20.3999L9.5999 20.3999Z M16.7999 15.5999H21.5999V8.3999H16.7999L13.1999 11.9999L16.7999 15.5999ZM14.897 11.9999L17.297 9.5999H20.3999V14.3999H17.297L14.897 11.9999Z");
}
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M3.41357 16.7844C2.34946 17.8496 2.00004 22 2.00004 22C2.00004 22 6.15125 21.6521 7.21627 20.5869C7.71243 20.0915 7.96638 19.4494 8 18.8004L5.21285 18.7866L5.19829 16C4.54947 16.0336 3.90973 16.2881 3.41357 16.7844Z"],
.panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M9.17144 9.17151H3.51459L1.74684 10.9393L6.34302 11.9999L9.17144 9.17151Z"], .panels-3wFtMD .wrapper-3Hk9OB .container-1zzFcN .button-1EGGcP [d="M14.8283 14.8283V20.4852L13.0606 22.2529L11.9999 17.6568L14.8283 14.8283Z"] {
display: none;
}
.panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur {
border: solid 1px #1C1E22;
border-radius: 3px;
}
.theme-light .sidebar-1tnWFu:not(.theme-dark) .panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur {
border-color: #D9D9D9;
}
.panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur:active {
background: #33373C;
}
.theme-light .sidebar-1tnWFu:not(.theme-dark) .panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur:active {
background: #FFFFFF;
}
.panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur:not(:only-of-type):first-of-type {
border-radius: 3px 0 0 3px;
}
.panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur:not(:only-of-type):last-of-type {
border-radius: 0 3px 3px 0;
border-left-color: #373B42;
}
.theme-light .sidebar-1tnWFu:not(.theme-dark) .panels-3wFtMD .wrapper-3Hk9OB .horizontal-112GEH > .flex-2S1XBF .button-12Fmur:not(:only-of-type):last-of-type {
border-left-color: #FDFDFD;
}
.panels-3wFtMD .activityPanel-9icbyU {
border-bottom-width: 0;
border-top: solid 1px #1C1E22;
}
.panels-3wFtMD .activityPanel-9icbyU .actions-zk2vB_ {
border: solid 1px #1C1E22;
border-radius: 3px;
}
.panels-3wFtMD .activityPanel-9icbyU .actions-zk2vB_ button {
border-radius: 3px;
}
.panels-3wFtMD .activityPanel-9icbyU .actions-zk2vB_ button:active {
background: #33373C;
}
.panels-3wFtMD .activityPanel-9icbyU .actions-zk2vB_ [d="M19 1C19.552 1 20 1.447 20 2V3L23 2V6L20 5V6C20 6.553 19.552 7 19 7H15C14.448 7 14 6.553 14 6V2C14 1.447 14.448 1 15 1H19Z"] {
display: none;
}
.panels-3wFtMD .activityPanel-9icbyU .actions-zk2vB_ [d="M20 13.5V9H22V15.5C22 16.604 21.103 17.5 20 17.5H13V19.5H17V21.5H7V19.5H11V17.5H4C2.897 17.5 2 16.604 2 15.5V4.5C2 3.397 2.897 2.5 4 2.5H12V4.5H4V13.5H20Z"] {
d: path("M2.25 0C1.0035 0 0 1.0035 0 2.25V12.75V15.75C0 16.9965 1.0035 18 2.25 18H9V22.5H2.25C1.8345 22.5 1.5 22.8345 1.5 23.25C1.5 23.6655 1.8345 24 2.25 24H21.75C22.1655 24 22.5 23.6655 22.5 23.25C22.5 22.8345 22.1655 22.5 21.75 22.5H15V18H21.75C22.9965 18 24 16.9965 24 15.75V12.75V11.25V10.5V9.75C24 9.3345 23.6655 9 23.25 9C22.8345 9 22.5 9.3345 22.5 9.75V10.5V11.25V12V13.5V15.75C22.5 16.1655 22.1655 16.5 21.75 16.5H2.25C1.8345 16.5 1.5 16.1655 1.5 15.75V13.5V12V2.25C1.5 1.8345 1.8345 1.5 2.25 1.5H10.5H11.25C11.6655 1.5 12 1.1655 12 0.75C12 0.3345 11.6655 0 11.25 0H10.5H2.25ZM14.25 0C13.8345 0 13.5 0.3345 13.5 0.75V6.75C13.5 7.1655 13.8345 7.5 14.25 7.5H20.25C20.6655 7.5 21 7.1655 21 6.75V5.00098L21.75 5.625L24 7.5V3.75V0L21.75 1.875L21 2.49902V0.75C21 0.3345 20.6655 0 20.25 0H14.25ZM10.5 18H13.5V22.5H10.5V18Z");
}
.panels-3wFtMD .container-YkUktl {
border-top: solid 1px #DEDEDE;
height: 70px;
padding: 0 10px;
}
.panels-3wFtMD .container-YkUktl .withTagAsButton-OsgQ9L, .panels-3wFtMD .container-YkUktl .withTagless-10ooWt {
min-width: unset;
width: 100%;
max-width: 50%;
transition: 0.2s;
}
.panels-3wFtMD .container-YkUktl .withTagAsButton-OsgQ9L, .panels-3wFtMD .container-YkUktl .withTagAsButton-OsgQ9L .hoverRoll-2XwpoF, .panels-3wFtMD .container-YkUktl .withTagless-10ooWt, .panels-3wFtMD .container-YkUktl .withTagless-10ooWt .hoverRoll-2XwpoF {
cursor: pointer;
}
.theme-dark .panels-3wFtMD .container-YkUktl {
border-top: solid 1px #1C1E22;
background: #282B30;
}
.panels-3wFtMD .container-YkUktl .flex-2S1XBF {
border: 1px solid #dedede;
border-radius: 4px;
overflow: hidden;
min-width: 96px;
flex-shrink: 0;
}
.theme-dark .panels-3wFtMD .container-YkUktl .flex-2S1XBF {
border-color: #1c1e22;
}
.panels-3wFtMD .container-YkUktl .flex-2S1XBF button:first-of-type, .panels-3wFtMD .container-YkUktl .flex-2S1XBF button:nth-of-type(2) {
border-right: 1px solid #dedede;
}
.theme-dark .panels-3wFtMD .container-YkUktl .flex-2S1XBF button:first-of-type, .theme-dark .panels-3wFtMD .container-YkUktl .flex-2S1XBF button:nth-of-type(2) {
border-right-color: #1c1e22;
}
.panels-3wFtMD .container-YkUktl .flex-2S1XBF button:nth-of-type(2), .panels-3wFtMD .container-YkUktl .flex-2S1XBF button:nth-of-type(3) {
box-shadow: inset 1px 0 0 #fdfdfd;
}
.theme-dark .panels-3wFtMD .container-YkUktl .flex-2S1XBF button:nth-of-type(2), .theme-dark .panels-3wFtMD .container-YkUktl .flex-2S1XBF button:nth-of-type(3) {
box-shadow: inset 1px 0 0 #373b42;
}
.panels-3wFtMD .container-YkUktl .flex-2S1XBF button:active {
background: #33373C;
}
.panels-3wFtMD .container-1zzFcN {
border-bottom-width: 0;
}
.panels-3wFtMD .listeningAlong-6YvYsc {
border-bottom: none;
border-top: solid 1px #1C1E22;
}
.panels-3wFtMD .listeningAlong-6YvYsc .icons-3cpYoD {
border: solid 1px #1c1e22;
border-radius: 3px;
overflow: hidden;
}
.panels-3wFtMD .listeningAlong-6YvYsc .icons-3cpYoD button:active {
background: #33373C;
}
.panels-3wFtMD .listeningAlong-6YvYsc .icons-3cpYoD button [d="M9,7 L11,7 L11,5 L9,5 L9,7 Z M10,18 C5.59,18 2,14.41 2,10 C2,5.59 5.59,2 10,2 C14.41,2 18,5.59 18,10 C18,14.41 14.41,18 10,18 L10,18 Z M10,4.4408921e-16 C4.4771525,-1.77635684e-15 4.4408921e-16,4.4771525 0,10 C-1.33226763e-15,12.6521649 1.0535684,15.195704 2.92893219,17.0710678 C4.80429597,18.9464316 7.3478351,20 10,20 C12.6521649,20 15.195704,18.9464316 17.0710678,17.0710678 C18.9464316,15.195704 20,12.6521649 20,10 C20,7.3478351 18.9464316,4.80429597 17.0710678,2.92893219 C15.195704,1.0535684 12.6521649,2.22044605e-16 10,0 L10,4.4408921e-16 Z M9,15 L11,15 L11,9 L9,9 L9,15 L9,15 Z"] {
d: path("M9.00699 10.4453C8.97009 10.6478 9.0808 10.8502 9.30223 10.9312C9.48676 11.0121 9.70819 11.0121 9.89271 11.0526C10.3356 11.1336 10.4832 11.2955 10.4832 11.8219V12.0648C10.2987 13.2794 10.0772 14.4939 9.89271 15.7085C9.782 16.3968 9.67128 17.1255 9.59747 17.8138C9.48676 18.8259 10.3725 19.7976 11.0737 19.919C11.5165 20 11.9225 20 12.3654 20C13.288 20 14.063 19.5547 14.7273 18.8259C14.838 18.7045 14.9487 18.5425 14.9856 18.3401C15.0594 18.0567 14.838 17.8543 14.5797 17.9757C14.3951 18.0567 14.2475 18.1781 14.063 18.2591C13.8416 18.3401 13.6201 18.4211 13.3987 18.4615C13.1404 18.502 12.9189 18.3401 12.8451 18.0567C12.8082 17.8543 12.7713 17.6113 12.8082 17.3684C12.8451 16.9231 12.9558 16.4372 13.0296 15.9919C13.2511 14.6154 13.5094 13.1984 13.7308 11.8219C13.8046 11.4575 13.8416 11.0526 13.8416 10.6883C13.8416 10.2429 13.5832 10 13.1773 10H9.8189C9.67128 10 9.56057 10 9.41295 10.0405C9.15461 10.1215 9.0439 10.2429 9.00699 10.4453ZM9.77165 4.97938C9.77165 6.09278 10.5771 7 11.6127 7C12.61 7 13.4538 6.09278 13.4538 5.02062C13.4538 3.90722 12.6484 3 11.6127 3C10.5771 3 9.77165 3.86598 9.77165 4.97938Z");
fill: none;
stroke: currentColor;
stroke-width: 1px;
transform: scale(1.25);
transform-origin: center center;
}
.speaking-3K28iH {
box-shadow: inset 0 0 0 2px var(--green), inset 0 0 0 3px var(--background-secondary);
}
.scrollerContent-2SW0kQ {
justify-content: normal;
}
.messageListItem-ZZ7v6g > .message-2CShn3.compact-2Nkcau,
.backgroundFlash-1X5jVs > .messageListItem-ZZ7v6g > .message-2CShn3.compact-2Nkcau {
margin-top: 0 !important;
margin-bottom: -12px !important;
padding-top: 8px !important;
padding-bottom: 8px !important;
}
.messageListItem-ZZ7v6g > .message-2CShn3.compact-2Nkcau .avatar-2e8lTP,
.backgroundFlash-1X5jVs > .messageListItem-ZZ7v6g > .message-2CShn3.compact-2Nkcau .avatar-2e8lTP {
left: 0px;
}
.messageListItem-ZZ7v6g > .message-2CShn3.compact-2Nkcau.groupStart-3Mlgv1,
.backgroundFlash-1X5jVs > .messageListItem-ZZ7v6g > .message-2CShn3.compact-2Nkcau.groupStart-3Mlgv1 {
margin-top: 12px !important;
}
.focusRing-2_fyOA, .ring-370dIp {
border-radius: 3px;
border: solid 2px var(--blurple);
box-shadow: none !important;
margin-top: -2px !important;
margin-left: -2px !important;
}
.focusRing-2_fyOA {
border-radius: 5px;
}
.scrollableContainer-15eg7h {
border-radius: 3px;
border: 2px solid;
}
.theme-dark .scrollableContainer-15eg7h {
background-color: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.2);
}
.theme-light .scrollableContainer-15eg7h {
background-color: #fff;
border-color: #dadddf;
}
.scrollableContainer-15eg7h .attachButton-1ijpt9 {
margin-right: 8px;
}
.scrollableContainer-15eg7h .attachButton-1ijpt9 .icon-2P5yLI {
max-height: 42px;
padding: 9px 6px !important;
border-right: solid 1px var(--blurple);
}
.scrollableContainer-15eg7h .attachButton-_ACFSu {
margin-right: 10px;
border-right: 1px solid;
padding: 6px 6px;
height: 100%;
max-height: 50vh;
border-radius: 0;
}
.theme-dark .scrollableContainer-15eg7h .attachButton-_ACFSu {
border-color: rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.2);
}
.theme-dark .scrollableContainer-15eg7h .attachButton-_ACFSu:hover {
background: rgba(255, 255, 255, 0.06);
color: #fff;
}
.theme-dark .scrollableContainer-15eg7h .attachButton-_ACFSu:active {
background: rgba(255, 255, 255, 0.2);
color: #fff;
border-color: #0000;
}
.theme-light .scrollableContainer-15eg7h .attachButton-_ACFSu {
border-color: #dadddf;
color: #747f8d;
}
.theme-light .scrollableContainer-15eg7h .attachButton-_ACFSu:hover {
background: #F9F9F9;
}
.theme-light .scrollableContainer-15eg7h .attachButton-_ACFSu:active {
background: #DADDDF;
}
.scrollableContainer-15eg7h .attachButton-_ACFSu .attachButtonPlus-3IYelE {
d: path("M3.00211823,0 C2.06461823,0 2,0.0454420447 2,0.982942045 L2,17.96875 C2,18.90625 2.06461823,19.0165443 3.00211823,19.0165443 L7,19.0165443 L7,18.0325928 L4.01171875,18.0325928 C3.38671875,18.0325928 3.00211823,17.5 3.00211823,17.03125 L3.00211823,2.03125 C3.00211823,1.40625 3.47086823,0.982942045 3.93961823,0.982942045 L21.0625,0.982942045 C21.6875,0.982942045 22,1.5625 22,2.03125 L22,17.03125 C22,17.65625 21.53125,18.0325928 21.0625,18.0325928 L17.9898968,17.96875 L17.9898968,19.0165443 L22,19.0165443 C22.78125,19.0165443 22.976181,18.90625 22.976181,17.96875 L22.976181,0.982942045 C22.819931,0.0454420447 22,0 22,0 L3.00211823,0 Z M12.9375,6.09375 C12.78125,5.9375 12.625,5.9375 12.46875,5.9375 C12.3125,5.9375 12.15625,5.9375 12.15625,6.25 L8.25,10 C7.9375,10.15625 7.9375,10.625 8.25,10.78125 C8.40625,10.9375 8.71875,10.9375 9.03125,10.78125 L12,7.8125 L12,24.53125 C12,24.84375 12.15625,25 12.46875,25 C12.78125,25 12.9375,24.84375 12.9375,24.53125 L12.9375,7.8125 L16.0625,10.9375 C16.21875,11.09375 16.6875,11.09375 16.84375,10.9375 C17,10.78125 17,10.3125 16.84375,10.15625 L12.9375,6.09375 L12.9375,6.09375 Z");
fill: currentColor;
}
.scrollableContainer-15eg7h .attachButton-_ACFSu .attachButtonPlay-1ATmb5 {
color: var(--green);
}
.scrollableContainer-15eg7h .fontSize12Padding-1aH21p {
padding-top: 13px;
padding-bottom: 12px;
}
.scrollableContainer-15eg7h .fontSize14Padding-1nmT2C {
padding-top: 12px;
padding-bottom: 10px;
}
.scrollableContainer-15eg7h .fontSize15Padding-_BiJt9 {
padding-top: 11px;
padding-bottom: 10px;
}
.scrollableContainer-15eg7h .fontSize16Padding-XoMpjI {
padding-top: 11px;
padding-bottom: 9px;
}
.scrollableContainer-15eg7h .textArea-2CLwUE {
min-height: 42px;
height: 42px;
}
.scrollableContainer-15eg7h .textArea-2CLwUE[style="height: 44px;"] {
height: 42px !important;
}
.scrollableContainer-15eg7h .buttons-uaqb-5 {
height: 42px;
}
.scrollableContainer-15eg7h .buttons-uaqb-5 [d="M2 2C0.895431 2 0 2.89543 0 4V20C0 21.1046 0.89543 22 2 22H22C23.1046 22 24 21.1046 24 20V4C24 2.89543 23.1046 2 22 2H2ZM9.76445 11.448V15.48C8.90045 16.044 7.88045 16.356 6.74045 16.356C4.11245 16.356 2.66045 14.628 2.66045 12.072C2.66045 9.504 4.23245 7.764 6.78845 7.764C7.80845 7.764 8.66045 8.004 9.32045 8.376L9.04445 10.164C8.42045 9.768 7.68845 9.456 6.83645 9.456C5.40845 9.456 4.71245 10.512 4.71245 12.06C4.71245 13.62 5.43245 14.712 6.86045 14.712C7.31645 14.712 7.64045 14.616 7.97645 14.448V12.972H6.42845V11.448H9.76445ZM11.5481 7.92H13.6001V16.2H11.5481V7.92ZM20.4724 7.92V9.636H17.5564V11.328H19.8604V13.044H17.5564V16.2H15.5164V7.92H20.4724Z"] {
d: path("M3 3H21C22.6569 3 24 4.34315 24 6V18C24 19.6569 22.6569 21 21 21H3C1.34315 21 0 19.6569 0 18V6C0 4.34315 1.34315 3 3 3V3ZM11 8V16H13V8H11ZM8 8H4C3.28 8 3 8.33333 3 9V15C3 15.6667 3.28 16 4 16H8C8.72 16 9 15.6667 9 15V11H6V13H7V14H5V10H9V9C9 8.33333 8.72 8 8 8ZM21 10V8H15V16H17V13H20V11H17V10H21Z");
}
.scrollableContainer-15eg7h .buttons-uaqb-5 > .button-f2h6uQ {
display: none;
}
.scrollableContainer-15eg7h .buttonWrapper-3YFQGJ {
opacity: 0.3 !important;
transform: scale(1) !important;
transition: 0.2s;
color: #fff;
}
.theme-light .scrollableContainer-15eg7h .buttonWrapper-3YFQGJ {
color: #000b;
}
.scrollableContainer-15eg7h .button-f2h6uQ:hover:not(:disabled) .buttonWrapper-3YFQGJ {
opacity: 1 !important;
transform: scale(1.1) !important;
}
.scrollableContainer-15eg7h .button-f2h6uQ:disabled {
opacity: 0.5;
}
.scrollableContainer-15eg7h .button-f2h6uQ:disabled .buttonChild-33lB5F {
color: var(--interactive-normal);
}
.scrollableContainer-15eg7h .emojiButtonNormal-35P0_i {
opacity: 0.3;
}
.form-3gdLxP {
margin-left: 20px;
margin-right: 20px;
padding: 0;
padding-top: 20px;
margin-top: 0;
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
background: var(--background-primary);
}
.theme-dark .form-3gdLxP {
border-top: solid 1px rgba(255, 255, 255, 0.06);
}
.form-3gdLxP .typing-2J1mQU {
margin-left: -16px;
margin-right: -16px;
}
.form-3gdLxP .typing-2J1mQU .ellipsis-1e7x0D {
margin: 0;
}
.form-3gdLxP:before {
display: none;
}
.attachedBars-2BCP3l .clipContainer-31nYlH {
overflow: hidden;
padding-top: 32px;
margin-top: -30px;
margin-bottom: -2px;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v {
background: var(--blurple);
border-radius: 3px 3px 0 0;
margin-top: -32px;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .text-1pxItg {
color: #fff8;
font-weight: 400;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .text-1pxItg .name-3DDHNY {
color: #fff !important;
font-weight: 600;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .mentionButton-3C5YMI, .attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .closeButton-3IEry2 {
color: #fff;
opacity: 0.5;
transition: 0.2s;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .mentionButton-3C5YMI:hover, .attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .closeButton-3IEry2:hover {
opacity: 1;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .mentionButton-3C5YMI {
font-size: 14px;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .mentionButton-3C5YMI svg {
display: none;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .mentionButton-3C5YMI:before {
content: "@";
margin-right: 2px;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .replyBar-1oi75v .separator-8ngZ3p {
background: #fff4;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .threadSuggestionBar-3ExSyc {
background: var(--blurple);
box-shadow: none;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .threadSuggestionBar-3ExSyc .colorHeaderSecondary-g5teka {
color: #fffb;
}
.attachedBars-2BCP3l .clipContainer-31nYlH .threadSuggestionBar-3ExSyc .colorLink-2vG20E {
color: #fff;
}
.attachedBars-2BCP3l + .scrollableContainer-15eg7h {
border-radius: 0 0 3px 3px;
border-color: var(--blurple);
z-index: 99;
}
.divider-IqmEqJ {
margin-left: 20px;
margin-right: 4px;
}
.divider-IqmEqJ.beforeGroup-1BvJAt {
margin-bottom: 0 !important;
margin-top: -1px !important;
}
.divider-IqmEqJ.isUnread-3Lojb- {
border-color: #f0474766;
}
.divider-IqmEqJ.isUnread-3Lojb-:not(.beforeGroup-1BvJAt) {
margin-top: -34px !important;
margin-bottom: 46px !important;
}
.divider-IqmEqJ.isUnread-3Lojb-:not(.beforeGroup-1BvJAt).hasContent-1y12-u {
margin-top: -20px !important;
margin-bottom: 19px !important;
}
.divider-IqmEqJ.isUnread-3Lojb-:not(.beforeGroup-1BvJAt).hasContent-1y12-u .unreadPill-3nEWYM {
display: none !important;
}
.divider-IqmEqJ.isUnread-3Lojb- + .messageListItem-ZZ7v6g .message-2CShn3.cozyMessage-1DWF9U.groupStart-3Mlgv1.hasReply-2Cr4KE {
margin-top: -20px !important;
}
.divider-IqmEqJ.hasContent-31hcsn:not(.isUnread-3Lojb-) {
margin-top: -20px !important;
}
.divider-IqmEqJ .unreadPill-3nEWYM {
padding: 0 10px;
border-radius: 3px;
background: var(--background-primary);
right: unset;
text-align: center;
font-size: 14px;
color: rgba(240, 71, 71, 0.8);
}
.divider-IqmEqJ .unreadPill-3nEWYM svg {
display: none;
}
[lang=en-GB] .divider-IqmEqJ .unreadPill-3nEWYM, [lang=en-US] .divider-IqmEqJ .unreadPill-3nEWYM {
font-size: 0;
}
[lang=en-GB] .divider-IqmEqJ .unreadPill-3nEWYM:after, [lang=en-US] .divider-IqmEqJ .unreadPill-3nEWYM:after {
content: "NEW MESSAGES";
font-size: 14px;
}
.divider-IqmEqJ.beforeGroup-1BvJAt {
top: -19px !important;
}
.divider-IqmEqJ:not(.isUnread-3Lojb-) + .messageListItem-ZZ7v6g .message-2CShn3, .divider-IqmEqJ:not(.isUnread-3Lojb-) + .backgroundFlash-1X5jVs .message-2CShn3 {
margin-top: -8px !important;
}
.divider-IqmEqJ:not(.isUnread-3Lojb-) + .messageListItem-ZZ7v6g .message-2CShn3.groupStart-3Mlgv1:before, .divider-IqmEqJ:not(.isUnread-3Lojb-) + .backgroundFlash-1X5jVs .message-2CShn3.groupStart-3Mlgv1:before {
content: unset;
}
.wrapper-2SplAX {
background: none;
}
.messageListItem-ZZ7v6g:last-of-type .message-2CShn3,
.backgroundFlash-1X5jVs:last-of-type .message-2CShn3 {
margin-bottom: -20px !important;
}
.messageListItem-ZZ7v6g:last-of-type .systemMessage-1H1Z20,
.backgroundFlash-1X5jVs:last-of-type .systemMessage-1H1Z20 {
overflow: hidden;
}
.menu-1QACrS {
background-color: #fff;
min-width: 140px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.theme-dark .menu-1QACrS {
background-color: #282b30;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.82), 0 1px 4px rgba(0, 0, 0, 0.1);
}
.menu-1QACrS .scroller-1bVxF5 {
padding: 0;
}
.menu-1QACrS .scroller-1bVxF5::-webkit-scrollbar {
width: 0;
}
.menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL {
margin: 0;
color: #99aab5;
padding: 4px 8px;
min-height: 28px;
border-radius: 0;
font-size: 13px;
}
.theme-dark .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL {
color: rgba(255, 255, 255, 0.6);
}
.menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL:hover, .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL.focused-3qFvc8, .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL:active, .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL.focused-3qFvc8:active {
background: #f9f9f9 !important;
color: #737f8d;
}
.theme-dark .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL:hover, .theme-dark .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL.focused-3qFvc8, .theme-dark .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL:active, .theme-dark .menu-1QACrS .scroller-1bVxF5 .labelContainer-2vJzYL.focused-3qFvc8:active {
background: #25282d !important;
color: #fff;
}
.menu-1QACrS .scroller-1bVxF5 .colorDanger-3n-KnP {
color: var(--red) !important;
}
.menu-1QACrS .scroller-1bVxF5 .colorBrand-3cPPsm {
color: var(--blurple) !important;
}
.menu-1QACrS .scroller-1bVxF5 .separator-1So4YB {
margin: 0;
}
.menu-1QACrS .submenuPaddingContainer-_k62dJ {
padding: 0;
}
.menu-1QACrS .submenuPaddingContainer-_k62dJ .submenu-1apzyU {
margin-left: -4px;
margin-right: -4px;
}
.menu-1QACrS .textBadge-1fdDPJ {
margin-top: -4px;
}
.theme-light .menu-1QACrS .item-1OdjEX.focused-3qFvc8 .checkbox-hADx5o, .theme-light .menu-1QACrS .item-1OdjEX.focused-3qFvc8 .radioSelection-1UHp0b, .theme-light .menu-1QACrS .item-1OdjEX.focused-3qFvc8 .subtext-2GlkbE {
color: #444;
}
.bodyInnerWrapper-2bQs1k {
background: none;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK {
/*.colorable-3rVGna.red-3T8maV[aria-label="Stop Watching"] {
background-color: var(--blurple);
}*/
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .controlButton-2PMNom:last-of-type {
order: 3;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .controlButton-2PMNom {
width: 26px;
height: 26px;
margin-left: 3px;
margin-right: 3px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .controlButton-2PMNom > svg {
width: 36px;
height: 36px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .controlButton-2PMNom foreignObject {
mask: none;
width: 56px;
height: 56px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .controlButton-2PMNom foreignObject .centerButton-1IShs7 {
width: 40px;
height: 40px;
border-radius: 5px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .controlButton-2PMNom foreignObject .centerButton-1IShs7 svg {
width: 24px;
height: 24px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .contextMenuContainer-1RO4DQ > svg {
margin-bottom: -30px;
margin-right: -30px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .contextMenuContainer-1RO4DQ > svg > foreignObject {
width: 56px;
height: 56px;
mask: none;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7 {
border-radius: 3px;
padding: 5px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7.audienceButton-3EsbUt, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7.makeMeASpeakerButton-I5v_9C, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7.speakerRaiseHandButton-2xNQGu {
width: 26px;
height: 26px;
margin-left: 3px;
margin-right: 3px;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7.audienceButton-3EsbUt svg, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7.makeMeASpeakerButton-I5v_9C svg, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .centerButton-1IShs7.speakerRaiseHandButton-2xNQGu svg {
transform: scale(0.75);
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .speakerRaiseHandButtonContainer-vFHQuX {
margin-left: 0;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .leaveQuietlyButton-3Vhswc {
border-radius: 3px;
height: 26px;
min-height: 26px;
margin-left: 3px;
margin-right: 3px;
width: auto;
padding-left: 4px;
padding-right: 4px;
text-transform: uppercase;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .leaveQuietlyButton-3Vhswc svg {
transform: scale(0.75);
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryDark-2UJt1G, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.white-11auuQ, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryLight-1yA273 {
background-color: #747f8d !important;
color: #f6f7f8;
/*.theme-dark & {
background-color: #36393e;
}*/
}
.theme-dark .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryDark-2UJt1G, .theme-dark .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.white-11auuQ, .theme-dark .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryLight-1yA273 {
background-color: #2D3135 !important;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryDark-2UJt1G:hover, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.white-11auuQ:hover, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryLight-1yA273:hover {
background-color: #4f5660 !important;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryDark-2UJt1G .centerIcon-JYpTUi, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.white-11auuQ .centerIcon-JYpTUi, .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryLight-1yA273 .centerIcon-JYpTUi {
color: #f6f7f8;
}
.theme-dark .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryDark-2UJt1G .centerIcon-JYpTUi, .theme-dark .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.white-11auuQ .centerIcon-JYpTUi, .theme-dark .root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.primaryLight-1yA273 .centerIcon-JYpTUi {
color: #aeb0b2;
}
.root-22AK9z .videoControls-353CsJ .bottomControls-31YuPK .colorable-3rVGna.red-3T8maV {
width: auto !important;
padding-left: 16px;