sccoreui 2.1.6 → 2.1.8

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 (34) hide show
  1. package/dist/App.js +3 -2
  2. package/dist/App.scss +4 -0
  3. package/dist/assets/flex.css +472 -403
  4. package/dist/assets/images/avatar.png +0 -0
  5. package/dist/assets/images/demoImage.png +0 -0
  6. package/dist/assets/images/label-image.png +0 -0
  7. package/dist/assets/png/salseforce-img.png +0 -0
  8. package/dist/assets/sccoreui.css +78 -35
  9. package/dist/assets/svg/message-info.svg +3 -0
  10. package/dist/assets/theme.css +2893 -2791
  11. package/dist/components/data-table/column.js +1 -2
  12. package/dist/components/data-view/data-view.js +6 -0
  13. package/dist/directives/svg-component.js +3 -3
  14. package/dist/directives/svg-icons.js +189 -7
  15. package/dist/index.js +5 -2
  16. package/dist/pages/badges/badge.js +61 -0
  17. package/dist/pages/checkbox/checkbox.js +26 -0
  18. package/dist/pages/dropdown/dropdown-component.js +2 -4
  19. package/dist/pages/home.js +5 -1
  20. package/dist/pages/input/input-text.js +99 -10
  21. package/dist/pages/radio-button/radio-button-component.js +11 -0
  22. package/dist/pages/toast/toast.js +47 -0
  23. package/dist/types/components/data-table/column.d.ts +2 -2
  24. package/dist/types/components/data-view/data-view.d.ts +2 -0
  25. package/dist/types/directives/svg-component.d.ts +2 -2
  26. package/dist/types/index.d.ts +2 -1
  27. package/dist/types/pages/badges/badge.d.ts +3 -0
  28. package/dist/types/pages/checkbox/checkbox.d.ts +2 -0
  29. package/dist/types/pages/dropdown/dropdown-component.d.ts +1 -1
  30. package/dist/types/pages/input/input-text.d.ts +1 -0
  31. package/dist/types/pages/radio-button/radio-button-component.d.ts +2 -0
  32. package/dist/types/pages/toast/toast.d.ts +2 -0
  33. package/package.json +1 -1
  34. package/dist/assets/svg/hyphen-white.svg +0 -3
@@ -10630,43 +10630,43 @@
10630
10630
  }
10631
10631
 
10632
10632
  .md\:py-1 {
10633
- padding-top: 0.25rem !important;
10634
- padding-bottom: 0.25rem !important;
10633
+ padding-top: 4px !important;
10634
+ padding-bottom: 4px !important;
10635
10635
  }
10636
10636
 
10637
10637
  .md\:py-2 {
10638
- padding-top: 0.5rem !important;
10639
- padding-bottom: 0.5rem !important;
10638
+ padding-top: 8px !important;
10639
+ padding-bottom: 8px !important;
10640
10640
  }
10641
10641
 
10642
10642
  .md\:py-3 {
10643
- padding-top: 1rem !important;
10644
- padding-bottom: 1rem !important;
10643
+ padding-top: 12px !important;
10644
+ padding-bottom: 12px !important;
10645
10645
  }
10646
10646
 
10647
10647
  .md\:py-4 {
10648
- padding-top: 1.5rem !important;
10649
- padding-bottom: 1.5rem !important;
10648
+ padding-top: 16px !important;
10649
+ padding-bottom: 16px !important;
10650
10650
  }
10651
10651
 
10652
10652
  .md\:py-5 {
10653
- padding-top: 2rem !important;
10654
- padding-bottom: 2rem !important;
10653
+ padding-top: 20px !important;
10654
+ padding-bottom: 20px !important;
10655
10655
  }
10656
10656
 
10657
10657
  .md\:py-6 {
10658
- padding-top: 3rem !important;
10659
- padding-bottom: 3rem !important;
10658
+ padding-top: 24px !important;
10659
+ padding-bottom: 24px !important;
10660
10660
  }
10661
10661
 
10662
10662
  .md\:py-7 {
10663
- padding-top: 4rem !important;
10664
- padding-bottom: 4rem !important;
10663
+ padding-top: 28px !important;
10664
+ padding-bottom: 28px !important;
10665
10665
  }
10666
10666
 
10667
10667
  .md\:py-8 {
10668
- padding-top: 5rem !important;
10669
- padding-bottom: 5rem !important;
10668
+ padding-top: 32px !important;
10669
+ padding-bottom: 32px !important;
10670
10670
  }
10671
10671
  }
10672
10672
  @media screen and (min-width: 992px) {
@@ -10675,35 +10675,35 @@
10675
10675
  }
10676
10676
 
10677
10677
  .lg\:p-1 {
10678
- padding: 0.25rem !important;
10678
+ padding: 4px !important;
10679
10679
  }
10680
10680
 
10681
10681
  .lg\:p-2 {
10682
- padding: 0.5rem !important;
10682
+ padding: 8px !important;
10683
10683
  }
10684
10684
 
10685
10685
  .lg\:p-3 {
10686
- padding: 1rem !important;
10686
+ padding: 12px !important;
10687
10687
  }
10688
10688
 
10689
10689
  .lg\:p-4 {
10690
- padding: 1.5rem !important;
10690
+ padding: 16px !important;
10691
10691
  }
10692
10692
 
10693
10693
  .lg\:p-5 {
10694
- padding: 2rem !important;
10694
+ padding: 20px !important;
10695
10695
  }
10696
10696
 
10697
10697
  .lg\:p-6 {
10698
- padding: 3rem !important;
10698
+ padding: 24px !important;
10699
10699
  }
10700
10700
 
10701
10701
  .lg\:p-7 {
10702
- padding: 4rem !important;
10702
+ padding: 28px !important;
10703
10703
  }
10704
10704
 
10705
10705
  .lg\:p-8 {
10706
- padding: 5rem !important;
10706
+ padding: 32px !important;
10707
10707
  }
10708
10708
 
10709
10709
  .lg\:pt-0 {
@@ -10711,35 +10711,35 @@
10711
10711
  }
10712
10712
 
10713
10713
  .lg\:pt-1 {
10714
- padding-top: 0.25rem !important;
10714
+ padding-top: 4px !important;
10715
10715
  }
10716
10716
 
10717
10717
  .lg\:pt-2 {
10718
- padding-top: 0.5rem !important;
10718
+ padding-top: 8px !important;
10719
10719
  }
10720
10720
 
10721
10721
  .lg\:pt-3 {
10722
- padding-top: 1rem !important;
10722
+ padding-top: 12px !important;
10723
10723
  }
10724
10724
 
10725
10725
  .lg\:pt-4 {
10726
- padding-top: 1.5rem !important;
10726
+ padding-top: 16px !important;
10727
10727
  }
10728
10728
 
10729
10729
  .lg\:pt-5 {
10730
- padding-top: 2rem !important;
10730
+ padding-top: 20px !important;
10731
10731
  }
10732
10732
 
10733
10733
  .lg\:pt-6 {
10734
- padding-top: 3rem !important;
10734
+ padding-top: 24px !important;
10735
10735
  }
10736
10736
 
10737
10737
  .lg\:pt-7 {
10738
- padding-top: 4rem !important;
10738
+ padding-top: 28px !important;
10739
10739
  }
10740
10740
 
10741
10741
  .lg\:pt-8 {
10742
- padding-top: 5rem !important;
10742
+ padding-top: 32px !important;
10743
10743
  }
10744
10744
 
10745
10745
  .lg\:pr-0 {
@@ -10747,35 +10747,35 @@
10747
10747
  }
10748
10748
 
10749
10749
  .lg\:pr-1 {
10750
- padding-right: 0.25rem !important;
10750
+ padding-right: 4px !important;
10751
10751
  }
10752
10752
 
10753
10753
  .lg\:pr-2 {
10754
- padding-right: 0.5rem !important;
10754
+ padding-right: 8px !important;
10755
10755
  }
10756
10756
 
10757
10757
  .lg\:pr-3 {
10758
- padding-right: 1rem !important;
10758
+ padding-right: 12px !important;
10759
10759
  }
10760
10760
 
10761
10761
  .lg\:pr-4 {
10762
- padding-right: 1.5rem !important;
10762
+ padding-right: 16px !important;
10763
10763
  }
10764
10764
 
10765
10765
  .lg\:pr-5 {
10766
- padding-right: 2rem !important;
10766
+ padding-right: 20px !important;
10767
10767
  }
10768
10768
 
10769
10769
  .lg\:pr-6 {
10770
- padding-right: 3rem !important;
10770
+ padding-right: 24px !important;
10771
10771
  }
10772
10772
 
10773
10773
  .lg\:pr-7 {
10774
- padding-right: 4rem !important;
10774
+ padding-right: 28px !important;
10775
10775
  }
10776
10776
 
10777
10777
  .lg\:pr-8 {
10778
- padding-right: 5rem !important;
10778
+ padding-right: 32px !important;
10779
10779
  }
