-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinverse.css
4275 lines (4273 loc) · 422 KB
/
inverse.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
[lang=en-US] body,[lang=de-DE] body,[lang=es-ES] body,[lang=fr-FR] body{font-family:Slack-Lato,appleLogo,sans-serif}
[lang=ja-JP] body{font-family:NotoSansJP,Slack-Lato,appleLogo,sans-serif}
button,input,select,textarea{font-family:inherit}
.monkey_scroll_wrapper.debug{background:rgba(0,0,0,.5)}
.monkey_scroll_hider{overflow:hidden}
.monkey_scroll_hider.debug{overflow:visible!important;background:green}
.monkey_scroll_bar,.monkey_scroll_bar *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
.monkey_scroll_bar{position:absolute;margin-top:3px;margin-bottom:3px;background:#060606;width:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-khtml-border-radius:10px;border-radius:10px}
.monkey_scroll_bar_native_scrollbar_shim{position:absolute;top:0;right:0;bottom:0;width:17px;background-color:#f0f0f0}
.monkey_scroll_bar.debug{background:red}
.monkey_scroll_handle{position:absolute;width:10px}
.monkey_scroll_handle_inner{width:100%;height:100%;background:#262621;border:1px solid #f0f0f0;-moz-border-radius:8px;-webkit-border-radius:8px;-khtml-border-radius:8px;border-radius:8px}
.monkey_scroll_handle_inner.debug{border:1px solid #f0f0f0fff}
#client-ui .monkey_scroll_bar{width:8px;background:#0c0c0c;-moz-border-radius:8px;-webkit-border-radius:8px;-khtml-border-radius:8px;border-radius:8px}
#client-ui .monkey_scroll_handle{width:14px}
#client-ui .monkey_scroll_handle_inner{border:3px solid #f0f0f0;background:#262621;-moz-border-radius:6px;-webkit-border-radius:6px;-khtml-border-radius:6px;border-radius:6px;-webkit-transition:background .5s;-moz-transition:background .5s;-ms-transition:background .5s;transition:background .5s}
.monkey_scroller{overflow-x:hidden}
.monkey_scroller::-webkit-scrollbar{width:0;height:0}
.CodeMirror-lines{padding:4px 0}
.CodeMirror pre{padding:0 4px}
.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#f0f0f0}
.CodeMirror-gutters{border-right:1px solid #f2f2f2;background-color:#080808;white-space:nowrap}
.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#f6f6f6;white-space:nowrap}
.CodeMirror-guttermarker{color:#f0f0f0fff}
.CodeMirror-guttermarker-subtle{color:#f6f6f6}
.CodeMirror-cursor{border-left:1px solid #f0f0f0fff;border-right:none;width:0}
.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}
.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#f8f1f8}
.cm-fat-cursor div.CodeMirror-cursors{z-index:1}
.cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#f8f1f8}
@-moz-keyframes blink{50%{background-color:transparent}
}
@-webkit-keyframes blink{50%{background-color:transparent}
}
@keyframes blink{50%{background-color:transparent}
}
.cm-tab{display:inline-block;text-decoration:inherit}
.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}
.CodeMirror-ruler{border-left:1px solid #0c0c0c;top:0;bottom:0;position:absolute}
.cm-s-default .cm-header{color:#f0f0f0ff0}
.cm-s-default .cm-quote{color:#f0f0f06ff}
.cm-negative{color:#f2fbfb}
.cm-positive{color:#fdf6fd}
.cm-header,.cm-strong{font-weight:700}
.cm-em{font-style:italic}
.cm-link{text-decoration:underline}
.cm-strikethrough{text-decoration:line-through}
.cm-s-default .cm-keyword{color:#f8fff7}
.cm-s-default .cm-atom{color:#fdfef6}
.cm-s-default .cm-number{color:#fef9fb}
.cm-s-default .cm-def{color:#f0f0f0ff0}
.cm-s-default .cm-variable-2{color:#f0f0f0af5}
.cm-s-default .cm-variable-3{color:#f0f0f07fa}
.cm-s-default .cm-comment{color:#f5faff}
.cm-s-default .cm-string{color:#f5fefe}
.cm-s-default .cm-string-2{color:#f0faff}
.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#fafafa}
.cm-s-default .cm-builtin{color:#fcfff5}
.cm-s-default .cm-bracket{color:#f6f6f8}
.cm-s-default .cm-tag{color:#fef8ff}
.cm-s-default .cm-attribute{color:#f0f0f0ff3}
.cm-s-default .cm-hr{color:#f6f6f6}
.cm-s-default .cm-link{color:#f0f0f0ff3}
.cm-invalidchar,.cm-s-default .cm-error{color:red}
.CodeMirror-composing{border-bottom:2px solid}
div.CodeMirror span.CodeMirror-matchingbracket{color:#f0f0f00ff}
div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f0fdfd}
.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}
.CodeMirror-activeline-background{background:#170d00}
.CodeMirror{position:relative;overflow:hidden;background:#f0f0f0}
.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}
.CodeMirror-sizer{position:relative;border-right:30px solid transparent}
.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}
.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}
.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}
.CodeMirror-scrollbar-filler{right:0;bottom:0}
.CodeMirror-gutter-filler{left:0;bottom:0}
.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}
.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px;*zoom:1;*display:inline}
.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important;-webkit-user-select:none;-moz-user-select:none;user-select:none}
.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}
.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}
.CodeMirror-lines{cursor:text;min-height:1px}
.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:none;font-variant-ligatures:none}
.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}
.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}
.CodeMirror-linewidget{position:relative;z-index:2;overflow:auto}
.CodeMirror-code{outline:0}
.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}
.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}
.CodeMirror-cursor{position:absolute;pointer-events:none}
.CodeMirror-measure pre{position:static}
div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}
.CodeMirror-focused div.CodeMirror-cursors,div.CodeMirror-dragcursors{visibility:visible}
.CodeMirror-selected{background:#262626}
.CodeMirror-focused .CodeMirror-selected{background:#282b0f}
.CodeMirror-crosshair{cursor:crosshair}
.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#282b0f}
.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#282b0f}
.cm-searching{background:#f0f0f5;background:rgba(255,255,0,.4)}
.CodeMirror span{*vertical-align:text-bottom}
.cm-force-border{padding-right:.1px}
@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}
}
.cm-tab-wrap-hack:after{content:''}
span.CodeMirror-selectedtext{background:0 0}
@font-face{font-family:appleLogo;src:local("Lucida Grande");unicode-range:U+F8FF}
.CodeMirror{font-family:Consolas,monaco,"Ubuntu Mono",courier,monospace!important;border:1px solid #5f5f5d;border-radius:6px;color:#d3d2cf;height:auto;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);will-change:transform}
.CodeMirror pre{font-family:inherit}
.CodeMirror .CodeMirror-sizer{font-size:13px!important;line-height:1.5}
html.is_mac .CodeMirror .CodeMirror-sizer{font-size:12px!important}
.CodeMirror .CodeMirror-gutters{background-color:#040404;border-color:#141414}
.CodeMirror .CodeMirror-code{font-size:.8rem}
.CodeMirror .CodeMirror-linenumber{color:#8e8d8b}
.CodeMirror:focus,.CodeMirror:hover{border-color:#8e8d8b}
#file_page .CodeMirror,#snippet_dialog .CodeMirror{height:12rem}
.ladda-button{position:relative}
.ladda-button .ladda-spinner{position:absolute;z-index:2;display:inline-block;width:32px;height:32px;top:50%;margin-top:-16px;opacity:0;pointer-events:none}
.ladda-button .ladda-label{position:relative;z-index:3}
.ladda-button .ladda-progress{position:absolute;width:0;height:100%;left:0;top:0;background:rgba(0,0,0,.2);visibility:hidden;opacity:0;-webkit-transition:.1s linear padding!important;-moz-transition:.1s linear padding!important;-ms-transition:.1s linear padding!important;-o-transition:.1s linear padding!important;transition:.1s linear padding!important}
.ladda-button[data-loading] .ladda-progress{opacity:1;visibility:visible}
.ladda-button,.ladda-button .ladda-label,.ladda-button .ladda-spinner{-webkit-transition:.3s cubic-bezier(.175,.885,.32,1.275) padding!important;-moz-transition:.3s cubic-bezier(.175,.885,.32,1.275) padding!important;-ms-transition:.3s cubic-bezier(.175,.885,.32,1.275) padding!important;-o-transition:.3s cubic-bezier(.175,.885,.32,1.275) padding!important;transition:.3s cubic-bezier(.175,.885,.32,1.275) padding!important}
.ladda-button[data-style=zoom-in],.ladda-button[data-style=zoom-in] .ladda-label,.ladda-button[data-style=zoom-in] .ladda-spinner,.ladda-button[data-style=zoom-out],.ladda-button[data-style=zoom-out] .ladda-label,.ladda-button[data-style=zoom-out] .ladda-spinner{-webkit-transition:.3s ease padding!important;-moz-transition:.3s ease padding!important;-ms-transition:.3s ease padding!important;-o-transition:.3s ease padding!important;transition:.3s ease padding!important}
.ladda-button[data-style=expand-right] .ladda-spinner{right:14px}
.ladda-button[data-style=expand-right][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-right][data-size=xs] .ladda-spinner{right:4px}
.ladda-button[data-style=expand-right][data-loading]{padding-right:56px!important}
.ladda-button[data-style=expand-right][data-loading] .ladda-spinner{opacity:1}
.ladda-button[data-style=expand-right][data-loading][data-size="s"],.ladda-button[data-style=expand-right][data-loading][data-size=xs]{padding-right:40px}
.ladda-button[data-style=expand-left] .ladda-spinner{left:14px}
.ladda-button[data-style=expand-left][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-left][data-size=xs] .ladda-spinner{left:4px}
.ladda-button[data-style=expand-left][data-loading]{padding-left:56px}
.ladda-button[data-style=expand-left][data-loading] .ladda-spinner{opacity:1}
.ladda-button[data-style=expand-left][data-loading][data-size="s"],.ladda-button[data-style=expand-left][data-loading][data-size=xs]{padding-left:40px}
.ladda-button[data-style=expand-up]{overflow:hidden}
.ladda-button[data-style=expand-up] .ladda-spinner{top:-32px;left:50%;margin-left:-16px}
.ladda-button[data-style=expand-up][data-loading]{padding-top:54px}
.ladda-button[data-style=expand-up][data-loading] .ladda-spinner{opacity:1;top:14px;margin-top:0}
.ladda-button[data-style=expand-up][data-loading][data-size="s"],.ladda-button[data-style=expand-up][data-loading][data-size=xs]{padding-top:32px}
.ladda-button[data-style=expand-up][data-loading][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-up][data-loading][data-size=xs] .ladda-spinner{top:4px}
.ladda-button[data-style=expand-down]{overflow:hidden}
.ladda-button[data-style=expand-down] .ladda-spinner{top:62px;left:50%;margin-left:-16px}
.ladda-button[data-style=expand-down][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-down][data-size=xs] .ladda-spinner{top:40px}
.ladda-button[data-style=expand-down][data-loading]{padding-bottom:54px}
.ladda-button[data-style=expand-down][data-loading] .ladda-spinner{opacity:1}
.ladda-button[data-style=expand-down][data-loading][data-size="s"],.ladda-button[data-style=expand-down][data-loading][data-size=xs]{padding-bottom:32px}
.ladda-button[data-style=slide-left]{overflow:hidden}
.ladda-button[data-style=slide-left] .ladda-label{position:relative}
.ladda-button[data-style=slide-left] .ladda-spinner{left:100%;margin-left:-16px}
.ladda-button[data-style=slide-left][data-loading] .ladda-label{opacity:0;left:-100%}
.ladda-button[data-style=slide-left][data-loading] .ladda-spinner{opacity:1;left:50%}
.ladda-button[data-style=slide-right]{overflow:hidden}
.ladda-button[data-style=slide-right] .ladda-label{position:relative}
.ladda-button[data-style=slide-right] .ladda-spinner{right:100%;margin-left:-16px}
.ladda-button[data-style=slide-right][data-loading] .ladda-label{opacity:0;left:100%}
.ladda-button[data-style=slide-right][data-loading] .ladda-spinner{opacity:1;left:50%}
.ladda-button[data-style=slide-up]{overflow:hidden}
.ladda-button[data-style=slide-up] .ladda-label{position:relative}
.ladda-button[data-style=slide-up] .ladda-spinner{left:50%;margin-left:-16px;margin-top:1em}
.ladda-button[data-style=slide-up][data-loading] .ladda-label{opacity:0;top:-1em}
.ladda-button[data-style=slide-up][data-loading] .ladda-spinner{opacity:1;margin-top:-16px}
.ladda-button[data-style=slide-down]{overflow:hidden}
.ladda-button[data-style=slide-down] .ladda-label{position:relative}
.ladda-button[data-style=slide-down] .ladda-spinner{left:50%;margin-left:-16px;margin-top:-2em}
.ladda-button[data-style=slide-down][data-loading] .ladda-label{opacity:0;top:1em}
.ladda-button[data-style=slide-down][data-loading] .ladda-spinner{opacity:1;margin-top:-16px}
.ladda-button[data-style=zoom-out]{overflow:hidden}
.ladda-button[data-style=zoom-out] .ladda-spinner{left:50%;margin-left:-16px;-webkit-transform:scale(2.5);-moz-transform:scale(2.5);-ms-transform:scale(2.5);-o-transform:scale(2.5);transform:scale(2.5)}
.ladda-button[data-style=zoom-out] .ladda-label{position:relative;display:inline-block}
.ladda-button[data-style=zoom-out][data-loading] .ladda-label{opacity:0;-webkit-transform:scale(.5);-moz-transform:scale(.5);-ms-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5)}
.ladda-button[data-style=zoom-out][data-loading] .ladda-spinner{opacity:1;-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none}
.ladda-button[data-style=zoom-in]{overflow:hidden}
.ladda-button[data-style=zoom-in] .ladda-spinner{left:50%;margin-left:-16px;-webkit-transform:scale(.2);-moz-transform:scale(.2);-ms-transform:scale(.2);-o-transform:scale(.2);transform:scale(.2)}
.ladda-button[data-style=zoom-in] .ladda-label{position:relative;display:inline-block}
.ladda-button[data-style=zoom-in][data-loading] .ladda-label{opacity:0;-webkit-transform:scale(2.2);-moz-transform:scale(2.2);-ms-transform:scale(2.2);-o-transform:scale(2.2);transform:scale(2.2)}
.ladda-button[data-style=zoom-in][data-loading] .ladda-spinner{opacity:1;-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none}
.ladda-button[data-style=contract]{overflow:hidden;width:100px}
.ladda-button[data-style=contract] .ladda-spinner{left:50%;margin-left:-16px}
.ladda-button[data-style=contract][data-loading]{border-radius:50%;width:52px}
.ladda-button[data-style=contract][data-loading] .ladda-label{opacity:0}
.ladda-button[data-style=contract][data-loading] .ladda-spinner{opacity:1}
.ladda-button[data-style=contract-overlay]{overflow:hidden;width:100px;box-shadow:0 0 0 3000px rgba(0,0,0,0)}
.ladda-button[data-style=contract-overlay] .ladda-spinner{left:50%;margin-left:-16px}
.ladda-button[data-style=contract-overlay][data-loading]{border-radius:50%;width:52px;box-shadow:0 0 0 3000px rgba(0,0,0,.8)}
.ladda-button[data-style=contract-overlay][data-loading] .ladda-label{opacity:0}
.ladda-button[data-style=contract-overlay][data-loading] .ladda-spinner{opacity:1}
.colpick{position:absolute;overflow:hidden;display:none;font-family:Arial,Helvetica,sans-serif;border:1px solid #f4f4f4;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:#f0f0f0;width:348px;height:auto;padding:7px;margin-top:7px;box-shadow:0 0 16px rgba(0,0,0,.2);flex-wrap:wrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}
.colpick.visible{display:flex}
.colpick_color{left:7px;top:7px;width:156px;height:156px;overflow:hidden;cursor:crosshair;border:1px solid #f5f5f5;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.colpick_color_overlay1{left:0;top:0;width:156px;height:156px;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#f0f0f0fff', endColorstr='#f0f0f0ff0fffff')";background:-moz-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));background:-webkit-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:-o-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);background:linear-gradient(to right,rgba(255,255,255,1) 0,rgba(255,255,255,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#f0f0f0fff', endColorstr='#f0f0f0ff0fffff')}
.colpick_color_overlay2{left:0;top:0;width:156px;height:156px;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#f0f0f0fff00000', endColorstr='#f0f0f0fff000')";background:-moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,1)));background:-webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%);background:-o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%);background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0fff00000', endColorstr='#f0f0f0fff000', GradientType=0 )}
.colpick_selector_outer{position:absolute;background:0 0;width:10px;height:10px;border:2px solid #f0f0f0;border-radius:50%}
.colpick_selector_inner{position:absolute;width:9px;height:9px;border:1px solid #f0f0f0;border-radius:50%}
.colpick_hue{top:6px;left:175px;width:19px;height:156px;border:1px solid #f5f5f5;cursor:ns-resize;margin:0 16px 0 14px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.colpick_hue_arrs{position:relative;left:-8px;width:35px;height:7px;margin:-7px 0 0}
.colpick_hue_larr{position:absolute;width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:7px solid #858585}
.colpick_hue_rarr{position:absolute;right:0;width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:7px solid #858585}
.colpick_controls{display:flex;flex-direction:column}
.colpick_color_state{display:flex;margin-bottom:13px}
.colpick_new_color{left:207px;top:6px;width:60px;height:27px;background:red;border:1px solid #707070;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.colpick_current_color{left:277px;top:6px;width:60px;height:27px;background:red;margin-left:7px;border:1px solid #707070;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.colpick_color_fields{display:flex;flex-direction:column}
.colpick_hex_submit,.colpick_rgb_hsb{display:flex}
.colpick_field,.colpick_hex_field{position:static;margin-bottom:12px;top:0;left:0;height:20px;width:60px;overflow:hidden;background:#0c0c0c;color:#474747;font-size:12px;border:1px solid #424242;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.colpick_hex_field,.colpick_rgb{margin-right:7px;width:60px}
.colpick_rgb_r{top:40px;left:207px}
.colpick_rgb_g{top:67px;left:207px}
.colpick_rgb_b{top:94px;left:207px}
.colpick_hsb_h{top:40px;left:277px}
.colpick_hsb_s{top:67px;left:277px}
.colpick_hsb_b{top:94px;left:277px}
.colpick_hex_field{width:60px;left:207px;top:121px}
.colpick_focus{border-color:#f6f6f6}
.colpick_field_letter{width:14px;height:20px;background:#efefef;border-right:1px solid #424242;font-weight:700;color:#f8f8f8;padding-left:0;line-height:19px;text-align:center}
.colpick_field input,.colpick_hex_field input{position:relative;right:11px;top:-23px;margin:0 1px 0 0;padding:0;height:20px;line-height:20px;background:0 0;border:none;font-size:12px;font-family:Arial,Helvetica,sans-serif;color:#fafafa;text-align:right;outline:0}
.colpick_hex_field input{right:1px}
.colpick_field_arrs{height:20px;cursor:ns-resize}
.colpick_field_uarr{position:relative;top:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid #6a6a6a}
.colpick_field_darr{position:relative;top:0;bottom:-6px;right:0;width:9px;height:21px;cursor:n-resize;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #6a6a6a}
.colpick_submit{height:20px;width:60px;line-height:20px;left:207px;top:149px;background:#efefef;text-align:center;color:#fafafa;font-size:12px;font-weight:700;border:1px solid #424242;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.colpick_submit:hover{background:#0c0c0c;border-color:#f6f6f6;cursor:pointer}
.colpick_swatches{display:flex;flex-wrap:wrap;justify-content:space-between;width:calc(100% + 4px);margin:3px -4px 0 0}
.colpick_swatch{width:24px;height:24px;background-color:red;margin-top:4px;margin-right:4px;border-radius:3px;cursor:pointer}
.colpick_full .colpick_hex_field,.colpick_full .colpick_submit{margin-bottom:0}
.colpick_full_ns .colpick_current_color,.colpick_full_ns .colpick_submit{display:none}
.colpick_full_ns .colpick_new_color{height:25px}
.colpick_full_ns .colpick_hsb_h,.colpick_full_ns .colpick_rgb_r{top:42px}
.colpick_full_ns .colpick_hsb_s,.colpick_full_ns .colpick_rgb_g{top:73px}
.colpick_full_ns .colpick_hsb_b,.colpick_full_ns .colpick_rgb_b{top:104px}
.colpick_full_ns .colpick_hex_field{top:135px;width:100%;margin-right:0}
.colpick_full_ns .colpick_hex_field input,.colpick_full_ns .colpick_new_color{width:100%}
.colpick_rgbhex{width:296px}
.colpick_rgbhex .colpick_hsb_b,.colpick_rgbhex .colpick_hsb_h,.colpick_rgbhex .colpick_hsb_s{display:none}
.colpick_rgbhex .colpick_new_color{width:34px;border-right:none}
.colpick_rgbhex .colpick_current_color{width:34px;left:240px;border-left:none}
.colpick_rgbhex .colpick_rgb{margin-right:0}
.colpick_rgbhex .colpick_hex_submit{flex-direction:column}
.colpick_rgbhex .colpick_field,.colpick_rgbhex .colpick_hex_field{position:static;margin-bottom:6px}
.colpick_rgbhex .colpick_field,.colpick_rgbhex .colpick_hex_field,.colpick_rgbhex .colpick_submit{width:75px;margin-right:0}
.colpick_rgbhex .colpick_color_state{margin-bottom:5px}
.colpick_rgbhex_ns .colpick_current_color,.colpick_rgbhex_ns .colpick_submit{display:none}
.colpick_rgbhex_ns .colpick_rgb_r{top:42px}
.colpick_rgbhex_ns .colpick_rgb_g{top:73px}
.colpick_rgbhex_ns .colpick_rgb_b{top:104px}
.colpick_rgbhex_ns .colpick_new_color{width:100%;border:1px solid #707070}
.colpick_rgbhex_ns .colpick_hex_field{top:135px;margin-bottom:0}
.colpick_rgbhex_ns .colpick_color_state{margin-bottom:13px}
.colpick_rgbhex_ns .colpick_field{margin-bottom:12px}
.colpick_hex{width:214px}
.colpick_hex .colpick_hsb_b,.colpick_hex .colpick_hsb_h,.colpick_hex .colpick_hsb_s,.colpick_hex .colpick_rgb_b,.colpick_hex .colpick_rgb_g,.colpick_hex .colpick_rgb_r{display:none}
.colpick_hex .colpick_hex_field{position:static;top:168px;left:80px;width:81px;height:27px;margin:0 7px}
.colpick_hex .colpick_hex_field div{height:25px;line-height:25px}
.colpick_hex .colpick_hex_field input{height:28px;line-height:26px;top:-26px;right:-29px;width:49px}
.colpick_hex .colpick_new_color{left:9px;top:168px;width:30px;border-right:none}
.colpick_hex .colpick_current_color{left:39px;top:168px;width:30px;border-left:none}
.colpick_hex .colpick_submit{left:164px;top:168px;width:36px;height:27px;line-height:28px}
.colpick_hex .colpick_controls{flex-direction:row;margin-bottom:0;margin-top:7px}
.colpick_hex .colpick_color_state{margin-bottom:0}
.colpick_hex .colpick_hue{margin-right:7px}
.colpick_hex_ns .colpick_current_color,.colpick_hex_ns .colpick_submit{display:none}
.colpick_hex_ns .colpick_new_color{width:81px;border:1px solid #707070}
.colpick_hex_ns .colpick_hex_field{width:110px}
.colpick_hex_ns .colpick_hex_field input{width:107px;right:0}
.colpick_dark{background:#e9e9e9;border-color:#d5d5d5}
.colpick_dark .colpick_color{outline-color:#fcfcfc}
.colpick_dark .colpick_hue{border-color:#fafafa}
.colpick_dark .colpick_field,.colpick_dark .colpick_hex_field{background:#efefef;border-color:#d2d2d2}
.colpick_dark .colpick_field_letter{background:#ececec;border-color:#d2d2d2;color:#969696}
.colpick_dark .colpick_field input,.colpick_dark .colpick_hex_field input{color:#858585}
.colpick_dark .colpick_field_uarr{border-bottom-color:#969696}
.colpick_dark .colpick_field_darr{border-top-color:#969696}
.colpick_dark .colpick_focus{border-color:#fbfbfb}
.colpick_dark .colpick_submit{background:#ececec;border-color:#d2d2d2;color:#858585}
.colpick_dark .colpick_submit:hover{background-color:#efefef;border-color:#fbfbfb}
@font-face{font-family:appleLogo;src:local("Lucida Grande");unicode-range:U+F8FF}
@font-face{font-family:Slack;src:url(/42cfe/fonts/slack-icons-Regular.woff2) format('woff2'),url(/42cfe/fonts/slack-icons-Regular.woff) format('woff');font-style:normal;font-weight:400}
.ts_icon:before,ts-icon:before{font-family:Slack;font-size:20px;font-style:normal;font-weight:400;display:inline-block}
.ts_icon.ts_icon_inherit:before,ts-icon.ts_icon_inherit:before{font-size:inherit}
.ts_icon.ts_icon_align_bottom:before,ts-icon.ts_icon_align_bottom:before{vertical-align:bottom}
h1 .ts_icon:not(.ts_icon_base_size):before,h1 ts-icon:not(.ts_icon_base_size):before,h2 .ts_icon:not(.ts_icon_base_size):before,h2 ts-icon:not(.ts_icon_base_size):before,h3 .ts_icon:not(.ts_icon_base_size):before,h3 ts-icon:not(.ts_icon_base_size):before{font-size:inherit}
.ts_icon_spin{-webkit-animation:1s linear 0s infinite normal none spin;-moz-animation:1s linear 0s infinite normal none spin;-o-animation:1s linear 0s infinite normal none spin;animation:1s linear 0s infinite normal none spin}
.ts_icon_spin.ts_icon_spinner,svg.ts_icon_spinner{display:inline-block;width:16px;height:16px;margin:0 .125em;-webkit-animation:1s linear 0s infinite normal none spin;-moz-animation:1s linear 0s infinite normal none spin;-o-animation:1s linear 0s infinite normal none spin;animation:1s linear 0s infinite normal none spin}
@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}
100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}
@-moz-keyframes spin{0%{-moz-transform:rotate(0);transform:rotate(0)}
100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}
}
@-ms-keyframes spin{0%{-ms-transform:rotate(0);transform:rotate(0)}
100%{-ms-transform:rotate(360deg);transform:rotate(360deg)}
}
@keyframes spin{0%{transform:rotate(0)}
100%{transform:rotate(360deg)}
}
.ts_icon_spin.ts_icon_spinner:before,svg.ts_icon_spinner:before{display:none}
.ts_icon_spin.ts_icon_spinner.ts_icon_inherit,svg.ts_icon_spinner.ts_icon_inherit{width:.75em;height:.75em}
.ts_icon_spin.ts_icon_spinner:empty,svg.ts_icon_spinner:empty{background:url(/b2b1/img/starburst.svg);background-size:100% auto}
.ts_icon_spin.ts_icon_spinner,.ts_icon_spin.ts_icon_spinner svg,.ts_icon_spin.ts_icon_spinner svg *,svg.ts_icon_spinner,svg.ts_icon_spinner svg,svg.ts_icon_spinner svg *{fill:currentColor;color:inherit;vertical-align:baseline}
.ts_icon_spin.ts_icon_spinner svg,svg.ts_icon_spinner svg{width:100%;height:100%}
.ts_icon_star_o:before{content:'\E001'}
.ts_icon_unstar_o:before{content:'\E002'}
.ts_icon_user:before{content:'\E003'}
.ts_icon_comment_alt:before{content:'\E004'}
.ts_icon_comment_o:before{content:'\E005'}
.ts_icon_home:before{content:'\E006'}
.ts_icon_info:before{content:'\E007'}
.ts_icon_channel_info:before,.ts_icon_info_circle:before{content:'\E008'}
.ts_icon_mentions:before{content:'\E009'}
.ts_icon_search:before{content:'\E010'}
.ts_icon_bolt:before{content:'\E011'}
.ts_icon_mobile:before{content:'\E012'}
.ts_icon_tablet:before{content:'\E013'}
.ts_icon_laptop:before{content:'\E014'}
.ts_icon_bell_o:before{content:'\E015'}
.ts_icon_bell_slash:before{content:'\E016'}
.ts_icon_team_directory:before{content:'\E017'}
.ts_icon_cloud_upload:before{content:'\E018'}
.ts_icon_cloud_download:before{content:'\E019'}
.ts_icon_cog_o:before{content:'\E020'}
.ts_icon_cogs:before{content:'\E021'}
.ts_icon_key:before{content:'\E022'}
.ts_icon_calendar:before{content:'\E023'}
.ts_icon_pencil:before{content:'\E024'}
.ts_icon_lightbulb_o:before{content:'\E025'}
.ts_icon_magic:before{content:'\E026'}
.ts_icon_external_link:before{content:'\E027'}
.ts_icon_external_link_square:before{content:'\E028'}
.ts_icon_lock_o:before{content:'\E029'}
.ts_icon_unlock:before{content:'\E030'}
.ts_icon_folder:before{content:'\E031'}
.ts_icon_folder_open:before{content:'\E032'}
.ts_icon_archive:before{content:'\E033'}
.ts_icon_inbox:before{content:'\E034'}
.ts_icon_sitemap:before{content:'\E035'}
.ts_icon_book:before{content:'\E036'}
.ts_icon_envelope_o:before{content:'\E037'}
.ts_icon_image:before{content:'\E038'}
.ts_icon_building:before{content:'\E039'}
.ts_icon_plug:before{content:'\E040'}
.ts_icon_paper_plane:before{content:'\E041'}
.ts_icon_credit_card:before{content:'\E042'}
.ts_icon_life_ring:before{content:'\E043'}
.ts_icon_thumb_tack:before{content:'\E044'}
.ts_icon_thumb_tack_filled:before{content:'\E547'}
.ts_icon_trash:before{content:'\E045'}
.ts_icon_print:before{content:'\E046'}
.ts_icon_quote_o:before{content:'\E047'}
.ts_icon_th_large:before{content:'\E048'}
.ts_icon_eye:before{content:'\E049'}
.ts_icon_eye_closed:before{content:'\E050'}
.ts_icon_volume_off:before{content:'\E051'}
.ts_icon_volume_down:before{content:'\E052'}
.ts_icon_volume_medium:before{content:'\E053'}
.ts_icon_volume_up:before{content:'\E054'}
.ts_icon_volume_off_alt:before{content:'\E055'}
.ts_icon_heart_o:before{content:'\E056'}
.ts_icon_wrench:before{content:'\E057'}
.ts_icon_file:before{content:'\E058'}
.ts_icon_all_files:before{content:'\E059'}
.ts_icon_your_files:before{content:'\E060'}
.ts_icon_align_left:before{content:'\E061'}
.ts_icon_align_center:before{content:'\E062'}
.ts_icon_align_right:before{content:'\E063'}
.ts_icon_align_justify:before{content:'\E064'}
.ts_icon_paragraph:before{content:'\E065'}
.ts_icon_code:before{content:'\E066'}
.ts_icon_ellipsis:before{content:'\E067'}
.ts_icon_ellipsis_baseline:before{content:'\E068'}
.ts_icon_spinner:before{content:'\E069'}
.ts_icon_spiral:before{content:'\E070'}
.ts_icon_random:before{content:'\E071'}
.ts_icon_repeat:before{content:'\E072'}
.ts_icon_share_square_o:before{content:'\E073'}
.ts_icon_link:before{content:'\E074'}
.ts_icon_undo:before{content:'\E075'}
.ts_icon_history:before{content:'\E076'}
.ts_icon_hourglass_empty:before{content:'\E077'}
.ts_icon_hourglass:before{content:'\E078'}
.ts_icon_clock_o:before{content:'\E079'}
.ts_icon_dashboard:before{content:'\E080'}
.ts_icon_power_off:before{content:'\E081'}
.ts_icon_sign_in:before{content:'\E082'}
.ts_icon_sign_out:before{content:'\E083'}
.ts_icon_jump:before{content:'\E084'}
.ts_icon_globe:before{content:'\E085'}
.ts_icon_filter:before{content:'\E086'}
.ts_icon_microphone:before{content:'\E087'}
.ts_icon_microphone_slash:before{content:'\E088'}
.ts_icon_paperclip:before{content:'\E089'}
.ts_icon_video_camera:before{content:'\E090'}
.ts_icon_stop_video:before{content:'\E091'}
.ts_icon_phone:before{content:'\E092'}
.ts_icon_end_call:before{content:'\E093'}
.ts_icon_smile_o:before{content:'\E094'}
.ts_icon_share_screen:before{content:'\E095'}
.ts_icon_stop_screen_sharing:before{content:'\E096'}
.ts_icon_stop_screen_sharing_alt:before{content:'\E097'}
.ts_icon_feedback:before{content:'\E098'}
.ts_icon_paper_plane_alt:before{content:'\E099'}
.ts_icon_cloud_offline:before{content:'\E0A0'}
.ts_icon_cloud_offline_small:before{content:'\E0A1'}
.ts_icon_share:before{content:'\E100'}
.ts_icon_save:before{content:'\E101'}
.ts_icon_message_notification:before{content:'\E102'}
.ts_icon_list:before{content:'\E103'}
.ts_icon_channel:before{content:'\E104'}
.ts_icon_share_other_alt:before{content:'\E105'}
.ts_icon_broadcast:before{content:'\E106'}
.ts_icon_all_files_alt:before{content:'\E107'}
.ts_icon_search_files:before{content:'\E108'}
.ts_icon_add_user:before{content:'\E109'}
.ts_icon_switch_team:before{content:'\E110'}
.ts_icon_create_snippet:before{content:'\E111'}
.ts_icon_create_post:before{content:'\E112'}
.ts_icon_upload:before{content:'\E113'}
.ts_icon_download:before{content:'\E114'}
.ts_icon_share_email:before{content:'\E115'}
.ts_icon_import_email:before{content:'\E116'}
.ts_icon_ellipsis_o:before{content:'\E117'}
.ts_icon_add_reaction:before{content:'\E118'}
.ts_icon_happy_smile:before{content:'\E119'}
.ts_icon_mark_unread:before{content:'\E120'}
.ts_icon_camera:before{content:'\E121'}
.ts_icon_phone_flat:before{content:'\E122'}
.ts_icon_sparkles:before{content:'\E123'}
.ts_icon_location_pin:before{content:'\E124'}
.ts_icon_channel_pane_hash:before{content:'\E125'}
.ts_icon_emoji_nature:before{content:'\E126'}
.ts_icon_emoji_food:before{content:'\E127'}
.ts_icon_emoji_celebration:before{content:'\E128'}
.ts_icon_emoji_activities:before{content:'\E129'}
.ts_icon_emoji_travel:before{content:'\E130'}
.ts_icon_emoji_objects:before{content:'\E131'}
.ts_icon_file_gdrive:before{content:'\E133'}
.ts_icon_play:before{content:'\E134'}
.ts_icon_stream:before{content:'\E135'}
.ts_icon_field_text:before{content:'\E136'}
.ts_icon_poo:before{content:'\E137'}
.ts_icon_channel_list:before{content:'\E138'}
.ts_icon_share_android:before{content:'\E139'}
.ts_icon_highlight:before{content:'\E140'}
.ts_icon_flag:before{content:'\E141'}
.ts_icon_grabby_patty:before{content:'\E142'}
.ts_icon_backspace:before{content:'\E143'}
.ts_icon_android_keyboard:before{content:'\E144'}
.ts_icon_side_panel:before{content:'\E145'}
.ts_icon_search_small:before{content:'\E146'}
.ts_icon_reload_small:before{content:'\E147'}
.ts_icon_vertical_ellipsis:before{content:'\E148'}
.ts_icon_disable:before{content:'\E149'}
.ts_icon_bold_hash_small:before{content:'\E150'}
.ts_icon_cart:before{content:'\E151'}
.ts_icon_snooze_outline:before{content:'\E152'}
.ts_icon_new_window:before{content:'\E153'}
.ts_icon_h1:before{content:'\E154'}
.ts_icon_h2:before{content:'\E155'}
.ts_icon_h3:before{content:'\E156'}
.ts_icon_bullet_list:before{content:'\E157'}
.ts_icon_numbered_list:before{content:'\E158'}
.ts_icon_text_format_menu:before{content:'\E159'}
.ts_icon_bold:before{content:'\E160'}
.ts_icon_italic:before{content:'\E161'}
.ts_icon_underline:before{content:'\E162'}
.ts_icon_strikethrough:before{content:'\E163'}
.ts_icon_tag:before{content:'\E164'}
.ts_icon_org_shared_channel:before{content:'\E165'}
.ts_icon_shared_channel:before{content:'\E166'}
.ts_icon_external_channel:before{content:'\E167'}
.ts_icon_small_reaction:before{content:'\E170'}
.ts_icon_small_reply:before{content:'\E171'}
.ts_icon_small_ellipsis:before{content:'\E172'}
.ts_icon_small_star:before{content:'\E173'}
.ts_icon_small_quote:before{content:'\E174'}
.ts_icon_keyboard:before{content:'\E175'}
.ts_icon_share_action:before{content:'\E176'}
.ts_icon_handset:before{content:'\E177'}
.ts_icon_bluetooth_sound:before{content:'\E178'}
.ts_icon_bluetooth:before{content:'\E179'}
.ts_icon_bot:before{content:'\E180'}
.ts_icon_globe_plus:before{content:'\E181'}
.ts_icon_user_groups:before{content:'\E182'}
.ts_icon_frowning_face:before{content:'\E183'}
.ts_icon_mobile_notification:before{content:'\E184'}
.ts_icon_desktop_notification:before{content:'\E185'}
.ts_icon_collab_screenshare_on:before{content:'\E186'}
.ts_icon_collab_screenshare_off:before{content:'\E187'}
.ts_icon_thumbs_up:before{content:'\E188'}
.ts_icon_thumbs_down:before{content:'\E189'}
.ts_icon_expand:before{content:'\E200'}
.ts_icon_reduce:before{content:'\E201'}
.ts_icon_arrows_alt:before{content:'\E202'}
.ts_icon_reduce_alt:before{content:'\E203'}
.ts_icon_check_square_o:before{content:'\E204'}
.ts_icon_check_circle_o:before{content:'\E205'}
.ts_icon_check_circle_o_large:before{content:'\E206'}
.ts_icon_question:before{content:'\E207'}
.ts_icon_exclamation:before{content:'\E208'}
.ts_icon_warning:before{content:'\E209'}
.ts_icon_exclamation_circle:before{content:'\E210'}
.ts_icon_question_circle:before{content:'\E211'}
.ts_icon_plus_circle:before{content:'\E212'}
.ts_icon_minus_circle:before{content:'\E213'}
.ts_icon_times_circle:before{content:'\E214'}
.ts_icon_square_warning:before{content:'\E230'}
.ts_icon_square_question:before{content:'\E231'}
.ts_icon_plus_square_o:before{content:'\E232'}
.ts_icon_minus_square_o:before{content:'\E233'}
.ts_icon_square_times:before{content:'\E234'}
.ts_icon_times:before{content:'\E278'}
.ts_icon_plus:before{content:'\E279'}
.ts_icon_minus:before{content:'\E280'}
.ts_icon_plus_small:before{content:'\E281'}
.ts_icon_minus_small:before{content:'\E282'}
.ts_icon_exclamation_small:before{content:'\E283'}
.ts_icon_question_small:before{content:'\E284'}
.ts_icon_check_small:before{content:'\E285'}
.ts_icon_times_small:before{content:'\E294'}
.ts_icon_sync:before{content:'\E295'}
.ts_icon_replies:before{content:'\E296'}
.ts_icon_check_small_bold:before{content:'\E301'}
.ts_icon_enter:before{content:'\E302'}
.ts_icon_expand_vertical:before{content:'\E303'}
.ts_icon_collapse_vertical:before{content:'\E304'}
.ts_icon_android_upload:before{content:'\E305'}
.ts_icon_plus_thick:before{content:'\E306'}
.ts_icon_check_large_bold:before{content:'\E319'}
.ts_icon_check_large:before{content:'\E320'}
.ts_icon_calls:before{content:'\E478'}
.ts_icon_calls_small:before{content:'\E479'}
.ts_icon_calls_ended:before{content:'\E480'}
.ts_icon_calls_ended_small:before{content:'\E481'}
.ts_icon_star:before{content:'\E500'}
.ts_icon_unstar:before{content:'\E501'}
.ts_icon_bell:before{content:'\E502'}
.ts_icon_lock:before{content:'\E503'}
.ts_icon_external_link_small:before{content:'\E504'}
.ts_icon_external_link_large:before{content:'\E505'}
.ts_icon_presence_online:before{content:'\E506'}
.ts_icon_presence_offline:before{content:'\E507'}
.ts_icon_presence_dnd:before{content:'\E508'}
.ts_icon_presence_external_online:before,.ts_icon_presence_ra_online:before,.ts_icon_restricted_user:before{content:'\E509'}
.ts_icon_presence_external_offline:before,.ts_icon_presence_ra_offline:before{content:'\E510'}
.ts_icon_presence_external_dnd:before,.ts_icon_presence_ra_dnd:before{content:'\E511'}
.ts_icon_presence_ura_online:before,.ts_icon_single_channel_guest:before{content:'\E512'}
.ts_icon_presence_ura_offline:before{content:'\E513'}
.ts_icon_presence_ura_dnd:before{content:'\E514'}
.ts_icon_heart:before{content:'\E515'}
.ts_icon_quote:before{content:'\E516'}
.ts_icon_cog:before{content:'\E517'}
.ts_icon_comment:before{content:'\E518'}
.ts_icon_minus_circle_small:before{content:'\E519'}
.ts_icon_times_circle_small:before{content:'\E520'}
.ts_icon_multiparty_dm_2:before{content:'\E521'}
.ts_icon_multiparty_dm_3:before{content:'\E522'}
.ts_icon_multiparty_dm_4:before{content:'\E523'}
.ts_icon_multiparty_dm_5:before{content:'\E524'}
.ts_icon_multiparty_dm_6:before{content:'\E525'}
.ts_icon_multiparty_dm_7:before{content:'\E526'}
.ts_icon_multiparty_dm_8:before{content:'\E527'}
.ts_icon_multiparty_dm_9:before{content:'\E528'}
.ts_icon_poo_filled:before{content:'\E529'}
.ts_icon_circle_fill:before{content:'\E530'}
.ts_icon_flag_filled:before{content:'\E531'}
.ts_icon_refresh_small:before{content:'\E532'}
.ts_icon_snooze_filled:before{content:'\E533'}
.ts_icon_archived_channel:before{content:'\E534'}
.ts_icon_presence_dnd_offline:before{content:'\E535'}
.ts_icon_presence_external_dnd_offline:before,.ts_icon_presence_ra_dnd_offline:before{content:'\E536'}
.ts_icon_presence_ura_dnd_offline:before{content:'\E537'}
.ts_icon_presence_mobile_dnd:before{content:'\E538'}
.ts_icon_play_filled:before{content:'\E539'}
.ts_icon_broadcast_filled:before{content:'\E540'}
.ts_icon_small_star_filled:before{content:'\E541'}
.ts_icon_small_comment_filled:before{content:'\E542'}
.ts_icon_paperplane_filled:before{content:'\E543'}
.ts_icon_filebg_large_filled:before{content:'\E544'}
.ts_icon_filebg_small_filled:before{content:'\E545'}
.ts_icon_highlight_filled:before{content:'\E546'}
.ts_icon_pin_filled:before{content:'\E547'}
.ts_icon_close_filled:before{content:'\E548'}
.ts_icon_share_filled:before{content:'\E549'}
.ts_icon_pencil_filled:before{content:'\E550'}
.ts_icon_side_panel_filled:before{content:'\E551'}
.ts_icon_add_reaction_filled:before{content:'\E552'}
.ts_icon_mentions_filled:before{content:'\E553'}
.ts_icon_small_reply_filled:before{content:'\E554'}
.ts_icon_user_filled:before{content:'\E555'}
.ts_icon_microphone_on:before{content:'\E556'}
.ts_icon_camera_on:before{content:'\E557'}
.ts_icon_screenshare_on:before{content:'\E558'}
.ts_icon_shared_channels:before{content:'\E559'}
.ts_icon_heart_large_filled:before{content:'\E560'}
.ts_icon_thumbs_up_filled:before{content:'\E561'}
.ts_icon_thumbs_down_filled:before{content:'\E562'}
.ts_icon_slow_network:before{content:'\E563'}
.ts_icon_sparkles_filled:before{content:'\E564'}
.ts_icon_small_warning_filled:before{content:'\E565'}
.ts_icon_deactivated_user:before{content:'\E566'}
.ts_icon_shared_channels_baseline:before{content:'\E568'}
.ts_icon_shared_channels_pending:before{content:'\E569'}
.ts_icon_shared_channels_baseline_pending:before{content:'\E570'}
.ts_icon_cloud_offline_filled:before{content:'\E571'}
.ts_icon_cloud_offline_small_filled:before{content:'\E572'}
.ts_icon_arrow_right:before{content:'\E286'}
.ts_icon_arrow_left:before{content:'\E287'}
.ts_icon_arrow_up:before{content:'\E288'}
.ts_icon_arrow_down:before{content:'\E289'}
.ts_icon_arrow_right_medium:before{content:'\E290'}
.ts_icon_arrow_left_medium:before{content:'\E291'}
.ts_icon_arrow_up_medium:before{content:'\E292'}
.ts_icon_arrow_down_medium:before{content:'\E293'}
.ts_icon_angle_arrow_down_right_alt:before{content:'\E297'}
.ts_icon_angle_arrow_up_right_alt:before{content:'\E298'}
.ts_icon_angle_arrow_up_left_alt:before{content:'\E299'}
.ts_icon_angle_arrow_down_left_alt:before{content:'\E300'}
.ts_icon_arrow_circle_o_up:before{content:'\E215'}
.ts_icon_arrow_circle_o_down:before{content:'\E216'}
.ts_icon_arrow_circle_o_right:before{content:'\E217'}
.ts_icon_arrow_circle_o_left:before{content:'\E218'}
.ts_icon_chevron_circle_left:before{content:'\E219'}
.ts_icon_chevron_circle_right:before{content:'\E220'}
.ts_icon_chevron_circle_down:before{content:'\E221'}
.ts_icon_chevron_circle_up:before{content:'\E222'}
.ts_icon_plus_circle_small:before{content:'\E223'}
.ts_icon_circle_small:before{content:'\E224'}
.ts_icon_circle_large:before{content:'\E225'}
.ts_icon_plus_circle_medium:before{content:'\E228'}
.ts_icon_times_circle_medium:before{content:'\E229'}
.ts_icon_square_arrow_up:before{content:'\E235'}
.ts_icon_square_arrow_down:before{content:'\E236'}
.ts_icon_square_arrow_right:before{content:'\E237'}
.ts_icon_square_arrow_left:before{content:'\E238'}
.ts_icon_square_chevron_left:before{content:'\E239'}
.ts_icon_square_chevron_right:before{content:'\E240'}
.ts_icon_square_chevron_down:before{content:'\E241'}
.ts_icon_square_chevron_up:before{content:'\E242'}
.ts_icon_chevron_right:before{content:'\E250'}
.ts_icon_chevron_left:before{content:'\E251'}
.ts_icon_chevron_down:before{content:'\E252'}
.ts_icon_chevron_up:before{content:'\E253'}
.ts_icon_chevron_medium_right:before{content:'\E254'}
.ts_icon_chevron_medium_left:before{content:'\E255'}
.ts_icon_chevron_medium_down:before{content:'\E256'}
.ts_icon_chevron_medium_up:before{content:'\E257'}
.ts_icon_chevron_large_right:before{content:'\E258'}
.ts_icon_chevron_large_left:before{content:'\E259'}
.ts_icon_chevron_large_up:before{content:'\E260'}
.ts_icon_chevron_large_down:before{content:'\E261'}
.ts_icon_arrow_large_right:before{content:'\E262'}
.ts_icon_arrow_large_left:before{content:'\E263'}
.ts_icon_arrow_large_up:before{content:'\E264'}
.ts_icon_arrow_large_down:before{content:'\E265'}
.ts_icon_caret_outline_left:before{content:'\E266'}
.ts_icon_caret_outline_right:before{content:'\E267'}
.ts_icon_caret_outline_up:before{content:'\E268'}
.ts_icon_caret_outline_down:before{content:'\E269'}
.ts_icon_caret_up:before{content:'\E270'}
.ts_icon_caret_down:before{content:'\E271'}
.ts_icon_caret_right:before{content:'\E272'}
.ts_icon_caret_left:before{content:'\E273'}
.ts_icon_angle_arrow_down_left:before{content:'\E274'}
.ts_icon_angle_arrow_down_right:before{content:'\E275'}
.ts_icon_angle_arrow_up_right:before{content:'\E276'}
.ts_icon_angle_arrow_up_left:before{content:'\E277'}
.ts_icon_arrow_ne_large:before{content:'\E307'}
.ts_icon_arrow_nw_large:before{content:'\E308'}
.ts_icon_arrow_sw_large:before{content:'\E309'}
.ts_icon_arrow_se_large:before{content:'\E310'}
.ts_icon_arrow_ne_medium:before{content:'\E311'}
.ts_icon_arrow_nw_medium:before{content:'\E312'}
.ts_icon_arrow_sw_medium:before{content:'\E313'}
.ts_icon_arrow_se_medium:before{content:'\E314'}
.ts_icon_arrow_ne_small:before{content:'\E315'}
.ts_icon_arrow_nw_small:before{content:'\E316'}
.ts_icon_arrow_sw_small:before{content:'\E317'}
.ts_icon_arrow_se_small:before{content:'\E318'}
.ts_icon_slack:before{content:'\E800'}
.ts_icon_slack_pillow:before{content:'\E801'}
.ts_icon_apple:before{content:'\E802'}
.ts_icon_android:before{content:'\E803'}
.ts_icon_twitter:before{content:'\E804'}
.ts_icon_github:before{content:'\E805'}
.ts_icon_dropbox:before{content:'\E806'}
.ts_icon_google:before{content:'\E807'}
.ts_icon_windows:before{content:'\E808'}
.ts_icon_youtube:before{content:'\E809'}
.ts_icon_google_drive:before{content:'\E810'}
.ts_icon_skype:before{content:'\E811'}
.ts_icon_rss:before{content:'\E812'}
.ts_icon_facebook:before{content:'\E813'}
.ts_icon_asana:before{content:'\E814'}
.ts_icon_linkedin:before{content:'\E815'}
.ts_icon_tumblr:before{content:'\E816'}
.ts_icon_instagram:before{content:'\E817'}
.ts_icon_google_plus:before{content:'\E818'}
.ts_icon_soundcloud:before{content:'\E819'}
.ts_icon_flickr:before{content:'\E820'}
.ts_icon_pinterest:before{content:'\E821'}
.ts_icon_tripit:before{content:'\E822'}
.ts_icon_hangouts:before{content:'\E823'}
.ts_icon_viber:before{content:'\E824'}
.ts_icon_line:before{content:'\E825'}
.ts_icon_facebook_messenger:before{content:'\E826'}
.ts_icon_1password:before{content:'\E827'}
.ts_icon_box:before{content:'\E828'}
.ts_icon_box_square:before{content:'\E829'}
.ts_icon_google_play:before{content:'\E830'}
.ts_icon_spotify:before{content:'\E831'}
.ts_icon_siriusxm:before{content:'\E832'}
.ts_icon_stitcher:before{content:'\E833'}
.ts_icon_pocket_casts:before{content:'\E834'}
.ts_icon_onedrive:before{content:'\E835'}
.ts_icon_file_generic:before{content:'\E400';font-size:50px}
.ts_icon_file_generic_small:before{content:'\E401';font-size:40px}
.filetype_icon.space.s30:before,.filetype_icon.space.s48:before,.ts_icon_file_spaces:before{content:'\E402';font-size:50px;color:#d1599b}
.filetype_icon.space.s24:before,.ts_icon_file_spaces_small:before{content:'\E403';font-size:40px;color:#d1599b}
.filetype_icon.bmp.s30:before,.filetype_icon.bmp.s48:before,.filetype_icon.eps.s30:before,.filetype_icon.eps.s48:before,.filetype_icon.gif.s30:before,.filetype_icon.gif.s48:before,.filetype_icon.image.s30:before,.filetype_icon.image.s48:before,.filetype_icon.jpeg.s30:before,.filetype_icon.jpeg.s48:before,.filetype_icon.jpg.s30:before,.filetype_icon.jpg.s48:before,.filetype_icon.pages.s30:before,.filetype_icon.pages.s48:before,.filetype_icon.png.s30:before,.filetype_icon.png.s48:before,.filetype_icon.svg.s30:before,.filetype_icon.svg.s48:before,.filetype_icon.tiff.s30:before,.filetype_icon.tiff.s48:before,.ts_icon_file_image:before{content:'\E404';font-size:50px;color:#d2611f}
.filetype_icon.bmp.s24:before,.filetype_icon.eps.s24:before,.filetype_icon.gif.s24:before,.filetype_icon.image.s24:before,.filetype_icon.jpeg.s24:before,.filetype_icon.jpg.s24:before,.filetype_icon.pages.s24:before,.filetype_icon.png.s24:before,.filetype_icon.svg.s24:before,.filetype_icon.tiff.s24:before,.ts_icon_file_image_small:before{content:'\E405';font-size:40px;color:#d2611f}
.filetype_icon.pdf.s30:before,.filetype_icon.pdf.s48:before,.ts_icon_file_pdf:before{content:'\E406';font-size:50px;color:#28d4c0}
.filetype_icon.pdf.s24:before,.ts_icon_file_pdf_small:before{content:'\E407';font-size:40px;color:#28d4c0}
.filetype_icon.audio.s30:before,.filetype_icon.audio.s48:before,.filetype_icon.m4a.s30:before,.filetype_icon.m4a.s48:before,.filetype_icon.mp3.s30:before,.filetype_icon.mp3.s48:before,.filetype_icon.ogg.s30:before,.filetype_icon.ogg.s48:before,.filetype_icon.wav.s30:before,.filetype_icon.wav.s48:before,.ts_icon_file_audio:before{content:'\E408';font-size:50px;color:#d2611f}
.filetype_icon.audio.s24:before,.filetype_icon.m4a.s24:before,.filetype_icon.mp3.s24:before,.filetype_icon.ogg.s24:before,.filetype_icon.wav.s24:before,.ts_icon_file_audio_small:before{content:'\E409';font-size:40px;color:#d2611f}
.filetype_icon.avi.s30:before,.filetype_icon.avi.s48:before,.filetype_icon.flv.s30:before,.filetype_icon.flv.s48:before,.filetype_icon.mov.s30:before,.filetype_icon.mov.s48:before,.filetype_icon.mp4.s30:before,.filetype_icon.mp4.s48:before,.filetype_icon.video.s30:before,.filetype_icon.video.s48:before,.ts_icon_file_video:before{content:'\E410';font-size:50px;color:#d2611f}
.filetype_icon.avi.s24:before,.filetype_icon.flv.s24:before,.filetype_icon.mov.s24:before,.filetype_icon.mp4.s24:before,.filetype_icon.video.s24:before,.ts_icon_file_video_small:before{content:'\E411';font-size:40px;color:#d2611f}
.filetype_icon.key.s30:before,.filetype_icon.key.s48:before,.filetype_icon.keynote.s30:before,.filetype_icon.keynote.s48:before,.filetype_icon.presentation.s30:before,.filetype_icon.presentation.s48:before,.ts_icon_file_presentation:before{content:'\E412';font-size:50px;color:#d2611f}
.filetype_icon.key.s24:before,.filetype_icon.keynote.s24:before,.filetype_icon.presentation.s24:before,.ts_icon_file_presentation_small:before{content:'\E413';font-size:40px;color:#d2611f}
.filetype_icon.email.s30:before,.filetype_icon.email.s48:before,.ts_icon_file_email:before{content:'\E414';font-size:50px;color:#d2611f}
.filetype_icon.email.s24:before,.ts_icon_file_email_small:before{content:'\E415';font-size:40px;color:#d2611f}
.filetype_icon.vector.s30:before,.filetype_icon.vector.s48:before,.ts_icon_file_vector:before{content:'\E416';font-size:50px;color:#d2611f}
.filetype_icon.vector.s24:before,.ts_icon_file_vector_small:before{content:'\E417';font-size:40px;color:#d2611f}
.filetype_icon.csv.s30:before,.filetype_icon.csv.s48:before,.filetype_icon.numbers.s30:before,.filetype_icon.numbers.s48:before,.filetype_icon.spreadsheet.s30:before,.filetype_icon.spreadsheet.s48:before,.filetype_icon.tsv.s30:before,.filetype_icon.tsv.s48:before,.ts_icon_file_spreadsheet:before{content:'\E418';font-size:50px;color:#d2611f}
.filetype_icon.csv.s24:before,.filetype_icon.numbers.s24:before,.filetype_icon.spreadsheet.s24:before,.filetype_icon.tsv.s24:before,.ts_icon_file_spreadsheet_small:before{content:'\E419';font-size:40px;color:#d2611f}
.filetype_icon.iso.s30:before,.filetype_icon.iso.s48:before,.ts_icon_file_media_archive:before{content:'\E420';font-size:50px;color:#d2611f}
.filetype_icon.iso.s24:before,.ts_icon_file_media_archive_small:before{content:'\E421';font-size:40px;color:#d2611f}
.filetype_icon.zip.s30:before,.filetype_icon.zip.s48:before,.ts_icon_file_archive:before{content:'\E422';font-size:50px;color:#d2611f}
.filetype_icon.zip.s24:before,.ts_icon_file_archive_small:before{content:'\E423';font-size:40px;color:#d2611f}
.filetype_icon.exe.s30:before,.filetype_icon.exe.s48:before,.ts_icon_file_executable:before{content:'\E424';font-size:50px;color:#d2611f}
.filetype_icon.exe.s24:before,.ts_icon_file_executable_small:before{content:'\E425';font-size:40px;color:#d2611f}
.filetype_icon.dmg.s30:before,.filetype_icon.dmg.s48:before,.ts_icon_file_disk_image:before{content:'\E426';font-size:50px;color:#d2611f}
.filetype_icon.dmg.s24:before,.ts_icon_file_disk_image_small:before{content:'\E427';font-size:40px;color:#d2611f}
.filetype_icon.cad.s30:before,.filetype_icon.cad.s48:before,.ts_icon_file_cad:before{content:'\E428';font-size:50px;color:#d2611f}
.filetype_icon.cad.s24:before,.ts_icon_file_cad_small:before{content:'\E429';font-size:40px;color:#d2611f}
.filetype_icon.gfx3d.s30:before,.filetype_icon.gfx3d.s48:before,.ts_icon_file_3d_graphic:before{content:'\E430';font-size:50px;color:#d2611f}
.filetype_icon.gfx3d.s24:before,.ts_icon_file_3d_graphic_small:before{content:'\E431';font-size:40px;color:#d2611f}
.filetype_icon.db.s30:before,.filetype_icon.db.s48:before,.filetype_icon.sql.s30:before,.filetype_icon.sql.s48:before,.ts_icon_file_database:before{content:'\E432';font-size:50px;color:#d2611f}
.filetype_icon.db.s24:before,.filetype_icon.sql.s24:before,.ts_icon_file_database_small:before{content:'\E433';font-size:40px;color:#d2611f}
.filetype_icon.binary.s30:before,.filetype_icon.binary.s48:before,.ts_icon_file_binary:before{content:'\E434';font-size:50px;color:#d2611f}
.filetype_icon.binary.s24:before,.ts_icon_file_binary_small:before{content:'\E435';font-size:40px;color:#d2611f}
.filetype_icon.markdown.s30:before,.filetype_icon.markdown.s48:before,.filetype_icon.md.s30:before,.filetype_icon.md.s48:before,.ts_icon_file_markdown:before{content:'\E436';font-size:50px;color:#d2611f}
.filetype_icon.markdown.s24:before,.filetype_icon.md.s24:before,.ts_icon_file_markdown_small:before{content:'\E437';font-size:40px;color:#d2611f}
.filetype_icon.post.s30:before,.filetype_icon.post.s48:before,.filetype_icon.rtf.s30:before,.filetype_icon.rtf.s48:before,.filetype_icon.text.s30:before,.filetype_icon.text.s48:before,.filetype_icon.txt.s30:before,.filetype_icon.txt.s48:before,.ts_icon_file_text_post:before{content:'\E438';font-size:50px;color:#d1599b}
.filetype_icon.post.s24:before,.filetype_icon.rtf.s24:before,.filetype_icon.text.s24:before,.filetype_icon.txt.s24:before,.ts_icon_file_text_post_small:before{content:'\E439';font-size:40px;color:#d1599b}
.filetype_icon.html.s30:before,.filetype_icon.html.s48:before,.ts_icon_file_html:before{content:'\E440';font-size:50px;color:#d2611f}
.filetype_icon.html.s24:before,.ts_icon_file_html_small:before{content:'\E441';font-size:40px;color:#d2611f}
.filetype_icon.c.s30:before,.filetype_icon.c.s48:before,.filetype_icon.code.s30:before,.filetype_icon.code.s48:before,.filetype_icon.cpp.s30:before,.filetype_icon.cpp.s48:before,.filetype_icon.csharp.s30:before,.filetype_icon.csharp.s48:before,.filetype_icon.diff.s30:before,.filetype_icon.diff.s48:before,.filetype_icon.erb.s30:before,.filetype_icon.erb.s48:before,.filetype_icon.erlang.s30:before,.filetype_icon.erlang.s48:before,.filetype_icon.java.s30:before,.filetype_icon.java.s48:before,.filetype_icon.javascript.s30:before,.filetype_icon.javascript.s48:before,.filetype_icon.objc.s30:before,.filetype_icon.objc.s48:before,.filetype_icon.perl.s30:before,.filetype_icon.perl.s48:before,.filetype_icon.python.s30:before,.filetype_icon.python.s48:before,.filetype_icon.rb.s30:before,.filetype_icon.rb.s48:before,.filetype_icon.ruby.s30:before,.filetype_icon.ruby.s48:before,.filetype_icon.xml.s30:before,.filetype_icon.xml.s48:before,.ts_icon_file_code:before{content:'\E442';font-size:50px;color:#d2611f}
.filetype_icon.c.s24:before,.filetype_icon.code.s24:before,.filetype_icon.cpp.s24:before,.filetype_icon.csharp.s24:before,.filetype_icon.diff.s24:before,.filetype_icon.erb.s24:before,.filetype_icon.erlang.s24:before,.filetype_icon.java.s24:before,.filetype_icon.javascript.s24:before,.filetype_icon.objc.s24:before,.filetype_icon.perl.s24:before,.filetype_icon.python.s24:before,.filetype_icon.rb.s24:before,.filetype_icon.ruby.s24:before,.filetype_icon.xml.s24:before,.ts_icon_file_code_small:before{content:'\E443';font-size:40px;color:#d2611f}
.filetype_icon.css.s30:before,.filetype_icon.css.s48:before,.ts_icon_file_css:before{content:'\E444';font-size:50px;color:#d2611f}
.filetype_icon.css.s24:before,.ts_icon_file_css_small:before{content:'\E445';font-size:40px;color:#d2611f}
.filetype_icon.php.s30:before,.filetype_icon.php.s48:before,.ts_icon_file_php:before{content:'\E446';font-size:50px;color:#d2611f}
.filetype_icon.php.s24:before,.ts_icon_file_php_small:before{content:'\E447';font-size:40px;color:#d2611f}
.filetype_icon.snippet.s30:before,.filetype_icon.snippet.s48:before,.ts_icon_file_snippet:before{content:'\E448';font-size:50px;color:#b2c6b4}
.filetype_icon.snippet.s24:before,.ts_icon_file_snippet_small:before{content:'\E449';font-size:40px;color:#b2c6b4}
.filetype_icon.doc.s30:before,.filetype_icon.doc.s48:before,.filetype_icon.docx.s30:before,.filetype_icon.docx.s48:before,.ts_icon_file_word:before{content:'\E450';font-size:50px;color:#ffa166}
.filetype_icon.doc.s24:before,.filetype_icon.docx.s24:before,.ts_icon_file_word_small:before{content:'\E451';font-size:40px;color:#ffa166}
.filetype_icon.xls.s30:before,.filetype_icon.xls.s48:before,.filetype_icon.xlsm.s30:before,.filetype_icon.xlsm.s48:before,.filetype_icon.xlsx.s30:before,.filetype_icon.xlsx.s48:before,.filetype_icon.xltx.s30:before,.filetype_icon.xltx.s48:before,.ts_icon_file_excel:before{content:'\E452';font-size:50px;color:#d1599b}
.filetype_icon.xls.s24:before,.filetype_icon.xlsm.s24:before,.filetype_icon.xlsx.s24:before,.filetype_icon.xltx.s24:before,.ts_icon_file_excel_small:before{content:'\E453';font-size:40px;color:#d1599b}
.filetype_icon.ppt.s30:before,.filetype_icon.ppt.s48:before,.filetype_icon.pptx.s30:before,.filetype_icon.pptx.s48:before,.ts_icon_file_powerpoint:before{content:'\E454';font-size:50px;color:#0d9ecf}
.filetype_icon.ppt.s24:before,.filetype_icon.pptx.s24:before,.ts_icon_file_powerpoint_small:before{content:'\E455';font-size:40px;color:#0d9ecf}
.filetype_icon.ai.s30:before,.filetype_icon.ai.s48:before,.ts_icon_file_illustrator:before{content:'\E456';font-size:50px;color:#006fff}
.filetype_icon.ai.s24:before,.ts_icon_file_illustrator_small:before{content:'\E457';font-size:40px;color:#006fff}
.filetype_icon.psd.s30:before,.filetype_icon.psd.s48:before,.ts_icon_file_photoshop:before{content:'\E458';font-size:50px;color:#d2611f}
.filetype_icon.psd.s24:before,.ts_icon_file_photoshop_small:before{content:'\E459';font-size:40px;color:#d2611f}
.filetype_icon.indd.s30:before,.filetype_icon.indd.s48:before,.ts_icon_file_indesign:before{content:'\E460';font-size:50px;color:#146a60}
.filetype_icon.indd.s24:before,.ts_icon_file_indesign_small:before{content:'\E461';font-size:40px;color:#146a60}
.filetype_icon.fla.s30:before,.filetype_icon.fla.s48:before,.ts_icon_file_adobe_flash:before{content:'\E462';font-size:50px;color:#28d4c0}
.filetype_icon.fla.s24:before,.ts_icon_file_adobe_flash_small:before{content:'\E463';font-size:40px;color:#28d4c0}
.filetype_icon.swf.s30:before,.filetype_icon.swf.s48:before,.ts_icon_file_adobe_swf:before{content:'\E464';font-size:50px;color:#28d4c0}
.filetype_icon.swf.s24:before,.ts_icon_file_adobe_swf_small:before{content:'\E465';font-size:40px;color:#28d4c0}
.filetype_icon.ipa.s30:before,.filetype_icon.ipa.s48:before,.ts_icon_file_iphone_app:before{content:'\E466';font-size:50px;color:#5f5f5d}
.filetype_icon.ipa.s24:before,.ts_icon_file_iphone_app_small:before{content:'\E467';font-size:40px;color:#5f5f5d}
.filetype_icon.apk.s30:before,.filetype_icon.apk.s48:before,.ts_icon_file_android_app:before{content:'\E468';font-size:50px;color:#d1599b}
.filetype_icon.apk.s24:before,.ts_icon_file_android_app_small:before{content:'\E469';font-size:40px;color:#d1599b}
.filetype_icon.dropbox.s30:before,.filetype_icon.dropbox.s48:before,.ts_icon_file_dropbox:before{content:'\E470';font-size:50px;color:#fa8946}
.filetype_icon.dropbox.s24:before,.ts_icon_file_dropbox_small:before{content:'\E471';font-size:40px;color:#fa8946}
.filetype_icon.gpres.s30:before,.filetype_icon.gpres.s48:before,.ts_icon_file_google_presentation:before{content:'\E472';font-size:50px;color:#006fff}
.filetype_icon.gpres.s24:before,.ts_icon_file_google_presentation_small:before{content:'\E473';font-size:40px;color:#006fff}
.filetype_icon.gsheet.s30:before,.filetype_icon.gsheet.s48:before,.ts_icon_file_google_spreadsheet:before{content:'\E472';font-size:50px;color:#d1599b}
.filetype_icon.gsheet.s24:before,.ts_icon_file_google_spreadsheet_small:before{content:'\E473';font-size:40px;color:#d1599b}
.filetype_icon.gdoc.s30:before,.filetype_icon.gdoc.s48:before,.ts_icon_file_google_document:before{content:'\E472';font-size:50px;color:#d2611f}
.filetype_icon.gdoc.s24:before,.ts_icon_file_google_document_small:before{content:'\E473';font-size:40px;color:#d2611f}
.filetype_icon.gdraw.s30:before,.filetype_icon.gdraw.s48:before,.filetype_icon.gform.s30:before,.filetype_icon.gform.s48:before,.ts_icon_file_google_form:before{content:'\E472';font-size:50px;color:#28d4c0}
.filetype_icon.gdraw.s24:before,.filetype_icon.gform.s24:before,.ts_icon_file_google_form_small:before{content:'\E473';font-size:40px;color:#28d4c0}
.filetype_icon.qtz.s30:before,.filetype_icon.qtz.s48:before,.ts_icon_file_qtz:before{content:'\E474';font-size:50px;color:#d2611f}
.filetype_icon.qtz.s24:before,.ts_icon_file_qtz_small:before{content:'\E475';font-size:40px;color:#d2611f}
.filetype_icon.sketch.s30:before,.filetype_icon.sketch.s48:before,.ts_icon_file_sketch:before{content:'\E476';font-size:50px;color:#006fff}
.filetype_icon.sketch.s24:before,.ts_icon_file_sketch_small:before{content:'\E477';font-size:40px;color:#006fff}
.ts_icon_presence:before{content:'\E506'}
.away>.ts_icon_presence:before{content:'\E507'}
.dnd>.ts_icon_presence:before{content:'\E508'}
.dnd.away>.ts_icon_presence:before{content:'\E535'}
.ts_icon_presence_external:before,.ts_icon_presence_ra:before{content:'\E509'}
.away>.ts_icon_presence_external:before,.away>.ts_icon_presence_ra:before{content:'\E510'}
.dnd>.ts_icon_presence_external:before,.dnd>.ts_icon_presence_ra:before{content:'\E511'}
.dnd.away>.ts_icon_presence_external:before,.dnd.away>.ts_icon_presence_ra:before{content:'\E536'}
.ts_icon_presence_ura:before{content:'\E512'}
.away>.ts_icon_presence_ura:before{content:'\E513'}
.dnd>.ts_icon_presence_ura:before{content:'\E514'}
.dnd.away>.ts_icon_presence_ura:before{content:'\E537'}
.filetype_icon{display:inline-block}
.filetype_icon:before{font-family:Slack;font-style:normal;font-weight:400;line-height:24px;display:inline-block}
.filetype_icon.ts_icon_inherit:before{font-size:inherit}
.filetype_icon.s24{width:24px;height:32px}
.filetype_icon.s24:before{content:'\E401';font-size:40px;margin:2px 0 0 -8px}
.filetype_icon.s30,.filetype_icon.s48{width:30px;height:38px}
.filetype_icon.s30:before,.filetype_icon.s48:before{content:'\E400';font-size:50px;margin:4px 0 0 -10px}
.filetype_icon.rtf.s24:before,.filetype_icon.rtf.s30:before,.filetype_icon.rtf.s48:before,.filetype_icon.text.s24:before,.filetype_icon.text.s30:before,.filetype_icon.text.s48:before,.filetype_icon.txt.s24:before,.filetype_icon.txt.s30:before,.filetype_icon.txt.s48:before{color:#d2611f}
@font-face{font-family:'Slack v2';src:url(/42cfe/fonts/slack-icons-v2.woff2) format('woff2'),url(/42cfe/fonts/slack-icons-v2.woff) format('woff');font-style:normal;font-weight:400}
.c-icon:before{font-family:'Slack v2';font-size:20px;font-style:normal;font-weight:400;display:inline-block;vertical-align:middle}
.c-icon--inherit:before{font-size:inherit}
.c-icon--align-bottom:before{vertical-align:bottom}
.c-icon--align-top:before{vertical-align:top}
.c-icon--align-baseline:before{vertical-align:baseline}
.c-icon--spin:before{animation:1s linear 0s infinite normal none c-icon--spin}
@keyframes c-icon--spin{0%{transform:rotate(0)}
100%{transform:rotate(360deg)}
}
.c-icon--star-o:before{content:'\E001'}
.c-icon--unstar-o:before{content:'\E002'}
.c-icon--user:before{content:'\E003'}
.c-icon--comment-alt:before{content:'\E004'}
.c-icon--comment-o:before{content:'\E005'}
.c-icon--home:before{content:'\E006'}
.c-icon--info:before{content:'\E007'}
.c-icon--channel-info:before,.c-icon--info-circle:before{content:'\E008'}
.c-icon--mentions:before{content:'\E009'}
.c-icon--search:before{content:'\E010'}
.c-icon--bolt:before{content:'\E011'}
.c-icon--mobile:before{content:'\E012'}
.c-icon--tablet:before{content:'\E013'}
.c-icon--laptop:before{content:'\E014'}
.c-icon--bell-o:before{content:'\E015'}
.c-icon--bell-slash:before{content:'\E016'}
.c-icon--team-directory:before{content:'\E017'}
.c-icon--cloud-upload:before{content:'\E018'}
.c-icon--cloud-download:before{content:'\E019'}
.c-icon--cog-o:before{content:'\E020'}
.c-icon--cogs:before{content:'\E021'}
.c-icon--key:before{content:'\E022'}
.c-icon--calendar:before{content:'\E023'}
.c-icon--pencil:before{content:'\E024'}
.c-icon--lightbulb-o:before{content:'\E025'}
.c-icon--magic:before{content:'\E026'}
.c-icon--external-link:before{content:'\E027'}
.c-icon--external-link-square:before{content:'\E028'}
.c-icon--lock-o:before{content:'\E029'}
.c-icon--unlock:before{content:'\E030'}
.c-icon--folder:before{content:'\E031'}
.c-icon--folder-open:before{content:'\E032'}
.c-icon--archive:before{content:'\E033'}
.c-icon--inbox:before{content:'\E034'}
.c-icon--sitemap:before{content:'\E035'}
.c-icon--book:before{content:'\E036'}
.c-icon--envelope-o:before{content:'\E037'}
.c-icon--image:before{content:'\E038'}
.c-icon--building:before{content:'\E039'}
.c-icon--plug:before{content:'\E040'}
.c-icon--paper-plane:before{content:'\E041'}
.c-icon--credit-card:before{content:'\E042'}
.c-icon--life-ring:before{content:'\E043'}
.c-icon--thumb-tack:before{content:'\E044'}
.c-icon--thumb-tack-filled:before{content:'\E547'}
.c-icon--trash:before{content:'\E045'}
.c-icon--print:before{content:'\E046'}
.c-icon--quote-o:before{content:'\E047'}
.c-icon--th-large:before{content:'\E048'}
.c-icon--eye:before{content:'\E049'}
.c-icon--eye-closed:before{content:'\E050'}
.c-icon--volume-off:before{content:'\E051'}
.c-icon--volume-down:before{content:'\E052'}
.c-icon--volume-medium:before{content:'\E053'}
.c-icon--volume-up:before{content:'\E054'}
.c-icon--volume-off-alt:before{content:'\E055'}
.c-icon--heart-o:before{content:'\E056'}
.c-icon--wrench:before{content:'\E057'}
.c-icon--file:before{content:'\E058'}
.c-icon--all-files:before{content:'\E059'}
.c-icon--your-files:before{content:'\E060'}
.c-icon--align-left:before{content:'\E061'}
.c-icon--align-center:before{content:'\E062'}
.c-icon--align-right:before{content:'\E063'}
.c-icon--align-justify:before{content:'\E064'}
.c-icon--paragraph:before{content:'\E065'}
.c-icon--code:before{content:'\E066'}
.c-icon--ellipsis:before{content:'\E067'}
.c-icon--ellipsis-baseline:before{content:'\E068'}
.c-icon--spinner:before{content:'\E069'}
.c-icon--spiral:before{content:'\E070'}
.c-icon--random:before{content:'\E071'}
.c-icon--repeat:before{content:'\E072'}
.c-icon--share-square-o:before{content:'\E073'}
.c-icon--link:before{content:'\E074'}
.c-icon--undo:before{content:'\E075'}
.c-icon--history:before{content:'\E076'}
.c-icon--hourglass-empty:before{content:'\E077'}
.c-icon--hourglass:before{content:'\E078'}
.c-icon--clock-o:before{content:'\E079'}
.c-icon--dashboard:before{content:'\E080'}
.c-icon--power-off:before{content:'\E081'}
.c-icon--sign-in:before{content:'\E082'}
.c-icon--sign-out:before{content:'\E083'}
.c-icon--jump:before{content:'\E084'}
.c-icon--globe:before{content:'\E085'}
.c-icon--filter:before{content:'\E086'}
.c-icon--microphone:before{content:'\E087'}
.c-icon--microphone-slash:before{content:'\E088'}
.c-icon--paperclip:before{content:'\E089'}
.c-icon--video-camera:before{content:'\E090'}
.c-icon--stop-video:before{content:'\E091'}
.c-icon--phone:before{content:'\E092'}
.c-icon--end-call:before{content:'\E093'}
.c-icon--smile-o:before{content:'\E094'}
.c-icon--share-screen:before{content:'\E095'}
.c-icon--stop-screen-sharing:before{content:'\E096'}
.c-icon--stop-screen-sharing-alt:before{content:'\E097'}
.c-icon--feedback:before{content:'\E098'}
.c-icon--paper-plane-alt:before{content:'\E099'}
.c-icon--cloud-offline:before{content:'\E0A0'}
.c-icon--cloud-offline-small:before{content:'\E0A1'}
.c-icon--share:before{content:'\E100'}
.c-icon--save:before{content:'\E101'}
.c-icon--message-notification:before{content:'\E102'}
.c-icon--list:before{content:'\E103'}
.c-icon--channel:before{content:'\E104'}
.c-icon--share-other-alt:before{content:'\E105'}
.c-icon--broadcast:before{content:'\E106'}
.c-icon--all-files-alt:before{content:'\E107'}
.c-icon--search-files:before{content:'\E108'}
.c-icon--add-user:before{content:'\E109'}
.c-icon--switch-team:before{content:'\E110'}
.c-icon--create-snippet:before{content:'\E111'}
.c-icon--create-post:before{content:'\E112'}
.c-icon--upload:before{content:'\E113'}
.c-icon--download:before{content:'\E114'}
.c-icon--share-email:before{content:'\E115'}
.c-icon--import-email:before{content:'\E116'}
.c-icon--ellipsis-o:before{content:'\E117'}
.c-icon--add-reaction:before{content:'\E118'}
.c-icon--happy-smile:before{content:'\E119'}
.c-icon--mark-unread:before{content:'\E120'}
.c-icon--camera:before{content:'\E121'}
.c-icon--phone-flat:before{content:'\E122'}
.c-icon--sparkles:before{content:'\E123'}
.c-icon--location-pin:before{content:'\E124'}
.c-icon--channel-pane-hash:before{content:'\E125'}
.c-icon--emoji-nature:before{content:'\E126'}
.c-icon--emoji-food:before{content:'\E127'}
.c-icon--emoji-celebration:before{content:'\E128'}
.c-icon--emoji-activities:before{content:'\E129'}
.c-icon--emoji-travel:before{content:'\E130'}
.c-icon--emoji-objects:before{content:'\E131'}
.c-icon--file-gdrive:before{content:'\E133'}
.c-icon--play:before{content:'\E134'}
.c-icon--stream:before{content:'\E135'}
.c-icon--field-text:before{content:'\E136'}
.c-icon--poo:before{content:'\E137'}
.c-icon--channel-list:before{content:'\E138'}
.c-icon--share-android:before{content:'\E139'}
.c-icon--highlight:before{content:'\E140'}
.c-icon--flag:before{content:'\E141'}
.c-icon--grabby-patty:before{content:'\E142'}
.c-icon--backspace:before{content:'\E143'}
.c-icon--android-keyboard:before{content:'\E144'}
.c-icon--side-panel:before{content:'\E145'}
.c-icon--search-small:before{content:'\E146'}
.c-icon--reload-small:before{content:'\E147'}
.c-icon--vertical-ellipsis:before{content:'\E148'}
.c-icon--disable:before{content:'\E149'}
.c-icon--bold-hash-small:before{content:'\E150'}
.c-icon--cart:before{content:'\E151'}
.c-icon--snooze-outline:before{content:'\E152'}
.c-icon--new-window:before{content:'\E153'}
.c-icon--h1:before{content:'\E154'}
.c-icon--h2:before{content:'\E155'}
.c-icon--h3:before{content:'\E156'}
.c-icon--bullet-list:before{content:'\E157'}
.c-icon--numbered-list:before{content:'\E158'}
.c-icon--text-format-menu:before{content:'\E159'}
.c-icon--bold:before{content:'\E160'}
.c-icon--italic:before{content:'\E161'}
.c-icon--underline:before{content:'\E162'}
.c-icon--strikethrough:before{content:'\E163'}
.c-icon--tag:before{content:'\E164'}
.c-icon--org-shared-channel:before{content:'\E165'}
.c-icon--shared-channel:before{content:'\E166'}
.c-icon--external-channel:before{content:'\E167'}
.c-icon--small-reaction:before{content:'\E170'}
.c-icon--small-reply:before{content:'\E171'}
.c-icon--small-ellipsis:before{content:'\E172'}
.c-icon--small-star:before{content:'\E173'}