-
Notifications
You must be signed in to change notification settings - Fork 27
/
icons.scss
2911 lines (2911 loc) · 481 KB
/
icons.scss
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
@mixin d2l-icon() {
display: inline-block;
font-size: 0;
line-height: 0;
margin: 0;
vertical-align: text-top;
}
@mixin d2l-icon-emoji-angry() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm1.29%205.29l2-2a1%201%200%200%201%201.6%201.16l-.68%201.34.51.51a1%201%200%200%201%20.09%201.29A1.028%201.028%200%200%201%2013%208a.934.934%200%200%201-.45-.11l-2-1a1.009%201.009%200%200%201-.55-.73%201.038%201.038%200%200%201%20.29-.87zm-6.18-.84a1%201%200%200%201%201.6-1.16l2%202a1.032%201.032%200%200%201%20.28.87%201%201%200%200%201-.54.73l-2%201A.934.934%200%200%201%205%208a1.028%201.028%200%200%201-.81-.41%201%201%200%200%201%20.09-1.29l.51-.51zM14%2012H4a1%201%200%200%201%200-2h10a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-emoji-happy() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm3.5%203A1.5%201.5%200%201%201%2011%204.5%201.5%201.5%200%200%201%2012.5%203zm-7%200A1.5%201.5%200%201%201%204%204.5%201.5%201.5%200%200%201%205.5%203zM9%2015a6%206%200%200%201-6-6%201%201%200%200%201%202%200%204%204%200%200%200%208%200%201%201%200%200%201%202%200%206%206%200%200%201-6%206z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-emoji-lol() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zM3.293%206.293l2-2a1%201%200%200%201%201.414%201.414l-2%202a1%201%200%200%201-1.414-1.414zM9%2015a5%205%200%200%201-5-5c0-2.761%2010-2.761%2010%200a5%205%200%200%201-5%205zm5.707-7.293a1%201%200%200%201-1.414%200l-2-2a1%201%200%200%201%201.414-1.414l2%202a1%201%200%200%201%200%201.414z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-emoji-meh() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm3.5%205A1.5%201.5%200%201%201%2011%206.5%201.5%201.5%200%200%201%2012.5%205zm-7.194-.027a1.5%201.5%200%201%201-1.5%201.5%201.5%201.5%200%200%201%201.5-1.5zM14%2012H4a1%201%200%200%201%200-2h10a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-emoji-sad() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm3.5%203A1.5%201.5%200%201%201%2011%204.5%201.5%201.5%200%200%201%2012.5%203zm-7%200A1.5%201.5%200%201%201%204%204.5%201.5%201.5%200%200%201%205.5%203zM14%2014a1%201%200%200%201-1-1%204%204%200%200%200-8%200%201%201%200%200%201-2%200%206%206%200%200%201%2012%200%201%201%200%200%201-1%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-emoji-shout() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zM5%208a1.028%201.028%200%200%201-.81-.41%201%201%200%200%201%20.09-1.29l.51-.51-.68-1.34a1%201%200%200%201%201.6-1.16l2%202a1.032%201.032%200%200%201%20.28.87%201%201%200%200%201-.54.73l-2%201A.934.934%200%200%201%205%208zm4%207a3%203%200%201%201%203-3%203%203%200%200%201-3%203zm4.81-7.41A1.028%201.028%200%200%201%2013%208a.934.934%200%200%201-.45-.11l-2-1a1.009%201.009%200%200%201-.55-.73%201.038%201.038%200%200%201%20.29-.87l2-2a1%201%200%200%201%201.6%201.16l-.68%201.34.51.51a1%201%200%200%201%20.09%201.29z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-accessibility-check() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M7%200C3.1%200%200%202%200%204.5S3.1%209%207%209s7-2%207-4.5S10.9%200%207%200zM2%204.5c0-.7%201-1.7%202.7-2.2-.5.6-.7%201.4-.7%202.2s.2%201.6.7%202.2C3%206.2%202%205.2%202%204.5zm7.3%202.2c.4-.5.6-1.1.7-1.7-.6%200-1-.5-1-1s.3-.8.7-.9c-.1-.3-.2-.6-.4-.8C11%202.8%2012%203.8%2012%204.5s-1%201.7-2.7%202.2zm8.5-.1l-8%2010.9v.1l-.1.1c-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4-4c-.4-.4-.4-1%200-1.4.4-.4%201-.4%201.4%200l3.2%203.2%207.3-10.1c.3-.4%201-.5%201.4-.2.4.3.5.9.2%201.4z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-align-center() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202.5H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm0%2010H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm-2-6a1%201%200%200%201-1%201H4a1%201%200%200%201%200-2h10a1%201%200%200%201%201%201zm0%2010a1%201%200%200%201-1%201H4a1%201%200%200%201%200-2h10a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-align-full() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202.5H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm0%205H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm0%205H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm0%205H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-align-left() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202.5H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm0%2010H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm-5-6a1%201%200%200%201-1%201H1a1%201%200%200%201%200-2h10a1%201%200%200%201%201%201zm0%2010a1%201%200%200%201-1%201H1a1%201%200%200%201%200-2h10a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-align-right() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202.5H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm0%2010H1a1%201%200%200%201%200-2h16a1%201%200%200%201%200%202zm1-6a1%201%200%200%201-1%201H7a1%201%200%200%201%200-2h10a1%201%200%200%201%201%201zm0%2010a1%201%200%200%201-1%201H7a1%201%200%200%201%200-2h10a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-bold() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.88%209.82a3.557%203.557%200%200%200-1.83-1.41%203.753%203.753%200%200%200%201.21-.91%203.57%203.57%200%200%200%20.73-2.35%204.146%204.146%200%200%200-.72-2.45A4.873%204.873%200%200%200%2010.16%201H3.5a1%201%200%200%200-1%201v14a1%201%200%200%200%201%201h6.14a10.505%2010.505%200%200%200%202.24-.22%204.245%204.245%200%200%200%201.79-.8%204.378%204.378%200%200%200%201.12-1.26%204.62%204.62%200%200%200%20.71-2.55%204.31%204.31%200%200%200-.62-2.35zM5.5%204H10a1.5%201.5%200%200%201%201.5%201.5v.02A1.507%201.507%200%200%201%2010%207H5.5V4zm7%207.96V12a2.006%202.006%200%200%201-2%202h-5v-4h5a2%202%200%200%201%201.99%201.87c0%20.02.01.05.01.07v.02z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-cut() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14%2010a3.71%203.71%200%200%200-.67.06l-2.29-2.43%203.61-4.86a1.99%201.99%200%200%200-.5-2.77L9%205.47%203.85%200a1.99%201.99%200%200%200-.5%202.77l3.61%204.86-2.29%202.43A3.71%203.71%200%200%200%204%2010a4%204%200%201%200%204%204%203.86%203.86%200%200%200-.4-1.73L9%2010.38l1.4%201.89A3.86%203.86%200%200%200%2010%2014a4%204%200%201%200%204-4zM4%2016a2%202%200%201%201%202-2%202.006%202.006%200%200%201-2%202zm10%200a2%202%200%201%201%202-2%202.006%202.006%200%200%201-2%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-direction-ltr() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M8%2013a2.134%202.134%200%200%201-.7%201.2l-1%201-.5.5a1.33%201.33%200%200%201-.8.3.6.6%200%200%201-.4-.1.875.875%200%200%201-.6-.9v-1H1a1.075%201.075%200%200%201-1-1%201.075%201.075%200%200%201%201-1h3v-1a.875.875%200%200%201%20.6-.9.913.913%200%200%201%201.1.2L7.4%2012a1.174%201.174%200%200%201%20.6%201zM18%201.5A1.538%201.538%200%200%201%2016.5%203H16v14a1%201%200%200%201-2%200V3h-2v14a1.075%201.075%200%200%201-1%201%201.075%201.075%200%200%201-1-1V8H8a3.01%203.01%200%200%201-3-3V3a2.946%202.946%200%200%201%203-3h8.5A1.538%201.538%200%200%201%2018%201.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-direction-rtl() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M0%2013a2.134%202.134%200%200%200%20.7%201.2l1%201%20.5.5a1.33%201.33%200%200%200%20.8.3.6.6%200%200%200%20.4-.1.875.875%200%200%200%20.6-.9v-1h3a1.075%201.075%200%200%200%201-1%201.075%201.075%200%200%200-1-1H4v-1a.875.875%200%200%200-.6-.9.913.913%200%200%200-1.1.2L.6%2012a1.174%201.174%200%200%200-.6%201zM18%201.5A1.538%201.538%200%200%201%2016.5%203H16v14a1%201%200%200%201-2%200V3h-2v14a1.075%201.075%200%200%201-1%201%201.075%201.075%200%200%201-1-1V8H8a3.01%203.01%200%200%201-3-3V3a2.946%202.946%200%200%201%203-3h8.5A1.538%201.538%200%200%201%2018%201.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-equation-graphical() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14%2016.5c0%20.83-.67%201.5-1.5%201.5h-7c-.83%200-1.5-.67-1.5-1.5%200-.293.095-.566.25-.814.443-.707.855-1.433%201.272-2.157l1.38-2.405c.364-.636.73-1.27%201.088-1.91.02-.038.256-.385.23-.425l-.443-.72-1.045-1.697-1.22-1.986-.84-1.36c-.246-.4-.578-.815-.65-1.292-.05-.338.01-.695.185-.992C4.49.258%205.02-.003%205.572%200H13c.55%200%201%20.45%201%201s-.45%201-1%201H7.57l.59.983c.415.693.83%201.387%201.247%202.08l1.13%201.887c.197.33.472.673.454%201.074-.01.27-.13.517-.273.74-.35.55-.672%201.12-1.004%201.68L8.275%2012.87l-1.092%201.84c-.016.025-.142.29-.173.29h5.49c.83%200%201.5.67%201.5%201.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-equation-graphical-chemistry() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.5%200a1.486%201.486%200%200%200-1.408%202H5.908a1.5%201.5%200%201%200-1.476.993L1.834%207.54a1.5%201.5%200%201%200%200%202.919l2.6%204.547A1.514%201.514%200%201%200%205.908%2016h6.184a1.5%201.5%200%201%200%201.476-.993l2.6-4.547a1.5%201.5%200%201%200%200-2.919l-2.6-4.547A1.5%201.5%200%200%200%2013.5%200zM6.161%2014L3.3%209l2.861-5h5.679l2.86%205-2.857%205z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-equation-latex() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2016.5c0%20.83-.67%201.5-1.5%201.5h-7c-.83%200-1.5-.67-1.5-1.5%200-.293.095-.566.25-.814.443-.707.855-1.433%201.272-2.157l1.38-2.405c.364-.636.73-1.27%201.088-1.91.02-.038.256-.385.23-.425l-.443-.72-1.045-1.697L9.51%204.388l-.838-1.36c-.247-.4-.58-.815-.65-1.292-.05-.34.01-.696.185-.993C8.49.258%209.02-.003%209.572%200H17c.55%200%201%20.45%201%201s-.45%201-1%201h-5.43l.59.983c.415.694.83%201.387%201.247%202.08l1.13%201.887c.197.33.472.673.454%201.074-.01.27-.13.517-.273.74-.35.55-.672%201.12-1.004%201.68l-1.438%202.425-1.092%201.84c-.016.025-.142.29-.173.29h5.49c.83%200%201.5.67%201.5%201.5zM1%2018a1.001%201.001%200%200%201-.971-1.242l4-16a1%201%200%200%201%201.94.485l-4%2016a1%201%200%200%201-.97.757z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-equation-mathml() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14%2016.5c0%20.83-.67%201.5-1.5%201.5h-7c-.83%200-1.5-.67-1.5-1.5%200-.293.095-.566.25-.814.443-.707.855-1.433%201.272-2.157l1.38-2.405c.364-.636.73-1.27%201.088-1.91.02-.038.256-.385.23-.425l-.443-.72-1.045-1.697-1.22-1.986-.84-1.36c-.246-.4-.578-.815-.65-1.292-.05-.338.01-.695.185-.992C4.49.258%205.02-.003%205.572%200H13c.55%200%201%20.45%201%201s-.45%201-1%201H7.57l.59.983c.415.693.83%201.387%201.247%202.08l1.13%201.887c.197.33.472.673.454%201.074-.01.27-.13.517-.273.74-.35.55-.672%201.12-1.004%201.68L8.275%2012.87l-1.092%201.84c-.016.025-.142.29-.173.29h5.49c.83%200%201.5.67%201.5%201.5z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M4.83%2011.55c-.19.29-.51.45-.83.45-.19%200-.38-.05-.55-.17l-3-2c-.01-.01-.02-.01-.02-.02a.807.807%200%200%201-.26-.26.99.99%200%200%201%20.28-1.38l3-2c.45-.31%201.07-.18%201.382.28a.99.99%200%200%201-.28%201.38L2.8%209l1.75%201.17c.46.3.59.92.28%201.38zm8.34%200c.19.29.51.45.83.45.19%200%20.38-.05.55-.17l3-2c.01-.01.02-.01.02-.02.1-.06.19-.15.26-.26a.99.99%200%200%200-.28-1.38l-3-2c-.45-.31-1.07-.18-1.382.28a.99.99%200%200%200%20.28%201.38L15.198%209l-1.75%201.17c-.46.3-.59.92-.28%201.38z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-image() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%206.5v1h-5.55a3.97%203.97%200%200%200-6.91.03V7.5H0v-1a2.006%202.006%200%200%201%202-2%201%201%200%200%201%202%200h.8l1.85-1.85A.47.47%200%200%201%207%202.5h4a.47.47%200%200%201%20.35.15L13.2%204.5H16a2.006%202.006%200%200%201%202%202zm-9%207a4%204%200%200%201-4-4H0v4a2.006%202.006%200%200%200%202%202h14a2.006%202.006%200%200%200%202-2v-4h-5a4%204%200%200%201-4%204z%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%229%22%20cy%3D%229.5%22%20r%3D%222%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-indent-decrease() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%201c0%20.55-.45%201-1%201H1c-.55%200-1-.45-1-1s.45-1%201-1h16c.55%200%201%20.45%201%201zm0%2015c0%20.55-.45%201-1%201H1c-.55%200-1-.45-1-1s.45-1%201-1h16c.55%200%201%20.45%201%201zm0-10c0%20.55-.45%201-1%201h-6c-.55%200-1-.45-1-1s.45-1%201-1h6c.55%200%201%20.45%201%201zm0%205c0%20.55-.45%201-1%201h-6c-.55%200-1-.45-1-1s.45-1%201-1h6c.55%200%201%20.45%201%201zM0%208.5c0%20.31.15.61.4.8l2%201.5c.18.13.39.2.6.2.15%200%20.31-.03.45-.11.34-.16.55-.51.55-.89v-.5h3c.55%200%201-.45%201-1s-.45-1-1-1H4V7c0-.38-.21-.73-.55-.89a.996.996%200%200%200-1.05.09l-2%201.5c-.25.19-.4.49-.4.8z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-indent-increase() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%201a1%201%200%200%201-1%201H1a1%201%200%200%201%200-2h16a1%201%200%200%201%201%201zm0%2015a1%201%200%200%201-1%201H1a1%201%200%200%201%200-2h16a1%201%200%200%201%201%201zm0-10a1%201%200%200%201-1%201h-6a1%201%200%200%201%200-2h6a1%201%200%200%201%201%201zm0%205a1%201%200%200%201-1%201h-6a1%201%200%200%201%200-2h6a1%201%200%200%201%201%201zM8%208.5a1.014%201.014%200%200%201-.4.8l-2%201.5a1.03%201.03%200%200%201-.6.2.908.908%200%200%201-.45-.11A.977.977%200%200%201%204%2010v-.5H1a1%201%200%200%201%200-2h3V7a.977.977%200%200%201%20.55-.89%201%201%200%200%201%201.05.09l2%201.5a1.014%201.014%200%200%201%20.4.8z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-insert-attributes() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.6%200H1.4A1.417%201.417%200%200%200%200%201.43v15.14A1.417%201.417%200%200%200%201.4%2018h11.2a1.355%201.355%200%200%200%20.2-.02A4.992%204.992%200%200%201%2013%208a5.468%205.468%200%200%201%201%20.1V1.43A1.417%201.417%200%200%200%2012.6%200zM5%2012H3a1%201%200%200%201%200-2h2a1%201%200%200%201%200%202zm3-4H3a1%201%200%200%201%200-2h5a1%201%200%200%201%200%202zm3-4H3.03a1%201%200%200%201%200-2H11a1%201%200%200%201%200%202z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.89%2014.55a.993.993%200%200%201-.44%201.34.934.934%200%200%201-.45.11.98.98%200%200%201-.89-.55l-1-2a.965.965%200%200%201%200-.89c.01-.03.03-.06.04-.09l.96-1.92a1%201%200%201%201%201.78.9L12.12%2013zm5-1.11l-1%202.01A.98.98%200%200%201%2016%2016a1.05%201.05%200%200%201-.45-.1%201.007%201.007%200%200%201-.44-1.35l.77-1.55-.77-1.55a1%201%200%201%201%201.78-.9l.96%201.91.04.09a.965.965%200%200%201%200%20.89z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-insert-emoticon() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%202c3.9%200%207%203.1%207%207s-3.1%207-7%207-7-3.1-7-7%203.1-7%207-7m0-2C4%200%200%204%200%209s4%209%209%209%209-4%209-9-4-9-9-9z%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%226.5%22%20cy%3D%227.5%22%20r%3D%221.5%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6.5%206C5.7%206%205%206.7%205%207.5S5.7%209%206.5%209%208%208.3%208%207.5%207.3%206%206.5%206z%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%2211.5%22%20cy%3D%227.5%22%20r%3D%221.5%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.5%206c-.8%200-1.5.7-1.5%201.5S10.7%209%2011.5%209%2013%208.3%2013%207.5%2012.3%206%2011.5%206zm2.5%205c0%201.6-2.8%203-5%203s-5-1.4-5-3c0-.8%202%201%205%201s5-1.8%205-1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-italic() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14%201.5a.5.5%200%200%201-.5.5%202.413%202.413%200%200%200-1.56.4%202.046%202.046%200%200%200-.64%201.19L8.96%2014.5a4.764%204.764%200%200%200-.1.62c0%20.59.55.88%201.64.88a.5.5%200%200%201%200%201h-6a.5.5%200%200%201-.02-1h.02a1.97%201.97%200%200%200%202.2-1.59L9.05%203.5a3.136%203.136%200%200%200%20.09-.62c0-.59-.55-.88-1.64-.88a.5.5%200%200%201-.5-.5.5.5%200%200%201%20.5-.5h6a.5.5%200%200%201%20.5.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-link() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.132%201.18L9.71%202.6a4.015%204.015%200%200%200-.62%204.885L7.486%209.092a4.015%204.015%200%200%200-4.886.62l-1.422%201.42a4.022%204.022%200%200%200%205.688%205.69L8.288%2015.4a4.015%204.015%200%200%200%20.62-4.885l1.606-1.607a4.014%204.014%200%200%200%204.885-.62l1.42-1.422a4.022%204.022%200%201%200-5.688-5.687zm-4.266%2012.8L5.444%2015.4A2.012%202.012%200%200%201%202.6%2012.555l1.42-1.422a2.007%202.007%200%200%201%201.942-.52l-1.23%201.23a1.006%201.006%200%200%200%201.422%201.423l1.23-1.23a2.006%202.006%200%200%201-.518%201.94zM15.4%205.444l-1.424%201.422a2.007%202.007%200%200%201-1.94.52l1.23-1.23a1.006%201.006%200%201%200-1.423-1.423l-1.23%201.23a2.006%202.006%200%200%201%20.52-1.94l1.42-1.424A2.012%202.012%200%200%201%2015.4%205.445z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-list-bullet() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%201.5a1%201%200%200%201-1%201H5a1%201%200%200%201%200-2h12a1%201%200%200%201%201%201zm0%2015a1%201%200%200%201-1%201H5a1%201%200%200%201%200-2h12a1%201%200%200%201%201%201zm0-10a1%201%200%200%201-1%201H5a1%201%200%200%201%200-2h12a1%201%200%200%201%201%201zm0%205a1%201%200%200%201-1%201H5a1%201%200%200%201%200-2h12a1%201%200%200%201%201%201z%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%221%22%20cy%3D%221.5%22%20r%3D%221%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%221%22%20cy%3D%226.5%22%20r%3D%221%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%221%22%20cy%3D%2211.5%22%20r%3D%221%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%221%22%20cy%3D%2216.5%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-list-ordered() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M2%20.5v3a.5.5%200%200%201-1%200V1.31l-.28.14a.54.54%200%200%201-.22.05.5.5%200%200%201-.45-.28.506.506%200%200%201%20.23-.67l1-.5a.474.474%200%200%201%20.35-.03.514.514%200%200%201%20.13.05.02.02%200%200%200%20.02.01c.03.03.06.05.09.08a.864.864%200%200%201%20.08.12A.54.54%200%200%201%202%20.5zm1%2014v3a.5.5%200%200%201-.5.5h-2a.5.5%200%200%201%200-1H2v-.5h-.5a.5.5%200%200%201%200-1H2V15H.5a.5.5%200%200%201%200-1h2a.5.5%200%200%201%20.5.5zM17%204H6a1%201%200%200%201%200-2h11a1%201%200%200%201%200%202zm0%207H6a1%201%200%200%201%200-2h11a1%201%200%200%201%200%202zm0%207H6a1%201%200%200%201%200-2h11a1%201%200%200%201%200%202zM3%2010.5a.5.5%200%200%201-.5.5h-2a.5.5%200%200%201-.5-.5.476.476%200%200%201%20.09-.29s.05-.07.06-.09l.59-.84s.67-.94.68-.95a.337.337%200%200%200%20.08-.17.247.247%200%200%200-.25-.27.235.235%200%200%200-.2.1c-.032.05-.043.11-.076.153a.5.5%200%200%201-.414.217.5.5%200%200%201-.48-.63A1.232%201.232%200%200%201%20.74%207%201.25%201.25%200%200%201%202.5%208.14a1.29%201.29%200%200%201-.16.61c-.06.09-.87%201.25-.88%201.25H2.5a.5.5%200%200%201%20.5.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-media() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202H1a1%201%200%200%200-1%201v12a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V3a1%201%200%200%200-1-1zm-3.55%207.89l-6%203A1.03%201.03%200%200%201%207%2013a1.014%201.014%200%200%201-.53-.15A1%201%200%200%201%206%2012V6a1%201%200%200%201%201.45-.89l6%203a1%201%200%200%201%200%201.78z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-new-line() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%204H2c-.6%200-1-.4-1-1s.4-1%201-1h14c.6%200%201%20.4%201%201s-.4%201-1%201zm0%204H2c-.6%200-1-.4-1-1s.4-1%201-1h14c.6%200%201%20.4%201%201s-.4%201-1%201zm1%204v2c0%201-1%202-2%202h-2c0%20.3%200%20.5-.3.7-.2.2-.4.3-.7.3s-.5%200-.7-.3l-1-1c-.4-.4-.4-1%200-1.4l1-1c.4-.4%201-.4%201.4%200%20.2.2.3.4.3.7h2v-2H2c-.6%200-1-.5-1-1s.5-1%201-1h13c1%200%202%201%202%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-paste() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11%204V3a1%201%200%200%200-1-1h-.01c0-.55-.45-2-1-2s-1%201.45-1%202A1%201%200%200%200%207%203v1a2.076%202.076%200%200%200-2%202.05v9.87A2.085%202.085%200%200%200%207.08%2018h3.85A2.076%202.076%200%200%200%2013%2015.92V6.05A2.056%202.056%200%200%200%2011%204zm-2%209c-1.1%200-2-1.343-2-3s.9-3%202-3%202%201.343%202%203-.9%203-2%203z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-source-editor() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M7%2012.923a1%201%200%200%201-.554-.166.983.983%200%200%201-.277-1.373l4-5.94a1%201%200%200%201%201.385-.274.983.983%200%200%201%20.277%201.373l-4%205.94a1%201%200%200%201-.833.44zm10.708-3.257l-3%202.97a1.02%201.02%200%200%201-1.42%200%20.99.99%200%200%201%200-1.406l2.29-2.267-2.29-2.277a.98.98%200%200%201%200-1.4%201.015%201.015%200%200%201%201.42%200l3%202.97a.99.99%200%200%201%200%201.41zM4.712%2011.23a.99.99%200%200%201%200%201.406%201.02%201.02%200%200%201-1.42%200l-3-2.97a.99.99%200%200%201%200-1.406l3-2.97a1.015%201.015%200%200%201%201.42%200%20.98.98%200%200%201%200%201.4l-2.29%202.273z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-spellcheck() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.912%209.59l-4-9a1%201%200%200%200-1.82-.01v.01l-.02.04L.09%209.59a.993.993%200%200%200%20.5%201.32A1.013%201.013%200%200%200%201%2011a.992.992%200%200%200%20.91-.59L2.54%209h4.92l.63%201.41A.992.992%200%200%200%209%2011a1.013%201.013%200%200%200%20.41-.09.992.992%200%200%200%20.502-1.32zM3.43%207L5%203.46%206.57%207H3.43z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.805%206.6L9.93%2017.43a1.142%201.142%200%200%201-.942.57%201.417%201.417%200%200%201-.982-.576L4.292%2013.71a1.004%201.004%200%200%201%201.42-1.42l3.17%203.17%207.3-10.04a1.003%201.003%200%201%201%201.623%201.18z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-strikethrough() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%209a1%201%200%200%201-1%201h-4.54A4%204%200%201%201%205%2012a1%201%200%200%201%202%200%202%202%200%201%200%202-2H1a1%201%200%200%201%200-2h4.54A4%204%200%201%201%2013%206a1%201%200%200%201-2%200%202%202%200%201%200-2%202h8a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-subscript() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.714%2013.255a.972.972%200%200%201-.1%201.4.713.713%200%200%201-.6.3.908.908%200%200%201-.7-.3l-4.8-5.2-4.8%205.2a.908.908%200%200%201-.7.3.908.908%200%200%201-.7-.3%201.07%201.07%200%200%201-.1-1.4l4.9-5.3-4.8-5.3a.972.972%200%200%201%20.1-1.4.972.972%200%200%201%201.4.1l4.8%205.2%204.8-5.2a1.07%201.07%200%200%201%201.4-.1%201.063%201.063%200%200%201%20.1%201.4l-5%205.3zm5.3.2v3a.472.472%200%200%201-.5.5h-2a.5.5%200%200%201%200-1h1.5v-.5h-.5a.5.5%200%200%201%200-1h.5v-.5h-1.5a.5.5%200%200%201%200-1h2a.472.472%200%200%201%20.5.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-superscript() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.714%2015.3a.972.972%200%200%201-.1%201.4.713.713%200%200%201-.6.3.908.908%200%200%201-.7-.3l-4.8-5.2-4.8%205.2a.908.908%200%200%201-.7.3.908.908%200%200%201-.7-.3%201.07%201.07%200%200%201-.1-1.4l4.9-5.3-4.8-5.3a.972.972%200%200%201%20.1-1.4.972.972%200%200%201%201.4.1l4.8%205.2%204.8-5.2a1.07%201.07%200%200%201%201.4-.1%201.063%201.063%200%200%201%20.1%201.4l-5%205.3zm5.3-13.8v3a.472.472%200%200%201-.5.5h-2a.472.472%200%200%201-.5-.5.472.472%200%200%201%20.5-.5h1.5v-.5h-.5a.472.472%200%200%201-.5-.5.472.472%200%200%201%20.5-.5h.5V2h-1.5a.472.472%200%200%201-.5-.5.472.472%200%200%201%20.5-.5h2a.472.472%200%200%201%20.5.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-symbol() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2017a1%201%200%200%201-1%201h-5a1%201%200%200%201%200-2h1.55A8.4%208.4%200%200%200%2016%209.97C16%205.57%2012.86%202%209%202S2%205.57%202%209.97A8.4%208.4%200%200%200%204.45%2016H6a1%201%200%200%201%200%202H1a1%201%200%200%201%200-2h.84A10.546%2010.546%200%200%201%200%209.97C0%204.46%204.03%200%209%200s9%204.46%209%209.97A10.645%2010.645%200%200%201%2016.16%2016H17a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-cell-merge() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%2011a.945.945%200%200%201-1-1V8a.945.945%200%200%201%201-1%20.945.945%200%200%201%201%201v2a1%201%200%200%201-1%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1a1.075%201.075%200%200%200-1%201v16a1.075%201.075%200%200%200%201%201h16a1.075%201.075%200%200%200%201-1V1a1.075%201.075%200%200%200-1-1zM4%2016H2V2h2v14zm8%200h-2v-2a1.075%201.075%200%200%200-1-1%201.075%201.075%200%200%200-1%201v2H6V2h2v2a1.075%201.075%200%200%200%201%201%201.075%201.075%200%200%200%201-1V2h2v14zm4%200h-2V2h2v14z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-cell-properties() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.667%2014.333h-.254a.332.332%200%200%201-.233-.57l.177-.177a.336.336%200%200%200%200-.473l-.47-.47a.336.336%200%200%200-.473%200l-.17.17a.325.325%200%200%201-.244.107.334.334%200%200%201-.333-.333v-.254a.334.334%200%200%200-.334-.333h-.666a.334.334%200%200%200-.333.333v.253a.334.334%200%200%201-.334.334.325.325%200%200%201-.243-.107l-.17-.17a.336.336%200%200%200-.473%200l-.47.47a.336.336%200%200%200%200%20.473c.063.063.133.123.193.19a.306.306%200%200%201%20.083.224.334.334%200%200%201-.333.333h-.254a.334.334%200%200%200-.333.333v.667a.334.334%200%200%200%20.333.333h.253a.334.334%200%200%201%20.334.334.306.306%200%200%201-.083.223c-.06.067-.13.127-.193.19a.336.336%200%200%200%200%20.473l.47.47a.336.336%200%200%200%20.473%200l.17-.17A.325.325%200%200%201%2014%2017.08a.334.334%200%200%201%20.333.333v.253a.334.334%200%200%200%20.333.333h.667a.334.334%200%200%200%20.333-.334v-.253A.334.334%200%200%201%2016%2017.08a.325.325%200%200%201%20.243.107l.17.17a.336.336%200%200%200%20.473%200l.47-.47a.336.336%200%200%200%200-.473l-.177-.177a.332.332%200%200%201%20.232-.57h.253a.334.334%200%200%200%20.335-.333v-.667a.334.334%200%200%200-.333-.334zM15%2016a1%201%200%201%201%201-1%201%201%200%200%201-1%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15%2010a4.955%204.955%200%200%201%203%201.023V1a1%201%200%200%200-1-1H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h10.023A4.978%204.978%200%200%201%2015%2010zm-5-8h6v6h-6V2zM8%2016H2v-6h6v6zm0-8H2V2h6v6z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-cell-split() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M4%202v14H2V2h2m1-2H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h4a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zm11%202v14h-2V2h2m1-2h-4a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h4a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zM9%205a1%201%200%200%201-1-1V2a1%201%200%200%201%202%200v2a1%201%200%200%201-1%201zm0%206a1%201%200%200%201-1-1V8a1%201%200%200%201%202%200v2a1%201%200%200%201-1%201zm0%206a1%201%200%200%201-1-1v-2a1%201%200%200%201%202%200v2a1%201%200%200%201-1%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-column-insert-after() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2015a1%201%200%200%201-1%201h-1v1a1%201%200%200%201-2%200v-1h-1a1%201%200%200%201%200-2h1v-1a1%201%200%200%201%202%200v1h1a1%201%200%200%201%201%201zM16%202v6h-2V2h2zm1-2h-4a1%201%200%200%200-1%201v8a1%201%200%200%200%201%201h4a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zM9%200H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h8a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zM4%2016H2V2h2v14zm4%200H6V2h2v14z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-column-insert-before() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6%2015a1%201%200%200%201-1%201H4v1a1%201%200%200%201-2%200v-1H1a1%201%200%200%201%200-2h1v-1a1%201%200%200%201%202%200v1h1a1%201%200%200%201%201%201zM4%202v6H2V2h2zm1-2H1a1%201%200%200%200-1%201v8a1%201%200%200%200%201%201h4a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zm12%200H9a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h8a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zm-5%2016h-2V2h2v14zm4%200h-2V2h2v14z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-column-remove() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%201a1%201%200%200%200-1-1H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h10.02A4.98%204.98%200%200%201%2010%2015V2h2v9.024a4.953%204.953%200%200%201%202-.923V2h2v8.116a5.077%205.077%200%200%201%202%20.9V1zM4%2016H2V2h2v14zm4%200H6V2h2v14z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%2014h4a1%201%200%200%201%201%201%201%201%200%200%201-1%201h-4a1%201%200%200%201-1-1%201%201%200%200%201%201-1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-delete() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1C.4%200%200%20.5%200%201v16c0%20.6.5%201%201%201h8c.6%200%201-.5%201-1v-2c0-2.8%202.2-5%205-5h2c.6%200%201-.5%201-1V1c0-.6-.4-1-1-1zM4%2016H2v-2h2v2zm0-4H2v-2h2v2zm0-4H2V6h2v2zm0-4H2V2h2v2zm4%2012H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V6h2v2zm0-4H6V2h2v2zm4%204h-2V6h2v2zm0-4h-2V2h2v2zm4%204h-2V6h2v2zm0-4h-2V2h2v2z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2015c0%20.6-.5%201-1%201h-4c-.6%200-1-.5-1-1s.5-1%201-1h4c.6%200%201%20.4%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-properties() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.667%2014.333h-.253a.332.332%200%200%201-.233-.57l.178-.177a.336.336%200%200%200%200-.473l-.47-.47a.336.336%200%200%200-.473%200l-.17.17a.33.33%200%200%201-.245.107.334.334%200%200%201-.333-.333v-.253a.334.334%200%200%200-.333-.334h-.667a.334.334%200%200%200-.333.333v.253a.334.334%200%200%201-.334.334.322.322%200%200%201-.243-.107l-.17-.17a.336.336%200%200%200-.473%200l-.47.47a.336.336%200%200%200%200%20.473c.063.063.133.123.193.19a.306.306%200%200%201%20.083.224.334.334%200%200%201-.333.333h-.252a.334.334%200%200%200-.333.333v.667a.334.334%200%200%200%20.333.333h.253a.334.334%200%200%201%20.333.333.306.306%200%200%201-.082.222c-.06.067-.13.127-.193.19a.336.336%200%200%200%200%20.473l.47.47a.336.336%200%200%200%20.473%200l.17-.17a.324.324%200%200%201%20.242-.108.334.334%200%200%201%20.333.333v.253a.334.334%200%200%200%20.333.333h.667a.334.334%200%200%200%20.333-.333v-.253a.334.334%200%200%201%20.334-.333.322.322%200%200%201%20.243.107l.17.17a.336.336%200%200%200%20.473%200l.47-.47a.336.336%200%200%200%200-.473l-.177-.176a.332.332%200%200%201%20.232-.57h.253A.334.334%200%200%200%2018%2015.33v-.666a.33.33%200%200%200-.33-.33zM15%2016a1%201%200%201%201%201-1%201%201%200%200%201-1%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h10.02A4.98%204.98%200%200%201%2018%2011.02V1a1%201%200%200%200-1-1zM4%2016H2v-2h2v2zm0-4H2v-2h2v2zm0-4H2V6h2v2zm0-4H2V2h2v2zm4%2012H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V6h2v2zm0-4H6V2h2v2zm4%204h-2V6h2v2zm0-4h-2V2h2v2zm4%204h-2V6h2v2zm0-4h-2V2h2v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-copy() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%205a1.075%201.075%200%200%200-1-1H5a1.075%201.075%200%200%200-1%201v12a1.075%201.075%200%200%200%201%201h12a1.075%201.075%200%200%200%201-1V5zM6%206h10v2H6V6zm10%2010H6v-2h10v2zM6%2012v-2h10v2H6z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14%201v1H2v4H1a1%201%200%200%201-1-1V1a1%201%200%200%201%201-1h12a1%201%200%200%201%201%201zm-4%2017z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-cut() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%208h-4l-1.3-1%201.8-1.2a3.6%203.6%200%200%200%201.1.2%203.01%203.01%200%200%200%203-3%202.946%202.946%200%200%200-3-3%203.076%203.076%200%200%200-3%203v.4L10%204.9l-.5.5L7.6%204%205.8%202.6a1.58%201.58%200%200%200-2.2.4l1%201H.8a.713.713%200%200%200-.8.7V17a1%201%200%200%200%201%201h16a1.075%201.075%200%200%200%201-1V9a1%201%200%200%200-1-1zm-2.4-6a1%201%200%200%201%201%201%20.945.945%200%200%201-1%201%201.075%201.075%200%200%201-1-1%201%201%200%200%201%201-1zM2%206h4.8l1.1%201-1%201H2V6zm14%2010H2v-2h14v2zm0-4H2v-2h14v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-insert-after() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M3%2012a1%201%200%200%201%201%201v1h1a1%201%200%200%201%200%202H4v1a1%201%200%200%201-2%200v-1H1a1%201%200%200%201%200-2h1v-1a1%201%200%200%201%201-1zm7%202h6v2h-6v-2zm-2-1v4a1%201%200%200%200%201%201h8a1%201%200%200%200%201-1v-4a1%201%200%200%200-1-1H9a1%201%200%200%200-1%201zM0%201v8a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1H1a1%201%200%200%200-1%201zm16%205v2H2V6h14zm0-4v2H2V2h14z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-insert-before() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M3%200a1%201%200%200%201%201%201v1h1a1%201%200%200%201%200%202H4v1a1%201%200%200%201-2%200V4H1a1%201%200%200%201%200-2h1V1a1%201%200%200%201%201-1zm7%202h6v2h-6V2zM8%201v4a1%201%200%200%200%201%201h8a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1H9a1%201%200%200%200-1%201zM0%209v8a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V9a1%201%200%200%200-1-1H1a1%201%200%200%200-1%201zm16%205v2H2v-2h14zm0-4v2H2v-2h14z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-paste-above() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%202v2h-4V2h4zm1-2h-6a1%201%200%200%200-1%201v4a1%201%200%200%200%201%201h6a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zM6%204V3a1%201%200%200%200-1-1c0-.5-.4-2-1-2S3%201.5%203%202a1%201%200%200%200-1%201v1a2.094%202.094%200%200%200-2%202.1V16a2.03%202.03%200%200%200%202.1%202H6a2.03%202.03%200%200%200%202-2.1V6.1A2.03%202.03%200%200%200%206%204zm-2%209c-1.1%200-2-1.3-2-3s.9-3%202-3%202%201.3%202%203-.9%203-2%203zm13-5h-6a1%201%200%200%200-1%201v8a1%201%200%200%200%201%201h6a1%201%200%200%200%201-1V9a1%201%200%200%200-1-1zm-5%202h4v2h-4v-2zm4%206h-4v-2h4v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-paste-below() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%2014v2h-4v-2h4zm1-2h-6a1%201%200%200%200-1%201v4a1%201%200%200%200%201%201h6a1%201%200%200%200%201-1v-4a1%201%200%200%200-1-1zM6%204V3a1%201%200%200%200-1-1c0-.5-.4-2-1-2S3%201.5%203%202a1%201%200%200%200-1%201v1a2.094%202.094%200%200%200-2%202.1V16a2.03%202.03%200%200%200%202.1%202H6a2.03%202.03%200%200%200%202-2.1V6.1A2.03%202.03%200%200%200%206%204zm-2%209c-1.1%200-2-1.3-2-3s.9-3%202-3%202%201.3%202%203-.9%203-2%203zM17%200h-6a1%201%200%200%200-1%201v8a1%201%200%200%200%201%201h6a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zm-5%202h4v2h-4V2zm4%206h-4V6h4v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-properties() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.667%2014.333h-.253a.332.332%200%200%201-.233-.57l.178-.177a.336.336%200%200%200%200-.473l-.47-.47a.336.336%200%200%200-.473%200l-.17.17a.33.33%200%200%201-.245.107.334.334%200%200%201-.333-.333v-.253a.334.334%200%200%200-.333-.334h-.667a.334.334%200%200%200-.333.333v.253a.334.334%200%200%201-.334.334.322.322%200%200%201-.243-.107l-.17-.17a.336.336%200%200%200-.473%200l-.47.47a.336.336%200%200%200%200%20.473c.063.063.133.123.193.19a.306.306%200%200%201%20.083.223.334.334%200%200%201-.333.332h-.252a.334.334%200%200%200-.333.333v.667a.334.334%200%200%200%20.333.333h.253a.334.334%200%200%201%20.333.333.306.306%200%200%201-.082.223c-.06.068-.13.128-.193.19a.336.336%200%200%200%200%20.474l.47.47a.336.336%200%200%200%20.473%200l.17-.17a.324.324%200%200%201%20.242-.107.334.334%200%200%201%20.333.333v.253a.334.334%200%200%200%20.333.333h.667a.334.334%200%200%200%20.333-.333v-.253a.334.334%200%200%201%20.334-.333.322.322%200%200%201%20.243.107l.17.17a.336.336%200%200%200%20.473%200l.47-.47a.336.336%200%200%200%200-.473l-.177-.176a.332.332%200%200%201%20.232-.57h.253A.334.334%200%200%200%2018%2015.33v-.666a.33.33%200%200%200-.333-.33zM15%2016a1%201%200%201%201%201-1%201%201%200%200%201-1%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h10.02a5.064%205.064%200%200%201-.9-2H2v-2h8.1a4.944%204.944%200%200%201%20.923-2H2v-2h13a4.98%204.98%200%200%201%203%201.02V1a1%201%200%200%200-1-1zm-1%208H2V6h14v2zm0-4H2V2h14v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-table-row-remove() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h10.02a5.064%205.064%200%200%201-.9-2H2v-2h8.1a4.944%204.944%200%200%201%20.923-2H2v-2h13a4.98%204.98%200%200%201%203%201.02V1a1%201%200%200%200-1-1zm-1%208H2V6h14v2zm0-4H2V2h14v2z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%2014h4a1%201%200%200%201%201%201%201%201%200%200%201-1%201h-4a1%201%200%200%201-1-1%201%201%200%200%201%201-1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-html-editor-underline() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2017a1%201%200%200%201-1%201H1a1%201%200%200%201%200-2h16a1%201%200%200%201%201%201zM15%201v7.2a9.115%209.115%200%200%201-.76%204.15q-1.38%202.64-5.25%202.64-3.855%200-5.23-2.64A9.115%209.115%200%200%201%203%208.2V1a1%201%200%200%201%202%200v8.02a5.2%205.2%200%200%200%20.7%202.65%203.33%203.33%200%200%200%203.13%201.59c1.75%200%202.95-.57%203.58-1.72A5.205%205.205%200%200%200%2013%209.02V1a1%201%200%200%201%202%200z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-accelerator() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M14%208a1.6%201.6%200%200%201-.359.85l-.419.593-5.728%208.1A.929.929%200%200%201%206.73%2018a.9.9%200%200%201-.71-.38%201.038%201.038%200%200%201-.2-.62c.01-.186.056-.369.137-.537l.13-.318C6.158%2015.97%208.19%2011%208.2%2011c-.289%200-3.047.016-3.335%200A.978.978%200%200%201%204%2010.091c.02-.43.198-.836.5-1.142L10.224.863a3.41%203.41%200%200%201%20.539-.681.865.865%200%200%201%201.279.271%201.76%201.76%200%200%201-.18%201.583L9.934%207h2.554a2.247%202.247%200%200%201%201%20.105c.28.15.467.43.5.746.008.05.012.1.012.149z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-access-special() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%200a5%205%200%200%200-5%205%204.88%204.88%200%200%200%20.35%201.829c-.01.01-.03.02-.04.03L4.3%2010.881%202.707%209.293a1%201%200%200%200-1.414%201.414L2.882%2012.3l-.585.587-.59-.589a1%201%200%201%200-1.414%201.41l.591.59-.29.291a1.974%201.974%200%200%200%200%202.819%201.975%201.975%200%200%200%202.82%200l7.727-7.718c.01-.01.02-.03.03-.04A4.881%204.881%200%200%200%2013%2010a5%205%200%200%200%200-10zm0%207a2%202%200%201%201%202-2%202%202%200%200%201-2%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-add() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%200H2a2.006%202.006%200%200%200-2%202v14a2.006%202.006%200%200%200%202%202h14a2.006%202.006%200%200%200%202-2V2a2.006%202.006%200%200%200-2-2zm0%2010a1%201%200%200%201-1%201h-4v4a1%201%200%200%201-1%201H8a1%201%200%200%201-1-1v-4H3a1%201%200%200%201-1-1V8a1%201%200%200%201%201-1h4V3a1%201%200%200%201%201-1h2a1%201%200%200%201%201%201v4h4a1%201%200%200%201%201%201v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-add-file() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%2013a1%201%200%200%201-1%201h-1v1a1%201%200%200%201-2%200v-1h-1a1%201%200%200%201%200-2h1v-1a1%201%200%200%201%202%200v1h1a1%201%200%200%201%201%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.6%200H2.4A1.417%201.417%200%200%200%201%201.43v15.14A1.417%201.417%200%200%200%202.4%2018h11.2a1.355%201.355%200%200%200%20.2-.02A4.992%204.992%200%200%201%2014%208a5.468%205.468%200%200%201%201%20.1V1.43A1.417%201.417%200%200%200%2013.6%200zM6%2012H4a1%201%200%200%201%200-2h2a1%201%200%200%201%200%202zm3-4H4a1%201%200%200%201%200-2h5a1%201%200%200%201%200%202zm3-4H4.03a1%201%200%200%201%200-2H12a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-add-message() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.99%2011.5a1%201%200%200%201-1%201h-2v2a1%201%200%200%201-2%200v-2h-2a1%201%200%200%201%200-2h2v-2a1%201%200%200%201%202%200v2h2a1%201%200%200%201%201%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14%205.5a5.968%205.968%200%200%201%204%201.537V3.5a2.006%202.006%200%200%200-2-2H2a1.5%201.5%200%200%200-.37.04A1.98%201.98%200%200%200%20.04%203.13%201.5%201.5%200%200%200%200%203.5v8a1.5%201.5%200%200%200%20.04.37%201.98%201.98%200%200%200%201.59%201.59%201.5%201.5%200%200%200%20.37.04v2a.987.987%200%200%200%20.62.92.84.84%200%200%200%20.38.08%201.007%201.007%200%200%200%20.71-.29L6%2013.5h2.35a5.986%205.986%200%200%201%205.65-8z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-add-to-lor() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M12%2011.023V6h2v4.1a5.012%205.012%200%200%201%202%200V3a.522.522%200%200%200-.32-.47L9.18.03a.554.554%200%200%200-.36%200l-6.5%202.5A.522.522%200%200%200%202%203v9H1a1%201%200%200%200-1%201v4a1%201%200%200%200%201%201h10.023A4.937%204.937%200%200%201%2012%2011.023zM6%2012H4V6h2v6zm2-6h2v6H8V6z%22%2F%3E%3Cpath%20d%3D%22M18%2015a1%201%200%200%201-1%201h-1v1a1%201%200%200%201-2%200v-1h-1a1%201%200%200%201%200-2h1v-1a1%201%200%200%201%202%200v1h1a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-add-user() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M4.614%200h-.228a3.27%203.27%200%200%200-3.261%203.261v1.353a3.27%203.27%200%200%200%203.261%203.261h.228a3.27%203.27%200%200%200%203.261-3.261V3.261A3.27%203.27%200%200%200%204.614%200zM18%2013a1%201%200%200%201-1%201h-3v3a1%201%200%200%201-2%200v-3H9a1%201%200%200%201%200-2h3V9a1%201%200%200%201%202%200v3h3a1%201%200%200%201%201%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6%2013a2.994%202.994%200%200%201%201.677-2.679A4.494%204.494%200%200%200%200%2013.5v3a1.491%201.491%200%200%200%201.5%201.49l6%20.01A1.5%201.5%200%200%200%209%2016.5V16a3%203%200%200%201-3-3z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-alarmbell() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M16.349%2013c-.794-.774-1.194-1.144-1.194-4A6.925%206.925%200%200%200%2012%203v-.6A2.372%202.372%200%200%200%209.615%200H8.384A2.372%202.372%200%200%200%206%202.4V3a6.926%206.926%200%200%200-3.155%206c0%202.856-.4%203.226-1.194%204-.93.906-.93%202%20.431%202H6a2.881%202.881%200%200%200%203%203%202.855%202.855%200%200%200%203-3h3.918c1.361%200%201.361-1.094.431-2zM10%2015.058a.945.945%200%200%201-.942.942h-.116A.945.945%200%200%201%208%2015.058v-.116A.945.945%200%200%201%208.942%2014h.116c.52.002.94.422.942.942v.116z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-alert() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.79%2015.11l-7-14a2%202%200%200%200-3.58%200l-7%2014a1.975%201.975%200%200%200%20.09%201.94A2%202%200%200%200%202%2018h14a1.994%201.994%200%200%200%201.7-.95%201.967%201.967%200%200%200%20.09-1.94zM9%2016a1.5%201.5%200%201%201%201.5-1.5A1.5%201.5%200%200%201%209%2016zm.98-4.806a1%201%200%200%201-1.96%200l-.99-5A1%201%200%200%201%208.01%205h1.983a1%201%200%200%201%20.98%201.194z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-collapse() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.707%205.707l-8%208a1%201%200%200%201-1.414%200l-8-8A1%201%200%200%201%201%204h16a1%201%200%200%201%20.924.617A.97.97%200%200%201%2018%205a1%201%200%200%201-.293.707z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-collapse-small() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M10.708.29c-.19-.19-.45-.29-.71-.29H2.002c-.26%200-.52.1-.71.29-.39.4-.39%201.03%200%201.42l3.998%204c.2.19.45.29.71.29.26%200%20.51-.1.71-.29l3.998-4a1.01%201.01%200%200%200%200-1.42z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-expand() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M5%2018a.987.987%200%200%201-.383-.076A1%201%200%200%201%204%2017V1A1%201%200%200%201%205.707.293l8%208a1%201%200%200%201%200%201.414l-8%208A1%201%200%200%201%205%2018zM6%203.414v11.172L11.586%209z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-expand-small() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6%2014V6c0-.4.2-.8.6-.9s.8-.1%201.1.2l4%204c.4.4.4%201%200%201.4l-4%204c-.3.3-.7.4-1.1.2-.4-.1-.6-.5-.6-.9zm2-5.6v3.2L9.6%2010%208%208.4z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-thin-down() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M13.9%2011.583a1%201%200%200%200-.9-.571h-3V1a1%201%200%201%200-2%200v10.012H5a1%201%200%200%200-.9.571.983.983%200%200%200%20.12%201.051l4%205.006a1.024%201.024%200%200%200%201.56%200l4-5.006a.983.983%200%200%200%20.12-1.051z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-thin-left() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M6.417%204.1a1%201%200%200%201%20.571.9v3H17a1%201%200%200%201%200%202H6.988v3a1%201%200%200%201-.571.9.983.983%200%200%201-1.051-.12l-5.006-4a1.024%201.024%200%200%201%200-1.56l5.006-4a.983.983%200%200%201%201.051-.12z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-thin-right() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M11.583%204.1a1%201%200%200%200-.571.9v3H1a1%201%200%201%200%200%202h10.012v3a1%201%200%200%200%20.571.9.983.983%200%200%200%201.051-.12l5.006-4a1.024%201.024%200%200%200%200-1.56l-5.006-4a.983.983%200%200%200-1.051-.12z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-thin-up() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M13.9%206.417a1%201%200%200%201-.9.571h-3V17a1%201%200%200%201-2%200V6.988H5a1%201%200%200%201-.9-.571.983.983%200%200%201%20.12-1.051l4-5.006a1.024%201.024%200%200%201%201.56%200l4%205.006a.983.983%200%200%201%20.12%201.051z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-toggle-down() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.708%206.29A1.006%201.006%200%200%200%2013%206H5.005A1%201%200%200%200%204.3%207.71l4%204a1.013%201.013%200%200%200%201.42%200l4-4a1.01%201.01%200%200%200-.013-1.42z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-arrow-toggle-up() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.7%2010.29l-4-4a1.012%201.012%200%200%200-1.418%200l-4%204A1%201%200%200%200%205.007%2012H13a1%201%200%200%200%20.7-1.71z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-assignments() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2012v5a1%201%200%200%201-1%201H1a1%201%200%200%201-1-1v-5a1%201%200%200%201%202%200v4h14v-4a1%201%200%200%201%202%200z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.85%203.15l-2.99-3A.507.507%200%200%200%2010.5%200H5.4A1.417%201.417%200%200%200%204%201.43v11.14A1.417%201.417%200%200%200%205.4%2014h7.2a1.417%201.417%200%200%200%201.4-1.43V3.5a.47.47%200%200%200-.15-.35zM7%202h1a1%201%200%200%201%200%202H7a1%201%200%200%201%200-2zm4%2010H7a1%201%200%200%201%200-2h4a1%201%200%200%201%200%202zm0-4H7a1%201%200%200%201%200-2h4a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-attach() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.85%203.15l-2.99-3A.508.508%200%200%200%2012.5%200h-1.05A3.9%203.9%200%200%201%2012%202v9a4.03%204.03%200%200%201-4%204%204.012%204.012%200%200%201-4-4V4a1%201%200%200%201%202%200v7a2%202%200%200%200%204%200V2a2.006%202.006%200%200%200-2-2H3.4A1.417%201.417%200%200%200%202%201.43v15.14A1.417%201.417%200%200%200%203.4%2018h11.2a1.417%201.417%200%200%200%201.4-1.43V3.5a.47.47%200%200%200-.15-.35z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-attendance() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6.9%200h.2A2.9%202.9%200%200%201%2010%202.9v1.2A2.9%202.9%200%200%201%207.1%207h-.2A2.9%202.9%200%200%201%204%204.1V2.9A2.9%202.9%200%200%201%206.9%200zm7.91%204.58l-4.15%205.82c.226.503.341%201.049.34%201.6v4.67A1.336%201.336%200%200%201%209.67%2018l-5.34-.01A1.327%201.327%200%200%201%203%2016.67V12a4.012%204.012%200%200%201%204-4%203.9%203.9%200%200%201%202.36.79l3.83-5.37a1%201%200%200%201%201.62%201.16z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-awards() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.3%202.41A1.919%201.919%200%200%200%2016.049%202%204.394%204.394%200%200%200%2014%202.62V2a1.862%201.862%200%200%200-1.67-2H5.67A1.862%201.862%200%200%200%204%202v.62A4.394%204.394%200%200%200%201.951%202%201.919%201.919%200%200%200%20.7%202.41c-1.28%201.05-.76%203.8%201.17%206.15a7.23%207.23%200%200%200%204.15%202.73%204.275%204.275%200%200%200%20.99.43V14H7a.988.988%200%200%200-.89.55l-1.01%202a.986.986%200%200%200%20.04.97%201%201%200%200%200%20.85.48H12a1%201%200%200%200%20.89-1.45l-1-2a1.007%201.007%200%200%200-.87-.55v-2.29a4.011%204.011%200%200%200%20.96-.42%207.23%207.23%200%200%200%204.149-2.73c1.93-2.35%202.45-5.1%201.171-6.15zM3.421%207.29A5.262%205.262%200%200%201%202%204a4%204%200%200%201%202%201.05V7c0%20.15.01.3.02.45.01.12.02.23.04.35a.761.761%200%200%200%20.03.21%207.923%207.923%200%200%201-.669-.72zm11.158%200a7.923%207.923%200%200%201-.67.72l.03-.21c.02-.12.03-.23.04-.35.01-.15.021-.3.021-.45V5.05A4%204%200%200%201%2016%204a5.262%205.262%200%200%201-1.421%203.29z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-binder() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.6%200H4.4A1.39%201.39%200%200%200%203%201.4V3H2a1%201%200%200%200%200%202h1v3H2a1%201%200%200%200%200%202h1v3H2a1%201%200%200%200%200%202h1v1.54A1.444%201.444%200%200%200%204.4%2018h11.2a1.444%201.444%200%200%200%201.4-1.46V1.43A1.417%201.417%200%200%200%2015.6%200zM5.5%2015.5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88%201.48%201.48%200%200%201%201.16-.56%201.5%201.5%200%200%201%200%203zm0-5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88A1.48%201.48%200%200%201%205.5%207.5a1.5%201.5%200%200%201%200%203zm0-5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88A1.48%201.48%200%200%201%205.5%202.5a1.5%201.5%200%200%201%200%203z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-blocked() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zM2%209a6.992%206.992%200%200%201%2011.19-5.6L3.4%2013.19A6.945%206.945%200%200%201%202%209zm7%207a6.944%206.944%200%200%201-4.19-1.4l9.79-9.79A6.992%206.992%200%200%201%209%2016z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-blog() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%3E%3Ccircle%20cx%3D%223.5%22%20cy%3D%2213.5%22%20r%3D%221.5%22%2F%3E%3Ccircle%20cx%3D%222%22%20cy%3D%2217%22%20r%3D%221%22%2F%3E%3Cpath%20d%3D%22M18.99%206.24a5.482%205.482%200%200%200-5.26-5.23%204.966%204.966%200%200%200-1.39.27l-.15-.12A4.936%204.936%200%200%200%209%200a4.987%204.987%200%200%200-2.94.95H6a5%205%200%200%200-5%205%201.1%201.1%200%200%200%20.02.26A1.366%201.366%200%200%200%201%206.5%205.5%205.5%200%200%200%206.5%2012c.255%200%20.509-.02.76-.06a5.481%205.481%200%200%200%206.41.05A5.487%205.487%200%200%200%2019%206.5a2.173%202.173%200%200%200-.01-.26zM5%203h6a1%201%200%200%201%200%202H5a1%201%200%201%201%200-2zm10%205.975H5a1%201%200%201%201%200-2h10a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-book-management() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M10.05%203.66a1.114%201.114%200%200%201-.05-.31%201%201%200%200%201%20.7-.95l1.95-.62a.992.992%200%200%201%201.25.65l3.08%209.64a1%201%200%200%201-.65%201.26l-1.95.62a1.047%201.047%200%200%201-.3.05%201%201%200%200%201-.95-.7z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%2014H9a1%201%200%200%200%201-1V3a1%201%200%200%200-1-1H7a1%201%200%200%200-1%201V1a1%201%200%200%200-1-1H2a1%201%200%200%200-1%201v12a1%201%200%200%200%201%201H1a1%201%200%200%200%200%202v1a1%201%200%200%200%202%200v-1h12v1a1%201%200%200%200%202%200v-1a1%201%200%200%200%200-2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-bookmark-filled() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%20.96V17.5a.5.5%200%200%201-.13.34.485.485%200%200%201-.37.16.5.5%200%200%201-.34-.13L9%2014.99l-3.14%202.86-.02.02a.5.5%200%200%201-.34.13.485.485%200%200%201-.37-.16.5.5%200%200%201-.13-.34V.96A.96.96%200%200%201%205.96%200h6.08a.96.96%200%200%201%20.96.96z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-bookmark-hollow() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.04%200H5.96A.96.96%200%200%200%205%20.96V17.5a.513.513%200%200%200%20.13.34.484.484%200%200%200%20.36.16h.01a.513.513%200%200%200%20.34-.13l.02-.02L9%2014.99l3.16%202.88a.513.513%200%200%200%20.34.13h.01a.484.484%200%200%200%20.36-.16.513.513%200%200%200%20.13-.34V.96a.96.96%200%200%200-.96-.96zM11%2014.11l-.65-.6-1.03-.93a.472.472%200%200%200-.32-.12.487.487%200%200%200-.33.13c-.01%200-1.02.92-1.02.92l-.65.6V2.5a.5.5%200%200%201%20.5-.5h3a.5.5%200%200%201%20.5.5v11.61z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-broken-link() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.794%2010.63l-.11-.6-.794.385a4.014%204.014%200%200%200-4.82-1.01l-1.808.88a4.022%204.022%200%201%200%203.52%207.234l1.81-.88a4.015%204.015%200%200%200%202.178-4.417l.8-.39.073-1.075zm-3.082%204.2l-1.808.88a2.01%202.01%200%200%201-1.76-3.618l1.807-.88a2.007%202.007%200%200%201%202%20.143l-1.563.76a1.005%201.005%200%201%200%20.88%201.81l1.564-.762a2.008%202.008%200%200%201-1.118%201.668zM17.5%202.08A4.02%204.02%200%200%200%2012.033.5l-1.76.972a4.015%204.015%200%200%200-1.95%204.52l-.74.408.017.452.87.084.03.398V8.2l.8-.444a4.014%204.014%200%200%200%204.865.76l1.76-.97A4.02%204.02%200%200%200%2017.5%202.08zm-2.55%203.7l-1.76.972a2.007%202.007%200%200%201-2.01-.04l1.52-.837a1.005%201.005%200%201%200-.97-1.76l-1.524.84a2.007%202.007%200%200%201%201.037-1.722L13%202.263a2.012%202.012%200%200%201%201.948%203.52z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-browser() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M17.94%208A9.03%209.03%200%200%200%2011%20.22a9.2%209.2%200%200%200-4%200%209.01%209.01%200%200%200%200%2017.56c.33.074.664.127%201%20.16.664.08%201.336.08%202%200%20.336-.033.67-.086%201-.16A9.03%209.03%200%200%200%2017.94%2010c.08-.664.08-1.336%200-2zM7%202.29A8.926%208.926%200%200%200%204.06%208H2.08A6.993%206.993%200%200%201%207%202.29zM2.08%2010h1.98A8.926%208.926%200%200%200%207%2015.71%206.993%206.993%200%200%201%202.08%2010zM8%2013.89A6.919%206.919%200%200%201%206.08%2010H8v3.89zM8%208H6.08A6.919%206.919%200%200%201%208%204.11V8zm2-3.89A6.919%206.919%200%200%201%2011.92%208H10V4.11zm0%209.78V10h1.92A6.919%206.919%200%200%201%2010%2013.89zm1%201.82A8.926%208.926%200%200%200%2013.94%2010h1.98A6.993%206.993%200%200%201%2011%2015.71zM13.94%208A8.926%208.926%200%200%200%2011%202.29%206.993%206.993%200%200%201%2015.92%208h-1.98z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-bullet() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Ccircle%20cx%3D%229%22%20cy%3D%229%22%20r%3D%222.5%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-bullseye() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M5%203.26v.251l1.283%201.3.15.153%203.275%203.321a1%201%200%200%201%20.279.651c0%20.022.013.041.013.064a.889.889%200%200%201-.068.333.991.991%200%200%201-.207.343.106.106%200%200%201-.017.026.062.062%200%200%201-.017.011.981.981%200%200%201-.339.21A.9.9%200%200%201%209%2010c-.02%200-.036-.01-.056-.011a.992.992%200%200%201-.659-.281l-2-1.97-1.474-1.455L3.511%205h-1a.548.548%200%200%201-.355-.169l-.714-.707L.147%202.84A.49.49%200%200%201%20.5%202H2V.5a.49.49%200%200%201%20.84-.353l1.991%202.009A.548.548%200%200%201%205%202.511z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M.515%206.021l.232.229a2.565%202.565%200%200%200%201.553.729A7.005%207.005%200%201%200%206.98%202.3%202.559%202.559%200%200%200%206.252.748L6.021.515A9.026%209.026%200%201%201%20.515%206.021z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.132%206.881L8.355%204.065A4.91%204.91%200%200%201%209%204a5%205%200%201%201-5%205%204.91%204.91%200%200%201%20.065-.645l2.812%202.774h.015a2.995%202.995%200%200%200%204.3-4.166.592.592%200%200%200-.06-.082z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-calculate() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15%200H3a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h12a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zM5%2016a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm4%208a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm4%208a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-calendar() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%203h-3V1a1%201%200%200%200-2%200v2H6V1a1%201%200%200%200-2%200v2H1a1%201%200%200%200-1%201v13a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V4a1%201%200%200%200-1-1zm-1%2013H2V9h14v7z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-change-file() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M6%2013.02a1%201%200%200%200%201%201%201.02%201.02%200%200%200%20.79-.38l.04-.06A6.177%206.177%200%200%201%2011%2011.15a3.663%203.663%200%200%201%201-.15v1.02a.976.976%200%200%200%20.55.87%201%201%200%200%200%201.05-.09l4-3a1%201%200%200%200%200-1.6l-4-3a.99.99%200%200%200-1.05-.09.988.988%200%200%200-.55.87V7c-2.15%200-5.91%203.1-6%206.02z%22%2F%3E%3Cpath%20d%3D%22M1.4%200h11.2c.781.01%201.407.649%201.4%201.43v1.748a2.782%202.782%200%200%200-2.042.033A.955.955%200%200%200%2012%203a1%201%200%200%200-1-1H3a1%201%200%201%200%200%202h7.789a2.97%202.97%200%200%200-.726%201.391A8.57%208.57%200%200%200%208.822%206H3a1%201%200%201%200%200%202h3.322a9.775%209.775%200%200%200-1.455%202H3a1%201%200%200%200%200%202h1.125a3.685%203.685%200%200%200%20.053%202H3a1%201%200%200%200%200%202h8a1%201%200%200%200%201-1%20.961.961%200%200%200-.043-.212%202.83%202.83%200%200%200%202.043.038v1.714A1.444%201.444%200%200%201%2012.6%2018H1.4A1.443%201.443%200%200%201%200%2016.54V1.4A1.391%201.391%200%200%201%201.4%200z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chat() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15%2011c0%202.76-3.36%205-7.5%205a7.865%207.865%200%200%201-.84-.04c-.25-.01-.5-.04-.74-.07l-.33-.06-1.88%201.88A1.007%201.007%200%200%201%203%2018a1.015%201.015%200%200%201-1-1l-.01-2.61a5.26%205.26%200%200%201-.75-.64%204.064%204.064%200%200%201-1.2-2.24A2.926%202.926%200%200%201%200%2011v-.03c.02-2.55%202.9-4.64%206.61-4.93h.01A8.516%208.516%200%200%201%207.5%206c4.14%200%207.5%202.24%207.5%205zm3-8.5a1.96%201.96%200%200%201-1%201.57V5.5a.512.512%200%200%201-.28.45.545.545%200%200%201-.22.05.472.472%200%200%201-.3-.1l-1.32-1.02h-.01A7.6%207.6%200%200%201%2013.5%205C11.01%205%209%203.88%209%202.5%209%201.48%2010.09.61%2011.66.22A7.606%207.606%200%200%201%2013.5%200c2.33%200%204.25.98%204.48%202.24a2.272%202.272%200%200%201%20.02.26z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-check() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.47%2011.35l7.94-8.382c.57-.6%201.52-.627%202.122-.057.6.57.627%201.52.057%202.123l-9%209.5-.016.014-.014.015c-.58.582-1.52.586-2.106.015l-.02-.02-3.995-3.994a1.496%201.496%200%200%201%200-2.12%201.498%201.498%200%200%201%202.12%200l2.91%202.91z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-check-circle() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm4.49%206.924l-5.02%205.51a.983.983%200%200%201-1.442%200l-2.48-2.482a.983.983%200%200%201%20.008-1.417%201.027%201.027%200%200%201%201.4.02L7.712%2010.3l4.3-4.73a1.018%201.018%200%200%201%201.4-.075%201.006%201.006%200%200%201%20.078%201.43z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-checklist() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zM3.5%2016A1.5%201.5%200%201%201%205%2014.5%201.5%201.5%200%200%201%203.5%2016zm0-5A1.5%201.5%200%201%201%205%209.5%201.5%201.5%200%200%201%203.5%2011zm3.208-7.283l-1.954%201.96a1.106%201.106%200%200%201-.958.307%207.17%207.17%200%200%201-1.338-.773%201%201%200%200%201%201.08-1.684l.32.2%201.43-1.434a1.006%201.006%200%201%201%201.42%201.425zM15%2016H9a1%201%200%200%201%200-2h6a1%201%200%200%201%200%202zm0-5H9a1%201%200%200%201%200-2h6a1%201%200%200%201%200%202zm0-5H9a1%201%200%200%201%200-2h6a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chevron-down() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M2.39%206.49a1.5%201.5%200%200%201%202.12-.1L9%2010.47l4.49-4.08a1.5%201.5%200%200%201%202.02%202.22L10%2013.62A1.474%201.474%200%200%201%209%2014a1.523%201.523%200%200%201-1-.38L2.49%208.61a1.5%201.5%200%200%201-.1-2.12z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chevron-down-medium() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.4%205.424L9%2010.522l-5.395-5.1a1.59%201.59%200%200%200-2.158%200%201.386%201.386%200%200%200-.08%201.958q.038.042.08.08l6.473%206.12a1.59%201.59%200%200%200%202.16%200l6.473-6.117a1.386%201.386%200%200%200%20.08-1.96q-.033-.04-.08-.078a1.59%201.59%200%200%200-2.153%200z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chevron-down-thin() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.71%201.71l-6%206a1.014%201.014%200%200%201-1.42%200l-6-6A1%201%200%200%201%201.71.29L7%205.58%2012.29.29a1%201%200%200%201%201.42%201.42z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chevron-left() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.39%2015.51L4.38%2010A1.524%201.524%200%200%201%204%209a1.474%201.474%200%200%201%20.38-1l5.01-5.51a1.5%201.5%200%200%201%202.22%202.02L7.53%209l4.08%204.49a1.5%201.5%200%200%201-2.22%202.02z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chevron-right() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M5.49%2015.61a1.5%201.5%200%200%201-.1-2.12L9.47%209%205.39%204.51a1.5%201.5%200%201%201%202.22-2.02L12.62%208A1.474%201.474%200%200%201%2013%209a1.524%201.524%200%200%201-.38%201l-5.01%205.51a1.5%201.5%200%200%201-2.12.1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-chevron-up() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M2.49%2010.39L8%205.38A1.524%201.524%200%200%201%209%205a1.474%201.474%200%200%201%201%20.38l5.51%205.01a1.5%201.5%200%200%201-2.02%202.22L9%208.53l-4.49%204.08a1.5%201.5%200%200%201-2.02-2.22z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-class() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M1%200h1v9.688c0%20.079.028.155.081.213a.3.3%200%200%200%20.231.1.316.316%200%200%200%20.213-.081L4.5%208l1.963%201.906.012.013a.316.316%200%200%200%20.213.081.3.3%200%200%200%20.231-.1A.314.314%200%200%200%207%209.688V0h4a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H1a1%201%200%200%201-1-1V1a1%201%200%200%201%201-1z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-classlist() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%200H1a1%201%200%200%200-1%201v16a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V1a1%201%200%200%200-1-1zm-6%206a2%202%200%200%201%204%200v1a2%202%200%200%201-4%200V6zm-4.293%207.707l-2%202a1%201%200%200%201-1.414%200l-1-1a1%201%200%200%201%201.414-1.414l.293.293%201.293-1.293a1%201%200%200%201%201.414%201.414zm0-5l-2%202a1%201%200%200%201-1.414%200l-1-1a1%201%200%201%201%201.414-1.414L4%208.586l1.293-1.293a1%201%200%200%201%201.414%201.414zm0-5l-2%202a1%201%200%200%201-1.414%200l-1-1a1%201%200%201%201%201.414-1.414L4%203.586l1.293-1.293a1%201%200%200%201%201.414%201.414zM16%2015a1%201%200%200%201-1%201l-4-.007A.994.994%200%200%201%2010%2015v-2a3%203%200%200%201%206%200v2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-close-circle() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm4.707%2012.293a1%201%200%201%201-1.414%201.414L9%2010.414l-3.293%203.293a1%201%200%200%201-1.414-1.414L7.586%209%204.293%205.707a1%201%200%200%201%201.414-1.414L9%207.586l3.293-3.293a1%201%200%200%201%201.414%201.414L10.414%209z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-close-default() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.708%2014.29a1.008%201.008%200%200%201%200%201.42%201.014%201.014%200%200%201-1.42%200L9%2010.42l-5.288%205.29a1.014%201.014%200%200%201-1.42%200%201.008%201.008%200%200%201%200-1.42L7.58%209%202.293%203.712a1.004%201.004%200%200%201%201.42-1.42L9%207.582l5.288-5.292a1.004%201.004%200%200%201%201.42%201.42L10.418%209z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-close-large() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.707%2016.29a1%201%200%200%201-1.41%201.42l-7.292-7.29L1.7%2017.71a1%201%200%200%201-1.41-1.42L7.585%209%20.293%201.712a1.008%201.008%200%200%201%200-1.42%201%201%200%200%201%201.41%200l7.3%207.3%207.292-7.3a1%201%200%200%201%201.41%200%201.008%201.008%200%200%201%200%201.42L10.415%209z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-close-large-thick() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.558%2015.44a1.49%201.49%200%200%201%200%202.12%201.5%201.5%200%200%201-2.12%200L9%2011.12l-6.438%206.44a1.5%201.5%200%200%201-2.12%200%201.49%201.49%200%200%201%200-2.12L6.88%209%20.442%202.563a1.5%201.5%200%200%201%202.12-2.12L9%206.883l6.438-6.44a1.5%201.5%200%200%201%202.12%202.12L11.12%209z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-close-small() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.708%2013.29a1.008%201.008%200%200%201%200%201.42%201.014%201.014%200%200%201-1.42%200L9%2010.42l-4.288%204.29a1.014%201.014%200%200%201-1.42%200%201.008%201.008%200%200%201%200-1.42L7.58%209%203.292%204.712a1.004%201.004%200%200%201%201.42-1.42L9%207.582l4.288-4.29a1.004%201.004%200%200%201%201.42%201.42L10.418%209z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-comment-filled() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.3%202.02A2.845%202.845%200%200%200%2015%202H3a3.009%203.009%200%200%200-3%203v5a3.009%203.009%200%200%200%203%203v2a1%201%200%200%200%20.58.91A1.059%201.059%200%200%200%204%2016a.969.969%200%200%200%20.65-.24L7.84%2013H15a2.829%202.829%200%200%200%20.3-.02A3%203%200%200%200%2018%2010V5a3%203%200%200%200-2.7-2.98z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-comment-hollow() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.3%202.02A2.845%202.845%200%200%200%2015%202H3a3.009%203.009%200%200%200-3%203v5a3.009%203.009%200%200%200%203%203v2a1%201%200%200%200%20.58.91A1.059%201.059%200%200%200%204%2016a.969.969%200%200%200%20.65-.24L7.84%2013H15a2.829%202.829%200%200%200%20.3-.02A3%203%200%200%200%2018%2010V5a3%203%200%200%200-2.7-2.98zM16%2010a1%201%200%200%201-.92.99.248.248%200%200%201-.08.01H7.09l-.56.49L5%2012.81V11H3a1.016%201.016%200%200%201-1-1V5a1.016%201.016%200%200%201%201-1h11.99c.03%200%20.06.01.11.01A1%201%200%200%201%2016%205z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-contacts() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.829%200h-11.2a1.391%201.391%200%200%200-1.4%201.382V3h-1a1%201%200%200%200%200%202h1v3h-1a1%201%200%200%200%200%202h1v3h-1a1%201%200%200%200%200%202h1v1.54a1.444%201.444%200%200%200%201.4%201.46h11.2a1.444%201.444%200%200%200%201.4-1.46V1.43a1.417%201.417%200%200%200-1.4-1.43zm-10.1%2015.5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88%201.48%201.48%200%200%201%201.16-.56%201.5%201.5%200%200%201%200%203zm0-5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88%201.48%201.48%200%200%201%201.16-.56%201.5%201.5%200%200%201%200%203zm0-5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88%201.48%201.48%200%200%201%201.16-.56%201.5%201.5%200%200%201%200%203zm9.376%203.781a1.856%201.856%200%200%201-.347.6%201.633%201.633%200%200%201-.527.4%201.5%201.5%200%200%201-.658.145.951.951%200%200%201-.481-.118.634.634%200%200%201-.293-.381%201.425%201.425%200%200%201-.494.381%201.377%201.377%200%200%201-.562.115%201.062%201.062%200%200%201-.432-.081.876.876%200%200%201-.309-.224.922.922%200%200%201-.185-.336%201.383%201.383%200%200%201-.062-.423%201.679%201.679%200%200%201%20.057-.427%201.732%201.732%200%200%201%20.173-.418%201.828%201.828%200%200%201%20.287-.377%201.8%201.8%200%200%201%20.4-.307%202.154%202.154%200%200%201%20.522-.207%202.526%202.526%200%200%201%20.635-.074%202.663%202.663%200%200%201%20.527.044%202.367%202.367%200%200%201%20.419.125l-.376%201.373a1.432%201.432%200%200%200-.06.386.505.505%200%200%200%20.048.236.254.254%200%200%200%20.135.12.568.568%200%200%200%20.512-.065.878.878%200%200%200%20.259-.275%201.531%201.531%200%200%200%20.176-.421%202.018%202.018%200%200%200%20.066-.532%202.107%202.107%200%200%200-.16-.846%201.682%201.682%200%200%200-.446-.613%201.928%201.928%200%200%200-.687-.369%202.9%202.9%200%200%200-.871-.124%202.5%202.5%200%200%200-.964.182%202.426%202.426%200%200%200-.769.5%202.286%202.286%200%200%200-.51.751%202.353%202.353%200%200%200-.184.931%202.634%202.634%200%200%200%20.2%201.067%202.147%202.147%200%200%200%20.553.769%202.342%202.342%200%200%200%20.828.464%203.319%203.319%200%200%200%201.03.155%204.9%204.9%200%200%200%20.569-.032%204.3%204.3%200%200%200%20.486-.085%203.735%203.735%200%200%200%20.4-.122%202.92%202.92%200%200%200%20.324-.146.244.244%200%200%201%20.181-.033.17.17%200%200%201%20.114.111l.135.328a3.9%203.9%200%200%201-.961.411%204.529%204.529%200%200%201-1.249.161%204.032%204.032%200%200%201-1.325-.21%203.1%203.1%200%200%201-1.054-.6%202.75%202.75%200%200%201-.7-.96%203.1%203.1%200%200%201-.246-1.276%202.724%202.724%200%200%201%20.109-.769%202.835%202.835%200%200%201%20.31-.7%203.038%203.038%200%200%201%20.486-.6%203.142%203.142%200%200%201%20.632-.469A3.26%203.26%200%200%201%2012.367%206a3.316%203.316%200%200%201%201.078.176%202.88%202.88%200%200%201%20.913.5%202.459%202.459%200%200%201%20.635.8%202.325%202.325%200%200%201%20.236%201.063%202.174%202.174%200%200%201-.124.742z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.218%208.222a1.152%201.152%200%200%200-.37.27%201.3%201.3%200%200%200-.247.39%201.183%201.183%200%200%200-.092.457.562.562%200%200%200%20.109.368.389.389%200%200%200%20.318.131.76.76%200%200%200%20.207-.03.576.576%200%200%200%20.2-.106.8.8%200%200%200%20.174-.2%201.144%201.144%200%200%200%20.13-.314l.29-1.042a1.558%201.558%200%200%200-.262-.023%201.062%201.062%200%200%200-.457.099z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-copy() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.85%207.15l-2.99-3A.508.508%200%200%200%2014.5%204H9.4A1.417%201.417%200%200%200%208%205.43v11.14A1.417%201.417%200%200%200%209.4%2018h7.2a1.417%201.417%200%200%200%201.4-1.43V7.5a.47.47%200%200%200-.15-.35zM11%206h2a1%201%200%200%201%200%202h-2a1%201%200%200%201%200-2zm4%2010h-4a1%201%200%200%201%200-2h4a1%201%200%200%201%200%202zm0-4h-4a1%201%200%200%201%200-2h4a1%201%200%200%201%200%202z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M10%202V1a1.06%201.06%200%200%200-1-1H1a1%201%200%200%200-1%201v13a1%201%200%200%200%201%201h5v-2H3a1%201%200%200%201%200-2h3V9H3a1%201%200%200%201%200-2h3V5H3a1%201%200%200%201%200-2h3.28A2%202%200%200%201%208%202h2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-course-tile-sort() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6%2018H1a1%201%200%200%201-1-1v-5a1%201%200%200%201%201-1h5a1%201%200%200%201%201%201v5a1%201%200%200%201-1%201zm11%200h-5a1%201%200%200%201-1-1v-5a1%201%200%200%201%201-1h5a1%201%200%200%201%201%201v5a1%201%200%200%201-1%201zM6%207H1a1%201%200%200%201-1-1V1a1%201%200%200%201%201-1h5a1%201%200%200%201%201%201v5a1%201%200%200%201-1%201zm11.708-1.76l-3.535%203.535a1%201%200%200%201-1.414%200L9.224%205.24a1%201%200%200%201%200-1.413L12.76.292a1%201%200%200%201%201.414%200l3.535%203.535a1%201%200%200%201-.002%201.414z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-coursebuilder() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%2018a7.024%207.024%200%200%200%206.716-5.05H2.283A7.026%207.026%200%200%200%209%2018zm9-9v1a.966.966%200%200%201-1%201l-8-.01L1%2011a.966.966%200%200%201-1-1V9a.966.966%200%200%201%201-1v-.68a7.947%207.947%200%200%201%202.16-5.19A.512.512%200%200%201%203.5%202a.5.5%200%200%201%20.5.47V7a1%201%200%200%200%202%200V2a2.006%202.006%200%200%201%202-2h2a2.006%202.006%200%200%201%202%202v5a1%201%200%200%200%202%200V2.47a.5.5%200%200%201%20.5-.47.512.512%200%200%201%20.34.13A7.947%207.947%200%200%201%2017%207.32V8a.966.966%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-delete() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%2018H5a2%202%200%200%201-2-2V7a1%201%200%200%201%201-1h10a1%201%200%200%201%201%201v9a2%202%200%200%201-2%202zm3-15a1%201%200%200%201-1%201H3a1%201%200%200%201%200-2h3V1a1%201%200%200%201%201-1h4a1%201%200%200%201%201%201v1h3a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-disable() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%204H8v10h8a2.006%202.006%200%200%200%202-2V6a2.006%202.006%200%200%200-2-2zm-.293%206.293a1%201%200%201%201-1.414%201.414L13%2010.414l-1.293%201.293a1%201%200%200%201-1.414-1.414L11.586%209l-1.293-1.293a1%201%200%200%201%201.414-1.414L13%207.586l1.293-1.293a1%201%200%200%201%201.414%201.414L14.414%209z%22%2F%3E%3Crect%20fill%3D%22%23494c4e%22%20y%3D%223%22%20width%3D%226%22%20height%3D%2212%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-discussions() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12%208v5a2.006%202.006%200%200%201-2%202H6l-2.29%202.71A1.007%201.007%200%200%201%203%2018a.84.84%200%200%201-.38-.08A.987.987%200%200%201%202%2017v-2a1.5%201.5%200%200%201-.37-.04%201.98%201.98%200%200%201-1.59-1.59A1.5%201.5%200%200%201%200%2013V8a1.5%201.5%200%200%201%20.04-.37%201.98%201.98%200%200%201%201.59-1.59A1.5%201.5%200%200%201%202%206h8a2.006%202.006%200%200%201%202%202z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%200H8a1.5%201.5%200%200%200-.37.04%201.98%201.98%200%200%200-1.59%201.59A1.5%201.5%200%200%200%206%202v2h4a4%204%200%200%201%204%204v1h2a2.006%202.006%200%200%200%202-2V2a2.006%202.006%200%200%200-2-2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-divider-solid() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20height%3D%2218%22%20width%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%2018c-.3%200-.5-.2-.5-.5V.5c0-.3.2-.5.5-.5s.5.2.5.5v17c0%20.3-.2.5-.5.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-dot() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Ccircle%20cx%3D%229%22%20cy%3D%229%22%20r%3D%224%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-download() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.71%2015.18l-2%202.027a1.006%201.006%200%200%201-1.42%200l-2-2.027a1.025%201.025%200%200%201-.21-1.1.987.987%200%200%201%20.92-.633h1V7.874a1%201%200%201%201%202%200v5.573h1a.987.987%200%200%201%20.92.628%201.026%201.026%200%200%201-.21%201.105z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.29%204.563a5.475%205.475%200%200%200-10.58%200%204.056%204.056%200%200%200%20.29%208.1h.593A2.962%202.962%200%200%201%206%2011.59V7.874a3%203%200%201%201%206%200v3.718a2.955%202.955%200%200%201%201.407%201.07H14a4.056%204.056%200%200%200%20.29-8.097z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-draft() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.707%208.86l-5.756%205.662c-.392.387-2.485%201.8-2.882%201.41s1.052-2.437%201.445-2.824l5.756-5.662a1.023%201.023%200%200%201%201.43.007.983.983%200%200%201%20.007%201.407z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.6%200H1.4A1.417%201.417%200%200%200%200%201.43v15.14A1.417%201.417%200%200%200%201.4%2018h11.2a1.417%201.417%200%200%200%201.4-1.43v-2.72l-1.39%201.39c-.02.02-1.93%201.76-3.35%201.76a1.22%201.22%200%200%201-.9-.35c-.8-.81-.06-2.08.26-2.63a9.97%209.97%200%200%201%201.16-1.61L14%208.19V1.43A1.417%201.417%200%200%200%2012.6%200zM3.03%202H8a1%201%200%200%201%200%202H3.03a1%201%200%200%201%200-2zM7%2012.01L3%2012a1%201%200%201%201%200-1.99h4a1%201%200%200%201%200%202zM11%208H3a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-dragger() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M8%2016v1c0%20.5-.4%201-1%201H6c-.6%200-1-.5-1-1v-1c0-.6.4-1%201-1h1c.6%200%201%20.4%201%201m5%200v1c0%20.5-.4%201-1%201h-1c-.6%200-1-.5-1-1v-1c0-.6.4-1%201-1h1c.6%200%201%20.4%201%201m-5-5v1c0%20.6-.4%201-1%201H6c-.6%200-1-.4-1-1v-1c0-.6.4-1%201-1h1c.6%200%201%20.4%201%201m5%200v1c0%20.6-.4%201-1%201h-1c-.6%200-1-.4-1-1v-1c0-.6.4-1%201-1h1c.6%200%201%20.4%201%201M8%206v1c0%20.6-.4%201-1%201H6c-.6%200-1-.4-1-1V6c0-.6.4-1%201-1h1c.6%200%201%20.4%201%201m5%200v1c0%20.6-.4%201-1%201h-1c-.6%200-1-.4-1-1V6c0-.6.4-1%201-1h1c.6%200%201%20.4%201%201M8%201v1c0%20.6-.4%201-1%201H6c-.6%200-1-.4-1-1V1c0-.5.4-1%201-1h1c.6%200%201%20.5%201%201m5%200v1c0%20.6-.4%201-1%201h-1c-.6%200-1-.4-1-1V1c0-.5.4-1%201-1h1c.6%200%201%20.5%201%201%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-edit() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M2.85%2010.907l-.672%201.407L.033%2017.26a.535.535%200%200%200%200%20.368.917.917%200%200%200%20.155.184.917.917%200%200%200%20.184.155A.54.54%200%200%200%20.56%2018a.48.48%200%200%200%20.18-.033l4.946-2.145%201.407-.672%208.53-8.53-4.244-4.243zM4.857%2014l-1.515.657L4%2013.143l.508-1.064%201.415%201.413zm11.85-8.463l-4.244-4.244.707-.707a2%202%200%200%201%202.83%200L17.414%202a2%202%200%200%201%200%202.83z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-edit-bulk() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M2.855%2010.908l-.67%201.407L.038%2017.26a.535.535%200%200%200%200%20.368.917.917%200%200%200%20.154.184.917.917%200%200%200%20.184.155.562.562%200%200%200%20.188.033.48.48%200%200%200%20.18-.033l4.945-2.143%201.41-.672%208.527-8.528-4.244-4.243zM4.862%2014l-1.515.657L4%2013.144l.512-1.064%201.414%201.414zm11.846-8.46L12.466%201.3l.707-.707A2%202%200%200%201%2016%20.59L17.415%202a2%202%200%200%201%200%202.83zM7.74.893l-.63-.63a.886.886%200%200%200-1.26%200l-4.578%204.59-.3.62-.96%202.2a.29.29%200%200%200%200%20.16.705.705%200%200%200%20.07.09.705.705%200%200%200%20.09.07c.02%200%20.05.01.08.01a.22.22%200%200%200%20.08-.01l2.2-.96.62-.3%204.588-4.58a.887.887%200%200%200%200-1.26zm9.995%209.997l-.63-.63a.886.886%200%200%200-1.26%200l-4.578%204.59-.3.62-.96%202.2a.29.29%200%200%200%200%20.16.46.46%200%200%200%20.16.16c.02%200%20.05.01.08.01a.22.22%200%200%200%20.08-.01l2.2-.96.62-.3%204.59-4.58a.887.887%200%200%200-.002-1.26z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-email() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%2012a3.14%203.14%200%200%201-1.64-.462L0%207.056V14a1%201%200%200%200%201%201h16a1%201%200%200%200%201-1V7.056l-7.354%204.48A3.148%203.148%200%200%201%209%2012z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.466%205.04L9.6%209.83a1.144%201.144%200%200%201-1.2%200L.534%205.04a1.09%201.09%200%200%201-.49-1.24%201.14%201.14%200%200%201%201.09-.8h15.733a1.138%201.138%200%200%201%201.09.8%201.09%201.09%200%200%201-.49%201.24z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-email-read() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M8.964%2015a3.115%203.115%200%200%201-1.63-.462l-7.32-4.482V17a1%201%200%200%200%201%201H16.92a1%201%200%200%200%201-1v-6.944l-7.32%204.48A3.116%203.116%200%200%201%208.964%2015z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.73%206.31l-1.8-1.91V1.04A1.043%201.043%200%200%200%2014.89%200H3.036A1.044%201.044%200%200%200%202%201.04v3.42L.268%206.31a.95.95%200%200%200-.26.79.34.34%200%200%200%20.01.1%201.07%201.07%200%200%200%20.52.84l7.833%204.79a1.15%201.15%200%200%200%20.6.17%201.14%201.14%200%200%200%20.588-.17l7.832-4.79a1.078%201.078%200%200%200%20.41-.44%201%201%200%200%200-.07-1.29zM10.95%208H4.987a1%201%200%200%201%200-2h5.963a1%201%200%200%201%200%202zm1.99-3.99H4.987a1.01%201.01%200%200%201%200-2.02h7.953a1.01%201.01%200%200%201%200%202.02z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-enable() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Crect%20fill%3D%22%23494c4e%22%20x%3D%2212%22%20y%3D%223%22%20width%3D%226%22%20height%3D%2212%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M2%204a2.006%202.006%200%200%200-2%202v6a2.006%202.006%200%200%200%202%202h8V4zm5.8%203.6l-.412.549-.929%201.239-.986%201.312c-.2.263-.4.523-.591.788a1.142%201.142%200%200%201-.522.439A.889.889%200%200%201%204%2012a.842.842%200%200%201-.27-.04%201.245%201.245%200%200%201-.127-.047%201.217%201.217%200%200%201-.2-.113.978.978%200%200%201-.31-.39L2.11%209.45a1%201%200%200%201%201.78-.9l.28.56L6.2%206.4a1%201%200%200%201%201.6%201.2z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-enrollment() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M17%201H1c-.6%200-1%20.5-1%201v14c0%20.6.5%201%201%201h16c.6%200%201-.4%201-1V2c0-.6-.4-1-1-1zm-6%204h4c.6%200%201%20.5%201%201s-.4%201-1%201h-4c-.6%200-1-.5-1-1s.4-1%201-1zm0%204h4c.6%200%201%20.4%201%201s-.4%201-1%201h-4c-.6%200-1-.4-1-1s.4-1%201-1zM3%205c0-1%201-2%202-2s2%201%202%202v1c0%201-1%202-2%202S3%207%203%206V5zm0%2010c-.5%200-1-.4-1-1v-2c0-1.7%201.4-3%203-3%201.7%200%203%201.3%203%203v2c0%20.6-.5%201-1%201H3zm8%200c-.6%200-1-.4-1-1s.4-1%201-1h4c.6%200%201%20.4%201%201s-.4%201-1%201h-4z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-eportfolio() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.31%209.45A1.012%201.012%200%200%201%209%209.5a.984.984%200%200%201-.31-.05h-.006L0%206.553V14.5a2.006%202.006%200%200%200%202%202h14a2.006%202.006%200%200%200%202-2V6.554L9.316%209.45H9.31z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%203.5h-4v-1a2.006%202.006%200%200%200-2-2H8a2.006%202.006%200%200%200-2%202v1H2A2%202%200%200%200%20.26%204.54L9%207.45l8.74-2.91A2%202%200%200%200%2016%203.5zm-6%200H8v-1h2v1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-event-log() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M16.6%200H3.4A1.391%201.391%200%200%200%202%201.4V3H1a1%201%200%201%200%200%202h1v3H1a1%201%200%201%200%200%202h1v3H1a1%201%200%200%200%200%202h1v1.54A1.444%201.444%200%200%200%203.4%2018h13.2a1.444%201.444%200%200%200%201.4-1.46V1.43A1.417%201.417%200%200%200%2016.6%200zM4.5%2015.5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88%201.48%201.48%200%200%201%201.16-.56%201.5%201.5%200%200%201%200%203zm0-5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88A1.48%201.48%200%200%201%204.5%207.5a1.5%201.5%200%200%201%200%203zm0-5a1.48%201.48%200%200%201-1.16-.56%201%201%200%200%200%200-1.88A1.48%201.48%200%200%201%204.5%202.5a1.5%201.5%200%200%201%200%203zM12%2016a1%201%200%201%201%200-2%201%201%200%200%201%200%202zm.977-3.783a1%201%200%200%201-1.953%200l-2-9A1%201%200%200%201%2010%202h4a1%201%200%200%201%20.977%201.217l-2%209z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-exemption-add() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cellipse%20fill%3D%22%23494c4e%22%20cx%3D%227.283%22%20cy%3D%229.472%22%20rx%3D%223%22%20ry%3D%223%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6.636%203.861a.992.992%200%200%201-.67.499%205.023%205.023%200%200%200-1.61.647%201%201%200%200%201-1.055-1.7%206.999%206.999%200%200%201%202.25-.903%201%201%200%200%201%201.085%201.457zM1.881%209.917a1%201%200%200%201-1.878-.446%206.947%206.947%200%200%201%20.346-2.404%201%201%200%201%201%201.899.625%204.956%204.956%200%200%200-.246%201.714.981.981%200%200%201-.121.511zm1.389%202.661c.199.232.423.433.666.625l.26.204a3.008%203.008%200%200%201%20.508%204.212c-.34.433-.971.509-1.404.169s-.509-.971-.169-1.404a1.003%201.003%200%200%200-.169-1.404l-.212-.167a7.045%207.045%200%200%201-.947-.883c-.371-.418-.349-1.062.063-1.425a1.007%201.007%200%200%201%201.404.073zM18%201v3c0%20.55-.45%201-1%201s-1-.45-1-1v-.58l-1.79%201.72c-.55.59-1.29.86-2.09.86h-.11c-.76%200-1.48-.19-2.04-.71l-.63-.58A.942.942%200%200%201%209%203.98c0-.55.45-.99%201-.99.27%200%20.51.11.69.28l.07.08.22.23.35.32c.2.18.45.26.72.25.27%200%20.52-.14.7-.34L14.47%202H14c-.55%200-1-.45-1-1s.45-1%201-1h3c.55%200%201%20.45%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-exemption-remove() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%201v3a1%201%200%200%201-2%200v-.58l-.15.15-1.06%201.05-.36.36a1%201%200%200%201-1.41-1.41l.36-.36%201.05-1.06.01-.01.14-.14H14a1%201%200%200%201%200-2h3a1%201%200%200%201%201%201z%22%2F%3E%3Crect%20fill%3D%22%23494c4e%22%20x%3D%22.706%22%20y%3D%2214.294%22%20width%3D%222%22%20height%3D%224%22%20rx%3D%221%22%20ry%3D%221%22%20transform%3D%22rotate(45%201.706%2016.294)%22%2F%3E%3Crect%20fill%3D%22%23494c4e%22%20x%3D%224.949%22%20y%3D%2210.051%22%20width%3D%222%22%20height%3D%224%22%20rx%3D%221%22%20ry%3D%221%22%20transform%3D%22rotate(45%205.948%2012.052)%22%2F%3E%3Crect%20fill%3D%22%23494c4e%22%20x%3D%229.191%22%20y%3D%225.809%22%20width%3D%222%22%20height%3D%224%22%20rx%3D%221%22%20ry%3D%221%22%20transform%3D%22rotate(45%2010.191%207.81)%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-export() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M7.63%2012.82a1%201%200%200%200%201.4.195%201.022%201.022%200%200%200%20.4-.778v-.072A6.174%206.174%200%200%201%2010.5%208.32a3.672%203.672%200%200%201%20.71-.72l.612.812a.973.973%200%200%200%20.96.362%201%201%200%200%200%20.786-.7l1.394-4.8A1%201%200%200%200%2014%202H9.007a1.048%201.048%200%200%200-.6.22%201.032%201.032%200%200%200-.293.358A.985.985%200%200%200%208.2%203.6l.612.812C7.092%205.708%205.95%2010.44%207.63%2012.82z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%208a.34.34%200%200%201-.01.1V17a1%201%200%200%201-1%201H1a1%201%200%200%201-1-1l.01-9a1%201%200%201%201%202%200%20.34.34%200%200%201-.01.1V16h13.99V8H16a1%201%200%201%201%202%200z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-external() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M13%200a1%201%200%200%201%201%201%201.02%201.02%200%200%201-.379.79l-.06.04A6.174%206.174%200%200%200%2011.14%205a3.672%203.672%200%200%200-.15%201h1.017c.37.003.707.216.868.55a1%201%200%200%201-.09%201.05l-2.992%204a1%201%200%200%201-1.6%200l-2.992-4a.992.992%200%200%201-.09-1.05.985.985%200%200%201%20.873-.55H7c0-2.15%203.093-5.91%206-6z%22%2F%3E%3Cpath%20d%3D%22M18%208a.34.34%200%200%201-.01.1V17a1%201%200%200%201-1%201H1a1%201%200%200%201-1-1l.01-9a1%201%200%201%201%202%200%20.34.34%200%200%201-.01.1V16h13.991V8H16a1%201%200%200%201%202%200z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-feed() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M0%2016a2%202%200%200%200%202%202h14a2%202%200%200%200%202-2v-4H0zm7-2h8a1%201%200%200%201%200%202H7a1%201%200%200%201%200-2zm-5%20.5a.5.5%200%200%201%20.5-.5h1a.5.5%200%200%201%20.5.5v1a.5.5%200%200%201-.5.5h-1a.5.5%200%200%201-.5-.5zM0%201v9h18V1a1%201%200%200%200-1-1H1a1%201%200%200%200-1%201zm16%202a1%201%200%201%201-1-1%201%201%200%200%201%201%201zM2%207a24.681%2024.681%200%200%201%201.263-3.674c.476-.543%201.108-.25%201.632.011l1.165.583c.029.015.66-.876.712-.945.332-.441.66-1.023%201.3-.971a3.163%203.163%200%200%201%201.186.558l1.076.615%201.313.75%201.362.778%201.222.7.893.51c.333.19.68.362.817.753a1.014%201.014%200%200%201-.155.955A1.075%201.075%200%200%201%2014.9%208H3a1%201%200%200%201-1-1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-feedback() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M4.1%202h-.2A2.906%202.906%200%200%200%201%204.9v1.2A2.906%202.906%200%200%200%203.9%209h.2A2.906%202.906%200%200%200%207%206.1V4.9A2.906%202.906%200%200%200%204.1%202zM4%2010a4.012%204.012%200%200%200-4%204v2.667a1.326%201.326%200%200%200%201.333%201.324l5.333.01A1.337%201.337%200%200%200%208%2016.667V14a4.01%204.01%200%200%200-4-4zm14-9v4a1%201%200%200%201-1%201h-3.99l-1.19%201.88a.47.47%200%200%201-.32.12.538.538%200%200%201-.21-.05.493.493%200%200%201-.29-.45V6h-1a1%201%200%200%201-1-1V1a1%201%200%200%201%201-1h7a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-file-archive() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%203H1a1%201%200%200%200%200%202v9a1%201%200%200%200%201%201h14a1%201%200%200%200%201-1V5a1%201%200%200%200%200-2zm-5%205H6a1%201%200%200%201%200-2h6a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-file-audio() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%2014a2.976%202.976%200%200%201-2.21%202.89A2%202%200%200%201%2012%2016v-4a2.015%202.015%200%200%201%202-2%201.976%201.976%200%200%201%201.5.69V8.42a6.5%206.5%200%200%200-13%200l.01%202.26a.647.647%200%200%201%20.08-.09A1.955%201.955%200%200%201%204%2010a2.006%202.006%200%200%201%202%202v4a2%202%200%200%201-3.79.89A2.976%202.976%200%200%201%200%2014a3.06%203.06%200%200%201%20.5-1.66V8.42a8.5%208.5%200%200%201%2017%200v3.92A3.06%203.06%200%200%201%2018%2014z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-file-document() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M15.85%203.15l-2.99-3A.508.508%200%200%200%2012.5%200H3.4A1.417%201.417%200%200%200%202%201.43v15.14A1.417%201.417%200%200%200%203.4%2018h11.2a1.417%201.417%200%200%200%201.4-1.43V3.5a.47.47%200%200%200-.15-.35zM5.026%202H10a1%201%200%200%201%200%202H5.026a1%201%200%200%201%200-2zM13%2016H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202zm0-4H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202zm0-4H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-file-image() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202.5H1a1%201%200%200%200-1%201v10.51a1.494%201.494%200%200%200%201.49%201.49h15.02A1.494%201.494%200%200%200%2018%2014.01V3.5a1%201%200%200%200-1-1zm-10%203a1%201%200%201%201-1%201%201%201%200%200%201%201-1zm-5%208a.418.418%200%200%200%20.09-.155c.08-.13.17-.263.25-.4.12-.18.23-.37.35-.56.13-.22.27-.442.4-.662s.28-.44.41-.66c.13-.2.25-.4.37-.59.09-.15.18-.29.26-.43a1.443%201.443%200%200%201%20.23-.32%201.086%201.086%200%200%201%20.37-.19%201.056%201.056%200%200%201%20.5%200%201.038%201.038%200%200%201%20.37.17l1.45%201.1L10.3%2013.5H2zm11.43%200L9.05%209.865l3.43-2.2a1.033%201.033%200%200%201%20.54-.165.782.782%200%200%201%20.26.04.95.95%200%200%201%20.63.524L16%2013.5h-2.57z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-file-presentation() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%202h-7V1a1%201%200%200%200-2%200v1H1a1%201%200%200%200%200%202v5.58a4.314%204.314%200%200%200%20.78%202.47%204.85%204.85%200%200%200%20.55.65A4.336%204.336%200%200%200%205.38%2014H8v.47l-2.55%201.7A1%201%200%200%200%206%2018a.938.938%200%200%200%20.55-.17L8%2016.86v.15a1%201%200%200%200%202%200v-.15l1.45.97A.938.938%200%200%200%2012%2018a1%201%200%200%200%20.55-1.83L10%2014.47V14h2.6a4.407%204.407%200%200%200%203.07-1.3%204.85%204.85%200%200%200%20.55-.65A4.314%204.314%200%200%200%2017%209.58V4a1%201%200%200%200%200-2zM6%2010a1%201%200%200%201-2%200V9a1%201%200%200%201%202%200zm4%200a1%201%200%200%201-2%200V7a1%201%200%200%201%202%200zm4%200a1%201%200%200%201-2%200V5a1%201%200%200%201%202%200z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-file-video() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.58%205.18A1.043%201.043%200%200%200%2017%205a1.018%201.018%200%200%200-.34.06L13%206.38v-.3A2.09%202.09%200%200%200%2010.92%204H2.08A2.09%202.09%200%200%200%200%206.08v5.84A2.09%202.09%200%200%200%202.08%2014h8.84A2.09%202.09%200%200%200%2013%2011.92v-.48l3.62%201.49A.985.985%200%200%200%2017%2013a1%201%200%200%200%201-1V6a1.014%201.014%200%200%200-.42-.82zM3%208a1%201%200%201%201%201-1%201%201%200%200%201-1%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-filter() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.35%204.855L10%209.21v2.8c0%201.31-2%202.45-2%201.89V9.2L3.65%204.856a.476.476%200%200%201-.11-.54A.5.5%200%200%201%204%204h10a.5.5%200%200%201%20.46.31.476.476%200%200%201-.11.545z%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%229%22%20cy%3D%2217%22%20r%3D%221%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%225%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%2213%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3Ccircle%20fill%3D%22%23494c4e%22%20cx%3D%229%22%20cy%3D%221%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-flag-filled() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M4.5%200a1%201%200%200%200-1%201v16a1%201%200%200%200%202%200V8.36a3.336%203.336%200%200%201%20.84-.11%203.66%203.66%200%200%201%202.82%201.43A3.486%203.486%200%200%200%2011.73%2011a2.435%202.435%200%200%200%20.27-.01%203.16%203.16%200%200%200%20.81-.17%203.76%203.76%200%200%200%20.72-.37%203.35%203.35%200%200%200%20.6-.53%201.222%201.222%200%200%200%20.37-.74V4a.78.78%200%200%200-.79-.77.687.687%200%200%200-.37.1c-.03.01-.04.02-.07.03a3.543%203.543%200%200%201-1.61.39A3.5%203.5%200%200%201%208.9%202.37%203.446%203.446%200%200%200%206.27%201a2.858%202.858%200%200%200-.77.1V1a1%201%200%200%200-1-1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-flag-hollow() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M6.27%203a1.552%201.552%200%200%201%201.07.622%205.47%205.47%200%200%200%204.32%202.128%205.493%205.493%200%200%200%20.84-.065v3.038a.878.878%200%200%201-.1.074%201.652%201.652%200%200%201-.288.146%201.322%201.322%200%200%201-.3.056h-.082a1.677%201.677%200%200%201-1.07-.646A5.645%205.645%200%200%200%206.34%206.25a5.3%205.3%200%200%200-.84.068V3.176l.54-.15A.922.922%200%200%201%206.27%203M4.5%200a1%201%200%200%200-1%201v16a1%201%200%200%200%202%200V8.36a3.336%203.336%200%200%201%20.84-.11%203.66%203.66%200%200%201%202.82%201.43A3.486%203.486%200%200%200%2011.73%2011a2.435%202.435%200%200%200%20.27-.01%203.16%203.16%200%200%200%20.81-.17%203.76%203.76%200%200%200%20.72-.37%203.35%203.35%200%200%200%20.6-.53%201.222%201.222%200%200%200%20.37-.74V4a.78.78%200%200%200-.79-.77.687.687%200%200%200-.37.1c-.03.01-.04.02-.07.03a3.543%203.543%200%200%201-1.61.39A3.5%203.5%200%200%201%208.9%202.37%203.446%203.446%200%200%200%206.27%201a2.858%202.858%200%200%200-.77.1V1a1%201%200%200%200-1-1z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-folder() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%205v10a1%201%200%200%201-1%201H1a1%201%200%200%201-1-1V3a1%201%200%200%201%201-1h7.01a.99.99%200%200%201%20.99.9V4h8a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-folder-up-level() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%205v4c-.8-.6-2-1-3-1-2.8%200-5%202.2-5%205%200%201%20.4%202.2%201%203H1c-.6%200-1-.5-1-1V3c0-.6.5-1%201-1h7c.5%200%201%20.4%201%201v1h8c.6%200%201%20.5%201%201z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.7%2013.7c-.2.2-.5.3-.7.3-.3%200-.5%200-.7-.3l-.3-.3V17c0%20.6-.5%201-1%201s-1-.5-1-1v-3.6l-.3.3c-.2.2-.5.3-.7.3-.3%200-.5%200-.7-.3-.4-.4-.4-1%200-1.4l2-2c.4-.4%201-.4%201.4%200l2%202c.4.4.4%201%200%201.4z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-forms() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.6%200H3.4A1.417%201.417%200%200%200%202%201.43v15.14A1.417%201.417%200%200%200%203.4%2018h11.2a1.417%201.417%200%200%200%201.4-1.43V1.43A1.417%201.417%200%200%200%2014.6%200zM4%203.11a1.1%201.1%200%200%201%201.1-1.1h1.8A1.1%201.1%200%200%201%208%203.11v3.81a1.1%201.1%200%200%201-1.1%201.1H5.095A1.1%201.1%200%200%201%204%206.92V3.11zM7%2016H5a1%201%200%200%201%200-2h2a1%201%200%200%201%200%202zm6%200h-2a1%201%200%200%201%200-2h2a1%201%200%200%201%200%202zm1-4.816a.818.818%200%200%201-.816.816H4.816A.818.818%200%200%201%204%2011.184v-.367A.818.818%200%200%201%204.816%2010h8.367a.818.818%200%200%201%20.817.816v.368zM13%208h-2a1%201%200%200%201%200-2h2a1%201%200%200%201%200%202zm0-4h-2a1%201%200%200%201%200-2h2a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-forward() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M12.29%2011.3a1.008%201.008%200%200%200%200%201.42.967.967%200%200%200%20.69.28H13a1.22%201.22%200%200%200%20.55-.17c.01-.01.14-.09.16-.11L17.6%209.8a1.024%201.024%200%200%200%20.4-.79V9a1.044%201.044%200%200%200-.4-.8l-3.89-2.92c-.02-.02-.15-.1-.16-.11a1.105%201.105%200%200%200-.52-.17H13a.99.99%200%200%200-.71%201.7l.05.05%201.17%201.14A1.494%201.494%200%200%201%2014%209a1.494%201.494%200%200%201-.49%201.11l-1.17%201.14z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M0%209a1.003%201.003%200%200%200%201%201h5v2.02a.976.976%200%200%200%20.55.87.996.996%200%200%200%201.05-.09l4-3a1%201%200%200%200%200-1.6l-4-3a.99.99%200%200%200-1.05-.09.988.988%200%200%200-.55.87V8H1a1.003%201.003%200%200%200-1%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-fullscreen() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M7.707%2011.626l-3.29%203.265%201.29%201.282a1%201%200%200%201-.71%201.7H1a1%201%200%200%201-1-.993v-3.97a.98.98%200%200%201%20.62-.914%201.006%201.006%200%200%201%201.09.208L3%2013.48l3.29-3.264a1.012%201.012%200%200%201%201.418%200%20.994.994%200%200%201%200%201.41zm2.586-.001l3.29%203.265-1.29%201.28a1%201%200%200%200%20.71%201.7h4a1%201%200%200%200%201-.992v-3.97a.98.98%200%200%200-.62-.913%201.006%201.006%200%200%200-1.09.208L15%2013.48l-3.29-3.264a1.012%201.012%200%200%200-1.418%200%20.992.992%200%200%200%200%201.41zm0-5.383l3.29-3.264-1.29-1.278a.99.99%200%200%201-.21-1.082A.987.987%200%200%201%2013%200h4a1%201%200%200%201%201%20.993v3.97a.98.98%200%200%201-.62.912%201.006%201.006%200%200%201-1.09-.208L15%204.387%2011.712%207.65a1.012%201.012%200%200%201-1.42%200%20.992.992%200%200%201%200-1.408zm-2.586%200L4.42%202.977%205.71%201.7A1%201%200%200%200%205%200H1a1%201%200%200%200-1%20.993v3.97a.98.98%200%200%200%20.62.913%201.006%201.006%200%200%200%201.09-.208L3%204.388%206.288%207.65a1.012%201.012%200%200%200%201.42%200%20.994.994%200%200%200%200-1.41zM11.8%2020.93a.818.818%200%200%201%20.07-.128.714.714%200%200%200-.09.2.183.183%200%200%201%20.02-.07zm.21-.317c.01-.01.02-.01.03-.02a.644.644%200%200%200-.08.09.178.178%200%200%201%20.05-.07z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.8%2020.93a.818.818%200%200%201%20.07-.128.714.714%200%200%200-.09.2.183.183%200%200%201%20.02-.07zm.24-.337a.644.644%200%200%200-.08.09.178.178%200%200%201%20.05-.07c.01-.013.02-.013.03-.02z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-game() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M14.81%207.991H10c-.01-.64-.01-1.27%200-1.92v-.14c.02-.77.04-1.22.36-1.53a1.793%201.793%200%200%201%201.04-.36l.15-.01a2.694%202.694%200%200%200%201.29-.3%202.205%202.205%200%200%200%201.05-1.46%204.3%204.3%200%200%200%20.09-1.31%201%201%200%200%200-2%20.07%203.026%203.026%200%200%201-.03.76.441.441%200%200%201-.09.2%201.893%201.893%200%200%201-.41.05l-.18.01a3.611%203.611%200%200%200-2.3.91A3.831%203.831%200%200%200%208%205.9v.13c-.01.66-.01%201.31%200%201.96H3.19A3.205%203.205%200%200%200%200%2011.181V14.8a3.205%203.205%200%200%200%203.19%203.19h11.62A3.205%203.205%200%200%200%2018%2014.8v-3.62a3.205%203.205%200%200%200-3.19-3.189zm-7.81%206H6v1a1%201%200%200%201-2%200v-1H3a1%201%200%200%201%200-2h1v-1a1%201%200%200%201%202%200v1h1a1%201%200%200%201%200%202zm4%202a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm4%204a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm0-4a1%201%200%201%201%201-1%201%201%200%200%201-1%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-gear() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%207h-.76a1%201%200%200%201-.7-1.71l.53-.53a1.008%201.008%200%200%200%200-1.42l-1.41-1.41a1.008%201.008%200%200%200-1.42%200l-.51.51a.974.974%200%200%201-.73.32%201%201%200%200%201-1-1V1a1%201%200%200%200-1-1H8a1%201%200%200%200-1%201v.76a1%201%200%200%201-1%201%20.974.974%200%200%201-.73-.32l-.51-.51a1.008%201.008%200%200%200-1.42%200L1.93%203.34a1.008%201.008%200%200%200%200%201.42c.19.19.4.37.58.57a.92.92%200%200%201%20.25.67%201%201%200%200%201-1%201H1a1%201%200%200%200-1%201v2a1%201%200%200%200%201%201h.76a1%201%200%200%201%201%201%20.92.92%200%200%201-.25.67c-.18.2-.39.38-.58.57a1.008%201.008%200%200%200%200%201.42l1.41%201.41a1.008%201.008%200%200%200%201.42%200l.51-.51a.974.974%200%200%201%20.73-.32%201%201%200%200%201%201%201V17a1%201%200%200%200%201%201h2a1%201%200%200%200%201-1v-.76a1%201%200%200%201%201-1%20.974.974%200%200%201%20.73.32l.51.51a1.008%201.008%200%200%200%201.42%200l1.41-1.41a1.008%201.008%200%200%200%200-1.42l-.53-.53a1%201%200%200%201%20.7-1.71H17a1%201%200%200%200%201-1V8a1%201%200%200%200-1-1zm-8%205a3%203%200%201%201%203-3%203%203%200%200%201-3%203z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-glossary() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20d%3D%22M17.71.29A1.007%201.007%200%200%200%2017%200c-4.05.01-6.53%201.16-8%202.32A9.8%209.8%200%200%200%205.97.73%2015.868%2015.868%200%200%200%201%200C.734%200%20.48.103.29.29.106.48.002.735%200%201v16c.002.265.106.52.29.71.192.183.445.286.71.29%204.05-.01%206.53-1.16%208-2.32%201.47%201.16%203.95%202.31%208%202.32a1.05%201.05%200%200%200%20.71-.29c.184-.19.288-.445.29-.71V1a1.032%201.032%200%200%200-.29-.71zM2.03%203.757a1%201%200%200%201%201.212-.727l4%201a1%201%200%201%201-.484%201.94l-4-1a1%201%200%200%201-.728-1.213zM7.242%2013.97l-4%201a1%201%200%200%201-.484-1.94l4-1a1%201%200%200%201%20.484%201.94zM7%2010H3a1%201%200%200%201%200-2h4a1%201%200%201%201%200%202zm3.758-5.97l4-1a1%201%200%200%201%20.484%201.94l-4%201a1%201%200%200%201-.484-1.94zm5.212%2010.213a1%201%200%200%201-1.212.728l-4-1a1%201%200%200%201%20.484-1.94l4%201a1%201%200%200%201%20.728%201.212zM15%2010h-4a1%201%200%200%201%200-2h4a1%201%200%200%201%200%202z%22%20fill%3D%22%23494c4e%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-google-drive() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M8.68%206.75l-5.57%209.41L0%2010.86l5.54-9.57%203.14%205.46zm8.98%203.52h-6.3L5.94.85h6.26l5.46%209.42zm.34.59l-3.12%205.32H3.76l3.16-5.34h11.07l.01.02z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-grabber() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%205H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202zm0%205H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202zm0%205H5a1%201%200%200%201%200-2h8a1%201%200%200%201%200%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-grabber-small() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%209a1%201%200%200%201-1%201H6a1%201%200%200%201%200-2h6a1%201%200%200%201%201%201zm0-4a1%201%200%200%201-1%201H6a1%201%200%200%201%200-2h6a1%201%200%200%201%201%201zm0%208a1%201%200%200%201-1%201H6a1%201%200%200%201%200-2h6a1%201%200%200%201%201%201z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-grade() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13.94%203.68a1.64%201.64%200%200%200-.83-1.05%201.71%201.71%200%200%200-.49-1.25%201.665%201.665%200%200%200-1.25-.49A1.678%201.678%200%200%200%209%20.26a1.678%201.678%200%200%200-2.37.63%201.665%201.665%200%200%200-1.25.49%201.71%201.71%200%200%200-.49%201.25A1.678%201.678%200%200%200%204.26%205a1.678%201.678%200%200%200%20.63%202.37%201.71%201.71%200%200%200%20.49%201.25%201.628%201.628%200%200%200%201.25.49%201.393%201.393%200%200%200%20.37.46v8.15a.264.264%200%200%200%20.07.19.214.214%200%200%200%20.18.09.234.234%200%200%200%20.17-.07l.01-.01L9%2016.5l1.58%201.43a.234.234%200%200%200%20.17.07.214.214%200%200%200%20.18-.09.264.264%200%200%200%20.07-.19V9.57a1.393%201.393%200%200%200%20.37-.46%201.628%201.628%200%200%200%201.25-.49%201.71%201.71%200%200%200%20.49-1.25A1.678%201.678%200%200%200%2013.74%205a1.64%201.64%200%200%200%20.2-1.32zM9%207a2%202%200%201%201%202-2%202%202%200%200%201-2%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-grade-remove() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.94%203.68a1.638%201.638%200%200%200-.83-1.05%201.71%201.71%200%200%200-.49-1.25A1.665%201.665%200%200%200%209.37.89%201.678%201.678%200%200%200%207%20.26a1.678%201.678%200%200%200-2.37.63%201.665%201.665%200%200%200-1.25.49%201.71%201.71%200%200%200-.49%201.25A1.678%201.678%200%200%200%202.26%205a1.678%201.678%200%200%200%20.63%202.37%201.71%201.71%200%200%200%20.49%201.25%201.628%201.628%200%200%200%201.25.49%201.392%201.392%200%200%200%20.37.46v8.15a.307.307%200%200%200%20.06.19.246.246%200%200%200%20.19.09.234.234%200%200%200%20.17-.07l.01-.01L7%2016.33l1.58%201.6a.234.234%200%200%200%20.17.07.246.246%200%200%200%20.19-.09.307.307%200%200%200%20.06-.19v-1.91a2.974%202.974%200%200%201%200-5.62v-.62a1.392%201.392%200%200%200%20.37-.46%201.628%201.628%200%200%200%201.25-.49%201.71%201.71%200%200%200%20.49-1.25A1.678%201.678%200%200%200%2011.74%205a1.643%201.643%200%200%200%20.2-1.32zM9.2%205.26a2.114%202.114%200%200%201-.16.61%202.164%202.164%200%200%201-1.17%201.17%202.193%202.193%200%200%201-1.74%200%202.164%202.164%200%200%201-1.17-1.17%202.114%202.114%200%200%201-.16-.61A2.273%202.273%200%200%201%204.78%205a2.273%202.273%200%200%201%20.02-.26%202.114%202.114%200%200%201%20.16-.61%202.164%202.164%200%200%201%201.17-1.17%202.193%202.193%200%200%201%201.74%200%202.164%202.164%200%200%201%201.17%201.17%202.114%202.114%200%200%201%20.16.61%202.273%202.273%200%200%201%20.02.26%202.273%202.273%200%200%201-.02.26z%22%2F%3E%3Crect%20fill%3D%22%23494c4e%22%20x%3D%229%22%20y%3D%2212%22%20width%3D%227%22%20height%3D%222%22%20rx%3D%221%22%20ry%3D%221%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-grade-visible() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.106%207.542C6.676%208.431%205%2010.317%205%2012.5c0%201.47.76%202.806%202%203.793v1.427a.264.264%200%200%201-.07.19.214.214%200%200%201-.18.09.234.234%200%200%201-.17-.07L5%2016.5l-1.57%201.42-.01.01a.234.234%200%200%201-.17.07.214.214%200%200%201-.18-.09.264.264%200%200%201-.07-.19V9.57a1.393%201.393%200%200%201-.37-.46%201.628%201.628%200%200%201-1.25-.49%201.71%201.71%200%200%201-.49-1.25A1.678%201.678%200%200%201%20.26%205a1.678%201.678%200%200%201%20.63-2.37%201.71%201.71%200%200%201%20.49-1.25c.33-.332.783-.51%201.25-.49A1.678%201.678%200%200%201%205%20.26a1.678%201.678%200%200%201%202.37.63c.467-.02.92.158%201.25.49.327.332.504.784.49%201.25.413.216.715.598.83%201.05.124.448.05.928-.2%201.32a1.678%201.678%200%200%201-.63%202.37c.002.058%200%20.115-.004.172zM5%207a2%202%200%201%200%200-4%202%202%200%200%200%200%204zm7.25%209C9.35%2016%207%2014.433%207%2012.5S9.35%209%2012.25%209s5.25%201.567%205.25%203.5-2.35%203.5-5.25%203.5zm-1.49-2a2.407%202.407%200%200%201-.51-1.5c0-.576.193-1.102.51-1.5-1.046.28-1.76.847-1.76%201.5s.714%201.22%201.76%201.5zm2.98-3c.317.398.51.924.51%201.5s-.193%201.102-.51%201.5c1.045-.28%201.76-.847%201.76-1.5s-.715-1.22-1.76-1.5z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-group() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.1%200h-.2A2.907%202.907%200%200%200%206%202.9v1.2A2.907%202.907%200%200%200%208.9%207h.2A2.907%202.907%200%200%200%2012%204.1V2.9A2.907%202.907%200%200%200%209.1%200zm8.808%207.09a2.9%202.9%200%200%201%20.488-.39%203.28%203.28%200%200%200-.488.398V7.09zm.488-.39a2.812%202.812%200%200%201%200-.001zM15%209c-.26%200-.507.044-.747.106.475.86.747%201.845.747%202.894v4h2c.55%200%201-.445%201-.995V12c0-1.65-1.35-3-3-3zm-11.253.106A2.967%202.967%200%200%200%203%209c-1.65%200-3%201.35-3%203v3.005c0%20.55.45.995%201%20.995h2v-4c0-1.05.272-2.035.747-2.894zM15.067%203h-.134c-1.067.003-1.93.928-1.933%202.07v.86c.003%201.142.866%202.067%201.932%202.07h.135c1.066-.003%201.93-.928%201.932-2.07v-.86c-.005-1.142-.868-2.067-1.934-2.07zm-12%200h-.135c-1.066.003-1.93.928-1.932%202.07v.86c.003%201.142.866%202.067%201.932%202.07h.135C4.134%207.997%204.997%207.072%205%205.93v-.86C4.997%203.928%204.134%203.003%203.068%203z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9.1%200h-.2A2.907%202.907%200%200%200%206%202.9v1.2A2.907%202.907%200%200%200%208.9%207h.2A2.907%202.907%200%200%200%2012%204.1V2.9A2.907%202.907%200%200%200%209.1%200zM11%2018H7c-1.1%200-2-.9-2-2v-4c0-2.2%201.8-4%204-4s4%201.8%204%204v4c0%201.1-.9%202-2%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-group-locker() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2218%22%20width%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M16%200h-5a2.006%202.006%200%200%200-2%202%202.006%202.006%200%200%200-2-2H2a2.006%202.006%200%200%200-2%202v14a2.006%202.006%200%200%200%202%202h5a2.006%202.006%200%200%200%202-2%202.006%202.006%200%200%200%202%202h5a2.006%202.006%200%200%200%202-2V2a2.006%202.006%200%200%200-2-2zM3%2012a1%201%200%200%201-2%200v-1a1%201%200%200%201%202%200v1zm2.567-7.92l1.25%201a.581.581%200%200%201%20.167.57.428.428%200%200%201-.4.35h-1.25a.4.4%200%200%201%20.233.08l1.25%201a.581.581%200%200%201%20.167.57.428.428%200%200%201-.4.35H2.417a.428.428%200%200%201-.4-.35.581.581%200%200%201%20.167-.57l1.25-1A.4.4%200%200%201%203.667%206h-1.25a.428.428%200%200%201-.4-.35.581.581%200%200%201%20.167-.57l1.25-1A.4.4%200%200%201%203.667%204h-1.25a.428.428%200%200%201-.4-.35.581.581%200%200%201%20.167-.57l1.25-1A.4.4%200%200%201%203.667%202h1.667a.4.4%200%200%201%20.233.08l1.25%201a.581.581%200%200%201%20.167.57.428.428%200%200%201-.4.35h-1.25a.4.4%200%200%201%20.233.08zM12%2012a1%201%200%200%201-2%200v-1a1%201%200%200%201%202%200v1zm2.567-7.92l1.25%201a.581.581%200%200%201%20.167.57.428.428%200%200%201-.4.35h-1.25a.4.4%200%200%201%20.233.08l1.25%201a.581.581%200%200%201%20.167.57.428.428%200%200%201-.4.35h-4.167a.428.428%200%200%201-.4-.35.581.581%200%200%201%20.167-.57l1.25-1a.4.4%200%200%201%20.233-.08h-1.25a.428.428%200%200%201-.4-.35.581.581%200%200%201%20.167-.57l1.25-1a.4.4%200%200%201%20.233-.08h-1.25a.428.428%200%200%201-.4-.35.581.581%200%200%201%20.167-.57l1.25-1a.4.4%200%200%201%20.233-.08h1.667a.4.4%200%200%201%20.233.08l1.25%201a.581.581%200%200%201%20.167.57.428.428%200%200%201-.4.35h-1.25a.4.4%200%200%201%20.233.08z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-help() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%200a9%209%200%201%200%209%209%209%209%200%200%200-9-9zm0%2016a1%201%200%201%201%201-1%201%201%200%200%201-1%201zm1-4.1v.1a1%201%200%200%201-2%200v-1a1%201%200%200%201%201-1%203%203%200%201%200-3-3%201%201%200%200%201-2%200%205%205%200%201%201%206%204.9z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-history() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17%2010a8%208%200%200%201-16%200%201%201%200%200%201%202%200%206%206%200%201%200%206.5-5.98V5.5a.477.477%200%200%201-.27.44A.466.466%200%200%201%209%206a.52.52%200%200%201-.29-.09l-3.5-2.5a.505.505%200%200%201%200-.82l3.5-2.5a.488.488%200%200%201%20.52-.03.477.477%200%200%201%20.27.44v1.52A7.987%207.987%200%200%201%2017%2010z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M11.71%208.71L10%2010.42V13a1%201%200%200%201-2%200v-3a.69.69%200%200%201%20.04-.25.37.37%200%200%201%20.04-.14.988.988%200%200%201%20.21-.32l2-2a1.004%201.004%200%200%201%201.42%201.42z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-home() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M17.75%208.66A1.012%201.012%200%200%201%2017%209a.99.99%200%200%201-.66-.25L16%208.458V16a2.006%202.006%200%200%201-2%202h-2.5a.5.5%200%200%201-.5-.5V12a1%201%200%200%200-1-1H8a1%201%200%200%200-1%201v5.5a.5.5%200%200%201-.5.5H4a2.006%202.006%200%200%201-2-2v-3c-.01-1.41-.01-3.26%200-4.53l-.34.28a1%201%200%201%201-1.32-1.5l8-7a1%201%200%200%201%201.32%200l2.48%202.17A1.17%201.17%200%200%201%2013%202h1a1.107%201.107%200%200%201%201%201v2l2.66%202.25a1%201%200%200%201%20.09%201.41z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-import() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M13%200a1%201%200%200%201%201%201c0%20.307-.14.597-.38.79l-.06.04A6.178%206.178%200%200%200%2011.14%205c-.096.325-.146.66-.15%201h1.017c.37.003.707.216.868.55a1%201%200%200%201-.09%201.05l-2.992%204a1%201%200%200%201-1.6%200L5.2%207.6a.995.995%200%200%201-.09-1.05.989.989%200%200%201%20.874-.55H7c0-2.15%203.093-5.91%206-6z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M18%208a.337.337%200%200%201-.01.1V17a1%201%200%200%201-1%201H1a1%201%200%200%201-1-1l.01-9a1%201%200%201%201%202%200%20.337.337%200%200%201-.01.1V16h13.99V8H16a1%201%200%200%201%202%200z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-important() {
@include d2l-icon();
&:before {
content: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%2014a1.5%201.5%200%201%201%201.507-1.5A1.504%201.504%200%200%201%209%2014z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M9%202a7%207%200%201%201-7%207%207.008%207.008%200%200%201%207-7m0-2a9%209%200%201%200%209%209%209%209%200%200%200-9-9z%22%2F%3E%3Cpath%20fill%3D%22%23494c4e%22%20d%3D%22M10%204H8a1%201%200%200%200-.97%201.242l1%204a1%201%200%200%200%201.94%200l1-4A1%201%200%200%200%2010%204zm0%202z%22%2F%3E%3C%2Fsvg%3E");
}
}
@mixin d2l-icon-tier1-insights-portal() {
@include d2l-icon();
&:before {