10780
10780
 
10781
10781
  .lg\:pl-0 {
@@ -10783,35 +10783,35 @@
10783
10783
  }
10784
10784
 
10785
10785
  .lg\:pl-1 {
10786
- padding-left: 0.25rem !important;
10786
+ padding-left: 4px !important;
10787
10787
  }
10788
10788
 
10789
10789
  .lg\:pl-2 {
10790
- padding-left: 0.5rem !important;
10790
+ padding-left: 8px !important;
10791
10791
  }
10792
10792
 
10793
10793
  .lg\:pl-3 {
10794
- padding-left: 1rem !important;
10794
+ padding-left: 12px !important;
10795
10795
  }
10796
10796
 
10797
10797
  .lg\:pl-4 {
10798
- padding-left: 1.5rem !important;
10798
+ padding-left: 16px !important;
10799
10799
  }
10800
10800
 
10801
10801
  .lg\:pl-5 {
10802
- padding-left: 2rem !important;
10802
+ padding-left: 20px !important;
10803
10803
  }
10804
10804
 
10805
10805
  .lg\:pl-6 {
10806
- padding-left: 3rem !important;
10806
+ padding-left: 24px !important;
10807
10807
  }
10808
10808
 
10809
10809
  .lg\:pl-7 {
10810
- padding-left: 4rem !important;
10810
+ padding-left: 28px !important;
10811
10811
  }
10812
10812
 
10813
10813
  .lg\:pl-8 {
10814
- padding-left: 5rem !important;
10814
+ padding-left: 32px !important;
10815
10815
  }
10816
10816
 
10817
10817
  .lg\:pb-0 {
@@ -10819,35 +10819,35 @@
10819
10819
  }
10820
10820
 
10821
10821
  .lg\:pb-1 {
10822
- padding-bottom: 0.25rem !important;
10822
+ padding-bottom: 4px !important;
10823
10823
  }
10824
10824
 
10825
10825
  .lg\:pb-2 {
10826
- padding-bottom: 0.5rem !important;
10826
+ padding-bottom: 8px !important;
10827
10827
  }
10828
10828
 
10829
10829
  .lg\:pb-3 {
10830
- padding-bottom: 1rem !important;
10830
+ padding-bottom: 12px !important;
10831
10831
  }
10832
10832
 
10833
10833
  .lg\:pb-4 {
10834
- padding-bottom: 1.5rem !important;
10834
+ padding-bottom: 16px !important;
10835
10835
  }
10836
10836
 
10837
10837
  .lg\:pb-5 {
10838
- padding-bottom: 2rem !important;
10838
+ padding-bottom: 20px !important;
10839
10839
  }
10840
10840
 
10841
10841
  .lg\:pb-6 {
10842
- padding-bottom: 3rem !important;
10842
+ padding-bottom: 24px !important;
10843
10843
  }
10844
10844
 
10845
10845
  .lg\:pb-7 {
10846
- padding-bottom: 4rem !important;
10846
+ padding-bottom: 28px !important;
10847
10847
  }
10848
10848
 
10849
10849
  .lg\:pb-8 {
10850
- padding-bottom: 5rem !important;
10850
+ padding-bottom: 32px !important;
10851
10851
  }
10852
10852
 
10853
10853
  .lg\:px-0 {
@@ -10856,43 +10856,43 @@
10856
10856
  }
10857
10857
 
10858
10858
  .lg\:px-1 {
10859
- padding-left: 0.25rem !important;
10860
- padding-right: 0.25rem !important;
10859
+ padding-left: 4px !important;
10860
+ padding-right: 4px !important;
10861
10861
  }
10862
10862
 
10863
10863
  .lg\:px-2 {
10864
- padding-left: 0.5rem !important;
10865
- padding-right: 0.5rem !important;
10864
+ padding-left: 8px !important;
10865
+ padding-right: 8px !important;
10866
10866
  }
10867
10867
 
10868
10868
  .lg\:px-3 {
10869
- padding-left: 1rem !important;
10870
- padding-right: 1rem !important;
10869
+ padding-left: 12px !important;
10870
+ padding-right: 12px !important;
10871
10871
  }
10872
10872
 
10873
10873
  .lg\:px-4 {
10874
- padding-left: 1.5rem !important;
10875
- padding-right: 1.5rem !important;
10874
+ padding-left: 16px !important;
10875
+ padding-right: 16px !important;
10876
10876
  }
10877
10877
 
10878
10878
  .lg\:px-5 {
10879
- padding-left: 2rem !important;
10880
- padding-right: 2rem !important;
10879
+ padding-left: 20px !important;
10880
+ padding-right: 20px !important;
10881
10881
  }
10882
10882
 
10883
10883
  .lg\:px-6 {
10884
- padding-left: 3rem !important;
10885
- padding-right: 3rem !important;
10884
+ padding-left: 24px !important;
10885
+ padding-right: 24px !important;
10886
10886
  }
10887
10887
 
10888
10888
  .lg\:px-7 {
10889
- padding-left: 4rem !important;
10890
- padding-right: 4rem !important;
10889
+ padding-left: 28px !important;
10890
+ padding-right: 28px !important;
10891
10891
  }
10892
10892
 
10893
10893
  .lg\:px-8 {
10894
- padding-left: 5rem !important;
10895
- padding-right: 5rem !important;
10894
+ padding-left: 32px !important;
10895
+ padding-right: 32px !important;
10896
10896
  }
10897
10897
 
10898
10898
  .lg\:py-0 {
@@ -10901,43 +10901,43 @@
10901
10901
  }
10902
10902
 
10903
10903
  .lg\:py-1 {
10904
- padding-top: 0.25rem !important;
10905
- padding-bottom: 0.25rem !important;
10904
+ padding-top: 4px !important;
10905
+ padding-bottom: 4px !important;
10906
10906
  }
10907
10907
 
10908
10908
  .lg\:py-2 {
10909
- padding-top: 0.5rem !important;
10910
- padding-bottom: 0.5rem !important;
10909
+ padding-top: 8px !important;
10910
+ padding-bottom: 8px !important;
10911
10911
  }
10912
10912
 
10913
10913
  .lg\:py-3 {
10914
- padding-top: 1rem !important;
10915
- padding-bottom: 1rem !important;
10914
+ padding-top: 12px !important;
10915
+ padding-bottom: 12px !important;
10916
10916
  }
10917
10917
 
10918
10918
  .lg\:py-4 {
10919
- padding-top: 1.5rem !important;
10920
- padding-bottom: 1.5rem !important;
10919
+ padding-top: 16px !important;
10920
+ padding-bottom: 16px !important;
10921
10921
  }
10922
10922
 
10923
10923
  .lg\:py-5 {
10924
- padding-top: 2rem !important;
10925
- padding-bottom: 2rem !important;
10924
+ padding-top: 20px !important;
10925
+ padding-bottom: 20px !important;
10926
10926
  }
10927
10927
 
10928
10928
  .lg\:py-6 {
10929
- padding-top: 3rem !important;
10930
- padding-bottom: 3rem !important;
10929
+ padding-top: 24px !important;
10930
+ padding-bottom: 24px !important;
10931
10931
  }
10932
10932
 
10933
10933
  .lg\:py-7 {
10934
- padding-top: 4rem !important;
10935
- padding-bottom: 4rem !important;
10934
+ padding-top: 28px !important;
10935
+ padding-bottom: 28px !important;
10936
10936
  }
10937
10937
 
10938
10938
  .lg\:py-8 {
10939
- padding-top: 5rem !important;
10940
- padding-bottom: 5rem !important;
10939
+ padding-top: 32px !important;
10940
+ padding-bottom: 32px !important;
10941
10941
  }
10942
10942
  }
10943
10943
  @media screen and (min-width: 1200px) {
@@ -10946,35 +10946,35 @@
10946
10946
  }
10947
10947
 
10948
10948
  .xl\:p-1 {
10949
- padding: 0.25rem !important;
10949
+ padding: 4px !important;
10950
10950
  }
10951
10951
 
10952
10952
  .xl\:p-2 {
10953
- padding: 0.5rem !important;
10953
+ padding: 8px !important;
10954
10954
  }
10955
10955
 
10956
10956
  .xl\:p-3 {
10957
- padding: 1rem !important;
10957
+ padding: 12px !important;
10958
10958
  }
10959
10959
 
10960
10960
  .xl\:p-4 {
10961
- padding: 1.5rem !important;
10961
+ padding: 16px !important;
10962
10962
  }
10963
10963
 
10964
10964
  .xl\:p-5 {
10965
- padding: 2rem !important;
10965
+ padding: 20px !important;
10966
10966
  }
10967
10967
 
10968
10968
  .xl\:p-6 {
10969
- padding: 3rem !important;
10969
+ padding: 24px !important;
10970
10970
  }
10971
10971
 
10972
10972
  .xl\:p-7 {
10973
- padding: 4rem !important;
10973
+ padding: 28px !important;
10974
10974
  }
10975
10975
 
