-
Notifications
You must be signed in to change notification settings - Fork 3
/
eli-helpers.css
executable file
·1443 lines (1341 loc) · 52 KB
/
eli-helpers.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
:root {
--radius:.25rem;
--margin:.25rem;
--padding:1.25rem;
--sidebar-width:300px;
--sidebar-height:100vh;
--sidebar-bg:rgba(0,0,0,.9);
--sidebar-color:white;
--sidebar-ahover-bg:rgba(255,255,255,.9);
}
/* Body */
html.smooth { scroll-behavior:smooth; }
body { padding:0px; margin:0px auto; line-height:1.5; font-size:1rem; }
* { box-sizing:border-box; margin:0px; padding:0px; font-size:1rem; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Radius */
.radius { border-radius:var(--radius)!important; }
.radius-01 { border-radius:0.1em!important; }
.radius-02 { border-radius:0.2em!important; }
.radius-03 { border-radius:0.3em!important; }
.radius-04 { border-radius:0.4em!important; }
.radius-05 { border-radius:0.5em!important; }
.radius-06 { border-radius:0.6em!important; }
.radius-07 { border-radius:0.7em!important; }
.radius-08 { border-radius:0.8em!important; }
.radius-09 { border-radius:0.9em!important; }
.radius-t-01 { border-top-left-radius:0.1em!important; }
.radius-r-01 { border-top-right-radius:0.1em!important; }
.radius-b-01 { border-bottom-right-radius:0.1em!important; }
.radius-l-01 { border-bottom-left-radius:0.1em!important; }
.radius-t-02 { border-top-left-radius:0.2em!important; }
.radius-r-02 { border-top-right-radius:0.2em!important; }
.radius-b-02 { border-bottom-right-radius:0.2em!important; }
.radius-l-02 { border-bottom-left-radius:0.2em!important; }
.radius-t-03 { border-top-left-radius:0.3em!important; }
.radius-r-03 { border-top-right-radius:0.3em!important; }
.radius-b-03 { border-bottom-right-radius:0.3em!important; }
.radius-l-03 { border-bottom-left-radius:0.3em!important; }
.radius-t-04 { border-top-left-radius:0.4em!important; }
.radius-r-04 { border-top-right-radius:0.4em!important; }
.radius-b-04 { border-bottom-right-radius:0.4em!important; }
.radius-l-04 { border-bottom-left-radius:0.4em!important; }
.radius-t-05 { border-top-left-radius:0.5em!important; }
.radius-r-05 { border-top-right-radius:0.5em!important; }
.radius-b-05 { border-bottom-right-radius:0.5em!important; }
.radius-l-05 { border-bottom-left-radius:0.5em!important; }
.radius-t-06 { border-top-left-radius:0.6em!important; }
.radius-r-06 { border-top-right-radius:0.6em!important; }
.radius-b-06 { border-bottom-right-radius:0.6em!important; }
.radius-l-06 { border-bottom-left-radius:0.6em!important; }
.radius-t-07 { border-top-left-radius:0.7em!important; }
.radius-r-07 { border-top-right-radius:0.7em!important; }
.radius-b-07 { border-bottom-right-radius:0.7em!important; }
.radius-l-07 { border-bottom-left-radius:0.7em!important; }
.radius-t-08 { border-top-left-radius:0.8em!important; }
.radius-r-08 { border-top-right-radius:0.8em!important; }
.radius-b-08 { border-bottom-right-radius:0.8em!important; }
.radius-l-08 { border-bottom-left-radius:0.8em!important; }
.radius-t-09 { border-top-left-radius:0.9em!important; }
.radius-r-09 { border-top-right-radius:0.9em!important; }
.radius-b-09 { border-bottom-right-radius:0.9em!important; }
.radius-l-09 { border-bottom-left-radius:0.9em!important; }
.radius-1 { border-radius:0.5em!important; }
.radius-2 { border-radius:1em!important; }
.radius-3 { border-radius:1.5em!important; }
.radius-4 { border-radius:2em!important; }
.radius-5 { border-radius:2.5em!important; }
.radius-6 { border-radius:3em!important; }
.radius-7 { border-radius:3.5em!important; }
.radius-8 { border-radius:4em!important; }
.radius-9 { border-radius:4.5em!important; }
.radius-10 { border-radius:5em!important; }
.radius-11 { border-radius:5.5em!important; }
.radius-12 { border-radius:6em!important; }
.radius-13 { border-radius:6.5em!important; }
.radius-14 { border-radius:7em!important; }
.radius-15 { border-radius:7.5em!important; }
.radius-16 { border-radius:8em!important; }
.radius-17 { border-radius:8.5em!important; }
.radius-18 { border-radius:9em!important; }
.radius-19 { border-radius:9.5em!important; }
.radius-20 { border-radius:10em!important; }
.radius-t-1 { border-top-left-radius:0.5em!important; }
.radius-t-2 { border-top-left-radius:1em!important; }
.radius-t-3 { border-top-left-radius:1.5em!important; }
.radius-t-4 { border-top-left-radius:2em!important; }
.radius-t-5 { border-top-left-radius:2.5em!important; }
.radius-t-6 { border-top-left-radius:3em!important; }
.radius-t-7 { border-top-left-radius:3.5em!important; }
.radius-t-8 { border-top-left-radius:4em!important; }
.radius-t-9 { border-top-left-radius:4.5em!important; }
.radius-t-10 { border-top-left-radius:5em!important; }
.radius-t-11 { border-top-left-radius:5.5em!important; }
.radius-t-12 { border-top-left-radius:6em!important; }
.radius-t-13 { border-top-left-radius:6.5em!important; }
.radius-t-14 { border-top-left-radius:7em!important; }
.radius-t-15 { border-top-left-radius:7.5em!important; }
.radius-t-16 { border-top-left-radius:8em!important; }
.radius-t-17 { border-top-left-radius:8.5em!important; }
.radius-t-18 { border-top-left-radius:9em!important; }
.radius-t-19 { border-top-left-radius:9.5em!important; }
.radius-t-20 { border-top-left-radius:10em!important; }
.radius-b-1 { border-bottom-right-radius:0.5em!important; }
.radius-b-2 { border-bottom-right-radius:1em!important; }
.radius-b-3 { border-bottom-right-radius:1.5em!important; }
.radius-b-4 { border-bottom-right-radius:2em!important; }
.radius-b-5 { border-bottom-right-radius:2.5em!important; }
.radius-b-6 { border-bottom-right-radius:3em!important; }
.radius-b-7 { border-bottom-right-radius:3.5em!important; }
.radius-b-8 { border-bottom-right-radius:4em!important; }
.radius-b-9 { border-bottom-right-radius:4.5em!important; }
.radius-b-10 { border-bottom-right-radius:5em!important; }
.radius-b-11 { border-bottom-right-radius:5.5em!important; }
.radius-b-12 { border-bottom-right-radius:6em!important; }
.radius-b-13 { border-bottom-right-radius:6.5em!important; }
.radius-b-14 { border-bottom-right-radius:7em!important; }
.radius-b-15 { border-bottom-right-radius:7.5em!important; }
.radius-b-16 { border-bottom-right-radius:8em!important; }
.radius-b-17 { border-bottom-right-radius:8.5em!important; }
.radius-b-18 { border-bottom-right-radius:9em!important; }
.radius-b-19 { border-bottom-right-radius:9.5em!important; }
.radius-b-20 { border-bottom-right-radius:10em!important; }
.radius-l-1 { border-bottom-left-radius:0.5em!important; }
.radius-l-2 { border-bottom-left-radius:1em!important; }
.radius-l-3 { border-bottom-left-radius:1.5em!important; }
.radius-l-4 { border-bottom-left-radius:2em!important; }
.radius-l-5 { border-bottom-left-radius:2.5em!important; }
.radius-l-6 { border-bottom-left-radius:3em!important; }
.radius-l-7 { border-bottom-left-radius:3.5em!important; }
.radius-l-8 { border-bottom-left-radius:4em!important; }
.radius-l-9 { border-bottom-left-radius:4.5em!important; }
.radius-l-10 { border-bottom-left-radius:5em!important; }
.radius-l-11 { border-bottom-left-radius:5.5em!important; }
.radius-l-12 { border-bottom-left-radius:6em!important; }
.radius-l-13 { border-bottom-left-radius:6.5em!important; }
.radius-l-14 { border-bottom-left-radius:7em!important; }
.radius-l-15 { border-bottom-left-radius:7.5em!important; }
.radius-l-16 { border-bottom-left-radius:8em!important; }
.radius-l-17 { border-bottom-left-radius:8.5em!important; }
.radius-l-18 { border-bottom-left-radius:9em!important; }
.radius-l-19 { border-bottom-left-radius:9.5em!important; }
.radius-l-20 { border-bottom-left-radius:10em!important; }
.radius-r-1 { border-top-right-radius:0.5em!important; }
.radius-r-2 { border-top-right-radius:1em!important; }
.radius-r-3 { border-top-right-radius:1.5em!important; }
.radius-r-4 { border-top-right-radius:2em!important; }
.radius-r-5 { border-top-right-radius:2.5em!important; }
.radius-r-6 { border-top-right-radius:3em!important; }
.radius-r-7 { border-top-right-radius:3.5em!important; }
.radius-r-8 { border-top-right-radius:4em!important; }
.radius-r-9 { border-top-right-radius:4.5em!important; }
.radius-r-10 { border-top-right-radius:5em!important; }
.radius-r-11 { border-top-right-radius:5.5em!important; }
.radius-r-12 { border-top-right-radius:6em!important; }
.radius-r-13 { border-top-right-radius:6.5em!important; }
.radius-r-14 { border-top-right-radius:7em!important; }
.radius-r-15 { border-top-right-radius:7.5em!important; }
.radius-r-16 { border-top-right-radius:8em!important; }
.radius-r-17 { border-top-right-radius:8.5em!important; }
.radius-r-18 { border-top-right-radius:9em!important; }
.radius-r-19 { border-top-right-radius:9.5em!important; }
.radius-r-20 { border-top-right-radius:10em!important; }
/* Margin */
/* .margin */
.margin { margin:var(--margin); }
.margin-01 { margin:.1em!important; }
.margin-02 { margin:.2em!important; }
.margin-03 { margin:.3em!important; }
.margin-04 { margin:.4em!important; }
.margin-05 { margin:.5em!important; }
.margin-06 { margin:.6em!important; }
.margin-07 { margin:.7em!important; }
.margin-08 { margin:.8em!important; }
.margin-09 { margin:.9em!important; }
.margin-t-01 { margin-top:.1em!important; }
.margin-t-02 { margin-top:.2em!important; }
.margin-t-03 { margin-top:.3em!important; }
.margin-t-04 { margin-top:.4em!important; }
.margin-t-05 { margin-top:.5em!important; }
.margin-t-06 { margin-top:.6em!important; }
.margin-t-07 { margin-top:.7em!important; }
.margin-t-08 { margin-top:.8em!important; }
.margin-t-09 { margin-top:.9em!important; }
.margin-b-01 { margin-bottom:.1em!important; }
.margin-b-02 { margin-bottom:.2em!important; }
.margin-b-03 { margin-bottom:.3em!important; }
.margin-b-04 { margin-bottom:.4em!important; }
.margin-b-05 { margin-bottom:.5em!important; }
.margin-b-06 { margin-bottom:.6em!important; }
.margin-b-07 { margin-bottom:.7em!important; }
.margin-b-08 { margin-bottom:.8em!important; }
.margin-b-09 { margin-bottom:.9em!important; }
.margin-l-01 { margin-left:.1em!important; }
.margin-l-02 { margin-left:.2em!important; }
.margin-l-03 { margin-left:.3em!important; }
.margin-l-04 { margin-left:.4em!important; }
.margin-l-05 { margin-left:.5em!important; }
.margin-l-06 { margin-left:.6em!important; }
.margin-l-07 { margin-left:.7em!important; }
.margin-l-08 { margin-left:.8em!important; }
.margin-l-09 { margin-left:.9em!important; }
.margin-r-01 { margin-right:.1em!important; }
.margin-r-02 { margin-right:.2em!important; }
.margin-r-03 { margin-right:.3em!important; }
.margin-r-04 { margin-right:.4em!important; }
.margin-r-05 { margin-right:.5em!important; }
.margin-r-06 { margin-right:.6em!important; }
.margin-r-07 { margin-right:.7em!important; }
.margin-r-08 { margin-right:.8em!important; }
.margin-r-09 { margin-right:.9em!important; }
/* .margin */
.margin-1 { margin:0.5em!important; }
.margin-2 { margin:1em!important; }
.margin-3 { margin:1.5em!important; }
.margin-4 { margin:2em!important; }
.margin-5 { margin:2.5em!important; }
.margin-6 { margin:3em!important; }
.margin-7 { margin:3.5em!important; }
.margin-8 { margin:4em!important; }
.margin-9 { margin:4.5em!important; }
.margin-10 { margin:5em!important; }
.margin-11 { margin:5.5em!important; }
.margin-12 { margin:6em!important; }
.margin-13 { margin:6.5em!important; }
.margin-14 { margin:7em!important; }
.margin-15 { margin:7.5em!important; }
.margin-16 { margin:8em!important; }
.margin-17 { margin:8.5em!important; }
.margin-18 { margin:9em!important; }
.margin-19 { margin:9.5em!important; }
.margin-20 { margin:10em!important; }
.margin-l-1 { margin-left:0.5em!important; }
.margin-l-2 { margin-left:1em!important; }
.margin-l-3 { margin-left:1.5em!important; }
.margin-l-4 { margin-left:2em!important; }
.margin-l-5 { margin-left:2.5em!important; }
.margin-l-6 { margin-left:3em!important; }
.margin-l-7 { margin-left:3.5em!important; }
.margin-l-8 { margin-left:4em!important; }
.margin-l-9 { margin-left:4.5em!important; }
.margin-l-10 { margin-left:5em!important; }
.margin-l-11 { margin-left:5.5em!important; }
.margin-l-12 { margin-left:6em!important; }
.margin-l-13 { margin-left:6.5em!important; }
.margin-l-14 { margin-left:7em!important; }
.margin-l-15 { margin-left:7.5em!important; }
.margin-l-16 { margin-left:8em!important; }
.margin-l-17 { margin-left:8.5em!important; }
.margin-l-18 { margin-left:9em!important; }
.margin-l-19 { margin-left:9.5em!important; }
.margin-l-20 { margin-left:10em!important; }
.margin-r-1 { margin-right:0.5em!important; }
.margin-r-2 { margin-right:1em!important; }
.margin-r-3 { margin-right:1.5em!important; }
.margin-r-4 { margin-right:2em!important; }
.margin-r-5 { margin-right:2.5em!important; }
.margin-r-6 { margin-right:3em!important; }
.margin-r-7 { margin-right:3.5em!important; }
.margin-r-8 { margin-right:4em!important; }
.margin-r-9 { margin-right:4.5em!important; }
.margin-r-10 { margin-right:5em!important; }
.margin-r-11 { margin-right:5.5em!important; }
.margin-r-12 { margin-right:6em!important; }
.margin-r-13 { margin-right:6.5em!important; }
.margin-r-14 { margin-right:7em!important; }
.margin-r-15 { margin-right:7.5em!important; }
.margin-r-16 { margin-right:8em!important; }
.margin-r-17 { margin-right:8.5em!important; }
.margin-r-18 { margin-right:9em!important; }
.margin-r-19 { margin-right:9.5em!important; }
.margin-r-20 { margin-right:10em!important; }
.margin-t-1 { margin-top:0.5em!important; }
.margin-t-2 { margin-top:1em!important; }
.margin-t-3 { margin-top:1.5em!important; }
.margin-t-4 { margin-top:2em!important; }
.margin-t-5 { margin-top:2.5em!important; }
.margin-t-6 { margin-top:3em!important; }
.margin-t-7 { margin-top:3.5em!important; }
.margin-t-8 { margin-top:4em!important; }
.margin-t-9 { margin-top:4.5em!important; }
.margin-t-10 { margin-top:5em!important; }
.margin-t-11 { margin-top:5.5em!important; }
.margin-t-12 { margin-top:6em!important; }
.margin-t-13 { margin-top:6.5em!important; }
.margin-t-14 { margin-top:7em!important; }
.margin-t-15 { margin-top:7.5em!important; }
.margin-t-16 { margin-top:8em!important; }
.margin-t-17 { margin-top:8.5em!important; }
.margin-t-18 { margin-top:9em!important; }
.margin-t-19 { margin-top:9.5em!important; }
.margin-t-20 { margin-top:10em!important; }
.margin-b-1 { margin-bottom:0.5em!important; }
.margin-b-2 { margin-bottom:1em!important; }
.margin-b-3 { margin-bottom:1.5em!important; }
.margin-b-4 { margin-bottom:2em!important; }
.margin-b-5 { margin-bottom:2.5em!important; }
.margin-b-6 { margin-bottom:3em!important; }
.margin-b-7 { margin-bottom:3.5em!important; }
.margin-b-8 { margin-bottom:4em!important; }
.margin-b-9 { margin-bottom:4.5em!important; }
.margin-b-10 { margin-bottom:5em!important; }
.margin-b-11 { margin-bottom:5.5em!important; }
.margin-b-12 { margin-bottom:6em!important; }
.margin-b-13 { margin-bottom:6.5em!important; }
.margin-b-14 { margin-bottom:7em!important; }
.margin-b-15 { margin-bottom:7.5em!important; }
.margin-b-16 { margin-bottom:8em!important; }
.margin-b-17 { margin-bottom:8.5em!important; }
.margin-b-18 { margin-bottom:9em!important; }
.margin-b-19 { margin-bottom:9.5em!important; }
.margin-b-20 { margin-bottom:10em!important; }
/* .margin-auto */
.margin-auto { margin:0px auto!important; }
.margin-0-auto { margin:.0em auto!important; }
.margin-01-auto { margin:.1em auto!important; }
.margin-02-auto { margin:.2em auto!important; }
.margin-03-auto { margin:.3em auto!important; }
.margin-04-auto { margin:.4em auto!important; }
.margin-05-auto { margin:.5em auto!important; }
.margin-06-auto { margin:.6em auto!important; }
.margin-07-auto { margin:.7em auto!important; }
.margin-08-auto { margin:.8em auto!important; }
.margin-09-auto { margin:.9em auto!important; }
.margin-1-auto { margin:0.5em auto!important; }
.margin-2-auto { margin:1em auto!important; }
.margin-3-auto { margin:1.5em auto!important; }
.margin-4-auto { margin:2em auto!important; }
.margin-5-auto { margin:2.5em auto!important; }
.margin-6-auto { margin:3em auto!important; }
.margin-7-auto { margin:3.5em auto!important; }
.margin-8-auto { margin:4em auto!important; }
.margin-9-auto { margin:4.5em auto!important; }
.margin-10-auto { margin:5em auto!important; }
.margin-11-auto { margin:5.5em auto!important; }
.margin-12-auto { margin:6em auto!important; }
.margin-13-auto { margin:6.5em auto!important; }
.margin-14-auto { margin:7em auto!important; }
.margin-15-auto { margin:7.5em auto!important; }
.margin-16-auto { margin:8em auto!important; }
.margin-17-auto { margin:8.5em auto!important; }
.margin-18-auto { margin:9em auto!important; }
.margin-19-auto { margin:9.5em auto!important; }
.margin-20-auto { margin:10em auto!important; }
/* Padding */
/* .padding */
.pad-01 { padding:.1em!important; }
.pad-02 { padding:.2em!important; }
.pad-03 { padding:.3em!important; }
.pad-04 { padding:.4em!important; }
.pad-05 { padding:.5em!important; }
.pad-06 { padding:.6em!important; }
.pad-07 { padding:.7em!important; }
.pad-08 { padding:.8em!important; }
.pad-09 { padding:.9em!important; }
.pad-t-01 { padding-top:.1em!important; }
.pad-t-02 { padding-top:.2em!important; }
.pad-t-03 { padding-top:.3em!important; }
.pad-t-04 { padding-top:.4em!important; }
.pad-t-05 { padding-top:.5em!important; }
.pad-t-06 { padding-top:.6em!important; }
.pad-t-07 { padding-top:.7em!important; }
.pad-t-08 { padding-top:.8em!important; }
.pad-t-09 { padding-top:.9em!important; }
.pad-b-01 { padding-bottom:.1em!important; }
.pad-b-02 { padding-bottom:.2em!important; }
.pad-b-03 { padding-bottom:.3em!important; }
.pad-b-04 { padding-bottom:.4em!important; }
.pad-b-05 { padding-bottom:.5em!important; }
.pad-b-06 { padding-bottom:.6em!important; }
.pad-b-07 { padding-bottom:.7em!important; }
.pad-b-08 { padding-bottom:.8em!important; }
.pad-b-09 { padding-bottom:.9em!important; }
.pad-l-01 { padding-left:.1em!important; }
.pad-l-02 { padding-left:.2em!important; }
.pad-l-03 { padding-left:.3em!important; }
.pad-l-04 { padding-left:.4em!important; }
.pad-l-05 { padding-left:.5em!important; }
.pad-l-06 { padding-left:.6em!important; }
.pad-l-07 { padding-left:.7em!important; }
.pad-l-08 { padding-left:.8em!important; }
.pad-l-09 { padding-left:.9em!important; }
.pad-r-01 { padding-right:.1em!important; }
.pad-r-02 { padding-right:.2em!important; }
.pad-r-03 { padding-right:.3em!important; }
.pad-r-04 { padding-right:.4em!important; }
.pad-r-05 { padding-right:.5em!important; }
.pad-r-06 { padding-right:.6em!important; }
.pad-r-07 { padding-right:.7em!important; }
.pad-r-08 { padding-right:.8em!important; }
.pad-r-09 { padding-right:.9em!important; }
/* .pad */
.pad-1 { padding:0.5em!important; }
.pad-2 { padding:1em!important; }
.pad-3 { padding:1.5em!important; }
.pad-4 { padding:2em!important; }
.pad-5 { padding:2.5em!important; }
.pad-6 { padding:3em!important; }
.pad-7 { padding:3.5em!important; }
.pad-8 { padding:4em!important; }
.pad-9 { padding:4.5em!important; }
.pad-10 { padding:5em!important; }
.pad-11 { padding:5.5em!important; }
.pad-12 { padding:6em!important; }
.pad-13 { padding:6.5em!important; }
.pad-14 { padding:7em!important; }
.pad-15 { padding:7.5em!important; }
.pad-16 { padding:8em!important; }
.pad-17 { padding:8.5em!important; }
.pad-18 { padding:9em!important; }
.pad-19 { padding:9.5em!important; }
.pad-20 { padding:10em!important; }
.pad-l-1 { padding-left:0.5em!important; }
.pad-l-2 { padding-left:1em!important; }
.pad-l-3 { padding-left:1.5em!important; }
.pad-l-4 { padding-left:2em!important; }
.pad-l-5 { padding-left:2.5em!important; }
.pad-l-6 { padding-left:3em!important; }
.pad-l-7 { padding-left:3.5em!important; }
.pad-l-8 { padding-left:4em!important; }
.pad-l-9 { padding-left:4.5em!important; }
.pad-l-10 { padding-left:5em!important; }
.pad-l-11 { padding-left:5.5em!important; }
.pad-l-12 { padding-left:6em!important; }
.pad-l-13 { padding-left:6.5em!important; }
.pad-l-14 { padding-left:7em!important; }
.pad-l-15 { padding-left:7.5em!important; }
.pad-l-16 { padding-left:8em!important; }
.pad-l-17 { padding-left:8.5em!important; }
.pad-l-18 { padding-left:9em!important; }
.pad-l-19 { padding-left:9.5em!important; }
.pad-l-20 { padding-left:10em!important; }
.pad-r-1 { padding-right:0.5em!important; }
.pad-r-2 { padding-right:1em!important; }
.pad-r-3 { padding-right:1.5em!important; }
.pad-r-4 { padding-right:2em!important; }
.pad-r-5 { padding-right:2.5em!important; }
.pad-r-6 { padding-right:3em!important; }
.pad-r-7 { padding-right:3.5em!important; }
.pad-r-8 { padding-right:4em!important; }
.pad-r-9 { padding-right:4.5em!important; }
.pad-r-10 { padding-right:5em!important; }
.pad-r-11 { padding-right:5.5em!important; }
.pad-r-12 { padding-right:6em!important; }
.pad-r-13 { padding-right:6.5em!important; }
.pad-r-14 { padding-right:7em!important; }
.pad-r-15 { padding-right:7.5em!important; }
.pad-r-16 { padding-right:8em!important; }
.pad-r-17 { padding-right:8.5em!important; }
.pad-r-18 { padding-right:9em!important; }
.pad-r-19 { padding-right:9.5em!important; }
.pad-r-20 { padding-right:10em!important; }
.pad-t-1 { padding-top:0.5em!important; }
.pad-t-2 { padding-top:1em!important; }
.pad-t-3 { padding-top:1.5em!important; }
.pad-t-4 { padding-top:2em!important; }
.pad-t-5 { padding-top:2.5em!important; }
.pad-t-6 { padding-top:3em!important; }
.pad-t-7 { padding-top:3.5em!important; }
.pad-t-8 { padding-top:4em!important; }
.pad-t-9 { padding-top:4.5em!important; }
.pad-t-10 { padding-top:5em!important; }
.pad-t-11 { padding-top:5.5em!important; }
.pad-t-12 { padding-top:6em!important; }
.pad-t-13 { padding-top:6.5em!important; }
.pad-t-14 { padding-top:7em!important; }
.pad-t-15 { padding-top:7.5em!important; }
.pad-t-16 { padding-top:8em!important; }
.pad-t-17 { padding-top:8.5em!important; }
.pad-t-18 { padding-top:9em!important; }
.pad-t-19 { padding-top:9.5em!important; }
.pad-t-20 { padding-top:10em!important; }
.pad-b-1 { padding-bottom:0.5em!important; }
.pad-b-2 { padding-bottom:1em!important; }
.pad-b-3 { padding-bottom:1.5em!important; }
.pad-b-4 { padding-bottom:2em!important; }
.pad-b-5 { padding-bottom:2.5em!important; }
.pad-b-6 { padding-bottom:3em!important; }
.pad-b-7 { padding-bottom:3.5em!important; }
.pad-b-8 { padding-bottom:4em!important; }
.pad-b-9 { padding-bottom:4.5em!important; }
.pad-b-10 { padding-bottom:5em!important; }
.pad-b-11 { padding-bottom:5.5em!important; }
.pad-b-12 { padding-bottom:6em!important; }
.pad-b-13 { padding-bottom:6.5em!important; }
.pad-b-14 { padding-bottom:7em!important; }
.pad-b-15 { padding-bottom:7.5em!important; }
.pad-b-16 { padding-bottom:8em!important; }
.pad-b-17 { padding-bottom:8.5em!important; }
.pad-b-18 { padding-bottom:9em!important; }
.pad-b-19 { padding-bottom:9.5em!important; }
.pad-b-20 { padding-bottom:10em!important; }
/* General Pad */
.pad { padding:.5em .7em; }
.pad-s { padding:.25em .35em; }
/* Line-Height */
.lh-1 { line-height:0.5em!important; }
.lh-2 { line-height:1em!important; }
.lh-3 { line-height:1.5em!important; }
.lh-4 { line-height:2em!important; }
.lh-5 { line-height:2.5em!important; }
.lh-6 { line-height:3em!important; }
.lh-7 { line-height:3.5em!important; }
.lh-8 { line-height:4em!important; }
.lh-9 { line-height:4.5em!important; }
.lh-10 { line-height:5em!important; }
.lh-11 { line-height:5.5em!important; }
.lh-12 { line-height:6em!important; }
.lh-13 { line-height:6.5em!important; }
.lh-14 { line-height:7em!important; }
.lh-15 { line-height:7.5em!important; }
.lh-16 { line-height:8em!important; }
.lh-17 { line-height:8.5em!important; }
.lh-18 { line-height:9em!important; }
.lh-19 { line-height:9.5em!important; }
.lh-20 { line-height:10em!important; }
/* Text Size */
.tsize-auto { font-size:inherit; }
.tsize-s1 { font-size:0.5em!important; }
.tsize-s2 { font-size:0.6em!important; }
.tsize-s3 { font-size:0.7em!important; }
.tsize-s4 { font-size:0.8em!important; }
.tsize-s5 { font-size:0.9em!important; }
.tsize { font-size:1rem; }
.tsize-0 { font-size:1em!important; }
.tsize-1 { font-size:1.1em!important; }
.tsize-2 { font-size:1.2em!important; }
.tsize-3 { font-size:1.3em!important; }
.tsize-4 { font-size:1.4em!important; }
.tsize-5 { font-size:1.5em!important; }
.tsize-6 { font-size:1.6em!important; }
.tsize-7 { font-size:1.7em!important; }
.tsize-8 { font-size:1.8em!important; }
.tsize-9 { font-size:1.9em!important; }
.tsize-10 { font-size:2em!important; }
.tsize-11 { font-size:2.1em!important; }
.tsize-12 { font-size:2.2em!important; }
.tsize-13 { font-size:2.3em!important; }
.tsize-14 { font-size:2.4em!important; }
.tsize-15 { font-size:2.5em!important; }
.tsize-16 { font-size:2.6em!important; }
.tsize-17 { font-size:2.7em!important; }
.tsize-18 { font-size:2.8em!important; }
.tsize-19 { font-size:2.9em!important; }
.tsize-20 { font-size:3em!important; }
/* Grid Gaps row column */
.ggap-0 { grid-gap:0em!important; }
.ggap-1,.ggap { grid-gap:0.5em!important; }
.ggap-2 { grid-gap:1em!important; }
.ggap-3 { grid-gap:1.5em!important; }
.ggap-4 { grid-gap:2em!important; }
.ggap-5 { grid-gap:2.5em!important; }
.ggap-6 { grid-gap:3em!important; }
.ggap-7 { grid-gap:3.5em!important; }
.ggap-8 { grid-gap:4em!important; }
.ggap-9 { grid-gap:4.5em!important; }
.ggap-10 { grid-gap:5em!important; }
.ggap-r0 { grid-row-gap:0em!important; }
.ggap-r1 { grid-row-gap:0.5em!important; }
.ggap-r2 { grid-row-gap:1em!important; }
.ggap-r3 { grid-row-gap:1.5em!important; }
.ggap-r4 { grid-row-gap:2em!important; }
.ggap-r5 { grid-row-gap:2.5em!important; }
.ggap-r6 { grid-row-gap:3em!important; }
.ggap-r7 { grid-row-gap:3.5em!important; }
.ggap-r8 { grid-row-gap:4em!important; }
.ggap-r9 { grid-row-gap:4.5em!important; }
.ggap-r10 { grid-row-gap:5em!important; }
.ggap-c0 { grid-column-gap:0em!important; }
.ggap-c1 { grid-column-gap:0.5em!important; }
.ggap-c2 { grid-column-gap:1em!important; }
.ggap-c3 { grid-column-gap:1.5em!important; }
.ggap-c4 { grid-column-gap:2em!important; }
.ggap-c5 { grid-column-gap:2.5em!important; }
.ggap-c6 { grid-column-gap:3em!important; }
.ggap-c7 { grid-column-gap:3.5em!important; }
.ggap-c8 { grid-column-gap:4em!important; }
.ggap-c9 { grid-column-gap:4.5em!important; }
.ggap-c10 { grid-column-gap:5em!important; }
.gap-even { justify-content: space-evenly; }
.gap-around { justify-content: space-around; }
.gap-between { justify-content: space-between; }
/* Scale */
.scale-01x { transform:scale(0.1)!important; }
.scale-02x { transform:scale(0.2)!important; }
.scale-03x { transform:scale(0.3)!important; }
.scale-04x { transform:scale(0.4)!important; }
.scale-05x { transform:scale(0.5)!important; }
.scale-06x { transform:scale(0.6)!important; }
.scale-07x { transform:scale(0.7)!important; }
.scale-08x { transform:scale(0.8)!important; }
.scale-09x { transform:scale(0.9)!important; }
.scale-1x { transform:scale(1)!important; }
.scale-1-1x { transform:scale(1.1)!important; }
.scale-1-2x { transform:scale(1.2)!important; }
.scale-1-3x { transform:scale(1.3)!important; }
.scale-1-4x { transform:scale(1.4)!important; }
.scale-1-5x { transform:scale(1.5)!important; }
.scale-1-6x { transform:scale(1.6)!important; }
.scale-1-7x { transform:scale(1.7)!important; }
.scale-1-8x { transform:scale(1.8)!important; }
.scale-1-9x { transform:scale(1.9)!important; }
.scale-2x { transform:scale(2)!important; }
.scale-2-1x { transform:scale(2.1)!important; }
.scale-2-2x { transform:scale(2.2)!important; }
.scale-2-3x { transform:scale(2.3)!important; }
.scale-2-4x { transform:scale(2.4)!important; }
.scale-2-5x { transform:scale(2.5)!important; }
.scale-2-6x { transform:scale(2.6)!important; }
.scale-2-7x { transform:scale(2.7)!important; }
.scale-2-8x { transform:scale(2.8)!important; }
.scale-2-9x { transform:scale(2.9)!important; }
.scale-3x { transform:scale(3)!important; }
.scale-3-1x { transform:scale(3.1)!important; }
.scale-3-2x { transform:scale(3.2)!important; }
.scale-3-3x { transform:scale(3.3)!important; }
.scale-3-4x { transform:scale(3.4)!important; }
.scale-3-5x { transform:scale(3.5)!important; }
.scale-3-6x { transform:scale(3.6)!important; }
.scale-3-7x { transform:scale(3.7)!important; }
.scale-3-8x { transform:scale(3.8)!important; }
.scale-3-9x { transform:scale(3.9)!important; }
.scale-4x { transform:scale(4)!important; }
.scale-4-1x { transform:scale(4.1)!important; }
.scale-4-2x { transform:scale(4.2)!important; }
.scale-4-3x { transform:scale(4.3)!important; }
.scale-4-4x { transform:scale(4.4)!important; }
.scale-4-5x { transform:scale(4.5)!important; }
.scale-4-6x { transform:scale(4.6)!important; }
.scale-4-7x { transform:scale(4.7)!important; }
.scale-4-8x { transform:scale(4.8)!important; }
.scale-4-9x { transform:scale(4.9)!important; }
.scale-5x { transform:scale(5)!important; }
/* Font Case */
.case-cap { text-transform: capitalize!important; }
.case-lower { text-transform: lowercase!important; }
.case-upper { text-transform: uppercase!important; }
/* shadows */
.shadow-0,.shadow-none { box-shadow: none!important; }
.shadow-1,.shadow-s { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important; }
.shadow-2,.shadow { box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important; }
.shadow-3,.shadow-l { box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important; }
/* Container */
.container { width:70%; margin:0 auto; }
.container-1,.container-m { width:80%; margin:0 auto; }
.container-2,.container-l { width:90%; margin:0 auto; }
.container-3,.container-full { width:100vw; margin:0 auto; }
@media (max-width:800px){
.container,.container-1,.container-m { width:90%; }
.container-2,.container-l { width:95%; }
}
/* Widths */
.w-1 { width:1vw!important; }
.w-2 { width:2vw!important; }
.w-3 { width:3vw!important; }
.w-4 { width:4vw!important; }
.w-5 { width:5vw!important; }
.w-6 { width:6vw!important; }
.w-7 { width:7vw!important; }
.w-8 { width:8vw!important; }
.w-9 { width:9vw!important; }
.w-10 { width:10vw!important; }
.w-11 { width:11vw!important; }
.w-12 { width:12vw!important; }
.w-13 { width:13vw!important; }
.w-14 { width:14vw!important; }
.w-15 { width:15vw!important; }
.w-16 { width:16vw!important; }
.w-17 { width:17vw!important; }
.w-18 { width:18vw!important; }
.w-19 { width:19vw!important; }
.w-20 { width:20vw!important; }
.w-21 { width:21vw!important; }
.w-22 { width:22vw!important; }
.w-23 { width:23vw!important; }
.w-24 { width:24vw!important; }
.w-25,.w-qtr { width:25vw!important; }
.w-26 { width:26vw!important; }
.w-27 { width:27vw!important; }
.w-28 { width:28vw!important; }
.w-29 { width:29vw!important; }
.w-30 { width:30vw!important; }
.w-31 { width:31vw!important; }
.w-32 { width:32vw!important; }
.w-33 { width:33vw!important; }
.w-34 { width:34vw!important; }
.w-35 { width:35vw!important; }
.w-36 { width:36vw!important; }
.w-37 { width:37vw!important; }
.w-38 { width:38vw!important; }
.w-39 { width:39vw!important; }
.w-40 { width:40vw!important; }
.w-41 { width:41vw!important; }
.w-42 { width:42vw!important; }
.w-43 { width:43vw!important; }
.w-44 { width:44vw!important; }
.w-45 { width:45vw!important; }
.w-46 { width:46vw!important; }
.w-47 { width:47vw!important; }
.w-48 { width:48vw!important; }
.w-49 { width:49vw!important; }
.w-50,.w-half { width:50vw!important; }
.w-51 { width:51vw!important; }
.w-52 { width:52vw!important; }
.w-53 { width:53vw!important; }
.w-54 { width:54vw!important; }
.w-55 { width:55vw!important; }
.w-56 { width:56vw!important; }
.w-57 { width:57vw!important; }
.w-58 { width:58vw!important; }
.w-59 { width:59vw!important; }
.w-60 { width:60vw!important; }
.w-61 { width:61vw!important; }
.w-62 { width:62vw!important; }
.w-63 { width:63vw!important; }
.w-64 { width:64vw!important; }
.w-65 { width:65vw!important; }
.w-66 { width:66vw!important; }
.w-67 { width:67vw!important; }
.w-68 { width:68vw!important; }
.w-69 { width:69vw!important; }
.w-70 { width:70vw!important; }
.w-71 { width:71vw!important; }
.w-72 { width:72vw!important; }
.w-73 { width:73vw!important; }
.w-74 { width:74vw!important; }
.w-75 { width:75vw!important; }
.w-76 { width:76vw!important; }
.w-77 { width:77vw!important; }
.w-78 { width:78vw!important; }
.w-79 { width:79vw!important; }
.w-80 { width:80vw!important; }
.w-81 { width:81vw!important; }
.w-82 { width:82vw!important; }
.w-83 { width:83vw!important; }
.w-84 { width:84vw!important; }
.w-85 { width:85vw!important; }
.w-86 { width:86vw!important; }
.w-87 { width:87vw!important; }
.w-88 { width:88vw!important; }
.w-89 { width:89vw!important; }
.w-90 { width:90vw!important; }
.w-91 { width:91vw!important; }
.w-92 { width:92vw!important; }
.w-93 { width:93vw!important; }
.w-94 { width:94vw!important; }
.w-95 { width:95vw!important; }
.w-96 { width:96vw!important; }
.w-97 { width:97vw!important; }
.w-98 { width:98vw!important; }
.w-99 { width:99vw!important; }
.w-100,.w-full { width:100vw!important; }
.w-101 { width:101vw!important; }
.w-102 { width:102vw!important; }
.w-103 { width:103vw!important; }
.w-104 { width:104vw!important; }
.w-105 { width:105vw!important; }
.w-106 { width:106vw!important; }
.w-107 { width:107vw!important; }
.w-108 { width:108vw!important; }
.w-109 { width:109vw!important; }
.w-110 { width:110vw!important; }
.w-111 { width:111vw!important; }
.w-112 { width:112vw!important; }
.w-113 { width:113vw!important; }
.w-114 { width:114vw!important; }
.w-115 { width:115vw!important; }
.w-116 { width:116vw!important; }
.w-117 { width:117vw!important; }
.w-118 { width:118vw!important; }
.w-119 { width:119vw!important; }
.w-120 { width:120vw!important; }
.w-121 { width:121vw!important; }
.w-122 { width:122vw!important; }
.w-123 { width:123vw!important; }
.w-124 { width:124vw!important; }
.w-125 { width:125vw!important; }
.w-126 { width:126vw!important; }
.w-127 { width:127vw!important; }
.w-128 { width:128vw!important; }
.w-129 { width:129vw!important; }
.w-130 { width:130vw!important; }
.w-131 { width:131vw!important; }
.w-132 { width:132vw!important; }
.w-133 { width:133vw!important; }
.w-134 { width:134vw!important; }
.w-135 { width:135vw!important; }
.w-136 { width:136vw!important; }
.w-137 { width:137vw!important; }
.w-138 { width:138vw!important; }
.w-139 { width:139vw!important; }
.w-140 { width:140vw!important; }
.w-141 { width:141vw!important; }
.w-142 { width:142vw!important; }
.w-143 { width:143vw!important; }
.w-144 { width:144vw!important; }
.w-145 { width:145vw!important; }
.w-146 { width:146vw!important; }
.w-147 { width:147vw!important; }
.w-148 { width:148vw!important; }
.w-149 { width:149vw!important; }
.w-150 { width:150vw!important; }
.w-151 { width:151vw!important; }
.w-152 { width:152vw!important; }
.w-153 { width:153vw!important; }
.w-154 { width:154vw!important; }
.w-155 { width:155vw!important; }
.w-156 { width:156vw!important; }
.w-157 { width:157vw!important; }
.w-158 { width:158vw!important; }
.w-159 { width:159vw!important; }
.w-160 { width:160vw!important; }
.w-161 { width:161vw!important; }
.w-162 { width:162vw!important; }
.w-163 { width:163vw!important; }
.w-164 { width:164vw!important; }
.w-165 { width:165vw!important; }
.w-166 { width:166vw!important; }
.w-167 { width:167vw!important; }
.w-168 { width:168vw!important; }
.w-169 { width:169vw!important; }
.w-170 { width:170vw!important; }
.w-171 { width:171vw!important; }
.w-172 { width:172vw!important; }
.w-173 { width:173vw!important; }
.w-174 { width:174vw!important; }
.w-175 { width:175vw!important; }
.w-176 { width:176vw!important; }
.w-177 { width:177vw!important; }
.w-178 { width:178vw!important; }
.w-179 { width:179vw!important; }
.w-180 { width:180vw!important; }
.w-181 { width:181vw!important; }
.w-182 { width:182vw!important; }
.w-183 { width:183vw!important; }
.w-184 { width:184vw!important; }
.w-185 { width:185vw!important; }
.w-186 { width:186vw!important; }
.w-187 { width:187vw!important; }
.w-188 { width:188vw!important; }
.w-189 { width:189vw!important; }
.w-190 { width:190vw!important; }
.w-191 { width:191vw!important; }
.w-192 { width:192vw!important; }
.w-193 { width:193vw!important; }
.w-194 { width:194vw!important; }
.w-195 { width:195vw!important; }
.w-196 { width:196vw!important; }
.w-197 { width:197vw!important; }
.w-198 { width:198vw!important; }
.w-199 { width:199vw!important; }
.w-200 { width:200vw!important; }
/* Heights */
.h-1 { height:1vh!important; }
.h-2 { height:2vh!important; }
.h-3 { height:3vh!important; }
.h-4 { height:4vh!important; }
.h-5 { height:5vh!important; }
.h-6 { height:6vh!important; }
.h-7 { height:7vh!important; }
.h-8 { height:8vh!important; }
.h-9 { height:9vh!important; }
.h-10 { height:10vh!important; }
.h-11 { height:11vh!important; }
.h-12 { height:12vh!important; }
.h-13 { height:13vh!important; }
.h-14 { height:14vh!important; }
.h-15 { height:15vh!important; }
.h-16 { height:16vh!important; }
.h-17 { height:17vh!important; }
.h-18 { height:18vh!important; }
.h-19 { height:19vh!important; }
.h-20 { height:20vh!important; }
.h-21 { height:21vh!important; }
.h-22 { height:22vh!important; }
.h-23 { height:23vh!important; }
.h-24 { height:24vh!important; }
.h-25,.h-qtr { height:25vh!important; }
.h-26 { height:26vh!important; }
.h-27 { height:27vh!important; }
.h-28 { height:28vh!important; }
.h-29 { height:29vh!important; }
.h-30 { height:30vh!important; }
.h-31 { height:31vh!important; }
.h-32 { height:32vh!important; }
.h-33 { height:33vh!important; }
.h-34 { height:34vh!important; }
.h-35 { height:35vh!important; }
.h-36 { height:36vh!important; }
.h-37 { height:37vh!important; }
.h-38 { height:38vh!important; }
.h-39 { height:39vh!important; }
.h-40 { height:40vh!important; }
.h-41 { height:41vh!important; }
.h-42 { height:42vh!important; }
.h-43 { height:43vh!important; }
.h-44 { height:44vh!important; }
.h-45 { height:45vh!important; }
.h-46 { height:46vh!important; }
.h-47 { height:47vh!important; }
.h-48 { height:48vh!important; }
.h-49 { height:49vh!important; }
.h-50,.h-half { height:50vh!important; }
.h-51 { height:51vh!important; }
.h-52 { height:52vh!important; }
.h-53 { height:53vh!important; }
.h-54 { height:54vh!important; }
.h-55 { height:55vh!important; }
.h-56 { height:56vh!important; }
.h-57 { height:57vh!important; }
.h-58 { height:58vh!important; }
.h-59 { height:59vh!important; }
.h-60 { height:60vh!important; }
.h-61 { height:61vh!important; }
.h-62 { height:62vh!important; }
.h-63 { height:63vh!important; }
.h-64 { height:64vh!important; }
.h-65 { height:65vh!important; }
.h-66 { height:66vh!important; }
.h-67 { height:67vh!important; }
.h-68 { height:68vh!important; }
.h-69 { height:69vh!important; }
.h-70 { height:70vh!important; }
.h-71 { height:71vh!important; }
.h-72 { height:72vh!important; }
.h-73 { height:73vh!important; }