matcha-theme 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/abstracts/_breakpoints.scss +33 -0
  2. package/abstracts/_colors.scss +422 -0
  3. package/abstracts/_elevation.scss +102 -0
  4. package/abstracts/_functions.scss +321 -0
  5. package/abstracts/_grid.scss +130 -0
  6. package/abstracts/_order.scss +46 -0
  7. package/abstracts/_position.scss +51 -0
  8. package/abstracts/_sizes.scss +74 -0
  9. package/abstracts/_spacings.scss +236 -0
  10. package/abstracts/_typography.scss +137 -0
  11. package/base/_helpers.scss +3019 -0
  12. package/base/_reset.scss +9 -0
  13. package/base/_typography.scss +242 -0
  14. package/components/matcha-audio-player.scss +37 -0
  15. package/components/matcha-buttons.scss +91 -0
  16. package/components/matcha-cards.scss +93 -0
  17. package/components/matcha-color-pick.scss +32 -0
  18. package/components/matcha-draggable.scss +25 -0
  19. package/components/matcha-header.scss +326 -0
  20. package/components/matcha-horizontal-tree.scss +275 -0
  21. package/components/matcha-icons.scss +11 -0
  22. package/components/matcha-progress-bar.scss +107 -0
  23. package/components/matcha-scrollbar.scss +36 -0
  24. package/components/matcha-scrollbox-shadow.scss +127 -0
  25. package/components/matcha-table.scss +259 -0
  26. package/fonts/CircularStd-Bold.eot +0 -0
  27. package/fonts/CircularStd-Bold.otf +0 -0
  28. package/fonts/CircularStd-Bold.svg +13532 -0
  29. package/fonts/CircularStd-Bold.ttf +0 -0
  30. package/fonts/CircularStd-Bold.woff +0 -0
  31. package/fonts/CircularStd-Bold.woff2 +0 -0
  32. package/fonts/CircularStd-Medium.eot +0 -0
  33. package/fonts/CircularStd-Medium.otf +0 -0
  34. package/fonts/CircularStd-Medium.svg +13511 -0
  35. package/fonts/CircularStd-Medium.ttf +0 -0
  36. package/fonts/CircularStd-Medium.woff +0 -0
  37. package/fonts/CircularStd-Medium.woff2 +0 -0
  38. package/fonts/CircularStd-Regular.eot +0 -0
  39. package/fonts/CircularStd-Regular.otf +0 -0
  40. package/fonts/CircularStd-Regular.svg +5562 -0
  41. package/fonts/CircularStd-Regular.ttf +0 -0
  42. package/fonts/CircularStd-Regular.woff +0 -0
  43. package/main.scss +87 -0
  44. package/package.json +11 -0
  45. package/tokens/_animations.scss +37 -0
  46. package/tokens/_breakpoints.scss +46 -0
  47. package/tokens/_color-tokens.scss +1419 -0
  48. package/tokens/_elevation-tokens.scss +14 -0
  49. package/tokens/_spacing-tokens.scss +96 -0
  50. package/tokens/_typography-tokens.scss +25 -0
  51. package/vendors/angular-editor.scss +56 -0
  52. package/vendors/angular-material-fixes.scss +21 -0
  53. package/vendors/calendar.scss +2876 -0
  54. package/vendors/charts.scss +92 -0
  55. package/vendors/ng5-slider.scss +56 -0
  56. package/vendors/ngx-material-timepicker.scss +50 -0