10976
10976
  .xl\:p-8 {
10977
- padding: 5rem !important;
10977
+ padding: 32px !important;
10978
10978
  }
10979
10979
 
10980
10980
  .xl\:pt-0 {
@@ -10982,35 +10982,35 @@
10982
10982
  }
10983
10983
 
10984
10984
  .xl\:pt-1 {
10985
- padding-top: 0.25rem !important;
10985
+ padding-top: 4px !important;
10986
10986
  }
10987
10987
 
10988
10988
  .xl\:pt-2 {
10989
- padding-top: 0.5rem !important;
10989
+ padding-top: 8px !important;
10990
10990
  }
10991
10991
 
10992
10992
  .xl\:pt-3 {
10993
- padding-top: 1rem !important;
10993
+ padding-top: 12px !important;
10994
10994
  }
10995
10995
 
10996
10996
  .xl\:pt-4 {
10997
- padding-top: 1.5rem !important;
10997
+ padding-top: 16px !important;
10998
10998
  }
10999
10999
 
11000
11000
  .xl\:pt-5 {
11001
- padding-top: 2rem !important;
11001
+ padding-top: 20px !important;
11002
11002
  }
11003
11003
 
11004
11004
  .xl\:pt-6 {
11005
- padding-top: 3rem !important;
11005
+ padding-top: 24px !important;
11006
11006
  }
11007
11007
 
11008
11008
  .xl\:pt-7 {
11009
- padding-top: 4rem !important;
11009
+ padding-top: 28px !important;
11010
11010
  }
11011
11011
 
11012
11012
  .xl\:pt-8 {
11013
- padding-top: 5rem !important;
11013
+ padding-top: 32px !important;
11014
11014
  }
11015
11015
 
11016
11016
  .xl\:pr-0 {
@@ -11018,35 +11018,35 @@
11018
11018
  }
11019
11019
 
11020
11020
  .xl\:pr-1 {
11021
- padding-right: 0.25rem !important;
11021
+ padding-right: 4px !important;
11022
11022
  }
11023
11023
 
11024
11024
  .xl\:pr-2 {
11025
- padding-right: 0.5rem !important;
11025
+ padding-right: 8px !important;
11026
11026
  }
11027
11027
 
11028
11028
  .xl\:pr-3 {
11029
- padding-right: 1rem !important;
11029
+ padding-right: 12px !important;
11030
11030
  }
11031
11031
 
11032
11032
  .xl\:pr-4 {
11033
- padding-right: 1.5rem !important;
11033
+ padding-right: 16px !important;
11034
11034
  }
11035
11035
 
11036
11036
  .xl\:pr-5 {
11037
- padding-right: 2rem !important;
11037
+ padding-right: 20px !important;
11038
11038
  }
11039
11039
 
11040
11040
  .xl\:pr-6 {
11041
- padding-right: 3rem !important;
11041
+ padding-right: 24px !important;
11042
11042
  }
11043
11043
 
11044
11044
  .xl\:pr-7 {
11045
- padding-right: 4rem !important;
11045
+ padding-right: 28px !important;
11046
11046
  }
11047
11047
 
11048
11048
  .xl\:pr-8 {
11049
- padding-right: 5rem !important;
11049
+ padding-right: 32px !important;
11050
11050
  }
11051
11051
 
11052
11052
  .xl\:pl-0 {
@@ -11054,35 +11054,35 @@
11054
11054
  }
11055
11055
 
11056
11056
  .xl\:pl-1 {
11057
- padding-left: 0.25rem !important;
11057
+ padding-left: 4px !important;
11058
11058
  }
11059
11059
 
11060
11060
  .xl\:pl-2 {
11061
- padding-left: 0.5rem !important;
11061
+ padding-left: 8px !important;
11062
11062
  }
11063
11063
 
11064
11064
  .xl\:pl-3 {
11065
- padding-left: 1rem !important;
11065
+ padding-left: 12px !important;
11066
11066
  }
11067
11067
 
11068
11068
  .xl\:pl-4 {
11069
- padding-left: 1.5rem !important;
11069
+ padding-left: 16px !important;
11070
11070
  }
11071
11071
 
11072
11072
  .xl\:pl-5 {
11073
- padding-left: 2rem !important;
11073
+ padding-left: 20px !important;
11074
11074
  }
11075
11075
 
11076
11076
  .xl\:pl-6 {
11077
- padding-left: 3rem !important;
11077
+ padding-left: 24px !important;
11078
11078
  }
11079
11079
 
11080
11080
  .xl\:pl-7 {
11081
- padding-left: 4rem !important;
11081
+ padding-left: 28px !important;
11082
11082
  }
11083
11083
 
11084
11084
  .xl\:pl-8 {
11085
- padding-left: 5rem !important;
11085
+ padding-left: 32px !important;
11086
11086
  }
11087
11087
 
11088
11088
  .xl\:pb-0 {
@@ -11090,35 +11090,35 @@
11090
11090
  }
11091
11091
 
11092
11092
  .xl\:pb-1 {
11093
- padding-bottom: 0.25rem !important;
11093
+ padding-bottom: 4px !important;
11094
11094
  }
11095
11095
 
11096
11096
  .xl\:pb-2 {
11097
- padding-bottom: 0.5rem !important;
11097
+ padding-bottom: 8px !important;
11098
11098
  }
11099
11099
 
11100
11100
  .xl\:pb-3 {
11101
- padding-bottom: 1rem !important;
11101
+ padding-bottom: 12px !important;
11102
11102
  }
11103
11103
 
11104
11104
  .xl\:pb-4 {
11105
- padding-bottom: 1.5rem !important;
11105
+ padding-bottom: 16px !important;
11106
11106
  }
11107
11107
 
11108
11108
  .xl\:pb-5 {
11109
- padding-bottom: 2rem !important;
11109
+ padding-bottom: 20px !important;
11110
11110
  }
11111
11111
 
11112
11112
  .xl\:pb-6 {
11113
- padding-bottom: 3rem !important;
11113
+ padding-bottom: 24px !important;
11114
11114
  }
11115
11115
 
11116
11116
  .xl\:pb-7 {
11117
- padding-bottom: 4rem !important;
11117
+ padding-bottom: 28px !important;
11118
11118
  }
11119
11119
 
11120
11120
  .xl\:pb-8 {
11121
- padding-bottom: 5rem !important;
11121
+ padding-bottom: 32px !important;
11122
11122
  }
11123
11123
 
11124
11124
  .xl\:px-0 {
@@ -11127,43 +11127,43 @@
11127
11127
  }
11128
11128
 
11129
11129
  .xl\:px-1 {
11130
- padding-left: 0.25rem !important;
11131
- padding-right: 0.25rem !important;
11130
+ padding-left: 4px !important;
11131
+ padding-right: 4px !important;
11132
11132
  }
11133
11133
 
11134
11134
  .xl\:px-2 {
11135
- padding-left: 0.5rem !important;
11136
- padding-right: 0.5rem !important;
11135
+ padding-left: 8px !important;
11136
+ padding-right: 8px !important;
11137
11137
  }
11138
11138
 
11139
11139
  .xl\:px-3 {
11140
- padding-left: 1rem !important;
11141
- padding-right: 1rem !important;
11140
+ padding-left: 12px !important;
11141
+ padding-right: 12px !important;
11142
11142
  }
11143
11143
 
11144
11144
  .xl\:px-4 {
11145
- padding-left: 1.5rem !important;
11146
- padding-right: 1.5rem !important;
11145
+ padding-left: 16px !important;
11146
+ padding-right: 16px !important;
11147
11147
  }
11148
11148
 
11149
11149
  .xl\:px-5 {
11150
- padding-left: 2rem !important;
11151
- padding-right: 2rem !important;
11150
+ padding-left: 20px !important;
11151
+ padding-right: 20px !important;
11152
11152
  }
11153
11153
 
11154
11154
  .xl\:px-6 {
11155
- padding-left: 3rem !important;
11156
- padding-right: 3rem !important;
11155
+ padding-left: 24px !important;
11156
+ padding-right: 24px !important;
11157
11157
  }
11158
11158
 
11159
11159
  .xl\:px-7 {
11160
- padding-left: 4rem !important;
11161
- padding-right: 4rem !important;
11160
+ padding-left: 28px !important;
11161
+ padding-right: 28px !important;
11162
11162
  }
11163
11163
 
11164
11164
  .xl\:px-8 {
11165
- padding-left: 5rem !important;
11166
- padding-right: 5rem !important;
11165
+ padding-left: 32px !important;
11166
+ padding-right: 32px !important;
11167
11167
  }
11168
11168
 
11169
11169
  .xl\:py-0 {
@@ -11172,43 +11172,43 @@
11172
11172
  }
11173
11173
 
11174
11174
  .xl\:py-1 {
11175
- padding-top: 0.25rem !important;
11176
- padding-bottom: 0.25rem !important;
11175
+ padding-top: 4px !important;
11176
+ padding-bottom: 4px !important;
11177
11177
  }
