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