@@ -0,0 +1,3019 @@
1
+ // -----------------------------------------------------------------------------------------------------
2
+ // @ Position helpers
3
+ // -----------------------------------------------------------------------------------------------------
4
+ .position-relative {
5
+ position: relative
6
+ }
7
+
8
+ .position-absolute {
9
+ position: absolute
10
+ }
11
+
12
+ .position-static {
13
+ position: static
14
+ }
15
+
16
+ .position-sticky {
17
+ position: sticky
18
+ }
19
+
20
+ @media screen and (min-width:600px) {
21
+ .position-sm-relative {
22
+ position: relative
23
+ }
24
+
25
+ .position-sm-absolute {
26
+ position: absolute
27
+ }
28
+
29
+ .position-sm-static {
30
+ position: static
31
+ }
32
+
33
+ .position-sm-sticky {
34
+ position: sticky
35
+ }
36
+ }
37
+
38
+ @media screen and (min-width:1024px) {
39
+ .position-md-relative {
40
+ position: relative
41
+ }
42
+
43
+ .position-md-absolute {
44
+ position: absolute
45
+ }
46
+
47
+ .position-md-static {
48
+ position: static
49
+ }
50
+
51
+ .position-md-sticky {
52
+ position: sticky
53
+ }
54
+ }
55
+
56
+ @media screen and (min-width:1440px) {
57
+ .position-lg-relative {
58
+ position: relative
59
+ }
60
+
61
+ .position-lg-absolute {
62
+ position: absolute
63
+ }
64
+
65
+ .position-lg-static {
66
+ position: static
67
+ }
68
+
69
+ .position-lg-sticky {
70
+ position: sticky
71
+ }
72
+ }
73
+
74
+ @media screen and (min-width:1920px) {
75
+ .position-xl-relative {
76
+ position: relative
77
+ }
78
+
79
+ .position-xl-absolute {
80
+ position: absolute
81
+ }
82
+
83
+ .position-xl-static {
84
+ position: static
85
+ }
86
+
87
+ .position-xl-sticky {
88
+ position: sticky
89
+ }
90
+ }
91
+
92
+ // -----------------------------------------------------------------------------------------------------
93
+ // @ Absolute position alignment helpers
94
+ // -----------------------------------------------------------------------------------------------------
95
+ .align-top {
96
+ top: 0
97
+ }
98
+
99
+ .align-right {
100
+ right: 0
101
+ }
102
+
103
+ .align-bottom {
104
+ bottom: 0
105
+ }
106
+
107
+ .align-left {
108
+ left: 0
109
+ }
110
+
111
+ @media screen and (min-width:600px) {
112
+ .align-sm-top {
113
+ top: 0
114
+ }
115
+
116
+ .align-sm-right {
117
+ right: 0
118
+ }
119
+
120
+ .align-sm-bottom {
121
+ bottom: 0
122
+ }
123
+
124
+ .align-sm-left {
125
+ left: 0
126
+ }
127
+ }
128
+
129
+ @media screen and (min-width:1024px) {
130
+ .align-md-top {
131
+ top: 0
132
+ }
133
+
134
+ .align-md-right {
135
+ right: 0
136
+ }
137
+
138
+ .align-md-bottom {
139
+ bottom: 0
140
+ }
141
+
142
+ .align-md-left {
143
+ left: 0
144
+ }
145
+ }
146
+
147
+ @media screen and (min-width:1440px) {
148
+ .align-lg-top {
149
+ top: 0
150
+ }
151
+
152
+ .align-lg-right {
153
+ right: 0
154
+ }
155
+
156
+ .align-lg-bottom {
157
+ bottom: 0
158
+ }
159
+
160
+ .align-lg-left {
161
+ left: 0
162
+ }
163
+ }
164
+
165
+ @media screen and (min-width:1920px) {
166
+ .align-xl-top {
167
+ top: 0
168
+ }
169
+
170
+ .align-xl-right {
171
+ right: 0
172
+ }
173
+
174
+ .align-xl-bottom {
175
+ bottom: 0
176
+ }
177
+
178
+ .align-xl-left {
179
+ left: 0
180
+ }
181
+ }
182
+
183
+ // -----------------------------------------------------------------------------------------------------
184
+ // @ Size helpers
185
+ // -----------------------------------------------------------------------------------------------------
186
+ .w-auto {
187
+ width: auto !important;
188
+ min-width: auto !important;
189
+ max-width: auto !important
190
+ }
191
+
192
+ .h-auto {
193
+ height: auto !important;
194
+ min-height: auto !important;
195
+ max-height: auto !important
196
+ }
197
+
198
+ .w-264 {
199
+ width: 264px !important;
200
+ min-width: 264px !important;
201
+ max-width: 264px !important
202
+ }
203
+
204
+ .w-300 {
205
+ width: 300px !important;
206
+ min-width: 300px !important;
207
+ max-width: 300px !important
208
+ }
209
+
210
+ .w-400 {
211
+ width: 400px !important;
212
+ min-width: 400px !important;
213
+ max-width: 400px !important
214
+ }
215
+
216
+ .w-500 {
217
+ width: 500px !important;
218
+ min-width: 500px !important;
219
+ max-width: 500px !important
220
+ }
221
+
222
+ .w-600 {
223
+ width: 600px !important;
224
+ min-width: 600px !important;
225
+ max-width: 600px !important
226
+ }
227
+
228
+ .h-264 {
229
+ height: 264px !important;
230
+ min-height: 264px !important;
231
+ max-height: 264px !important
232
+ }
233
+
234
+ .h-300 {
235
+ height: 300px !important;
236
+ min-height: 300px !important;
237
+ max-height: 300px !important
238
+ }
239
+
240
+ .h-400 {
241
+ height: 400px !important;
242
+ min-height: 400px !important;
243
+ max-height: 400px !important
244
+ }
245
+
246
+ .h-500 {
247
+ height: 500px !important;
248
+ min-height: 500px !important;
249
+ max-height: 500px !important
250
+ }
251
+
252
+ .h-600 {
253
+ height: 600px !important;
254
+ min-height: 600px !important;
255
+ max-height: 600px !important
256
+ }
257
+
258
+ @media only screen and (min-width:600px) {
259
+ .w-sm-auto {
260
+ width: auto !important;
261
+ min-width: auto !important;
262
+ max-width: auto !important
263
+ }
264
+
265
+ .h-sm-auto {
266
+ height: auto !important;
267
+ min-height: auto !important;
268
+ max-height: auto !important
269
+ }
270
+
271
+ .w-sm-264 {
272
+ width: 264px !important;
273
+ min-width: 264px !important;
274
+ max-width: 264px !important
275
+ }
276
+
277
+ .w-sm-300 {
278
+ width: 300px !important;
279
+ min-width: 300px !important;
280
+ max-width: 300px !important
281
+ }
282
+
283
+ .w-sm-400 {
284
+ width: 400px !important;
285
+ min-width: 400px !important;
286
+ max-width: 400px !important
287
+ }
288
+
289
+ .w-sm-500 {
290
+ width: 500px !important;
291
+ min-width: 500px !important;
292
+ max-width: 500px !important
293
+ }
294
+
295
+ .w-sm-600 {
296
+ width: 600px !important;
297
+ min-width: 600px !important;
298
+ max-width: 600px !important
299
+ }
300
+
301
+ .h-sm-264 {
302
+ height: 264px !important;
303
+ min-height: 264px !important;
304
+ max-height: 264px !important
305
+ }
306
+
307
+ .h-sm-300 {
308
+ height: 300px !important;
309
+ min-height: 300px !important;
310
+ max-height: 300px !important
311
+ }
312
+
313
+ .h-sm-400 {
314
+ height: 400px !important;
315
+ min-height: 400px !important;
316
+ max-height: 400px !important
317
+ }
318
+
319
+ .h-sm-500 {
320
+ height: 500px !important;
321
+ min-height: 500px !important;
322
+ max-height: 500px !important
323
+ }
324
+
325
+ .h-sm-600 {
326
+ height: 600px !important;
327
+ min-height: 600px !important;
328
+ max-height: 600px !important
329
+ }
330
+ }
331
+
332
+ @media only screen and (min-width:1024px) {
333
+ .w-md-auto {
334
+ width: auto !important;
335
+ min-width: auto !important;
336
+ max-width: auto !important
337
+ }
338
+
339
+ .h-md-auto {
340
+ height: auto !important;
341
+ min-height: auto !important;
342
+ max-height: auto !important
343
+ }
344
+
345
+ .w-md-264 {
346
+ width: 264px !important;
347
+ min-width: 264px !important;
348
+ max-width: 264px !important
349
+ }
350
+
351
+ .w-md-300 {
352
+ width: 300px !important;
353
+ min-width: 300px !important;
354
+ max-width: 300px !important
355
+ }
356
+
357
+ .w-md-400 {
358
+ width: 400px !important;
359
+ min-width: 400px !important;
360
+ max-width: 400px !important
361
+ }
362
+
363
+ .w-md-500 {
364
+ width: 500px !important;
365
+ min-width: 500px !important;
366
+ max-width: 500px !important
367
+ }
368
+
369
+ .w-md-600 {
370
+ width: 600px !important;
371
+ min-width: 600px !important;
372
+ max-width: 600px !important
373
+ }
374
+
375
+ .h-md-264 {
376
+ height: 264px !important;
377
+ min-height: 264px !important;
378
+ max-height: 264px !important
379
+ }
380
+
381
+ .h-md-300 {
382
+ height: 300px !important;
383
+ min-height: 300px !important;
384
+ max-height: 300px !important
385
+ }
386
+
387
+ .h-md-400 {
388
+ height: 400px !important;
389
+ min-height: 400px !important;
390
+ max-height: 400px !important
391
+ }
392
+
393
+ .h-md-500 {
394
+ height: 500px !important;
395
+ min-height: 500px !important;
396
+ max-height: 500px !important
397
+ }
398
+
399
+ .h-md-600 {
400
+ height: 600px !important;
401
+ min-height: 600px !important;
402
+ max-height: 600px !important
403
+ }
404
+ }
405
+
406
+ @media only screen and (min-width:1440px) {
407
+ .w-lg-auto {
408
+ width: auto !important;
409
+ min-width: auto !important;
410
+ max-width: auto !important
411
+ }
412
+
413
+ .h-lg-auto {
414
+ height: auto !important;
415
+ min-height: auto !important;
416
+ max-height: auto !important
417
+ }
418
+
419
+ .w-lg-264 {
420
+ width: 264px !important;
421
+ min-width: 264px !important;
422
+ max-width: 264px !important
423
+ }
424
+
425
+ .w-lg-300 {
426
+ width: 300px !important;
427
+ min-width: 300px !important;
428
+ max-width: 300px !important
429
+ }
430
+
431
+ .w-lg-400 {
432
+ width: 400px !important;
433
+ min-width: 400px !important;
434
+ max-width: 400px !important
435
+ }
436
+
437
+ .w-lg-500 {
438
+ width: 500px !important;
439
+ min-width: 500px !important;
440
+ max-width: 500px !important
441
+ }
442
+
443
+ .w-lg-600 {
444
+ width: 600px !important;
445
+ min-width: 600px !important;
446
+ max-width: 600px !important
447
+ }
448
+
449
+ .h-lg-264 {
450
+ height: 264px !important;
451
+ min-height: 264px !important;
452
+ max-height: 264px !important
453
+ }
454
+
455
+ .h-lg-300 {
456
+ height: 300px !important;
457
+ min-height: 300px !important;
458
+ max-height: 300px !important
459
+ }
460
+
461
+ .h-lg-400 {
462
+ height: 400px !important;
463
+ min-height: 400px !important;
464
+ max-height: 400px !important
465
+ }
466
+
467
+ .h-lg-500 {
468
+ height: 500px !important;
469
+ min-height: 500px !important;
470
+ max-height: 500px !important
471
+ }
472
+
473
+ .h-lg-600 {
474
+ height: 600px !important;
475
+ min-height: 600px !important;
476
+ max-height: 600px !important
477
+ }
478
+ }
479
+
480
+ @media only screen and (min-width:1920px) {
481
+ .w-xl-auto {
482
+ width: auto !important;
483
+ min-width: auto !important;
484
+ max-width: auto !important
485
+ }
486
+
487
+ .h-xl-auto {
488
+ height: auto !important;
489
+ min-height: auto !important;
490
+ max-height: auto !important
491
+ }
492
+
493
+ .w-xl-264 {
494
+ width: 264px !important;
495
+ min-width: 264px !important;
496
+ max-width: 264px !important
497
+ }
498
+
499
+ .w-xl-300 {
500
+ width: 300px !important;
501
+ min-width: 300px !important;
502
+ max-width: 300px !important
503
+ }
504
+
505
+ .w-xl-400 {
506
+ width: 400px !important;
507
+ min-width: 400px !important;
508
+ max-width: 400px !important
509
+ }
510
+
511
+ .w-xl-500 {
512
+ width: 500px !important;
513
+ min-width: 500px !important;
514
+ max-width: 500px !important
515
+ }
516
+
517
+ .w-xl-600 {
518
+ width: 600px !important;
519
+ min-width: 600px !important;
520
+ max-width: 600px !important
521
+ }
522
+
523
+ .h-xl-264 {
524
+ height: 264px !important;
525
+ min-height: 264px !important;
526
+ max-height: 264px !important
527
+ }
528
+
529
+ .h-xl-300 {
530
+ height: 300px !important;
531
+ min-height: 300px !important;
532
+ max-height: 300px !important
533
+ }
534
+
535
+ .h-xl-400 {
536
+ height: 400px !important;
537
+ min-height: 400px !important;
538
+ max-height: 400px !important
539
+ }
540
+
541
+ .h-xl-500 {
542
+ height: 500px !important;
543
+ min-height: 500px !important;
544
+ max-height: 500px !important
545
+ }
546
+
547
+ .h-xl-600 {
548
+ height: 600px !important;
549
+ min-height: 600px !important;
550
+ max-height: 600px !important
551
+ }
552
+ }
553
+
554
+
555
+ // -----------------------------------------------------------------------------------------------------
556
+ // @ Space helpers
557
+ // -----------------------------------------------------------------------------------------------------
558
+ .m-auto {
559
+ margin: auto !important
560
+ }
561
+
562
+ .mt-auto {
563
+ margin-top: auto !important
564
+ }
565
+
566
+ .mr-auto {
567
+ margin-right: auto !important
568
+ }
569
+
570
+ .mb-auto {
571
+ margin-bottom: auto !important
572
+ }
573
+
574
+ .ml-auto {
575
+ margin-left: auto !important
576
+ }
577
+
578
+ .mx-auto {
579
+ margin-right: auto !important;
580
+ margin-left: auto !important
581
+ }
582
+
583
+ .my-auto {
584
+ margin-top: auto !important;
585
+ margin-bottom: auto !important
586
+ }
587
+
588
+ @media screen and (min-width:600px) {
589
+ .mx-sm-auto {
590
+ margin-right: auto !important;
591
+ margin-left: auto !important
592
+ }
593
+
594
+ .my-sm-auto {
595
+ margin-top: auto !important;
596
+ margin-bottom: auto !important
597
+ }
598
+ }
599
+
600
+ @media screen and (min-width:1024px) {
601
+ .m-md-auto {
602
+ margin: auto !important
603
+ }
604
+
605
+ .mt-md-auto {
606
+ margin-top: auto !important
607
+ }
608
+
609
+ .mr-md-auto {
610
+ margin-right: auto !important
611
+ }
612
+
613
+ .mb-md-auto {
614
+ margin-bottom: auto !important
615
+ }
616
+
617
+ .ml-md-auto {
618
+ margin-left: auto !important
619
+ }
620
+
621
+ .mx-md-auto {
622
+ margin-right: auto !important;
623
+ margin-left: auto !important
624
+ }
625
+
626
+ .my-md-auto {
627
+ margin-top: auto !important;
628
+ margin-bottom: auto !important
629
+ }
630
+ }
631
+
632
+ @media screen and (min-width:1440px) {}
633
+
634
+ @media screen and (min-width:1920px) {
635
+ .m-xl-auto {
636
+ margin: auto !important
637
+ }
638
+
639
+ .mt-xl-auto {
640
+ margin-top: auto !important
641
+ }
642
+
643
+ .mr-xl-auto {
644
+ margin-right: auto !important
645
+ }
646
+
647
+ .mb-xl-auto {
648
+ margin-bottom: auto !important
649
+ }
650
+
651
+ .ml-xl-auto {
652
+ margin-left: auto !important
653
+ }
654
+
655
+ .mx-xl-auto {
656
+ margin-right: auto !important;
657
+ margin-left: auto !important
658
+ }
659
+
660
+ .my-xl-auto {
661
+ margin-top: auto !important;
662
+ margin-bottom: auto !important
663
+ }
664
+ }
665
+
666
+ // -----------------------------------------------------------------------------------------------------
667
+ // @ Text Style
668
+ // -----------------------------------------------------------------------------------------------------
669
+ // Text format helpers
670
+ .text-decoration-strike,
671
+ .text-strike {
672
+ text-decoration: line-through !important
673
+ }
674
+
675
+ .text-decoration-none,
676
+ .text-none {
677
+ text-decoration: none !important
678
+ }
679
+
680
+ .text-super {
681
+ vertical-align: super !important
682
+ }
683
+
684
+ .text-sub {
685
+ vertical-align: sub !important
686
+ }
687
+
688
+ .text-capitalize {
689
+ text-transform: capitalize !important
690
+ }
691
+
692
+ .text-lowercase {
693
+ text-transform: lowercase !important
694
+ }
695
+
696
+ .text-uppercase {
697
+ text-transform: uppercase !important
698
+ }
699
+
700
+ .text-boxed {
701
+ border-radius: 2px;
702
+ padding: 4px 8px;
703
+ margin: 0 8px;
704
+ font-size: 11px;
705
+ font-weight: 600;
706
+ white-space: nowrap
707
+ }
708
+
709
+ .text-truncate {
710
+ display: block;
711
+ overflow: hidden;
712
+ text-overflow: ellipsis;
713
+ white-space: nowrap
714
+ }
715
+
716
+ .text-nowrap {
717
+ white-space: nowrap
718
+ }
719
+
720
+ // -----------------------------------------------------------------------------------------------------
721
+ // @ Border helpers
722
+ // -----------------------------------------------------------------------------------------------------
723
+ // none:0 thin:2 thick:4 thicker:8
724
+ .b-0,
725
+ .border-0 {
726
+ border: 0 solid
727
+ }
728
+
729
+ .border-top-0,
730
+ .bt-0 {
731
+ border-top: 0 solid
732
+ }
733
+
734
+ .border-right-0,
735
+ .br-0 {
736
+ border-right: 0 solid
737
+ }
738
+
739
+ .bb-0,
740
+ .border-bottom-0 {
741
+ border-bottom: 0 solid
742
+ }
743
+
744
+ .bl-0,
745
+ .border-left-0 {
746
+ border-left: 0 solid
747
+ }
748
+
749
+ .border-horizontal-0,
750
+ .bx-0 {
751
+ border-left: 0 solid;
752
+ border-right: 0 solid
753
+ }
754
+
755
+ .border-vertical-0,
756
+ .by-0 {
757
+ border-top: 0 solid;
758
+ border-bottom: 0 solid
759
+ }
760
+
761
+ .b-1,
762
+ .border-1 {
763
+ border: 1px solid
764
+ }
765
+
766
+ .border-top-1,
767
+ .bt-1 {
768
+ border-top: 1px solid
769
+ }
770
+
771
+ .border-right-1,
772
+ .br-1 {
773
+ border-right: 1px solid
774
+ }
775
+
776
+ .bb-1,
777
+ .border-bottom-1 {
778
+ border-bottom: 1px solid
779
+ }
780
+
781
+ .bl-1,
782
+ .border-left-1 {
783
+ border-left: 1px solid
784
+ }
785
+
786
+ .border-horizontal-1,
787
+ .bx-1 {
788
+ border-left: 1px solid;
789
+ border-right: 1px solid
790
+ }
791
+
792
+ .border-vertical-1,
793
+ .by-1 {
794
+ border-top: 1px solid;
795
+ border-bottom: 1px solid
796
+ }
797
+
798
+ .b-2,
799
+ .border-2 {
800
+ border: 2px solid
801
+ }
802
+
803
+ .border-top-2,
804
+ .bt-2 {
805
+ border-top: 2px solid
806
+ }
807
+
808
+ .border-right-2,
809
+ .br-2 {
810
+ border-right: 2px solid
811
+ }
812
+
813
+ .bb-2,
814
+ .border-bottom-2 {
815
+ border-bottom: 2px solid
816
+ }
817
+
818
+ .bl-2,
819
+ .border-left-2 {
820
+ border-left: 2px solid
821
+ }
822
+
823
+ .border-horizontal-2,
824
+ .bx-2 {
825
+ border-left: 2px solid;
826
+ border-right: 2px solid
827
+ }
828
+
829
+ .border-vertical-2,
830
+ .by-2 {
831
+ border-top: 2px solid;
832
+ border-bottom: 2px solid
833
+ }
834
+
835
+ .b-3,
836
+ .border-3 {
837
+ border: 3px solid
838
+ }
839
+
840
+ .border-top-3,
841
+ .bt-3 {
842
+ border-top: 3px solid
843
+ }
844
+
845
+ .border-right-3,
846
+ .br-3 {
847
+ border-right: 3px solid
848
+ }
849
+
850
+ .bb-3,
851
+ .border-bottom-3 {
852
+ border-bottom: 3px solid
853
+ }
854
+
855
+ .bl-3,
856
+ .border-left-3 {
857
+ border-left: 3px solid
858
+ }
859
+
860
+ .border-horizontal-3,
861
+ .bx-3 {
862
+ border-left: 3px solid;
863
+ border-right: 3px solid
864
+ }
865
+
866
+ .border-vertical-3,
867
+ .by-3 {
868
+ border-top: 3px solid;
869
+ border-bottom: 3px solid
870
+ }
871
+
872
+ .b-4,
873
+ .border-4 {
874
+ border: 4px solid
875
+ }
876
+
877
+ .border-top-4,
878
+ .bt-4 {
879
+ border-top: 4px solid
880
+ }
881
+
882
+ .border-right-4,
883
+ .br-4 {
884
+ border-right: 4px solid
885
+ }
886
+
887
+ .bb-4,
888
+ .border-bottom-4 {
889
+ border-bottom: 4px solid
890
+ }
891
+
892
+ .bl-4,
893
+ .border-left-4 {
894
+ border-left: 4px solid
895
+ }
896
+
897
+ .border-horizontal-4,
898
+ .bx-4 {
899
+ border-left: 4px solid;
900
+ border-right: 4px solid
901
+ }
902
+
903
+ .border-vertical-4,
904
+ .by-4 {
905
+ border-top: 4px solid;
906
+ border-bottom: 4px solid
907
+ }
908
+
909
+ .b-5,
910
+ .border-5 {
911
+ border: 5px solid
912
+ }
913
+
914
+ .border-top-5,
915
+ .bt-5 {
916
+ border-top: 5px solid
917
+ }
918
+
919
+ .border-right-5,
920
+ .br-5 {
921
+ border-right: 5px solid
922
+ }
923
+
924
+ .bb-5,
925
+ .border-bottom-5 {
926
+ border-bottom: 5px solid
927
+ }
928
+
929
+ .bl-5,
930
+ .border-left-5 {
931
+ border-left: 5px solid
932
+ }
933
+
934
+ .border-horizontal-5,
935
+ .bx-5 {
936
+ border-left: 5px solid;
937
+ border-right: 5px solid
938
+ }
939
+
940
+ .border-vertical-5,
941
+ .by-5 {
942
+ border-top: 5px solid;
943
+ border-bottom: 5px solid
944
+ }
945
+
946
+ .b-6,
947
+ .border-6 {
948
+ border: 6px solid
949
+ }
950
+
951
+ .border-top-6,
952
+ .bt-6 {
953
+ border-top: 6px solid
954
+ }
955
+
956
+ .border-right-6,
957
+ .br-6 {
958
+ border-right: 6px solid
959
+ }
960
+
961
+ .bb-6,
962
+ .border-bottom-6 {
963
+ border-bottom: 6px solid
964
+ }
965
+
966
+ .bl-6,
967
+ .border-left-6 {
968
+ border-left: 6px solid
969
+ }
970
+
971
+ .border-horizontal-6,
972
+ .bx-6 {
973
+ border-left: 6px solid;
974
+ border-right: 6px solid
975
+ }
976
+
977
+ .border-vertical-6,
978
+ .by-6 {
979
+ border-top: 6px solid;
980
+ border-bottom: 6px solid
981
+ }
982
+
983
+ .b-7,
984
+ .border-7 {
985
+ border: 7px solid
986
+ }
987
+
988
+ .border-top-7,
989
+ .bt-7 {
990
+ border-top: 7px solid
991
+ }
992
+
993
+ .border-right-7,
994
+ .br-7 {
995
+ border-right: 7px solid
996
+ }
997
+
998
+ .bb-7,
999
+ .border-bottom-7 {
1000
+ border-bottom: 7px solid
1001
+ }
1002
+
1003
+ .bl-7,
1004
+ .border-left-7 {
1005
+ border-left: 7px solid
1006
+ }
1007
+
1008
+ .border-horizontal-7,
1009
+ .bx-7 {
1010
+ border-left: 7px solid;
1011
+ border-right: 7px solid
1012
+ }
1013
+
1014
+ .border-vertical-7,
1015
+ .by-7 {
1016
+ border-top: 7px solid;
1017
+ border-bottom: 7px solid
1018
+ }
1019
+
1020
+ .b-8,
1021
+ .border-8 {
1022
+ border: 8px solid
1023
+ }
1024
+
1025
+ .border-top-8,
1026
+ .bt-8 {
1027
+ border-top: 8px solid
1028
+ }
1029
+
1030
+ .border-right-8,
1031
+ .br-8 {
1032
+ border-right: 8px solid
1033
+ }
1034
+
1035
+ .bb-8,
1036
+ .border-bottom-8 {
1037
+ border-bottom: 8px solid
1038
+ }
1039
+
1040
+ .bl-8,
1041
+ .border-left-8 {
1042
+ border-left: 8px solid
1043
+ }
1044
+
1045
+ .border-horizontal-8,
1046
+ .bx-8 {
1047
+ border-left: 8px solid;
1048
+ border-right: 8px solid
1049
+ }
1050
+
1051
+ .border-vertical-8,
1052
+ .by-8 {
1053
+ border-top: 8px solid;
1054
+ border-bottom: 8px solid
1055
+ }
1056
+
1057
+ .border-none {
1058
+ border: none !important
1059
+ }
1060
+
1061
+ // -----------------------------------------------------------------------------------------------------
1062
+ // @ Border Radius helpers
1063
+ // -----------------------------------------------------------------------------------------------------
1064
+ .border-radius-0,
1065
+ .border-radius-b-0,
1066
+ .border-radius-l-0,
1067
+ .border-radius-r-0,
1068
+ .border-radius-t-0 {
1069
+ border-radius: 0 !important
1070
+ }
1071
+
1072
+ .border-radius-1 {
1073
+ border-radius: 1px !important
1074
+ }
1075
+
1076
+ .border-radius-b-1 {
1077
+ border-radius: 0 0 1px 1px !important
1078
+ }
1079
+
1080
+ .border-radius-t-1 {
1081
+ border-radius: 1px 1px 0 0 !important
1082
+ }
1083
+
1084
+ .border-radius-l-1 {
1085
+ border-radius: 1px 0 0 1px !important
1086
+ }
1087
+
1088
+ .border-radius-r-1 {
1089
+ border-radius: 0 1px 1px 0 !important
1090
+ }
1091
+
1092
+ .border-radius-2 {
1093
+ border-radius: 2px !important
1094
+ }
1095
+
1096
+ .border-radius-b-2 {
1097
+ border-radius: 0 0 2px 2px !important
1098
+ }
1099
+
1100
+ .border-radius-t-2 {
1101
+ border-radius: 2px 2px 0 0 !important
1102
+ }
1103
+
1104
+ .border-radius-l-2 {
1105
+ border-radius: 2px 0 0 2px !important
1106
+ }
1107
+
1108
+ .border-radius-r-2 {
1109
+ border-radius: 0 2px 2px 0 !important
1110
+ }
1111
+
1112
+ .border-radius-3 {
1113
+ border-radius: 3px !important
1114
+ }
1115
+
1116
+ .border-radius-b-3 {
1117
+ border-radius: 0 0 3px 3px !important
1118
+ }
1119
+
1120
+ .border-radius-t-3 {
1121
+ border-radius: 3px 3px 0 0 !important
1122
+ }
1123
+
1124
+ .border-radius-l-3 {
1125
+ border-radius: 3px 0 0 3px !important
1126
+ }
1127
+
1128
+ .border-radius-r-3 {
1129
+ border-radius: 0 3px 3px 0 !important
1130
+ }
1131
+
1132
+ .border-radius-4 {
1133
+ border-radius: 4px !important
1134
+ }
1135
+
1136
+ .border-radius-b-4 {
1137
+ border-radius: 0 0 4px 4px !important
1138
+ }
1139
+
1140
+ .border-radius-t-4 {
1141
+ border-radius: 4px 4px 0 0 !important
1142
+ }
1143
+
1144
+ .border-radius-l-4 {
1145
+ border-radius: 4px 0 0 4px !important
1146
+ }
1147
+
1148
+ .border-radius-r-4 {
1149
+ border-radius: 0 4px 4px 0 !important
1150
+ }
1151
+
1152
+ .border-radius-5 {
1153
+ border-radius: 5px !important
1154
+ }
1155
+
1156
+ .border-radius-b-5 {
1157
+ border-radius: 0 0 5px 5px !important
1158
+ }
1159
+
1160
+ .border-radius-t-5 {
1161
+ border-radius: 5px 5px 0 0 !important
1162
+ }
1163
+
1164
+ .border-radius-l-5 {
1165
+ border-radius: 5px 0 0 5px !important
1166
+ }
1167
+
1168
+ .border-radius-r-5 {
1169
+ border-radius: 0 5px 5px 0 !important
1170
+ }
1171
+
1172
+ .border-radius-6 {
1173
+ border-radius: 6px !important
1174
+ }
1175
+
1176
+ .border-radius-b-6 {
1177
+ border-radius: 0 0 6px 6px !important
1178
+ }
1179
+
1180
+ .border-radius-t-6 {
1181
+ border-radius: 6px 6px 0 0 !important
1182
+ }
1183
+
1184
+ .border-radius-l-6 {
1185
+ border-radius: 6px 0 0 6px !important
1186
+ }
1187
+
1188
+ .border-radius-r-6 {
1189
+ border-radius: 0 6px 6px 0 !important
1190
+ }
1191
+
1192
+ .border-radius-7 {
1193
+ border-radius: 7px !important
1194
+ }
1195
+
1196
+ .border-radius-b-7 {
1197
+ border-radius: 0 0 7px 7px !important
1198
+ }
1199
+
1200
+ .border-radius-t-7 {
1201
+ border-radius: 7px 7px 0 0 !important
1202
+ }
1203
+
1204
+ .border-radius-l-7 {
1205
+ border-radius: 7px 0 0 7px !important
1206
+ }
1207
+
1208
+ .border-radius-r-7 {
1209
+ border-radius: 0 7px 7px 0 !important
1210
+ }
1211
+
1212
+ .border-radius-8 {
1213
+ border-radius: 8px !important
1214
+ }
1215
+
1216
+ .border-radius-b-8 {
1217
+ border-radius: 0 0 8px 8px !important
1218
+ }
1219
+
1220
+ .border-radius-t-8 {
1221
+ border-radius: 8px 8px 0 0 !important
1222
+ }
1223
+
1224
+ .border-radius-l-8 {
1225
+ border-radius: 8px 0 0 8px !important
1226
+ }
1227
+
1228
+ .border-radius-r-8 {
1229
+ border-radius: 0 8px 8px 0 !important
1230
+ }
1231
+
1232
+ .border-radius-circle {
1233
+ border-radius: 999px !important
1234
+ }
1235
+
1236
+ // -----------------------------------------------------------------------------------------------------
1237
+ // @ Overflow helpers
1238
+ // -----------------------------------------------------------------------------------------------------
1239
+ .overflow-auto {
1240
+ overflow: auto
1241
+ }
1242
+
1243
+ .overflow-scroll {
1244
+ overflow: scroll
1245
+ }
1246
+
1247
+ .overflow-hidden {
1248
+ overflow: hidden
1249
+ }
1250
+
1251
+ .overflow-overlay {
1252
+ overflow: overlay
1253
+ }
1254
+
1255
+ .overflow-x-auto {
1256
+ overflow-x: auto;
1257
+ overflow-y: hidden
1258
+ }
1259
+
1260
+ .overflow-x-scroll {
1261
+ overflow-x: scroll;
1262
+ overflow-y: hidden
1263
+ }
1264
+
1265
+ .overflow-x-hidden {
1266
+ overflow-x: hidden;
1267
+ overflow-y: hidden
1268
+ }
1269
+
1270
+ .overflow-x-overlay {
1271
+ overflow-x: overlay;
1272
+ overflow-y: hidden
1273
+ }
1274
+
1275
+ .overflow-y-auto {
1276
+ overflow-y: auto;
1277
+ overflow-x: hidden
1278
+ }
1279
+
1280
+ .overflow-y-scroll {
1281
+ overflow-y: scroll;
1282
+ overflow-x: hidden
1283
+ }
1284
+
1285
+ .overflow-y-hidden {
1286
+ overflow-y: hidden;
1287
+ overflow-x: hidden
1288
+ }
1289
+
1290
+ .overflow-y-overlay {
1291
+ overflow-y: overlay;
1292
+ overflow-x: hidden
1293
+ }
1294
+
1295
+ // -----------------------------------------------------------------------------------------------------
1296
+ // @ Display helpers
1297
+ // -----------------------------------------------------------------------------------------------------
1298
+ .d-none {
1299
+ display: none !important;
1300
+ }
1301
+
1302
+ .d-inline {
1303
+ display: inline !important;
1304
+ }
1305
+
1306
+ .d-inline-block {
1307
+ display: inline-block !important;
1308
+ }
1309
+
1310
+ .d-block {
1311
+ display: block !important;
1312
+ }
1313
+
1314
+ .d-grid {
1315
+ display: grid !important;
1316
+ }
1317
+
1318
+ .d-table {
1319
+ display: table !important;
1320
+ }
1321
+
1322
+ .d-table-cell {
1323
+ display: table-cell !important;
1324
+ }
1325
+
1326
+ .d-table-row {
1327
+ display: table-row !important;
1328
+ }
1329
+
1330
+ .d-inline-flex {
1331
+ display: inline-flex !important;
1332
+ }
1333
+
1334
+ .d-flex {
1335
+ display: flex !important;
1336
+ }
1337
+
1338
+ .d-flex-center-center {
1339
+ display: flex !important;
1340
+ justify-content: center !important;
1341
+ align-items: center !important;
1342
+ }
1343
+
1344
+ .d-flex-row {
1345
+ display: flex !important;
1346
+ flex-direction: row !important;
1347
+ }
1348
+
1349
+ .d-flex-column {
1350
+ display: flex !important;
1351
+ flex-direction: column !important;
1352
+ }
1353
+
1354
+ .d-flex-row-reverse {
1355
+ display: flex !important;
1356
+ flex-direction: row-reverse !important;
1357
+ }
1358
+
1359
+ .d-flex-column-reverse {
1360
+ display: flex !important;
1361
+ flex-direction: column-reverse !important;
1362
+ }
1363
+
1364
+ .d-flex-nowrap {
1365
+ flex-wrap: nowrap !important;
1366
+ }
1367
+
1368
+ .d-flex-wrap {
1369
+ flex-wrap: wrap !important;
1370
+ }
1371
+
1372
+ .d-flex-align-center {
1373
+ display: flex !important;
1374
+ align-items: center !important;
1375
+ }
1376
+
1377
+ .d-flex-align-start {
1378
+ display: flex !important;
1379
+ align-items: flex-start !important;
1380
+ }
1381
+
1382
+ .d-flex-align-end {
1383
+ display: flex !important;
1384
+ align-items: flex-end !important;
1385
+ }
1386
+
1387
+ .d-flex-align-self-end {
1388
+ align-self: flex-end !important;
1389
+ }
1390
+
1391
+ .d-flex-align-self-start {
1392
+ align-self: flex-start !important;
1393
+ }
1394
+
1395
+ .d-flex-center {
1396
+ display: flex !important;
1397
+ justify-content: center !important;
1398
+ }
1399
+
1400
+ .d-flex-flex-end,
1401
+ .d-flex-end {
1402
+ display: flex !important;
1403
+ justify-content: flex-end !important;
1404
+ }
1405
+
1406
+ .d-flex-flex-start,
1407
+ .d-flex-start {
1408
+ display: flex !important;
1409
+ justify-content: flex-start !important;
1410
+ }
1411
+
1412
+ .d-flex-inherit {
1413
+ display: flex !important;
1414
+ justify-content: inherit !important;
1415
+ }
1416
+
1417
+ .d-flex-initial {
1418
+ display: flex !important;
1419
+ justify-content: initial !important;
1420
+ }
1421
+
1422
+ .d-flex-left {
1423
+ display: flex !important;
1424
+ justify-content: left !important;
1425
+ }
1426
+
1427
+ .d-flex-normal {
1428
+ display: flex !important;
1429
+ justify-content: normal !important;
1430
+ }
1431
+
1432
+ .d-flex-revert {
1433
+ display: flex !important;
1434
+ justify-content: revert !important;
1435
+ }
1436
+
1437
+ .d-flex-right {
1438
+ display: flex !important;
1439
+ justify-content: right !important;
1440
+ }
1441
+
1442
+ .d-flex-space-around {
1443
+ display: flex !important;
1444
+ justify-content: space-around !important;
1445
+ }
1446
+
1447
+ .d-flex-space-between {
1448
+ display: flex !important;
1449
+ justify-content: space-between !important;
1450
+ }
1451
+
1452
+ .d-flex-space-evenly {
1453
+ display: flex !important;
1454
+ justify-content: space-evenly !important;
1455
+ }
1456
+
1457
+ .d-flex-stretch {
1458
+ display: flex !important;
1459
+ justify-content: stretch !important;
1460
+ }
1461
+
1462
+ .d-flex-unset {
1463
+ display: flex !important;
1464
+ justify-content: unset !important;
1465
+ }
1466
+
1467
+ @media only screen and (max-width: 599px) {
1468
+ .d-none-xs {
1469
+ display: none !important;
1470
+ }
1471
+
1472
+ .d-inline-xs {
1473
+ display: inline !important;
1474
+ }
1475
+
1476
+ .d-inline-block-xs {
1477
+ display: inline-block !important;
1478
+ }
1479
+
1480
+ .d-block-xs {
1481
+ display: block !important;
1482
+ }
1483
+
1484
+ .d-grid-xs {
1485
+ display: grid !important;
1486
+ }
1487
+
1488
+ .d-table-xs {
1489
+ display: table !important;
1490
+ }
1491
+
1492
+ .d-table-cell-xs {
1493
+ display: table-cell !important;
1494
+ }
1495
+
1496
+ .d-table-row-xs {
1497
+ display: table-row !important;
1498
+ }
1499
+
1500
+ .d-inline-flex-xs {
1501
+ display: inline-flex !important;
1502
+ }
1503
+
1504
+ .d-flex-xs {
1505
+ display: flex !important;
1506
+ }
1507
+
1508
+ .d-flex-xs-center-center {
1509
+ display: flex !important;
1510
+ justify-content: center !important;
1511
+ align-items: center !important;
1512
+ }
1513
+
1514
+ .d-flex-xs-row {
1515
+ display: flex !important;
1516
+ flex-direction: row !important;
1517
+ }
1518
+
1519
+ .d-flex-xs-column {
1520
+ display: flex !important;
1521
+ flex-direction: column !important;
1522
+ }
1523
+
1524
+ .d-flex-xs-nowrap {
1525
+ flex-wrap: nowrap !important;
1526
+ }
1527
+
1528
+ .d-flex-xs-align-center {
1529
+ display: flex !important;
1530
+ align-items: center !important;
1531
+ }
1532
+
1533
+ .d-flex-xs-align-start {
1534
+ display: flex !important;
1535
+ align-items: flex-start !important;
1536
+ }
1537
+
1538
+ .d-flex-xs-align-end {
1539
+ display: flex !important;
1540
+ align-items: flex-end !important;
1541
+ }
1542
+
1543
+ .d-flex-xs-align-self-end {
1544
+ align-self: flex-end !important;
1545
+ }
1546
+
1547
+ .d-flex-xs-align-self-start {
1548
+ align-self: flex-start !important;
1549
+ }
1550
+
1551
+ .d-flex-xs-center {
1552
+ display: flex !important;
1553
+ justify-content: center !important;
1554
+ }
1555
+
1556
+ .d-flex-xs-flex-end,
1557
+ .d-flex-xs-end {
1558
+ display: flex !important;
1559
+ justify-content: flex-end !important;
1560
+ }
1561
+
1562
+ .d-flex-xs-flex-start,
1563
+ .d-flex-xs-start {
1564
+ display: flex !important;
1565
+ justify-content: flex-start !important;
1566
+ }
1567
+
1568
+ .d-flex-xs-inherit {
1569
+ display: flex !important;
1570
+ justify-content: inherit !important;
1571
+ }
1572
+
1573
+ .d-flex-xs-initial {
1574
+ display: flex !important;
1575
+ justify-content: initial !important;
1576
+ }
1577
+
1578
+ .d-flex-xs-left {
1579
+ display: flex !important;
1580
+ justify-content: left !important;
1581
+ }
1582
+
1583
+ .d-flex-xs-normal {
1584
+ display: flex !important;
1585
+ justify-content: normal !important;
1586
+ }
1587
+
1588
+ .d-flex-xs-revert {
1589
+ display: flex !important;
1590
+ justify-content: revert !important;
1591
+ }
1592
+
1593
+ .d-flex-xs-right {
1594
+ display: flex !important;
1595
+ justify-content: right !important;
1596
+ }
1597
+
1598
+ .d-flex-xs-space-around {
1599
+ display: flex !important;
1600
+ justify-content: space-around !important;
1601
+ }
1602
+
1603
+ .d-flex-xs-space-between {
1604
+ display: flex !important;
1605
+ justify-content: space-between !important;
1606
+ }
1607
+
1608
+ .d-flex-xs-space-evenly {
1609
+ display: flex !important;
1610
+ justify-content: space-evenly !important;
1611
+ }
1612
+
1613
+ .d-flex-xs-stretch {
1614
+ display: flex !important;
1615
+ justify-content: stretch !important;
1616
+ }
1617
+
1618
+ .d-flex-xs-unset {
1619
+ display: flex !important;
1620
+ justify-content: unset !important;
1621
+ }
1622
+ }
1623
+
1624
+ @media only screen and (min-width: 600px) {
1625
+ .d-none-sm {
1626
+ display: none !important;
1627
+ }
1628
+
1629
+ .d-inline-sm {
1630
+ display: inline !important;
1631
+ }
1632
+
1633
+ .d-inline-block-sm {
1634
+ display: inline-block !important;
1635
+ }
1636
+
1637
+ .d-block-sm {
1638
+ display: block !important;
1639
+ }
1640
+
1641
+ .d-grid-sm {
1642
+ display: grid !important;
1643
+ }
1644
+
1645
+ .d-table-sm {
1646
+ display: table !important;
1647
+ }
1648
+
1649
+ .d-table-cell-sm {
1650
+ display: table-cell !important;
1651
+ }
1652
+
1653
+ .d-table-row-sm {
1654
+ display: table-row !important;
1655
+ }
1656
+
1657
+ .d-inline-flex-sm {
1658
+ display: inline-flex !important;
1659
+ }
1660
+
1661
+ .d-flex-sm {
1662
+ display: flex !important;
1663
+ }
1664
+
1665
+ .d-flex-sm-center-center {
1666
+ display: flex !important;
1667
+ justify-content: center !important;
1668
+ align-items: center !important;
1669
+ }
1670
+
1671
+ .d-flex-sm-row {
1672
+ display: flex !important;
1673
+ flex-direction: row !important;
1674
+ }
1675
+
1676
+ .d-flex-sm-column {
1677
+ display: flex !important;
1678
+ flex-direction: column !important;
1679
+ }
1680
+
1681
+ .d-flex-sm-nowrap {
1682
+ flex-wrap: nowrap !important;
1683
+ }
1684
+
1685
+ .d-flex-sm-align-center {
1686
+ display: flex !important;
1687
+ align-items: center !important;
1688
+ }
1689
+
1690
+ .d-flex-sm-align-start {
1691
+ display: flex !important;
1692
+ align-items: flex-start !important;
1693
+ }
1694
+
1695
+ .d-flex-sm-align-end {
1696
+ display: flex !important;
1697
+ align-items: flex-end !important;
1698
+ }
1699
+
1700
+ .d-flex-sm-align-self-end {
1701
+ align-self: flex-end !important;
1702
+ }
1703
+
1704
+ .d-flex-sm-align-self-start {
1705
+ align-self: flex-start !important;
1706
+ }
1707
+
1708
+ .d-flex-sm-center {
1709
+ display: flex !important;
1710
+ justify-content: center !important;
1711
+ }
1712
+
1713
+ .d-flex-sm-flex-end,
1714
+ .d-flex-sm-end {
1715
+ display: flex !important;
1716
+ justify-content: flex-end !important;
1717
+ }
1718
+
1719
+ .d-flex-sm-flex-start,
1720
+ .d-flex-sm-start {
1721
+ display: flex !important;
1722
+ justify-content: flex-start !important;
1723
+ }
1724
+
1725
+ .d-flex-sm-inherit {
1726
+ display: flex !important;
1727
+ justify-content: inherit !important;
1728
+ }
1729
+
1730
+ .d-flex-sm-initial {
1731
+ display: flex !important;
1732
+ justify-content: initial !important;
1733
+ }
1734
+
1735
+ .d-flex-sm-left {
1736
+ display: flex !important;
1737
+ justify-content: left !important;
1738
+ }
1739
+
1740
+ .d-flex-sm-normal {
1741
+ display: flex !important;
1742
+ justify-content: normal !important;
1743
+ }
1744
+
1745
+ .d-flex-sm-revert {
1746
+ display: flex !important;
1747
+ justify-content: revert !important;
1748
+ }
1749
+
1750
+ .d-flex-sm-right {
1751
+ display: flex !important;
1752
+ justify-content: right !important;
1753
+ }
1754
+
1755
+ .d-flex-sm-space-around {
1756
+ display: flex !important;
1757
+ justify-content: space-around !important;
1758
+ }
1759
+
1760
+ .d-flex-sm-space-between {
1761
+ display: flex !important;
1762
+ justify-content: space-between !important;
1763
+ }
1764
+
1765
+ .d-flex-sm-space-evenly {
1766
+ display: flex !important;
1767
+ justify-content: space-evenly !important;
1768
+ }
1769
+
1770
+ .d-flex-sm-stretch {
1771
+ display: flex !important;
1772
+ justify-content: stretch !important;
1773
+ }
1774
+
1775
+ .d-flex-sm-unset {
1776
+ display: flex !important;
1777
+ justify-content: unset !important;
1778
+ }
1779
+ }
1780
+
1781
+ @media only screen and (min-width: 1024px) {
1782
+ .d-none-md {
1783
+ display: none !important;
1784
+ }
1785
+
1786
+ .d-inline-md {
1787
+ display: inline !important;
1788
+ }
1789
+
1790
+ .d-inline-block-md {
1791
+ display: inline-block !important;
1792
+ }
1793
+
1794
+ .d-block-md {
1795
+ display: block !important;
1796
+ }
1797
+
1798
+ .d-grid-md {
1799
+ display: grid !important;
1800
+ }
1801
+
1802
+ .d-table-md {
1803
+ display: table !important;
1804
+ }
1805
+
1806
+ .d-table-cell-md {
1807
+ display: table-cell !important;
1808
+ }
1809
+
1810
+ .d-table-row-md {
1811
+ display: table-row !important;
1812
+ }
1813
+
1814
+ .d-inline-flex-md {
1815
+ display: inline-flex !important;
1816
+ }
1817
+
1818
+ .d-flex-md {
1819
+ display: flex !important;
1820
+ }
1821
+
1822
+ .d-flex-md-center-center {
1823
+ display: flex !important;
1824
+ justify-content: center !important;
1825
+ align-items: center !important;
1826
+ }
1827
+
1828
+ .d-flex-md-row {
1829
+ display: flex !important;
1830
+ flex-direction: row !important;
1831
+ }
1832
+
1833
+ .d-flex-md-column {
1834
+ display: flex !important;
1835
+ flex-direction: column !important;
1836
+ }
1837
+
1838
+ .d-flex-md-nowrap {
1839
+ flex-wrap: nowrap !important;
1840
+ }
1841
+
1842
+ .d-flex-md-align-center {
1843
+ display: flex !important;
1844
+ align-items: center !important;
1845
+ }
1846
+
1847
+ .d-flex-md-align-start {
1848
+ display: flex !important;
1849
+ align-items: flex-start !important;
1850
+ }
1851
+
1852
+ .d-flex-md-align-end {
1853
+ display: flex !important;
1854
+ align-items: flex-end !important;
1855
+ }
1856
+
1857
+ .d-flex-md-align-self-end {
1858
+ align-self: flex-end !important;
1859
+ }
1860
+
1861
+ .d-flex-md-align-self-start {
1862
+ align-self: flex-start !important;
1863
+ }
1864
+
1865
+ .d-flex-md-center {
1866
+ display: flex !important;
1867
+ justify-content: center !important;
1868
+ }
1869
+
1870
+ .d-flex-md-flex-end,
1871
+ .d-flex-md-end {
1872
+ display: flex !important;
1873
+ justify-content: flex-end !important;
1874
+ }
1875
+
1876
+ .d-flex-md-flex-start,
1877
+ .d-flex-md-start {
1878
+ display: flex !important;
1879
+ justify-content: flex-start !important;
1880
+ }
1881
+
1882
+ .d-flex-md-inherit {
1883
+ display: flex !important;
1884
+ justify-content: inherit !important;
1885
+ }
1886
+
1887
+ .d-flex-md-initial {
1888
+ display: flex !important;
1889
+ justify-content: initial !important;
1890
+ }
1891
+
1892
+ .d-flex-md-left {
1893
+ display: flex !important;
1894
+ justify-content: left !important;
1895
+ }
1896
+
1897
+ .d-flex-md-normal {
1898
+ display: flex !important;
1899
+ justify-content: normal !important;
1900
+ }
1901
+
1902
+ .d-flex-md-revert {
1903
+ display: flex !important;
1904
+ justify-content: revert !important;
1905
+ }
1906
+
1907
+ .d-flex-md-right {
1908
+ display: flex !important;
1909
+ justify-content: right !important;
1910
+ }
1911
+
1912
+ .d-flex-md-space-around {
1913
+ display: flex !important;
1914
+ justify-content: space-around !important;
1915
+ }
1916
+
1917
+ .d-flex-md-space-between {
1918
+ display: flex !important;
1919
+ justify-content: space-between !important;
1920
+ }
1921
+
1922
+ .d-flex-md-space-evenly {
1923
+ display: flex !important;
1924
+ justify-content: space-evenly !important;
1925
+ }
1926
+
1927
+ .d-flex-md-stretch {
1928
+ display: flex !important;
1929
+ justify-content: stretch !important;
1930
+ }
1931
+
1932
+ .d-flex-md-unset {
1933
+ display: flex !important;
1934
+ justify-content: unset !important;
1935
+ }
1936
+ }
1937
+
1938
+ @media only screen and (min-width: 1440px) {
1939
+ .d-none-lg {
1940
+ display: none !important;
1941
+ }
1942
+
1943
+ .d-inline-lg {
1944
+ display: inline !important;
1945
+ }
1946
+
1947
+ .d-inline-block-lg {
1948
+ display: inline-block !important;
1949
+ }
1950
+
1951
+ .d-block-lg {
1952
+ display: block !important;
1953
+ }
1954
+
1955
+ .d-grid-lg {
1956
+ display: grid !important;
1957
+ }
1958
+
1959
+ .d-table-lg {
1960
+ display: table !important;
1961
+ }
1962
+
1963
+ .d-table-cell-lg {
1964
+ display: table-cell !important;
1965
+ }
1966
+
1967
+ .d-table-row-lg {
1968
+ display: table-row !important;
1969
+ }
1970
+
1971
+ .d-inline-flex-lg {
1972
+ display: inline-flex !important;
1973
+ }
1974
+
1975
+ .d-flex-lg {
1976
+ display: flex !important;
1977
+ }
1978
+
1979
+ .d-flex-lg-center-center {
1980
+ display: flex !important;
1981
+ justify-content: center !important;
1982
+ align-items: center !important;
1983
+ }
1984
+
1985
+ .d-flex-lg-row {
1986
+ display: flex !important;
1987
+ flex-direction: row !important;
1988
+ }
1989
+
1990
+ .d-flex-lg-column {
1991
+ display: flex !important;
1992
+ flex-direction: column !important;
1993
+ }
1994
+
1995
+ .d-flex-lg-nowrap {
1996
+ flex-wrap: nowrap !important;
1997
+ }
1998
+
1999
+ .d-flex-lg-align-center {
2000
+ display: flex !important;
2001
+ align-items: center !important;
2002
+ }
2003
+
2004
+ .d-flex-lg-align-start {
2005
+ display: flex !important;
2006
+ align-items: flex-start !important;
2007
+ }
2008
+
2009
+ .d-flex-lg-align-end {
2010
+ display: flex !important;
2011
+ align-items: flex-end !important;
2012
+ }
2013
+
2014
+ .d-flex-lg-align-self-end {
2015
+ align-self: flex-end !important;
2016
+ }
2017
+
2018
+ .d-flex-lg-align-self-start {
2019
+ align-self: flex-start !important;
2020
+ }
2021
+
2022
+ .d-flex-lg-center {
2023
+ display: flex !important;
2024
+ justify-content: center !important;
2025
+ }
2026
+
2027
+ .d-flex-lg-flex-end,
2028
+ .d-flex-lg-end {
2029
+ display: flex !important;
2030
+ justify-content: flex-end !important;
2031
+ }
2032
+
2033
+ .d-flex-lg-flex-start,
2034
+ .d-flex-lg-start {
2035
+ display: flex !important;
2036
+ justify-content: flex-start !important;
2037
+ }
2038
+
2039
+ .d-flex-lg-inherit {
2040
+ display: flex !important;
2041
+ justify-content: inherit !important;
2042
+ }
2043
+
2044
+ .d-flex-lg-initial {
2045
+ display: flex !important;
2046
+ justify-content: initial !important;
2047
+ }
2048
+
2049
+ .d-flex-lg-left {
2050
+ display: flex !important;
2051
+ justify-content: left !important;
2052
+ }
2053
+
2054
+ .d-flex-lg-normal {
2055
+ display: flex !important;
2056
+ justify-content: normal !important;
2057
+ }
2058
+
2059
+ .d-flex-lg-revert {
2060
+ display: flex !important;
2061
+ justify-content: revert !important;
2062
+ }
2063
+
2064
+ .d-flex-lg-right {
2065
+ display: flex !important;
2066
+ justify-content: right !important;
2067
+ }
2068
+
2069
+ .d-flex-lg-space-around {
2070
+ display: flex !important;
2071
+ justify-content: space-around !important;
2072
+ }
2073
+
2074
+ .d-flex-lg-space-between {
2075
+ display: flex !important;
2076
+ justify-content: space-between !important;
2077
+ }
2078
+
2079
+ .d-flex-lg-space-evenly {
2080
+ display: flex !important;
2081
+ justify-content: space-evenly !important;
2082
+ }
2083
+
2084
+ .d-flex-lg-stretch {
2085
+ display: flex !important;
2086
+ justify-content: stretch !important;
2087
+ }
2088
+
2089
+ .d-flex-lg-unset {
2090
+ display: flex !important;
2091
+ justify-content: unset !important;
2092
+ }
2093
+ }
2094
+
2095
+ @media only screen and (min-width: 1920px) {
2096
+ .d-none-xl {
2097
+ display: none !important;
2098
+ }
2099
+
2100
+ .d-inline-xl {
2101
+ display: inline !important;
2102
+ }
2103
+
2104
+ .d-inline-block-xl {
2105
+ display: inline-block !important;
2106
+ }
2107
+
2108
+ .d-block-xl {
2109
+ display: block !important;
2110
+ }
2111
+
2112
+ .d-grid-xl {
2113
+ display: grid !important;
2114
+ }
2115
+
2116
+ .d-table-xl {
2117
+ display: table !important;
2118
+ }
2119
+
2120
+ .d-table-cell-xl {
2121
+ display: table-cell !important;
2122
+ }
2123
+
2124
+ .d-table-row-xl {
2125
+ display: table-row !important;
2126
+ }
2127
+
2128
+ .d-inline-flex-xl {
2129
+ display: inline-flex !important;
2130
+ }
2131
+
2132
+ .d-flex-xl {
2133
+ display: flex !important;
2134
+ }
2135
+
2136
+ .d-flex-xl-center-center {
2137
+ display: flex !important;
2138
+ justify-content: center !important;
2139
+ align-items: center !important;
2140
+ }
2141
+
2142
+ .d-flex-xl-row {
2143
+ display: flex !important;
2144
+ flex-direction: row !important;
2145
+ }
2146
+
2147
+ .d-flex-xl-column {
2148
+ display: flex !important;
2149
+ flex-direction: column !important;
2150
+ }
2151
+
2152
+ .d-flex-xl-nowrap {
2153
+ flex-wrap: nowrap !important;
2154
+ }
2155
+
2156
+ .d-flex-xl-align-center {
2157
+ display: flex !important;
2158
+ align-items: center !important;
2159
+ }
2160
+
2161
+ .d-flex-xl-align-start {
2162
+ display: flex !important;
2163
+ align-items: flex-start !important;
2164
+ }
2165
+
2166
+ .d-flex-xl-align-end {
2167
+ display: flex !important;
2168
+ align-items: flex-end !important;
2169
+ }
2170
+
2171
+ .d-flex-xl-align-self-end {
2172
+ align-self: flex-end !important;
2173
+ }
2174
+
2175
+ .d-flex-xl-align-self-start {
2176
+ align-self: flex-start !important;
2177
+ }
2178
+
2179
+ .d-flex-xl-center {
2180
+ display: flex !important;
2181
+ justify-content: center !important;
2182
+ }
2183
+
2184
+ .d-flex-xl-flex-end,
2185
+ .d-flex-xl-end {
2186
+ display: flex !important;
2187
+ justify-content: flex-end !important;
2188
+ }
2189
+
2190
+ .d-flex-xl-flex-start,
2191
+ .d-flex-xl-start {
2192
+ display: flex !important;
2193
+ justify-content: flex-start !important;
2194
+ }
2195
+
2196
+ .d-flex-xl-inherit {
2197
+ display: flex !important;
2198
+ justify-content: inherit !important;
2199
+ }
2200
+
2201
+ .d-flex-xl-initial {
2202
+ display: flex !important;
2203
+ justify-content: initial !important;
2204
+ }
2205
+
2206
+ .d-flex-xl-left {
2207
+ display: flex !important;
2208
+ justify-content: left !important;
2209
+ }
2210
+
2211
+ .d-flex-xl-normal {
2212
+ display: flex !important;
2213
+ justify-content: normal !important;
2214
+ }
2215
+
2216
+ .d-flex-xl-revert {
2217
+ display: flex !important;
2218
+ justify-content: revert !important;
2219
+ }
2220
+
2221
+ .d-flex-xl-right {
2222
+ display: flex !important;
2223
+ justify-content: right !important;
2224
+ }
2225
+
2226
+ .d-flex-xl-space-around {
2227
+ display: flex !important;
2228
+ justify-content: space-around !important;
2229
+ }
2230
+
2231
+ .d-flex-xl-space-between {
2232
+ display: flex !important;
2233
+ justify-content: space-between !important;
2234
+ }
2235
+
2236
+ .d-flex-xl-space-evenly {
2237
+ display: flex !important;
2238
+ justify-content: space-evenly !important;
2239
+ }
2240
+
2241
+ .d-flex-xl-stretch {
2242
+ display: flex !important;
2243
+ justify-content: stretch !important;
2244
+ }
2245
+
2246
+ .d-flex-xl-unset {
2247
+ display: flex !important;
2248
+ justify-content: unset !important;
2249
+ }
2250
+ }
2251
+
2252
+ .flex-grow-1 {
2253
+ flex-grow: 1;
2254
+ ;
2255
+ }
2256
+
2257
+ .flex-shrink-1 {
2258
+ flex-shrink: 1;
2259
+ ;
2260
+ }
2261
+
2262
+ .flex-basis-1 {
2263
+ flex-basis: 100%;
2264
+ ;
2265
+ }
2266
+
2267
+ .flex-full {
2268
+ flex-grow: 1;
2269
+ flex-shrink: 1;
2270
+ flex-basis: 100%;
2271
+ ;
2272
+ }
2273
+
2274
+ // -----------------------------------------------------------------------------------------------------
2275
+ // @ Combo helpers
2276
+ // -----------------------------------------------------------------------------------------------------
2277
+ .combo-image-text,
2278
+ .combo-checkbox-text,
2279
+ .combo-icon-text,
2280
+ .combo-double-line {
2281
+ display: flex;
2282
+ align-items: center;
2283
+ }
2284
+
2285
+ .combo-image-text .side-text,
2286
+ .combo-checkbox-text .side-text,
2287
+ .combo-icon-text .side-text,
2288
+ .combo-double-line .side-text {
2289
+ display: inline-block;
2290
+ width: calc(100% - 48px);
2291
+ line-height: 20px;
2292
+ -webkit-line-clamp: 2;
2293
+ overflow: hidden;
2294
+ text-overflow: ellipsis;
2295
+ word-break: break-word;
2296
+ white-space: initial;
2297
+
2298
+ -webkit-box-orient: vertical;
2299
+
2300
+ }
2301
+
2302
+ .combo-image-text .avatar,
2303
+ .combo-checkbox-text .avatar,
2304
+ .combo-icon-text .avatar,
2305
+ .combo-double-line .avatar {
2306
+ border-radius: 50px;
2307
+ min-width: 24px;
2308
+ min-height: 24px;
2309
+ }
2310
+
2311
+ .one-line-text {
2312
+ line-height: 20px;
2313
+ display: -webkit-box;
2314
+ -webkit-line-clamp: 1;
2315
+ }
2316
+
2317
+ .two-lines-text {
2318
+ line-height: 20px;
2319
+ display: -webkit-box;
2320
+ -webkit-line-clamp: 2;
2321
+ }
2322
+
2323
+ .three-lines-text {
2324
+ line-height: 20px;
2325
+ display: -webkit-box;
2326
+ -webkit-line-clamp: 3;
2327
+ }
2328
+
2329
+ .four-lines-text {
2330
+ line-height: 20px;
2331
+ display: -webkit-box;
2332
+ -webkit-line-clamp: 4;
2333
+ }
2334
+
2335
+ .five-lines-text {
2336
+ line-height: 20px;
2337
+ display: -webkit-box;
2338
+ -webkit-line-clamp: 5;
2339
+ }
2340
+
2341
+ .one-line-text,
2342
+ .two-lines-text,
2343
+ .three-lines-text,
2344
+ .four-lines-text,
2345
+ .five-lines-text {
2346
+ overflow: hidden;
2347
+ text-overflow: ellipsis;
2348
+ word-break: break-word;
2349
+ white-space: initial;
2350
+
2351
+ -webkit-box-orient: vertical;
2352
+
2353
+ }
2354
+
2355
+ .word-break {
2356
+ word-break: break-word
2357
+ }
2358
+
2359
+ .word-break-all {
2360
+ word-break: break-all
2361
+ }
2362
+
2363
+ // -----------------------------------------------------------------------------------------------------
2364
+ // @ Text Align
2365
+ // -----------------------------------------------------------------------------------------------------
2366
+ .text-left {
2367
+ text-align: left !important
2368
+ }
2369
+
2370
+ .text-center {
2371
+ text-align: center !important
2372
+ }
2373
+
2374
+ .text-right {
2375
+ text-align: right !important
2376
+ }
2377
+
2378
+ // -----------------------------------------------------------------------------------------------------
2379
+ // @ Font Weight
2380
+ // -----------------------------------------------------------------------------------------------------
2381
+ .font-weight-100,
2382
+ .fw-100 {
2383
+ font-weight: 100
2384
+ }
2385
+
2386
+ .font-weight-200,
2387
+ .fw-200 {
2388
+ font-weight: 200
2389
+ }
2390
+
2391
+ .font-weight-300,
2392
+ .fw-300 {
2393
+ font-weight: 300
2394
+ }
2395
+
2396
+ .font-weight-400,
2397
+ .fw-400 {
2398
+ font-weight: 400
2399
+ }
2400
+
2401
+ .font-weight-500,
2402
+ .fw-500 {
2403
+ font-weight: 500
2404
+ }
2405
+
2406
+ .font-weight-600,
2407
+ .fw-600 {
2408
+ font-weight: 600
2409
+ }
2410
+
2411
+ .font-weight-700,
2412
+ .fw-700 {
2413
+ font-weight: 700
2414
+ }
2415
+
2416
+ .font-weight-800,
2417
+ .fw-800 {
2418
+ font-weight: 800
2419
+ }
2420
+
2421
+ .font-weight-900,
2422
+ .fw-900 {
2423
+ font-weight: 900
2424
+ }
2425
+
2426
+ // -----------------------------------------------------------------------------------------------------
2427
+ // @ Font Size
2428
+ // -----------------------------------------------------------------------------------------------------
2429
+ .font-size-2,
2430
+ .fs-2 {
2431
+ font-size: 2px !important
2432
+ }
2433
+
2434
+ .font-size-4,
2435
+ .fs-4 {
2436
+ font-size: 4px !important
2437
+ }
2438
+
2439
+ .font-size-6,
2440
+ .fs-6 {
2441
+ font-size: 6px !important
2442
+ }
2443
+
2444
+ .font-size-8,
2445
+ .fs-8 {
2446
+ font-size: 8px !important
2447
+ }
2448
+
2449
+ .font-size-10,
2450
+ .fs-10 {
2451
+ font-size: 10px !important
2452
+ }
2453
+
2454
+ .font-size-12,
2455
+ .fs-12 {
2456
+ font-size: 12px !important
2457
+ }
2458
+
2459
+ .font-size-14,
2460
+ .fs-14 {
2461
+ font-size: 14px !important
2462
+ }
2463
+
2464
+ .font-size-16,
2465
+ .fs-16 {
2466
+ font-size: 16px !important
2467
+ }
2468
+
2469
+ .font-size-18,
2470
+ .fs-18 {
2471
+ font-size: 18px !important
2472
+ }
2473
+
2474
+ .font-size-20,
2475
+ .fs-20 {
2476
+ font-size: 20px !important
2477
+ }
2478
+
2479
+ .font-size-22,
2480
+ .fs-22 {
2481
+ font-size: 22px !important
2482
+ }
2483
+
2484
+ .font-size-24,
2485
+ .fs-24 {
2486
+ font-size: 24px !important
2487
+ }
2488
+
2489
+ .font-size-26,
2490
+ .fs-26 {
2491
+ font-size: 26px !important
2492
+ }
2493
+
2494
+ .font-size-28,
2495
+ .fs-28 {
2496
+ font-size: 28px !important
2497
+ }
2498
+
2499
+ .font-size-30,
2500
+ .fs-30 {
2501
+ font-size: 30px !important
2502
+ }
2503
+
2504
+ .font-size-32,
2505
+ .fs-32 {
2506
+ font-size: 32px !important
2507
+ }
2508
+
2509
+ .font-size-34,
2510
+ .fs-34 {
2511
+ font-size: 34px !important
2512
+ }
2513
+
2514
+ .font-size-36,
2515
+ .fs-36 {
2516
+ font-size: 36px !important
2517
+ }
2518
+
2519
+ .font-size-38,
2520
+ .fs-38 {
2521
+ font-size: 38px !important
2522
+ }
2523
+
2524
+ .font-size-40,
2525
+ .fs-40 {
2526
+ font-size: 40px !important
2527
+ }
2528
+
2529
+ .font-size-42,
2530
+ .fs-42 {
2531
+ font-size: 42px !important
2532
+ }
2533
+
2534
+ .font-size-44,
2535
+ .fs-44 {
2536
+ font-size: 44px !important
2537
+ }
2538
+
2539
+ .font-size-46,
2540
+ .fs-46 {
2541
+ font-size: 46px !important
2542
+ }
2543
+
2544
+ .font-size-48,
2545
+ .fs-48 {
2546
+ font-size: 48px !important
2547
+ }
2548
+
2549
+ .font-size-50,
2550
+ .fs-50 {
2551
+ font-size: 50px !important
2552
+ }
2553
+
2554
+ .font-size-52,
2555
+ .fs-52 {
2556
+ font-size: 52px !important
2557
+ }
2558
+
2559
+ .font-size-54,
2560
+ .fs-54 {
2561
+ font-size: 54px !important
2562
+ }
2563
+
2564
+ .font-size-56,
2565
+ .fs-56 {
2566
+ font-size: 56px !important
2567
+ }
2568
+
2569
+ .font-size-58,
2570
+ .fs-58 {
2571
+ font-size: 58px !important
2572
+ }
2573
+
2574
+ .font-size-60,
2575
+ .fs-60 {
2576
+ font-size: 60px !important
2577
+ }
2578
+
2579
+ .font-size-62,
2580
+ .fs-62 {
2581
+ font-size: 62px !important
2582
+ }
2583
+
2584
+ .font-size-64,
2585
+ .fs-64 {
2586
+ font-size: 64px !important
2587
+ }
2588
+
2589
+ .font-size-66,
2590
+ .fs-66 {
2591
+ font-size: 66px !important
2592
+ }
2593
+
2594
+ .font-size-68,
2595
+ .fs-68 {
2596
+ font-size: 68px !important
2597
+ }
2598
+
2599
+ .font-size-70,
2600
+ .fs-70 {
2601
+ font-size: 70px !important
2602
+ }
2603
+
2604
+ .font-size-72,
2605
+ .fs-72 {
2606
+ font-size: 72px !important
2607
+ }
2608
+
2609
+ // -----------------------------------------------------------------------------------------------------
2610
+ // @ Line Height
2611
+ // -----------------------------------------------------------------------------------------------------
2612
+ .lh-2,
2613
+ .line-height-2 {
2614
+ line-height: 2px !important
2615
+ }
2616
+
2617
+ .lh-4,
2618
+ .line-height-4 {
2619
+ line-height: 4px !important
2620
+ }
2621
+
2622
+ .lh-6,
2623
+ .line-height-6 {
2624
+ line-height: 6px !important
2625
+ }
2626
+
2627
+ .lh-8,
2628
+ .line-height-8 {
2629
+ line-height: 8px !important
2630
+ }
2631
+
2632
+ .lh-10,
2633
+ .line-height-10 {
2634
+ line-height: 10px !important
2635
+ }
2636
+
2637
+ .lh-12,
2638
+ .line-height-12 {
2639
+ line-height: 12px !important
2640
+ }
2641
+
2642
+ .lh-14,
2643
+ .line-height-14 {
2644
+ line-height: 14px !important
2645
+ }
2646
+
2647
+ .lh-16,
2648
+ .line-height-16 {
2649
+ line-height: 16px !important
2650
+ }
2651
+
2652
+ .lh-18,
2653
+ .line-height-18 {
2654
+ line-height: 18px !important
2655
+ }
2656
+
2657
+ .lh-20,
2658
+ .line-height-20 {
2659
+ line-height: 20px !important
2660
+ }
2661
+
2662
+ .lh-22,
2663
+ .line-height-22 {
2664
+ line-height: 22px !important
2665
+ }
2666
+
2667
+ .lh-24,
2668
+ .line-height-24 {
2669
+ line-height: 24px !important
2670
+ }
2671
+
2672
+ .lh-26,
2673
+ .line-height-26 {
2674
+ line-height: 26px !important
2675
+ }
2676
+
2677
+ .lh-28,
2678
+ .line-height-28 {
2679
+ line-height: 28px !important
2680
+ }
2681
+
2682
+ .lh-30,
2683
+ .line-height-30 {
2684
+ line-height: 30px !important
2685
+ }
2686
+
2687
+ .lh-32,
2688
+ .line-height-32 {
2689
+ line-height: 32px !important
2690
+ }
2691
+
2692
+ .lh-34,
2693
+ .line-height-34 {
2694
+ line-height: 34px !important
2695
+ }
2696
+
2697
+ .lh-36,
2698
+ .line-height-36 {
2699
+ line-height: 36px !important
2700
+ }
2701
+
2702
+ .lh-38,
2703
+ .line-height-38 {
2704
+ line-height: 38px !important
2705
+ }
2706
+
2707
+ .lh-40,
2708
+ .line-height-40 {
2709
+ line-height: 40px !important
2710
+ }
2711
+
2712
+ .lh-42,
2713
+ .line-height-42 {
2714
+ line-height: 42px !important
2715
+ }
2716
+
2717
+ .lh-44,
2718
+ .line-height-44 {
2719
+ line-height: 44px !important
2720
+ }
2721
+
2722
+ .lh-46,
2723
+ .line-height-46 {
2724
+ line-height: 46px !important
2725
+ }
2726
+
2727
+ .lh-48,
2728
+ .line-height-48 {
2729
+ line-height: 48px !important
2730
+ }
2731
+
2732
+ .lh-50,
2733
+ .line-height-50 {
2734
+ line-height: 50px !important
2735
+ }
2736
+
2737
+ .lh-52,
2738
+ .line-height-52 {
2739
+ line-height: 52px !important
2740
+ }
2741
+
2742
+ .lh-54,
2743
+ .line-height-54 {
2744
+ line-height: 54px !important
2745
+ }
2746
+
2747
+ .lh-56,
2748
+ .line-height-56 {
2749
+ line-height: 56px !important
2750
+ }
2751
+
2752
+ .lh-58,
2753
+ .line-height-58 {
2754
+ line-height: 58px !important
2755
+ }
2756
+
2757
+ .lh-60,
2758
+ .line-height-60 {
2759
+ line-height: 60px !important
2760
+ }
2761
+
2762
+ .lh-62,
2763
+ .line-height-62 {
2764
+ line-height: 62px !important
2765
+ }
2766
+
2767
+ .lh-64,
2768
+ .line-height-64 {
2769
+ line-height: 64px !important
2770
+ }
2771
+
2772
+ .lh-66,
2773
+ .line-height-66 {
2774
+ line-height: 66px !important
2775
+ }
2776
+
2777
+ .lh-68,
2778
+ .line-height-68 {
2779
+ line-height: 68px !important
2780
+ }
2781
+
2782
+ .lh-70,
2783
+ .line-height-70 {
2784
+ line-height: 70px !important
2785
+ }
2786
+
2787
+ .lh-72,
2788
+ .line-height-72 {
2789
+ line-height: 72px !important
2790
+ }
2791
+
2792
+ // .line-height-1{line-height:1}
2793
+ // .line-height-1\.25{line-height:1.25}
2794
+ // .line-height-1\.5{line-height:1.5}
2795
+ // .line-height-1\.75{line-height:1.75}
2796
+
2797
+ // -----------------------------------------------------------------------------------------------------
2798
+ // @ Letter spacing helpers
2799
+ // -----------------------------------------------------------------------------------------------------
2800
+ .letter-spacing-condensed {
2801
+ letter-spacing: -.08em
2802
+ }
2803
+
2804
+ .letter-spacing-normal {
2805
+ letter-spacing: normal
2806
+ }
2807
+
2808
+ .letter-spacing-relaxed {
2809
+ letter-spacing: .08em
2810
+ }
2811
+
2812
+ // -----------------------------------------------------------------------------------------------------
2813
+ // @ Cursor helpers
2814
+ // -----------------------------------------------------------------------------------------------------
2815
+ .cursor-pointer {
2816
+ cursor: pointer
2817
+ }
2818
+
2819
+ .cursor-default {
2820
+ cursor: default
2821
+ }
2822
+
2823
+ .cursor-grab {
2824
+ cursor: grab
2825
+ }
2826
+
2827
+ .cursor-grabbing {
2828
+ cursor: grabbing
2829
+ }
2830
+
2831
+ .cursor-move {
2832
+ cursor: move
2833
+ }
2834
+
2835
+ .cursor-help {
2836
+ cursor: help
2837
+ }
2838
+
2839
+ .cursor-wait {
2840
+ cursor: wait
2841
+ }
2842
+
2843
+ .pointer-events-all {
2844
+ pointer-events: all
2845
+ }
2846
+
2847
+ .pointer-events-none {
2848
+ pointer-events: none
2849
+ }
2850
+
2851
+ // -----------------------------------------------------------------------------------------------------
2852
+ // @ Clear Shadows
2853
+ // -----------------------------------------------------------------------------------------------------
2854
+ .flatten {
2855
+ box-shadow: none !important;
2856
+ }
2857
+
2858
+ // -----------------------------------------------------------------------------------------------------
2859
+ // @ Enable/Disable
2860
+ // -----------------------------------------------------------------------------------------------------
2861
+ .disabled {
2862
+ transition: opacity 100ms linear;
2863
+ opacity: .5;
2864
+ pointer-events: none
2865
+ }
2866
+
2867
+ .enabled {
2868
+ transition: opacity 100ms linear;
2869
+ opacity: 1
2870
+ }
2871
+
2872
+
2873
+ // -----------------------------------------------------------------------------------------------------
2874
+ // @ Opacity
2875
+ // -----------------------------------------------------------------------------------------------------
2876
+ /* <integer> values */
2877
+ .opacity-0 {
2878
+ opacity: 0;
2879
+ }
2880
+
2881
+ .opacity-01 {
2882
+ opacity: 0.1;
2883
+ }
2884
+
2885
+ .opacity-02 {
2886
+ opacity: 0.2;
2887
+ }
2888
+
2889
+ .opacity-03 {
2890
+ opacity: 0.3;
2891
+ }
2892
+
2893
+ .opacity-04 {
2894
+ opacity: 0.4;
2895
+ }
2896
+
2897
+ .opacity-05 {
2898
+ opacity: 0.5;
2899
+ }
2900
+
2901
+ .opacity-06 {
2902
+ opacity: 0.6;
2903
+ }
2904
+
2905
+ .opacity-07 {
2906
+ opacity: 0.7;
2907
+ }
2908
+
2909
+ .opacity-08 {
2910
+ opacity: 0.8;
2911
+ }
2912
+
2913
+ .opacity-09 {
2914
+ opacity: 0.9;
2915
+ }
2916
+
2917
+ .opacity-10,
2918
+ .opacity-1 {
2919
+ opacity: 1.0;
2920
+ }
2921
+
2922
+ // -----------------------------------------------------------------------------------------------------
2923
+ // @ Hover - Show/Hide
2924
+ // -----------------------------------------------------------------------------------------------------
2925
+ .on-hover-show:hover {
2926
+ opacity: 1;
2927
+ }
2928
+
2929
+ .on-hover-hide:hover {
2930
+ opacity: 0;
2931
+ }
2932
+
2933
+ // -----------------------------------------------------------------------------------------------------
2934
+ // @ Transition
2935
+ // write mixin using the time tokens
2936
+ // -----------------------------------------------------------------------------------------------------
2937
+ .ts-100-l {
2938
+ transition: all 100ms linear;
2939
+ }
2940
+
2941
+ .ts-300-l {
2942
+ transition: all 300ms linear;
2943
+ }
2944
+
2945
+ .ts-100-ei {
2946
+ transition: all 100ms ease-in;
2947
+ }
2948
+
2949
+ .ts-300-ei {
2950
+ transition: all 300ms ease-in;
2951
+ }
2952
+
2953
+ .ts-100-eo {
2954
+ transition: all 100ms ease-out;
2955
+ }
2956
+
2957
+ .ts-300-eo {
2958
+ transition: all 300ms ease-out;
2959
+ }
2960
+
2961
+ .ts-100-eio {
2962
+ transition: all 100ms ease-in-out;
2963
+ }
2964
+
2965
+ .ts-300-eio {
2966
+ transition: all 300ms ease-in-out;
2967
+ }
2968
+
2969
+ // -----------------------------------------------------------------------------------------------------
2970
+ // @ Rotate Animation
2971
+ // -----------------------------------------------------------------------------------------------------
2972
+ .rotate-infinity-1s {
2973
+ animation: spin 1s infinite;
2974
+ }
2975
+
2976
+ .rotate-infinity-2s {
2977
+ animation: spin 2s infinite;
2978
+ }
2979
+
2980
+ .rotate-infinity-3s {
2981
+ animation: spin 3s infinite;
2982
+ }
2983
+
2984
+ @keyframes spin {
2985
+ 0% {
2986
+ rotate: 0deg;
2987
+ }
2988
+
2989
+ 100% {
2990
+ rotate: 360deg;
2991
+ }
2992
+ }
2993
+
2994
+ // -----------------------------------------------------------------------------------------------------
2995
+ // @ Float
2996
+ // -----------------------------------------------------------------------------------------------------
2997
+ .clearfix::after {
2998
+ content: "";
2999
+ clear: both;
3000
+ display: table;
3001
+ }
3002
+
3003
+ .left {
3004
+ float: left;
3005
+ }
3006
+
3007
+ .right {
3008
+ float: right;
3009
+ }
3010
+
3011
+ .list,
3012
+ .list-style-none {
3013
+ list-style: none;
3014
+ }
3015
+
3016
+ .list-style-disc,
3017
+ .list-style-dot {
3018
+ list-style: disc;
3019
+ }