11178
11178
 
11179
11179
  .xl\:py-2 {
11180
- padding-top: 0.5rem !important;
11181
- padding-bottom: 0.5rem !important;
11180
+ padding-top: 8px !important;
11181
+ padding-bottom: 8px !important;
11182
11182
  }
11183
11183
 
11184
11184
  .xl\:py-3 {
11185
- padding-top: 1rem !important;
11186
- padding-bottom: 1rem !important;
11185
+ padding-top: 12px !important;
11186
+ padding-bottom: 12px !important;
11187
11187
  }
11188
11188
 
11189
11189
  .xl\:py-4 {
11190
- padding-top: 1.5rem !important;
11191
- padding-bottom: 1.5rem !important;
11190
+ padding-top: 16px !important;
11191
+ padding-bottom: 16px !important;
11192
11192
  }
11193
11193
 
11194
11194
  .xl\:py-5 {
11195
- padding-top: 2rem !important;
11196
- padding-bottom: 2rem !important;
11195
+ padding-top: 20px !important;
11196
+ padding-bottom: 20px !important;
11197
11197
  }
11198
11198
 
11199
11199
  .xl\:py-6 {
11200
- padding-top: 3rem !important;
11201
- padding-bottom: 3rem !important;
11200
+ padding-top: 24px !important;
11201
+ padding-bottom: 24px !important;
11202
11202
  }
11203
11203
 
11204
11204
  .xl\:py-7 {
11205
- padding-top: 4rem !important;
11206
- padding-bottom: 4rem !important;
11205
+ padding-top: 28px !important;
11206
+ padding-bottom: 28px !important;
11207
11207
  }
11208
11208
 
11209
11209
  .xl\:py-8 {
11210
- padding-top: 5rem !important;
11211
- padding-bottom: 5rem !important;
11210
+ padding-top: 32px !important;
11211
+ padding-bottom: 32px !important;
11212
11212
  }
11213
11213
  }
11214
11214
  .m-0 {
@@ -11240,11 +11240,11 @@
11240
11240
  }
11241
11241
 
11242
11242
  .m-7 {
11243
- margin: 4rem !important;
11243
+ margin: 28px !important;
11244
11244
  }
11245
11245
 
11246
11246
  .m-8 {
11247
- margin: 5rem !important;
11247
+ margin: 32px !important;
11248
11248
  }
11249
11249
 
11250
11250
  .-m-1 {
@@ -11356,39 +11356,39 @@
11356
11356
  }
11357
11357
 
11358
11358
  .mr-0 {
11359
- margin-right: 4px !important;
11359
+ margin-right: 0px !important;
11360
11360
  }
11361
11361
 
11362
11362
  .mr-1 {
11363
- margin-right: 8px !important;
11363
+ margin-right: 4px !important;
11364
11364
  }
11365
11365
 
11366
11366
  .mr-2 {
11367
- margin-right: 12px !important;
11367
+ margin-right: 8px !important;
11368
11368
  }
11369
11369
 
11370
11370
  .mr-3 {
11371
- margin-right: 16px !important;
11371
+ margin-right: 12px !important;
11372
11372
  }
11373
11373
 
11374
11374
  .mr-4 {
11375
- margin-right: 20px !important;
11375
+ margin-right: 16px !important;
11376
11376
  }
11377
11377
 
11378
11378
  .mr-5 {
11379
- margin-right: 24px !important;
11379
+ margin-right: 20px !important;
11380
11380
  }
11381
11381
 
11382
11382
  .mr-6 {
11383
- margin-right: 3rem !important;
11383
+ margin-right: 24px !important;
11384
11384
  }
11385
11385
 
11386
11386
  .mr-7 {
11387
- margin-right: 4rem !important;
11387
+ margin-right: 28px !important;
11388
11388
  }
11389
11389
 
11390
11390
  .mr-8 {
11391
- margin-right: 5rem !important;
11391
+ margin-right: 32px !important;
11392
11392
  }
11393
11393
 
11394
11394
  .-mr-1 {
@@ -12208,43 +12208,43 @@
12208
12208
  }
12209
12209
 
12210
12210
  .sm\:my-1 {
12211
- margin-top: 0.25rem !important;
12212
- margin-bottom: 0.25rem !important;
12211
+ margin-top: 4px !important;
12212
+ margin-bottom: 4px !important;
12213
12213
  }
12214
12214
 
12215
12215
  .sm\:my-2 {
12216
- margin-top: 0.5rem !important;
12217
- margin-bottom: 0.5rem !important;
12216
+ margin-top: 8px !important;
12217
+ margin-bottom: 8px !important;
12218
12218
  }
12219
12219
 
12220
12220
  .sm\:my-3 {
12221
- margin-top: 1rem !important;
12222
- margin-bottom: 1rem !important;
12221
+ margin-top: 12px !important;
12222
+ margin-bottom: 12px !important;
12223
12223
  }
12224
12224
 
12225
12225
  .sm\:my-4 {
12226
- margin-top: 1.5rem !important;
12227
- margin-bottom: 1.5rem !important;
12226
+ margin-top: 16px !important;
12227
+ margin-bottom: 16px !important;
12228
12228
  }
12229
12229
 
12230
12230
  .sm\:my-5 {
12231
- margin-top: 2rem !important;
12232
- margin-bottom: 2rem !important;
12231
+ margin-top: 20px !important;
12232
+ margin-bottom: 20px !important;
12233
12233
  }
12234
12234
 
12235
12235
  .sm\:my-6 {
12236
- margin-top: 3rem !important;
12237
- margin-bottom: 3rem !important;
12236
+ margin-top: 24px !important;
12237
+ margin-bottom: 24px !important;
12238
12238
  }
12239
12239
 
12240
12240
  .sm\:my-7 {
12241
- margin-top: 4rem !important;
12242
- margin-bottom: 4rem !important;
12241
+ margin-top: 28px !important;
12242
+ margin-bottom: 28px !important;
12243
12243
  }
12244
12244
 
12245
12245
  .sm\:my-8 {
12246
- margin-top: 5rem !important;
12247
- margin-bottom: 5rem !important;
12246
+ margin-top: 32px !important;
12247
+ margin-bottom: 32px !important;
12248
12248
  }
12249
12249
 
12250
12250
  .sm\:-my-1 {
@@ -12298,35 +12298,35 @@
12298
12298
  }
12299
12299
 
12300
12300
  .md\:m-1 {
12301
- margin: 0.25rem !important;
12301
+ margin: 4px !important;
12302
12302
  }
12303
12303
 
12304
12304
  .md\:m-2 {
12305
- margin: 0.5rem !important;
12305
+ margin: 8px !important;
12306
12306
  }
12307
12307
 
12308
12308
  .md\:m-3 {
12309
- margin: 1rem !important;
12309
+ margin: 12px !important;
12310
12310
  }
12311
12311
 
12312
12312
  .md\:m-4 {
12313
- margin: 1.5rem !important;
12313
+ margin: 16px !important;
12314
12314
  }
12315
12315
 
12316
12316
  .md\:m-5 {
12317
- margin: 2rem !important;
12317
+ margin: 20px !important;
12318
12318
  }
12319
12319
 
12320
12320
  .md\:m-6 {
12321
- margin: 3rem !important;
12321
+ margin: 24px !important;
12322
12322
  }
12323
12323
 
12324
12324
  .md\:m-7 {
12325
- margin: 4rem !important;
12325
+ margin: 28px !important;
12326
12326
  }
12327
12327
 
12328
12328
  .md\:m-8 {
12329
- margin: 5rem !important;
12329
+ margin: 32px !important;
12330
12330
  }
12331
12331
 
12332
12332
  .md\:-m-1 {
@@ -12370,35 +12370,35 @@
12370
12370
  }
12371
12371
 
12372
12372
  .md\:mt-1 {
12373
- margin-top: 0.25rem !important;
12373
+ margin-top: 4px !important;
12374
12374
  }
12375
12375
 
12376
12376
  .md\:mt-2 {
12377
- margin-top: 0.5rem !important;
12377
+ margin-top: 8px !important;
12378
12378
  }
12379
12379
 
12380
12380
  .md\:mt-3 {
12381
- margin-top: 1rem !important;
12381
+ margin-top: 12px !important;
12382
12382
  }
12383
12383
 
12384
12384
  .md\:mt-4 {
12385
- margin-top: 1.5rem !important;
12385
+ margin-top: 16px !important;
12386
12386
  }
12387
12387
 
12388
12388
  .md\:mt-5 {
12389
- margin-top: 2rem !important;
12389
+ margin-top: 20px !important;
12390
12390
  }
12391
12391
 
12392
12392
  .md\:mt-6 {
12393
- margin-top: 3rem !important;
12393
+ margin-top: 24px !important;
12394
12394
  }
12395
12395
 
12396
12396
  .md\:mt-7 {
12397
- margin-top: 4rem !important;
12397
+ margin-top: 28px !important;
12398
12398
  }
12399
12399
 
12400
12400
  .md\:mt-8 {
12401
- margin-top: 5rem !important;
12401
+ margin-top: 32px !important;
12402
12402
  }
12403
12403
 
12404
12404
  .md\:-mt-1 {
@@ -12442,35 +12442,35 @@
12442
12442
  }
12443
12443
 
12444
12444
  .md\:mr-1 {
12445
- margin-right: 0.25rem !important;
12445
+ margin-right: 4px !important;
12446
12446
  }
12447
12447
 
12448
12448
  .md\:mr-2 {
12449
- margin-right: 0.5rem !important;
12449
+ margin-right: 8px !important;
12450
12450
  }
12451
12451
 
12452
12452
  .md\:mr-3 {
12453
- margin-right: 1rem !important;
12453
+ margin-right: 12px !important;
12454
12454
  }
12455
12455
 
12456
12456
  .md\:mr-4 {
12457
- margin-right: 1.5rem !important;
12457
+ margin-right: 16px !important;
12458
12458
  }
12459
12459
 
12460
12460
  .md\:mr-5 {
12461
- margin-right: 2rem !important;
12461
+ margin-right: 20px !important;
12462
12462
  }
12463
12463
 
12464
12464
  .md\:mr-6 {
12465
- margin-right: 3rem !important;
12465
+ margin-right: 24px !important;
12466
12466
  }
12467
12467
 
12468
12468
  .md\:mr-7 {
12469
- margin-right: 4rem !important;
12469
+ margin-right: 28px !important;
12470
12470
  }
12471
12471
 
12472
12472
  .md\:mr-8 {
12473
- margin-right: 5rem !important;
12473
+ margin-right: 32px !important;
12474
12474
  }
12475
12475
 
12476
12476
  .md\:-mr-1 {
@@ -12514,35 +12514,35 @@
12514
12514
  }
12515
12515
 
12516
12516
  .md\:ml-1 {
12517
- margin-left: 0.25rem !important;
12517
+ margin-left: 4px !important;
12518
12518
  }
12519
12519
 
12520
12520
  .md\:ml-2 {
12521
- margin-left: 0.5rem !important;
12521
+ margin-left: 8px !important;
12522
12522
  }
12523
12523
 
12524
12524
  .md\:ml-3 {
12525
- margin-left: 1rem !important;
12525
+ margin-left: 12px !important;
12526
12526
  }
12527
12527
 
12528
12528
  .md\:ml-4 {
12529
- margin-left: 1.5rem !important;
12529
+ margin-left: 16px !important;
12530
12530
  }
12531
12531
 
12532
12532
  .md\:ml-5 {
12533
- margin-left: 2rem !important;
12533
+ margin-left: 20px !important;
12534
12534
  }
12535
12535
 
12536
12536
  .md\:ml-6 {
12537
- margin-left: 3rem !important;
12537
+ margin-left: 24px !important;
12538
12538
  }
12539
12539
 
12540
12540
  .md\:ml-7 {
12541
- margin-left: 4rem !important;
12541
+ margin-left: 28px !important;
12542
12542
  }
12543
12543
 
12544
12544
  .md\:ml-8 {
12545
- margin-left: 5rem !important;
12545
+ margin-left: 32px !important;
12546
12546
  }
12547
12547
 
12548
12548
  .md\:-ml-1 {
@@ -12586,35 +12586,35 @@
12586
12586
  }
12587
12587
 
12588
12588
  .md\:mb-1 {
12589
- margin-bottom: 0.25rem !important;
12589
+ margin-bottom: 4px !important;
12590
12590
  }
12591
12591
 
12592
12592
  .md\:mb-2 {
12593
- margin-bottom: 0.5rem !important;
12593
+ margin-bottom: 8px !important;
12594
12594
  }
12595
12595
 
12596
12596
  .md\:mb-3 {
12597
- margin-bottom: 1rem !important;
12597
+ margin-bottom: 12px !important;
12598
12598
  }
12599
12599
 
12600
12600
  .md\:mb-4 {
12601
- margin-bottom: 1.5rem !important;
12601
+ margin-bottom: 16px !important;
12602
12602
  }
12603
12603
 
12604
12604
  .md\:mb-5 {
12605
- margin-bottom: 2rem !important;
12605
+ margin-bottom: 20px !important;
12606
12606
  }
12607
12607
 
12608
12608
  .md\:mb-6 {
12609
- margin-bottom: 3rem !important;
12609
+ margin-bottom: 24px !important;
12610
12610
  }
12611
12611
 
12612
12612
  .md\:mb-7 {
12613
- margin-bottom: 4rem !important;
12613
+ margin-bottom: 28px !important;
12614
12614
  }
12615
12615
 
12616
12616
  .md\:mb-8 {
12617
- margin-bottom: 5rem !important;
12617
+ margin-bottom: 32px !important;
12618
12618
  }
12619
12619
 
12620
12620
  .md\:-mb-1 {
@@ -12659,43 +12659,43 @@
12659
12659
  }
12660
12660
 
12661
12661
  .md\:mx-1 {
12662
- margin-left: 0.25rem !important;
12663
- margin-right: 0.25rem !important;
12662
+ margin-left: 4px !important;
12663
+ margin-right: 4px !important;
12664
12664
  }
12665
12665
 
12666
12666
  .md\:mx-2 {
12667
- margin-left: 0.5rem !important;
12668
- margin-right: 0.5rem !important;
12667
+ margin-left: 8px !important;
12668
+ margin-right: 8px !important;
12669
12669
  }
12670
12670
 
12671
12671
  .md\:mx-3 {
12672
- margin-left: 1rem !important;
12673
- margin-right: 1rem !important;
12672
+ margin-left: 12px !important;
12673
+ margin-right: 12px !important;
12674
12674
  }
12675
12675
 
12676
12676
  .md\:mx-4 {
12677
- margin-left: 1.5rem !important;
12678
- margin-right: 1.5rem !important;
12677
+ margin-left: 16px !important;
12678
+ margin-right: 16px !important;
12679
12679
  }
12680
12680
 
12681
12681
  .md\:mx-5 {
12682
- margin-left: 2rem !important;
12683
- margin-right: 2rem !important;
12682
+ margin-left: 20px !important;
12683
+ margin-right: 20px !important;
12684
12684
  }
12685
12685
 
12686
12686
  .md\:mx-6 {
12687
- margin-left: 3rem !important;
12688
- margin-right: 3rem !important;
12687
+ margin-left: 24px !important;
12688
+ margin-right: 24px !important;
12689
12689
  }
12690
12690
 
12691
12691
  .md\:mx-7 {
12692
- margin-left: 4rem !important;
12693
- margin-right: 4rem !important;
12692
+ margin-left: 28px !important;
12693
+ margin-right: 28px !important;
12694
12694
  }
12695
12695
 
12696
12696
  .md\:mx-8 {
12697
- margin-left: 5rem !important;
12698
- margin-right: 5rem !important;
12697
+ margin-left: 32px !important;
12698
+ margin-right: 32px !important;
12699
12699
  }
12700
12700
 
12701
12701
  .md\:-mx-1 {
@@ -12749,43 +12749,43 @@
12749
12749
  }
12750
12750
 
12751
12751
  .md\:my-1 {
12752
- margin-top: 0.25rem !important;
12753
- margin-bottom: 0.25rem !important;
12752
+ margin-top: 4px !important;
12753
+ margin-bottom: 4px !important;
12754
12754
  }
12755
12755
 
12756
12756
  .md\:my-2 {
12757
- margin-top: 0.5rem !important;
12758
- margin-bottom: 0.5rem !important;
12757
+ margin-top: 8px !important;
12758
+ margin-bottom: 8px !important;
12759
12759
  }
12760
12760
 
12761
12761
  .md\:my-3 {
12762
- margin-top: 1rem !important;
12763
- margin-bottom: 1rem !important;
12762
+ margin-top: 12px !important;
12763
+ margin-bottom: 12px !important;
12764
12764
  }
12765
12765
 
12766
12766
  .md\:my-4 {
12767
- margin-top: 1.5rem !important;
12768
- margin-bottom: 1.5rem !important;
12767
+ margin-top: 16px !important;
12768
+ margin-bottom: 16px !important;
12769
12769
  }
12770
12770
 
12771
12771
  .md\:my-5 {
12772
- margin-top: 2rem !important;
12773
- margin-bottom: 2rem !important;
12772
+ margin-top: 20px !important;
12773
+ margin-bottom: 20px !important;
12774
12774
  }
12775
12775
 
12776
12776
  .md\:my-6 {
12777
- margin-top: 3rem !important;
12778
- margin-bottom: 3rem !important;
12777
+ margin-top: 24px !important;
12778
+ margin-bottom: 24px !important;
12779
12779
  }
12780
12780
 
12781
12781
  .md\:my-7 {
12782
- margin-top: 4rem !important;
12783
- margin-bottom: 4rem !important;
12782
+ margin-top: 28px !important;
12783
+ margin-bottom: 28px !important;
12784
12784
  }
12785
12785
 
12786
12786
  .md\:my-8 {
12787
- margin-top: 5rem !important;
12788
- margin-bottom: 5rem !important;
12787
+ margin-top: 32px !important;
12788
+ margin-bottom: 32px !important;
12789
12789
  }
12790
12790
 
12791
12791
  .md\:-my-1 {
@@ -12839,35 +12839,35 @@
12839
12839
  }
12840
12840
 
12841
12841
  .lg\:m-1 {
12842
- margin: 0.25rem !important;
12842
+ margin: 4px !important;
12843
12843
  }
12844
12844
 
12845
12845
  .lg\:m-2 {
12846
- margin: 0.5rem !important;
12846
+ margin: 8px !important;
12847
12847
  }
12848
12848
 
12849
12849
  .lg\:m-3 {
12850
- margin: 1rem !important;
12850
+ margin: 12px !important;
12851
12851
  }
12852
12852
 
12853
12853
  .lg\:m-4 {
12854
- margin: 1.5rem !important;
12854
+ margin: 16px !important;
12855
12855
  }
12856
12856
 
12857
12857
  .lg\:m-5 {
12858
- margin: 2rem !important;
12858
+ margin: 20px !important;
12859
12859
  }
12860
12860
 
12861
12861
  .lg\:m-6 {
12862
- margin: 3rem !important;
12862
+ margin: 24px !important;
12863
12863
  }
12864
12864
 
12865
12865
  .lg\:m-7 {
12866
- margin: 4rem !important;
12866
+ margin: 28px !important;
12867
12867
  }
12868
12868
 
12869
12869
  .lg\:m-8 {
12870
- margin: 5rem !important;
12870
+ margin: 32px !important;
12871
12871
  }
12872
12872
 
12873
12873
  .lg\:-m-1 {
@@ -12911,35 +12911,35 @@
12911
12911
  }
12912
12912
 
12913
12913
  .lg\:mt-1 {
12914
- margin-top: 0.25rem !important;
12914
+ margin-top: 4px !important;
12915
12915
  }
12916
12916
 
12917
12917
  .lg\:mt-2 {
12918
- margin-top: 0.5rem !important;
12918
+ margin-top: 8px !important;
12919
12919
  }
12920
12920
 
12921
12921
  .lg\:mt-3 {
12922
- margin-top: 1rem !important;
12922
+ margin-top: 12px !important;
12923
12923
  }
12924
12924
 
12925
12925
  .lg\:mt-4 {
12926
- margin-top: 1.5rem !important;
12926
+ margin-top: 16px !important;
12927
12927
  }
12928
12928
 
12929
12929
  .lg\:mt-5 {
12930
- margin-top: 2rem !important;
12930
+ margin-top: 20px !important;
12931
12931
  }
12932
12932
 
12933
12933
  .lg\:mt-6 {
12934
- margin-top: 3rem !important;
12934
+ margin-top: 24px !important;
12935
12935
  }
12936
12936
 
12937
12937
  .lg\:mt-7 {
12938
- margin-top: 4rem !important;
12938
+ margin-top: 28px !important;
12939
12939
  }
12940
12940
 
12941
12941
  .lg\:mt-8 {
12942
- margin-top: 5rem !important;
12942
+ margin-top: 32px !important;
12943
12943
  }
12944
12944
 
12945
12945
  .lg\:-mt-1 {
@@ -12983,35 +12983,35 @@
12983
12983
  }
12984
12984
 
12985
12985
  .lg\:mr-1 {
12986
- margin-right: 0.25rem !important;
12986
+ margin-right: 4px !important;
12987
12987
  }
12988
12988
 
12989
12989
  .lg\:mr-2 {
12990
- margin-right: 0.5rem !important;
12990
+ margin-right: 8px !important;
12991
12991
  }
12992
12992
 
12993
12993
  .lg\:mr-3 {
12994
- margin-right: 1rem !important;
12994
+ margin-right: 12px !important;
12995
12995
  }
12996
12996
 
12997
12997
  .lg\:mr-4 {
12998
- margin-right: 1.5rem !important;
12998
+ margin-right: 16px !important;
12999
12999
  }
13000
13000
 
13001
13001
  .lg\:mr-5 {
13002
- margin-right: 2rem !important;
13002
+ margin-right: 20px !important;
13003
13003
  }
13004
13004
 
13005
13005
  .lg\:mr-6 {
13006
- margin-right: 3rem !important;
13006
+ margin-right: 24px !important;
13007
13007
  }
13008
13008
 
13009
13009
  .lg\:mr-7 {
13010
- margin-right: 4rem !important;
13010
+ margin-right: 28px !important;
13011
13011
  }
13012
13012
 
13013
13013
  .lg\:mr-8 {
13014
- margin-right: 5rem !important;
13014
+ margin-right: 32px !important;
13015
13015
  }
13016
13016
 
13017
13017
  .lg\:-mr-1 {
@@ -13055,35 +13055,35 @@
13055
13055
  }
13056
13056
 
13057
13057
  .lg\:ml-1 {
13058
- margin-left: 0.25rem !important;
13058
+ margin-left: 4px !important;
13059
13059
  }
13060
13060
 
13061
13061
  .lg\:ml-2 {
13062
- margin-left: 0.5rem !important;
13062
+ margin-left: 8px !important;
13063
13063
  }
13064
13064
 
13065
13065
  .lg\:ml-3 {
13066
- margin-left: 1rem !important;
13066
+ margin-left: 12px !important;
13067
13067
  }
13068
13068
 
13069
13069
  .lg\:ml-4 {
13070
- margin-left: 1.5rem !important;
13070
+ margin-left: 16px !important;
13071
13071
  }
13072
13072
 
13073
13073
  .lg\:ml-5 {
13074
- margin-left: 2rem !important;
13074
+ margin-left: 20px !important;
13075
13075
  }
13076
13076
 
13077
13077
  .lg\:ml-6 {
13078
- margin-left: 3rem !important;
13078
+ margin-left: 24px !important;
13079
13079
  }
13080
13080
 
13081
13081
  .lg\:ml-7 {
13082
- margin-left: 4rem !important;
13082
+ margin-left: 28px !important;
13083
13083
  }
13084
13084
 
13085
13085
  .lg\:ml-8 {
13086
- margin-left: 5rem !important;
13086
+ margin-left: 32px !important;
13087
13087
  }
13088
13088
 
13089
13089
  .lg\:-ml-1 {
@@ -13127,35 +13127,35 @@
13127
13127
  }
13128
13128
 
13129
13129
  .lg\:mb-1 {
13130
- margin-bottom: 0.25rem !important;
13130
+ margin-bottom: 4px !important;
13131
13131
  }
13132
13132
 
13133
13133
  .lg\:mb-2 {
13134
- margin-bottom: 0.5rem !important;
13134
+ margin-bottom: 8px !important;
13135
13135
  }
13136
13136
 
13137
13137
  .lg\:mb-3 {
13138
- margin-bottom: 1rem !important;
13138
+ margin-bottom: 12px !important;
13139
13139
  }
13140
13140
 
13141
13141
  .lg\:mb-4 {
13142
- margin-bottom: 1.5rem !important;
13142
+ margin-bottom: 16px !important;
13143
13143
  }
13144
13144
 
13145
13145
  .lg\:mb-5 {
13146
- margin-bottom: 2rem !important;
13146
+ margin-bottom: 20px !important;
13147
13147
  }
13148
13148
 
13149
13149
  .lg\:mb-6 {
13150
- margin-bottom: 3rem !important;
13150
+ margin-bottom: 24px !important;
13151
13151
  }
13152
13152
 
13153
13153
  .lg\:mb-7 {
13154
- margin-bottom: 4rem !important;
13154
+ margin-bottom: 28px !important;
13155
13155
  }
13156
13156
 
13157
13157
  .lg\:mb-8 {
13158
- margin-bottom: 5rem !important;
13158
+ margin-bottom: 32px !important;
13159
13159
  }
13160
13160
 
13161
13161
  .lg\:-mb-1 {
@@ -13200,43 +13200,43 @@
13200
13200
  }
13201
13201
 
13202
13202
  .lg\:mx-1 {
13203
- margin-left: 0.25rem !important;
13204
- margin-right: 0.25rem !important;
13203
+ margin-left: 4px !important;
13204
+ margin-right: 4px !important;
13205
13205
  }
13206
13206
 
13207
13207
  .lg\:mx-2 {
13208
- margin-left: 0.5rem !important;
13209
- margin-right: 0.5rem !important;
13208
+ margin-left: 8px !important;
13209
+ margin-right: 8px !important;
13210
13210
  }
13211
13211
 
13212
13212
  .lg\:mx-3 {
13213
- margin-left: 1rem !important;
13214
- margin-right: 1rem !important;
13213
+ margin-left: 12px !important;
13214
+ margin-right: 12px !important;
13215
13215
  }
13216
13216
 
13217
13217
  .lg\:mx-4 {
13218
- margin-left: 1.5rem !important;
13219
- margin-right: 1.5rem !important;
13218
+ margin-left: 16px !important;
13219
+ margin-right: 16px !important;
13220
13220
  }
13221
13221
 
13222
13222
  .lg\:mx-5 {
13223
- margin-left: 2rem !important;
13224
- margin-right: 2rem !important;
13223
+ margin-left: 20px !important;
13224
+ margin-right: 20px !important;
13225
13225
  }
13226
13226
 
13227
13227
  .lg\:mx-6 {
13228
- margin-left: 3rem !important;
13229
- margin-right: 3rem !important;
13228
+ margin-left: 24px !important;
13229
+ margin-right: 24px !important;
13230
13230
  }
13231
13231
 
13232
13232
  .lg\:mx-7 {
13233
- margin-left: 4rem !important;
13234
- margin-right: 4rem !important;
13233
+ margin-left: 28px !important;
13234
+ margin-right: 28px !important;
13235
13235
  }
13236
13236
 
13237
13237
  .lg\:mx-8 {
13238
- margin-left: 5rem !important;
13239
- margin-right: 5rem !important;
13238
+ margin-left: 32px !important;
13239
+ margin-right: 32px !important;
13240
13240
  }
13241
13241
 
13242
13242
  .lg\:-mx-1 {
@@ -13290,43 +13290,43 @@
13290
13290
  }
13291
13291
 
13292
13292
  .lg\:my-1 {
13293
- margin-top: 0.25rem !important;
13294
- margin-bottom: 0.25rem !important;
13293
+ margin-top: 4px !important;
13294
+ margin-bottom: 4px !important;
13295
13295
  }
13296
13296
 
13297
13297
  .lg\:my-2 {
13298
- margin-top: 0.5rem !important;
13299
- margin-bottom: 0.5rem !important;
13298
+ margin-top: 8px !important;
13299
+ margin-bottom: 8px !important;
13300
13300
  }
13301
13301
 
13302
13302
  .lg\:my-3 {
13303
- margin-top: 1rem !important;
13304
- margin-bottom: 1rem !important;
13303
+ margin-top: 12px !important;
13304
+ margin-bottom: 12px !important;
13305
13305
  }
13306
13306
 
13307
13307
  .lg\:my-4 {
13308
- margin-top: 1.5rem !important;
13309
- margin-bottom: 1.5rem !important;
13308
+ margin-top: 16px !important;
13309
+ margin-bottom: 16px !important;
13310
13310
  }
13311
13311
 
13312
13312
  .lg\:my-5 {
13313
- margin-top: 2rem !important;
13314
- margin-bottom: 2rem !important;
13313
+ margin-top: 20px !important;
13314
+ margin-bottom: 20px !important;
13315
13315
  }
13316
13316
 
13317
13317
  .lg\:my-6 {
13318
- margin-top: 3rem !important;
13319
- margin-bottom: 3rem !important;
13318
+ margin-top: 24px !important;
13319
+ margin-bottom: 24px !important;
13320
13320
  }
13321
13321
 
13322
13322
  .lg\:my-7 {
13323
- margin-top: 4rem !important;
13324
- margin-bottom: 4rem !important;
13323
+ margin-top: 28px !important;
13324
+ margin-bottom: 28px !important;
13325
13325
  }
13326
13326
 
13327
13327
  .lg\:my-8 {
13328
- margin-top: 5rem !important;
13329
- margin-bottom: 5rem !important;
13328
+ margin-top: 32px !important;
13329
+ margin-bottom: 32px !important;
13330
13330
  }
13331
13331
 
13332
13332
  .lg\:-my-1 {
@@ -13380,35 +13380,35 @@
13380
13380
  }
13381
13381
 
13382
13382
  .xl\:m-1 {
13383
- margin: 0.25rem !important;
13383
+ margin: 4px !important;
13384
13384
  }
13385
13385
 
13386
13386
  .xl\:m-2 {
13387
- margin: 0.5rem !important;
13387
+ margin: 8px !important;
13388
13388
  }
13389
13389
 
13390
13390
  .xl\:m-3 {
13391
- margin: 1rem !important;
13391
+ margin: 12px !important;
13392
13392
  }
13393
13393
 
13394
13394
  .xl\:m-4 {
13395
- margin: 1.5rem !important;
13395
+ margin: 16px !important;
13396
13396
  }
13397
13397
 
13398
13398
  .xl\:m-5 {
13399
- margin: 2rem !important;
13399
+ margin: 20px !important;
13400
13400
  }
13401
13401
 
13402
13402
  .xl\:m-6 {
13403
- margin: 3rem !important;
13403
+ margin: 24px !important;
13404
13404
  }
13405
13405
 
13406
13406
  .xl\:m-7 {
13407
- margin: 4rem !important;
13407
+ margin: 28px !important;
13408
13408
  }
13409
13409
 
13410
13410
  .xl\:m-8 {
13411
- margin: 5rem !important;
13411
+ margin: 32px !important;
13412
13412
  }
13413
13413
 
13414
13414
  .xl\:-m-1 {
@@ -13452,35 +13452,35 @@
13452
13452
  }
13453
13453
 
13454
13454
  .xl\:mt-1 {
13455
- margin-top: 0.25rem !important;
13455
+ margin-top: 4px !important;
13456
13456
  }
13457
13457
 
13458
13458
  .xl\:mt-2 {
13459
- margin-top: 0.5rem !important;
13459
+ margin-top: 8px !important;
13460
13460
  }
13461
13461
 
13462
13462
  .xl\:mt-3 {
13463
- margin-top: 1rem !important;
13463
+ margin-top: 12px !important;
13464
13464
  }
13465
13465
 
13466
13466
  .xl\:mt-4 {
13467
- margin-top: 1.5rem !important;
13467
+ margin-top: 16px !important;
13468
13468
  }
13469
13469
 
13470
13470
  .xl\:mt-5 {
13471
- margin-top: 2rem !important;
13471
+ margin-top: 20px !important;
13472
13472
  }
13473
13473
 
13474
13474
  .xl\:mt-6 {
13475
- margin-top: 3rem !important;
13475
+ margin-top: 24px !important;
13476
13476
  }
13477
13477
 
13478
13478
  .xl\:mt-7 {
13479
- margin-top: 4rem !important;
13479
+ margin-top: 28px !important;
13480
13480
  }
13481
13481
 
13482
13482
  .xl\:mt-8 {
13483
- margin-top: 5rem !important;
13483
+ margin-top: 32px !important;
13484
13484
  }
13485
13485
 
13486
13486
  .xl\:-mt-1 {
@@ -13524,35 +13524,35 @@
13524
13524
  }
13525
13525
 
13526
13526
  .xl\:mr-1 {
13527
- margin-right: 0.25rem !important;
13527
+ margin-right: 4px !important;
13528
13528
  }
13529
13529
 
13530
13530
  .xl\:mr-2 {
13531
- margin-right: 0.5rem !important;
13531
+ margin-right: 8px !important;
13532
13532
  }
13533
13533
 
13534
13534
  .xl\:mr-3 {
13535
- margin-right: 1rem !important;
13535
+ margin-right: 12px !important;
13536
13536
  }
13537
13537
 
13538
13538
  .xl\:mr-4 {
13539
- margin-right: 1.5rem !important;
13539
+ margin-right: 16px !important;
13540
13540
  }
13541
13541
 
13542
13542
  .xl\:mr-5 {
13543
- margin-right: 2rem !important;
13543
+ margin-right: 20px !important;
13544
13544
  }
13545
13545
 
13546
13546
  .xl\:mr-6 {
13547
- margin-right: 3rem !important;
13547
+ margin-right: 24px !important;
13548
13548
  }
13549
13549
 
13550
13550
  .xl\:mr-7 {
13551
- margin-right: 4rem !important;
13551
+ margin-right: 28px !important;
13552
13552
  }
13553
13553
 
13554
13554
  .xl\:mr-8 {
13555
- margin-right: 5rem !important;
13555
+ margin-right: 32px !important;
13556
13556
  }
13557
13557
 
13558
13558
  .xl\:-mr-1 {
@@ -13596,35 +13596,35 @@
13596
13596
  }
13597
13597
 
13598
13598
  .xl\:ml-1 {
13599
- margin-left: 0.25rem !important;
13599
+ margin-left: 4px !important;
13600
13600
  }
13601
13601
 
13602
13602
  .xl\:ml-2 {
13603
- margin-left: 0.5rem !important;
13603
+ margin-left: 8px !important;
13604
13604
  }
13605
13605
 
13606
13606
  .xl\:ml-3 {
13607
- margin-left: 1rem !important;
13607
+ margin-left: 12px !important;
13608
13608
  }
13609
13609
 
13610
13610
  .xl\:ml-4 {
13611
- margin-left: 1.5rem !important;
13611
+ margin-left: 16px !important;
13612
13612
  }
13613
13613
 
13614
13614
  .xl\:ml-5 {
13615
- margin-left: 2rem !important;
13615
+ margin-left: 20px !important;
13616
13616
  }
13617
13617
 
13618
13618
  .xl\:ml-6 {
13619
- margin-left: 3rem !important;
13619
+ margin-left: 24px !important;
13620
13620
  }
13621
13621
 
13622
13622
  .xl\:ml-7 {
13623
- margin-left: 4rem !important;
13623
+ margin-left: 28px !important;
13624
13624
  }
13625
13625
 
13626
13626
  .xl\:ml-8 {
13627
- margin-left: 5rem !important;
13627
+ margin-left: 32px !important;
13628
13628
  }
13629
13629
 
13630
13630
  .xl\:-ml-1 {
@@ -13668,35 +13668,35 @@
13668
13668
  }
13669
13669
 
13670
13670
  .xl\:mb-1 {
13671
- margin-bottom: 0.25rem !important;
13671
+ margin-bottom: 4px !important;
13672
13672
  }
13673
13673
 
13674
13674
  .xl\:mb-2 {
13675
- margin-bottom: 0.5rem !important;
13675
+ margin-bottom: 8px !important;
13676
13676
  }
13677
13677
 
13678
13678
  .xl\:mb-3 {
13679
- margin-bottom: 1rem !important;
13679
+ margin-bottom: 12px !important;
13680
13680
  }
13681
13681
 
13682
13682
  .xl\:mb-4 {
13683
- margin-bottom: 1.5rem !important;
13683
+ margin-bottom: 16px !important;
13684
13684
  }
13685
13685
 
13686
13686
  .xl\:mb-5 {
13687
- margin-bottom: 2rem !important;
13687
+ margin-bottom: 20px !important;
13688
13688
  }
13689
13689
 
13690
13690
  .xl\:mb-6 {
13691
- margin-bottom: 3rem !important;
13691
+ margin-bottom: 24px !important;
13692
13692
  }
13693
13693
 
13694
13694
  .xl\:mb-7 {
13695
- margin-bottom: 4rem !important;
13695
+ margin-bottom: 28px !important;
13696
13696
  }
13697
13697
 
13698
13698
  .xl\:mb-8 {
13699
- margin-bottom: 5rem !important;
13699
+ margin-bottom: 32px !important;
13700
13700
  }
13701
13701
 
13702
13702
  .xl\:-mb-1 {
@@ -13741,43 +13741,43 @@
13741
13741
  }
13742
13742
 
13743
13743
  .xl\:mx-1 {
13744
- margin-left: 0.25rem !important;
13745
- margin-right: 0.25rem !important;
13744
+ margin-left: 4px !important;
13745
+ margin-right: 4px !important;
13746
13746
  }
13747
13747
 
13748
13748
  .xl\:mx-2 {
13749
- margin-left: 0.5rem !important;
13750
- margin-right: 0.5rem !important;
13749
+ margin-left: 8px !important;
13750
+ margin-right: 8px !important;
13751
13751
  }
13752
13752
 
13753
13753
  .xl\:mx-3 {
13754
- margin-left: 1rem !important;
13755
- margin-right: 1rem !important;
13754
+ margin-left: 12px !important;
13755
+ margin-right: 12px !important;
13756
13756
  }
13757
13757
 
13758
13758
  .xl\:mx-4 {
13759
- margin-left: 1.5rem !important;
13760
- margin-right: 1.5rem !important;
13759
+ margin-left: 16px !important;
13760
+ margin-right: 16px !important;
13761
13761
  }
13762
13762
 
13763
13763
  .xl\:mx-5 {
13764
- margin-left: 2rem !important;
13765
- margin-right: 2rem !important;
13764
+ margin-left: 20px !important;
13765
+ margin-right: 20px !important;
13766
13766
  }
13767
13767
 
13768
13768
  .xl\:mx-6 {
13769
- margin-left: 3rem !important;
13770
- margin-right: 3rem !important;
13769
+ margin-left: 24px !important;
13770
+ margin-right: 24px !important;
13771
13771
  }
13772
13772
 
13773
13773
  .xl\:mx-7 {
13774
- margin-left: 4rem !important;
13775
- margin-right: 4rem !important;
13774
+ margin-left: 28px !important;
13775
+ margin-right: 28px !important;
13776
13776
  }
13777
13777
 
13778
13778
  .xl\:mx-8 {
13779
- margin-left: 5rem !important;
13780
- margin-right: 5rem !important;
13779
+ margin-left: 32px !important;
13780
+ margin-right: 32px !important;
13781
13781
  }
13782
13782
 
13783
13783
  .xl\:-mx-1 {
@@ -13831,43 +13831,43 @@
13831
13831
  }
13832
13832
 
13833
13833
  .xl\:my-1 {
13834
- margin-top: 0.25rem !important;
13835
- margin-bottom: 0.25rem !important;
13834
+ margin-top: 4px !important;
13835
+ margin-bottom: 4px !important;
13836
13836
  }
13837
13837
 
13838
13838
  .xl\:my-2 {
13839
- margin-top: 0.5rem !important;
13840
- margin-bottom: 0.5rem !important;
13839
+ margin-top: 8px !important;
13840
+ margin-bottom: 8px !important;
13841
13841
  }
13842
13842
 
13843
13843
  .xl\:my-3 {
13844
- margin-top: 1rem !important;
13845
- margin-bottom: 1rem !important;
13844
+ margin-top: 12px !important;
13845
+ margin-bottom: 12px !important;
13846
13846
  }
13847
13847
 
13848
13848
  .xl\:my-4 {
13849
- margin-top: 1.5rem !important;
13850
- margin-bottom: 1.5rem !important;
13849
+ margin-top: 16px !important;
13850
+ margin-bottom: 16px !important;
13851
13851
  }
13852
13852
 
13853
13853
  .xl\:my-5 {
13854
- margin-top: 2rem !important;
13855
- margin-bottom: 2rem !important;
13854
+ margin-top: 20px !important;
13855
+ margin-bottom: 20px !important;
13856
13856
  }
13857
13857
 
13858
13858
  .xl\:my-6 {
13859
- margin-top: 3rem !important;
13860
- margin-bottom: 3rem !important;
13859
+ margin-top: 24px !important;
13860
+ margin-bottom: 24px !important;
13861
13861
  }
13862
13862
 
13863
13863
  .xl\:my-7 {
13864
- margin-top: 4rem !important;
13865
- margin-bottom: 4rem !important;
13864
+ margin-top: 28px !important;
13865
+ margin-bottom: 28px !important;
13866
13866
  }
13867
13867
 
13868
13868
  .xl\:my-8 {
13869
- margin-top: 5rem !important;
13870
- margin-bottom: 5rem !important;
13869
+ margin-top: 32px !important;
13870
+ margin-bottom: 32px !important;
13871
13871
  }
13872
13872
 
13873
13873
  .xl\:-my-1 {
@@ -13919,6 +13919,75 @@
13919
13919
  box-shadow: none !important;
13920
13920
  }
13921
13921
 
13922
+ .p-left-6 {
13923
+ padding-left: 6px;
13924
+ }
13925
+
13926
+ .p-right-6 {
13927
+ padding-right: 6px;
13928
+ }
13929
+
13930
+ .p-top-6 {
13931
+ padding-top: 6px;
13932
+ }
13933
+
13934
+ .p-bottom-6 {
13935
+ padding-bottom: 6px;
13936
+ }
13937
+
13938
+
13939
+ .m-left-6 {
13940
+ margin-left: 6px;
13941
+ }
13942
+
13943
+ .m-right-6 {
13944
+ margin-right: 6px;
13945
+ }
13946
+
13947
+ .m-top-6 {
13948
+ margin-top: 6px;
13949
+ }
13950
+
13951
+ .m-bottom-6 {
13952
+ margin-bottom: 6px;
13953
+ }
13954
+
13955
+
13956
+ .p-left-10 {
13957
+ padding-left: 10px;
13958
+ }
13959
+
13960
+ .p-right-10 {
13961
+ padding-right: 10px;
13962
+ }
13963
+
13964
+ .p-top-10 {
13965
+ padding-top: 10px;
13966
+ }
13967
+
13968
+ .p-bottom-10 {
13969
+ padding-bottom: 10px;
13970
+ }
13971
+
13972
+
13973
+ .m-left-10 {
13974
+ margin-left: 10px;
13975
+ }
13976
+
13977
+ .m-right-10 {
13978
+ margin-right: 10px;
13979
+ }
13980
+
13981
+ .m-top-10 {
13982
+ margin-top: 10px;
13983
+ }
13984
+
13985
+
13986
+ .m-bottom-10 {
13987
+ margin-bottom: 10px;
13988
+ }
13989
+
13990
+
13922
13991
  .shadow-1 {
13923
13992
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.02), 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 1px 4px rgba(0, 0, 0, 0.08) !important;
13924
13993
  }