vuetify 3.3.15 → 3.4.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +111 -11
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +25 -0
- package/dist/json/web-types.json +263 -18
- package/dist/vuetify-labs.css +1558 -518
- package/dist/vuetify-labs.d.ts +499 -179
- package/dist/vuetify-labs.esm.js +264 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +263 -72
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1080 -40
- package/dist/vuetify.d.ts +484 -170
- package/dist/vuetify.esm.js +264 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +263 -72
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +914 -895
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +20 -14
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBanner/VBanner.mjs +5 -3
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +10 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +9 -4
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.mts +28 -2
- package/lib/components/VCarousel/index.d.mts +26 -0
- package/lib/components/VCheckbox/index.d.mts +12 -0
- package/lib/components/VColorPicker/VColorPickerPreview.css +5 -0
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +28 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.sass +4 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +20 -14
- package/lib/components/VDialog/index.d.mts +41 -20
- package/lib/components/VField/index.d.mts +4 -4
- package/lib/components/VFileInput/index.d.mts +4 -4
- package/lib/components/VImg/VImg.mjs +13 -1
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/index.d.mts +26 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VMenu/index.d.mts +41 -20
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +10 -0
- package/lib/components/VOverlay/VOverlay.mjs +9 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +17 -8
- package/lib/components/VOverlay/locationStrategies.mjs +9 -9
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -3
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +50 -21
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +6 -0
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +14 -0
- package/lib/components/VSelect/index.d.mts +20 -14
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +6 -0
- package/lib/components/VSlideGroup/VSlideGroup.mjs +5 -3
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -0
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +14 -0
- package/lib/components/VSlider/slider.mjs +5 -1
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +65 -6
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +9 -0
- package/lib/components/VSnackbar/index.d.mts +52 -25
- package/lib/components/VSwitch/index.d.mts +6 -0
- package/lib/components/VTabs/index.d.mts +10 -0
- package/lib/components/VTextField/index.d.mts +16 -16
- package/lib/components/VTextarea/index.d.mts +4 -4
- package/lib/components/VTooltip/index.d.mts +41 -20
- package/lib/components/index.d.mts +455 -168
- package/lib/components/transitions/dialog-transition.mjs +4 -3
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +6 -6
- package/lib/composables/directiveComponent.mjs +69 -0
- package/lib/composables/directiveComponent.mjs.map +1 -0
- package/lib/composables/display.mjs +23 -3
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/theme.mjs +7 -7
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +33 -2
- package/lib/labs/VBottomSheet/index.d.mts +14 -8
- package/lib/labs/VDateInput/index.d.mts +4 -4
- package/lib/labs/VOtpInput/index.d.mts +4 -4
- package/lib/labs/components.d.mts +18 -12
- package/lib/styles/main.css +1026 -0
- package/lib/styles/settings/_utilities.scss +20 -0
- package/lib/util/box.mjs +12 -0
- package/lib/util/box.mjs.map +1 -1
- package/lib/util/globals.mjs +1 -0
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +9 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/lib/styles/main.css
CHANGED
|
@@ -3681,6 +3681,222 @@ html.overflow-y-hidden {
|
|
|
3681
3681
|
order: 13 !important;
|
|
3682
3682
|
}
|
|
3683
3683
|
|
|
3684
|
+
.ga-0 {
|
|
3685
|
+
gap: 0px !important;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.ga-1 {
|
|
3689
|
+
gap: 4px !important;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
.ga-2 {
|
|
3693
|
+
gap: 8px !important;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
.ga-3 {
|
|
3697
|
+
gap: 12px !important;
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
.ga-4 {
|
|
3701
|
+
gap: 16px !important;
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
.ga-5 {
|
|
3705
|
+
gap: 20px !important;
|
|
3706
|
+
}
|
|
3707
|
+
|
|
3708
|
+
.ga-6 {
|
|
3709
|
+
gap: 24px !important;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
.ga-7 {
|
|
3713
|
+
gap: 28px !important;
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
.ga-8 {
|
|
3717
|
+
gap: 32px !important;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
.ga-9 {
|
|
3721
|
+
gap: 36px !important;
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
.ga-10 {
|
|
3725
|
+
gap: 40px !important;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
.ga-11 {
|
|
3729
|
+
gap: 44px !important;
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3732
|
+
.ga-12 {
|
|
3733
|
+
gap: 48px !important;
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
.ga-13 {
|
|
3737
|
+
gap: 52px !important;
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
.ga-14 {
|
|
3741
|
+
gap: 56px !important;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
.ga-15 {
|
|
3745
|
+
gap: 60px !important;
|
|
3746
|
+
}
|
|
3747
|
+
|
|
3748
|
+
.ga-16 {
|
|
3749
|
+
gap: 64px !important;
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
.ga-auto {
|
|
3753
|
+
gap: auto !important;
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
.gr-0 {
|
|
3757
|
+
row-gap: 0px !important;
|
|
3758
|
+
}
|
|
3759
|
+
|
|
3760
|
+
.gr-1 {
|
|
3761
|
+
row-gap: 4px !important;
|
|
3762
|
+
}
|
|
3763
|
+
|
|
3764
|
+
.gr-2 {
|
|
3765
|
+
row-gap: 8px !important;
|
|
3766
|
+
}
|
|
3767
|
+
|
|
3768
|
+
.gr-3 {
|
|
3769
|
+
row-gap: 12px !important;
|
|
3770
|
+
}
|
|
3771
|
+
|
|
3772
|
+
.gr-4 {
|
|
3773
|
+
row-gap: 16px !important;
|
|
3774
|
+
}
|
|
3775
|
+
|
|
3776
|
+
.gr-5 {
|
|
3777
|
+
row-gap: 20px !important;
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
.gr-6 {
|
|
3781
|
+
row-gap: 24px !important;
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
.gr-7 {
|
|
3785
|
+
row-gap: 28px !important;
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3788
|
+
.gr-8 {
|
|
3789
|
+
row-gap: 32px !important;
|
|
3790
|
+
}
|
|
3791
|
+
|
|
3792
|
+
.gr-9 {
|
|
3793
|
+
row-gap: 36px !important;
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
.gr-10 {
|
|
3797
|
+
row-gap: 40px !important;
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
.gr-11 {
|
|
3801
|
+
row-gap: 44px !important;
|
|
3802
|
+
}
|
|
3803
|
+
|
|
3804
|
+
.gr-12 {
|
|
3805
|
+
row-gap: 48px !important;
|
|
3806
|
+
}
|
|
3807
|
+
|
|
3808
|
+
.gr-13 {
|
|
3809
|
+
row-gap: 52px !important;
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
.gr-14 {
|
|
3813
|
+
row-gap: 56px !important;
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
.gr-15 {
|
|
3817
|
+
row-gap: 60px !important;
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3820
|
+
.gr-16 {
|
|
3821
|
+
row-gap: 64px !important;
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3824
|
+
.gr-auto {
|
|
3825
|
+
row-gap: auto !important;
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
.gc-0 {
|
|
3829
|
+
column-gap: 0px !important;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3832
|
+
.gc-1 {
|
|
3833
|
+
column-gap: 4px !important;
|
|
3834
|
+
}
|
|
3835
|
+
|
|
3836
|
+
.gc-2 {
|
|
3837
|
+
column-gap: 8px !important;
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
.gc-3 {
|
|
3841
|
+
column-gap: 12px !important;
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3844
|
+
.gc-4 {
|
|
3845
|
+
column-gap: 16px !important;
|
|
3846
|
+
}
|
|
3847
|
+
|
|
3848
|
+
.gc-5 {
|
|
3849
|
+
column-gap: 20px !important;
|
|
3850
|
+
}
|
|
3851
|
+
|
|
3852
|
+
.gc-6 {
|
|
3853
|
+
column-gap: 24px !important;
|
|
3854
|
+
}
|
|
3855
|
+
|
|
3856
|
+
.gc-7 {
|
|
3857
|
+
column-gap: 28px !important;
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
.gc-8 {
|
|
3861
|
+
column-gap: 32px !important;
|
|
3862
|
+
}
|
|
3863
|
+
|
|
3864
|
+
.gc-9 {
|
|
3865
|
+
column-gap: 36px !important;
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
.gc-10 {
|
|
3869
|
+
column-gap: 40px !important;
|
|
3870
|
+
}
|
|
3871
|
+
|
|
3872
|
+
.gc-11 {
|
|
3873
|
+
column-gap: 44px !important;
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3876
|
+
.gc-12 {
|
|
3877
|
+
column-gap: 48px !important;
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
.gc-13 {
|
|
3881
|
+
column-gap: 52px !important;
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
.gc-14 {
|
|
3885
|
+
column-gap: 56px !important;
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
.gc-15 {
|
|
3889
|
+
column-gap: 60px !important;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
.gc-16 {
|
|
3893
|
+
column-gap: 64px !important;
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
.gc-auto {
|
|
3897
|
+
column-gap: auto !important;
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3684
3900
|
.ma-0 {
|
|
3685
3901
|
margin: 0px !important;
|
|
3686
3902
|
}
|
|
@@ -6933,6 +7149,168 @@ html.overflow-y-hidden {
|
|
|
6933
7149
|
.order-sm-last {
|
|
6934
7150
|
order: 13 !important;
|
|
6935
7151
|
}
|
|
7152
|
+
.ga-sm-0 {
|
|
7153
|
+
gap: 0px !important;
|
|
7154
|
+
}
|
|
7155
|
+
.ga-sm-1 {
|
|
7156
|
+
gap: 4px !important;
|
|
7157
|
+
}
|
|
7158
|
+
.ga-sm-2 {
|
|
7159
|
+
gap: 8px !important;
|
|
7160
|
+
}
|
|
7161
|
+
.ga-sm-3 {
|
|
7162
|
+
gap: 12px !important;
|
|
7163
|
+
}
|
|
7164
|
+
.ga-sm-4 {
|
|
7165
|
+
gap: 16px !important;
|
|
7166
|
+
}
|
|
7167
|
+
.ga-sm-5 {
|
|
7168
|
+
gap: 20px !important;
|
|
7169
|
+
}
|
|
7170
|
+
.ga-sm-6 {
|
|
7171
|
+
gap: 24px !important;
|
|
7172
|
+
}
|
|
7173
|
+
.ga-sm-7 {
|
|
7174
|
+
gap: 28px !important;
|
|
7175
|
+
}
|
|
7176
|
+
.ga-sm-8 {
|
|
7177
|
+
gap: 32px !important;
|
|
7178
|
+
}
|
|
7179
|
+
.ga-sm-9 {
|
|
7180
|
+
gap: 36px !important;
|
|
7181
|
+
}
|
|
7182
|
+
.ga-sm-10 {
|
|
7183
|
+
gap: 40px !important;
|
|
7184
|
+
}
|
|
7185
|
+
.ga-sm-11 {
|
|
7186
|
+
gap: 44px !important;
|
|
7187
|
+
}
|
|
7188
|
+
.ga-sm-12 {
|
|
7189
|
+
gap: 48px !important;
|
|
7190
|
+
}
|
|
7191
|
+
.ga-sm-13 {
|
|
7192
|
+
gap: 52px !important;
|
|
7193
|
+
}
|
|
7194
|
+
.ga-sm-14 {
|
|
7195
|
+
gap: 56px !important;
|
|
7196
|
+
}
|
|
7197
|
+
.ga-sm-15 {
|
|
7198
|
+
gap: 60px !important;
|
|
7199
|
+
}
|
|
7200
|
+
.ga-sm-16 {
|
|
7201
|
+
gap: 64px !important;
|
|
7202
|
+
}
|
|
7203
|
+
.ga-sm-auto {
|
|
7204
|
+
gap: auto !important;
|
|
7205
|
+
}
|
|
7206
|
+
.gr-sm-0 {
|
|
7207
|
+
row-gap: 0px !important;
|
|
7208
|
+
}
|
|
7209
|
+
.gr-sm-1 {
|
|
7210
|
+
row-gap: 4px !important;
|
|
7211
|
+
}
|
|
7212
|
+
.gr-sm-2 {
|
|
7213
|
+
row-gap: 8px !important;
|
|
7214
|
+
}
|
|
7215
|
+
.gr-sm-3 {
|
|
7216
|
+
row-gap: 12px !important;
|
|
7217
|
+
}
|
|
7218
|
+
.gr-sm-4 {
|
|
7219
|
+
row-gap: 16px !important;
|
|
7220
|
+
}
|
|
7221
|
+
.gr-sm-5 {
|
|
7222
|
+
row-gap: 20px !important;
|
|
7223
|
+
}
|
|
7224
|
+
.gr-sm-6 {
|
|
7225
|
+
row-gap: 24px !important;
|
|
7226
|
+
}
|
|
7227
|
+
.gr-sm-7 {
|
|
7228
|
+
row-gap: 28px !important;
|
|
7229
|
+
}
|
|
7230
|
+
.gr-sm-8 {
|
|
7231
|
+
row-gap: 32px !important;
|
|
7232
|
+
}
|
|
7233
|
+
.gr-sm-9 {
|
|
7234
|
+
row-gap: 36px !important;
|
|
7235
|
+
}
|
|
7236
|
+
.gr-sm-10 {
|
|
7237
|
+
row-gap: 40px !important;
|
|
7238
|
+
}
|
|
7239
|
+
.gr-sm-11 {
|
|
7240
|
+
row-gap: 44px !important;
|
|
7241
|
+
}
|
|
7242
|
+
.gr-sm-12 {
|
|
7243
|
+
row-gap: 48px !important;
|
|
7244
|
+
}
|
|
7245
|
+
.gr-sm-13 {
|
|
7246
|
+
row-gap: 52px !important;
|
|
7247
|
+
}
|
|
7248
|
+
.gr-sm-14 {
|
|
7249
|
+
row-gap: 56px !important;
|
|
7250
|
+
}
|
|
7251
|
+
.gr-sm-15 {
|
|
7252
|
+
row-gap: 60px !important;
|
|
7253
|
+
}
|
|
7254
|
+
.gr-sm-16 {
|
|
7255
|
+
row-gap: 64px !important;
|
|
7256
|
+
}
|
|
7257
|
+
.gr-sm-auto {
|
|
7258
|
+
row-gap: auto !important;
|
|
7259
|
+
}
|
|
7260
|
+
.gc-sm-0 {
|
|
7261
|
+
column-gap: 0px !important;
|
|
7262
|
+
}
|
|
7263
|
+
.gc-sm-1 {
|
|
7264
|
+
column-gap: 4px !important;
|
|
7265
|
+
}
|
|
7266
|
+
.gc-sm-2 {
|
|
7267
|
+
column-gap: 8px !important;
|
|
7268
|
+
}
|
|
7269
|
+
.gc-sm-3 {
|
|
7270
|
+
column-gap: 12px !important;
|
|
7271
|
+
}
|
|
7272
|
+
.gc-sm-4 {
|
|
7273
|
+
column-gap: 16px !important;
|
|
7274
|
+
}
|
|
7275
|
+
.gc-sm-5 {
|
|
7276
|
+
column-gap: 20px !important;
|
|
7277
|
+
}
|
|
7278
|
+
.gc-sm-6 {
|
|
7279
|
+
column-gap: 24px !important;
|
|
7280
|
+
}
|
|
7281
|
+
.gc-sm-7 {
|
|
7282
|
+
column-gap: 28px !important;
|
|
7283
|
+
}
|
|
7284
|
+
.gc-sm-8 {
|
|
7285
|
+
column-gap: 32px !important;
|
|
7286
|
+
}
|
|
7287
|
+
.gc-sm-9 {
|
|
7288
|
+
column-gap: 36px !important;
|
|
7289
|
+
}
|
|
7290
|
+
.gc-sm-10 {
|
|
7291
|
+
column-gap: 40px !important;
|
|
7292
|
+
}
|
|
7293
|
+
.gc-sm-11 {
|
|
7294
|
+
column-gap: 44px !important;
|
|
7295
|
+
}
|
|
7296
|
+
.gc-sm-12 {
|
|
7297
|
+
column-gap: 48px !important;
|
|
7298
|
+
}
|
|
7299
|
+
.gc-sm-13 {
|
|
7300
|
+
column-gap: 52px !important;
|
|
7301
|
+
}
|
|
7302
|
+
.gc-sm-14 {
|
|
7303
|
+
column-gap: 56px !important;
|
|
7304
|
+
}
|
|
7305
|
+
.gc-sm-15 {
|
|
7306
|
+
column-gap: 60px !important;
|
|
7307
|
+
}
|
|
7308
|
+
.gc-sm-16 {
|
|
7309
|
+
column-gap: 64px !important;
|
|
7310
|
+
}
|
|
7311
|
+
.gc-sm-auto {
|
|
7312
|
+
column-gap: auto !important;
|
|
7313
|
+
}
|
|
6936
7314
|
.ma-sm-0 {
|
|
6937
7315
|
margin: 0px !important;
|
|
6938
7316
|
}
|
|
@@ -8761,6 +9139,168 @@ html.overflow-y-hidden {
|
|
|
8761
9139
|
.order-md-last {
|
|
8762
9140
|
order: 13 !important;
|
|
8763
9141
|
}
|
|
9142
|
+
.ga-md-0 {
|
|
9143
|
+
gap: 0px !important;
|
|
9144
|
+
}
|
|
9145
|
+
.ga-md-1 {
|
|
9146
|
+
gap: 4px !important;
|
|
9147
|
+
}
|
|
9148
|
+
.ga-md-2 {
|
|
9149
|
+
gap: 8px !important;
|
|
9150
|
+
}
|
|
9151
|
+
.ga-md-3 {
|
|
9152
|
+
gap: 12px !important;
|
|
9153
|
+
}
|
|
9154
|
+
.ga-md-4 {
|
|
9155
|
+
gap: 16px !important;
|
|
9156
|
+
}
|
|
9157
|
+
.ga-md-5 {
|
|
9158
|
+
gap: 20px !important;
|
|
9159
|
+
}
|
|
9160
|
+
.ga-md-6 {
|
|
9161
|
+
gap: 24px !important;
|
|
9162
|
+
}
|
|
9163
|
+
.ga-md-7 {
|
|
9164
|
+
gap: 28px !important;
|
|
9165
|
+
}
|
|
9166
|
+
.ga-md-8 {
|
|
9167
|
+
gap: 32px !important;
|
|
9168
|
+
}
|
|
9169
|
+
.ga-md-9 {
|
|
9170
|
+
gap: 36px !important;
|
|
9171
|
+
}
|
|
9172
|
+
.ga-md-10 {
|
|
9173
|
+
gap: 40px !important;
|
|
9174
|
+
}
|
|
9175
|
+
.ga-md-11 {
|
|
9176
|
+
gap: 44px !important;
|
|
9177
|
+
}
|
|
9178
|
+
.ga-md-12 {
|
|
9179
|
+
gap: 48px !important;
|
|
9180
|
+
}
|
|
9181
|
+
.ga-md-13 {
|
|
9182
|
+
gap: 52px !important;
|
|
9183
|
+
}
|
|
9184
|
+
.ga-md-14 {
|
|
9185
|
+
gap: 56px !important;
|
|
9186
|
+
}
|
|
9187
|
+
.ga-md-15 {
|
|
9188
|
+
gap: 60px !important;
|
|
9189
|
+
}
|
|
9190
|
+
.ga-md-16 {
|
|
9191
|
+
gap: 64px !important;
|
|
9192
|
+
}
|
|
9193
|
+
.ga-md-auto {
|
|
9194
|
+
gap: auto !important;
|
|
9195
|
+
}
|
|
9196
|
+
.gr-md-0 {
|
|
9197
|
+
row-gap: 0px !important;
|
|
9198
|
+
}
|
|
9199
|
+
.gr-md-1 {
|
|
9200
|
+
row-gap: 4px !important;
|
|
9201
|
+
}
|
|
9202
|
+
.gr-md-2 {
|
|
9203
|
+
row-gap: 8px !important;
|
|
9204
|
+
}
|
|
9205
|
+
.gr-md-3 {
|
|
9206
|
+
row-gap: 12px !important;
|
|
9207
|
+
}
|
|
9208
|
+
.gr-md-4 {
|
|
9209
|
+
row-gap: 16px !important;
|
|
9210
|
+
}
|
|
9211
|
+
.gr-md-5 {
|
|
9212
|
+
row-gap: 20px !important;
|
|
9213
|
+
}
|
|
9214
|
+
.gr-md-6 {
|
|
9215
|
+
row-gap: 24px !important;
|
|
9216
|
+
}
|
|
9217
|
+
.gr-md-7 {
|
|
9218
|
+
row-gap: 28px !important;
|
|
9219
|
+
}
|
|
9220
|
+
.gr-md-8 {
|
|
9221
|
+
row-gap: 32px !important;
|
|
9222
|
+
}
|
|
9223
|
+
.gr-md-9 {
|
|
9224
|
+
row-gap: 36px !important;
|
|
9225
|
+
}
|
|
9226
|
+
.gr-md-10 {
|
|
9227
|
+
row-gap: 40px !important;
|
|
9228
|
+
}
|
|
9229
|
+
.gr-md-11 {
|
|
9230
|
+
row-gap: 44px !important;
|
|
9231
|
+
}
|
|
9232
|
+
.gr-md-12 {
|
|
9233
|
+
row-gap: 48px !important;
|
|
9234
|
+
}
|
|
9235
|
+
.gr-md-13 {
|
|
9236
|
+
row-gap: 52px !important;
|
|
9237
|
+
}
|
|
9238
|
+
.gr-md-14 {
|
|
9239
|
+
row-gap: 56px !important;
|
|
9240
|
+
}
|
|
9241
|
+
.gr-md-15 {
|
|
9242
|
+
row-gap: 60px !important;
|
|
9243
|
+
}
|
|
9244
|
+
.gr-md-16 {
|
|
9245
|
+
row-gap: 64px !important;
|
|
9246
|
+
}
|
|
9247
|
+
.gr-md-auto {
|
|
9248
|
+
row-gap: auto !important;
|
|
9249
|
+
}
|
|
9250
|
+
.gc-md-0 {
|
|
9251
|
+
column-gap: 0px !important;
|
|
9252
|
+
}
|
|
9253
|
+
.gc-md-1 {
|
|
9254
|
+
column-gap: 4px !important;
|
|
9255
|
+
}
|
|
9256
|
+
.gc-md-2 {
|
|
9257
|
+
column-gap: 8px !important;
|
|
9258
|
+
}
|
|
9259
|
+
.gc-md-3 {
|
|
9260
|
+
column-gap: 12px !important;
|
|
9261
|
+
}
|
|
9262
|
+
.gc-md-4 {
|
|
9263
|
+
column-gap: 16px !important;
|
|
9264
|
+
}
|
|
9265
|
+
.gc-md-5 {
|
|
9266
|
+
column-gap: 20px !important;
|
|
9267
|
+
}
|
|
9268
|
+
.gc-md-6 {
|
|
9269
|
+
column-gap: 24px !important;
|
|
9270
|
+
}
|
|
9271
|
+
.gc-md-7 {
|
|
9272
|
+
column-gap: 28px !important;
|
|
9273
|
+
}
|
|
9274
|
+
.gc-md-8 {
|
|
9275
|
+
column-gap: 32px !important;
|
|
9276
|
+
}
|
|
9277
|
+
.gc-md-9 {
|
|
9278
|
+
column-gap: 36px !important;
|
|
9279
|
+
}
|
|
9280
|
+
.gc-md-10 {
|
|
9281
|
+
column-gap: 40px !important;
|
|
9282
|
+
}
|
|
9283
|
+
.gc-md-11 {
|
|
9284
|
+
column-gap: 44px !important;
|
|
9285
|
+
}
|
|
9286
|
+
.gc-md-12 {
|
|
9287
|
+
column-gap: 48px !important;
|
|
9288
|
+
}
|
|
9289
|
+
.gc-md-13 {
|
|
9290
|
+
column-gap: 52px !important;
|
|
9291
|
+
}
|
|
9292
|
+
.gc-md-14 {
|
|
9293
|
+
column-gap: 56px !important;
|
|
9294
|
+
}
|
|
9295
|
+
.gc-md-15 {
|
|
9296
|
+
column-gap: 60px !important;
|
|
9297
|
+
}
|
|
9298
|
+
.gc-md-16 {
|
|
9299
|
+
column-gap: 64px !important;
|
|
9300
|
+
}
|
|
9301
|
+
.gc-md-auto {
|
|
9302
|
+
column-gap: auto !important;
|
|
9303
|
+
}
|
|
8764
9304
|
.ma-md-0 {
|
|
8765
9305
|
margin: 0px !important;
|
|
8766
9306
|
}
|
|
@@ -10589,6 +11129,168 @@ html.overflow-y-hidden {
|
|
|
10589
11129
|
.order-lg-last {
|
|
10590
11130
|
order: 13 !important;
|
|
10591
11131
|
}
|
|
11132
|
+
.ga-lg-0 {
|
|
11133
|
+
gap: 0px !important;
|
|
11134
|
+
}
|
|
11135
|
+
.ga-lg-1 {
|
|
11136
|
+
gap: 4px !important;
|
|
11137
|
+
}
|
|
11138
|
+
.ga-lg-2 {
|
|
11139
|
+
gap: 8px !important;
|
|
11140
|
+
}
|
|
11141
|
+
.ga-lg-3 {
|
|
11142
|
+
gap: 12px !important;
|
|
11143
|
+
}
|
|
11144
|
+
.ga-lg-4 {
|
|
11145
|
+
gap: 16px !important;
|
|
11146
|
+
}
|
|
11147
|
+
.ga-lg-5 {
|
|
11148
|
+
gap: 20px !important;
|
|
11149
|
+
}
|
|
11150
|
+
.ga-lg-6 {
|
|
11151
|
+
gap: 24px !important;
|
|
11152
|
+
}
|
|
11153
|
+
.ga-lg-7 {
|
|
11154
|
+
gap: 28px !important;
|
|
11155
|
+
}
|
|
11156
|
+
.ga-lg-8 {
|
|
11157
|
+
gap: 32px !important;
|
|
11158
|
+
}
|
|
11159
|
+
.ga-lg-9 {
|
|
11160
|
+
gap: 36px !important;
|
|
11161
|
+
}
|
|
11162
|
+
.ga-lg-10 {
|
|
11163
|
+
gap: 40px !important;
|
|
11164
|
+
}
|
|
11165
|
+
.ga-lg-11 {
|
|
11166
|
+
gap: 44px !important;
|
|
11167
|
+
}
|
|
11168
|
+
.ga-lg-12 {
|
|
11169
|
+
gap: 48px !important;
|
|
11170
|
+
}
|
|
11171
|
+
.ga-lg-13 {
|
|
11172
|
+
gap: 52px !important;
|
|
11173
|
+
}
|
|
11174
|
+
.ga-lg-14 {
|
|
11175
|
+
gap: 56px !important;
|
|
11176
|
+
}
|
|
11177
|
+
.ga-lg-15 {
|
|
11178
|
+
gap: 60px !important;
|
|
11179
|
+
}
|
|
11180
|
+
.ga-lg-16 {
|
|
11181
|
+
gap: 64px !important;
|
|
11182
|
+
}
|
|
11183
|
+
.ga-lg-auto {
|
|
11184
|
+
gap: auto !important;
|
|
11185
|
+
}
|
|
11186
|
+
.gr-lg-0 {
|
|
11187
|
+
row-gap: 0px !important;
|
|
11188
|
+
}
|
|
11189
|
+
.gr-lg-1 {
|
|
11190
|
+
row-gap: 4px !important;
|
|
11191
|
+
}
|
|
11192
|
+
.gr-lg-2 {
|
|
11193
|
+
row-gap: 8px !important;
|
|
11194
|
+
}
|
|
11195
|
+
.gr-lg-3 {
|
|
11196
|
+
row-gap: 12px !important;
|
|
11197
|
+
}
|
|
11198
|
+
.gr-lg-4 {
|
|
11199
|
+
row-gap: 16px !important;
|
|
11200
|
+
}
|
|
11201
|
+
.gr-lg-5 {
|
|
11202
|
+
row-gap: 20px !important;
|
|
11203
|
+
}
|
|
11204
|
+
.gr-lg-6 {
|
|
11205
|
+
row-gap: 24px !important;
|
|
11206
|
+
}
|
|
11207
|
+
.gr-lg-7 {
|
|
11208
|
+
row-gap: 28px !important;
|
|
11209
|
+
}
|
|
11210
|
+
.gr-lg-8 {
|
|
11211
|
+
row-gap: 32px !important;
|
|
11212
|
+
}
|
|
11213
|
+
.gr-lg-9 {
|
|
11214
|
+
row-gap: 36px !important;
|
|
11215
|
+
}
|
|
11216
|
+
.gr-lg-10 {
|
|
11217
|
+
row-gap: 40px !important;
|
|
11218
|
+
}
|
|
11219
|
+
.gr-lg-11 {
|
|
11220
|
+
row-gap: 44px !important;
|
|
11221
|
+
}
|
|
11222
|
+
.gr-lg-12 {
|
|
11223
|
+
row-gap: 48px !important;
|
|
11224
|
+
}
|
|
11225
|
+
.gr-lg-13 {
|
|
11226
|
+
row-gap: 52px !important;
|
|
11227
|
+
}
|
|
11228
|
+
.gr-lg-14 {
|
|
11229
|
+
row-gap: 56px !important;
|
|
11230
|
+
}
|
|
11231
|
+
.gr-lg-15 {
|
|
11232
|
+
row-gap: 60px !important;
|
|
11233
|
+
}
|
|
11234
|
+
.gr-lg-16 {
|
|
11235
|
+
row-gap: 64px !important;
|
|
11236
|
+
}
|
|
11237
|
+
.gr-lg-auto {
|
|
11238
|
+
row-gap: auto !important;
|
|
11239
|
+
}
|
|
11240
|
+
.gc-lg-0 {
|
|
11241
|
+
column-gap: 0px !important;
|
|
11242
|
+
}
|
|
11243
|
+
.gc-lg-1 {
|
|
11244
|
+
column-gap: 4px !important;
|
|
11245
|
+
}
|
|
11246
|
+
.gc-lg-2 {
|
|
11247
|
+
column-gap: 8px !important;
|
|
11248
|
+
}
|
|
11249
|
+
.gc-lg-3 {
|
|
11250
|
+
column-gap: 12px !important;
|
|
11251
|
+
}
|
|
11252
|
+
.gc-lg-4 {
|
|
11253
|
+
column-gap: 16px !important;
|
|
11254
|
+
}
|
|
11255
|
+
.gc-lg-5 {
|
|
11256
|
+
column-gap: 20px !important;
|
|
11257
|
+
}
|
|
11258
|
+
.gc-lg-6 {
|
|
11259
|
+
column-gap: 24px !important;
|
|
11260
|
+
}
|
|
11261
|
+
.gc-lg-7 {
|
|
11262
|
+
column-gap: 28px !important;
|
|
11263
|
+
}
|
|
11264
|
+
.gc-lg-8 {
|
|
11265
|
+
column-gap: 32px !important;
|
|
11266
|
+
}
|
|
11267
|
+
.gc-lg-9 {
|
|
11268
|
+
column-gap: 36px !important;
|
|
11269
|
+
}
|
|
11270
|
+
.gc-lg-10 {
|
|
11271
|
+
column-gap: 40px !important;
|
|
11272
|
+
}
|
|
11273
|
+
.gc-lg-11 {
|
|
11274
|
+
column-gap: 44px !important;
|
|
11275
|
+
}
|
|
11276
|
+
.gc-lg-12 {
|
|
11277
|
+
column-gap: 48px !important;
|
|
11278
|
+
}
|
|
11279
|
+
.gc-lg-13 {
|
|
11280
|
+
column-gap: 52px !important;
|
|
11281
|
+
}
|
|
11282
|
+
.gc-lg-14 {
|
|
11283
|
+
column-gap: 56px !important;
|
|
11284
|
+
}
|
|
11285
|
+
.gc-lg-15 {
|
|
11286
|
+
column-gap: 60px !important;
|
|
11287
|
+
}
|
|
11288
|
+
.gc-lg-16 {
|
|
11289
|
+
column-gap: 64px !important;
|
|
11290
|
+
}
|
|
11291
|
+
.gc-lg-auto {
|
|
11292
|
+
column-gap: auto !important;
|
|
11293
|
+
}
|
|
10592
11294
|
.ma-lg-0 {
|
|
10593
11295
|
margin: 0px !important;
|
|
10594
11296
|
}
|
|
@@ -12417,6 +13119,168 @@ html.overflow-y-hidden {
|
|
|
12417
13119
|
.order-xl-last {
|
|
12418
13120
|
order: 13 !important;
|
|
12419
13121
|
}
|
|
13122
|
+
.ga-xl-0 {
|
|
13123
|
+
gap: 0px !important;
|
|
13124
|
+
}
|
|
13125
|
+
.ga-xl-1 {
|
|
13126
|
+
gap: 4px !important;
|
|
13127
|
+
}
|
|
13128
|
+
.ga-xl-2 {
|
|
13129
|
+
gap: 8px !important;
|
|
13130
|
+
}
|
|
13131
|
+
.ga-xl-3 {
|
|
13132
|
+
gap: 12px !important;
|
|
13133
|
+
}
|
|
13134
|
+
.ga-xl-4 {
|
|
13135
|
+
gap: 16px !important;
|
|
13136
|
+
}
|
|
13137
|
+
.ga-xl-5 {
|
|
13138
|
+
gap: 20px !important;
|
|
13139
|
+
}
|
|
13140
|
+
.ga-xl-6 {
|
|
13141
|
+
gap: 24px !important;
|
|
13142
|
+
}
|
|
13143
|
+
.ga-xl-7 {
|
|
13144
|
+
gap: 28px !important;
|
|
13145
|
+
}
|
|
13146
|
+
.ga-xl-8 {
|
|
13147
|
+
gap: 32px !important;
|
|
13148
|
+
}
|
|
13149
|
+
.ga-xl-9 {
|
|
13150
|
+
gap: 36px !important;
|
|
13151
|
+
}
|
|
13152
|
+
.ga-xl-10 {
|
|
13153
|
+
gap: 40px !important;
|
|
13154
|
+
}
|
|
13155
|
+
.ga-xl-11 {
|
|
13156
|
+
gap: 44px !important;
|
|
13157
|
+
}
|
|
13158
|
+
.ga-xl-12 {
|
|
13159
|
+
gap: 48px !important;
|
|
13160
|
+
}
|
|
13161
|
+
.ga-xl-13 {
|
|
13162
|
+
gap: 52px !important;
|
|
13163
|
+
}
|
|
13164
|
+
.ga-xl-14 {
|
|
13165
|
+
gap: 56px !important;
|
|
13166
|
+
}
|
|
13167
|
+
.ga-xl-15 {
|
|
13168
|
+
gap: 60px !important;
|
|
13169
|
+
}
|
|
13170
|
+
.ga-xl-16 {
|
|
13171
|
+
gap: 64px !important;
|
|
13172
|
+
}
|
|
13173
|
+
.ga-xl-auto {
|
|
13174
|
+
gap: auto !important;
|
|
13175
|
+
}
|
|
13176
|
+
.gr-xl-0 {
|
|
13177
|
+
row-gap: 0px !important;
|
|
13178
|
+
}
|
|
13179
|
+
.gr-xl-1 {
|
|
13180
|
+
row-gap: 4px !important;
|
|
13181
|
+
}
|
|
13182
|
+
.gr-xl-2 {
|
|
13183
|
+
row-gap: 8px !important;
|
|
13184
|
+
}
|
|
13185
|
+
.gr-xl-3 {
|
|
13186
|
+
row-gap: 12px !important;
|
|
13187
|
+
}
|
|
13188
|
+
.gr-xl-4 {
|
|
13189
|
+
row-gap: 16px !important;
|
|
13190
|
+
}
|
|
13191
|
+
.gr-xl-5 {
|
|
13192
|
+
row-gap: 20px !important;
|
|
13193
|
+
}
|
|
13194
|
+
.gr-xl-6 {
|
|
13195
|
+
row-gap: 24px !important;
|
|
13196
|
+
}
|
|
13197
|
+
.gr-xl-7 {
|
|
13198
|
+
row-gap: 28px !important;
|
|
13199
|
+
}
|
|
13200
|
+
.gr-xl-8 {
|
|
13201
|
+
row-gap: 32px !important;
|
|
13202
|
+
}
|
|
13203
|
+
.gr-xl-9 {
|
|
13204
|
+
row-gap: 36px !important;
|
|
13205
|
+
}
|
|
13206
|
+
.gr-xl-10 {
|
|
13207
|
+
row-gap: 40px !important;
|
|
13208
|
+
}
|
|
13209
|
+
.gr-xl-11 {
|
|
13210
|
+
row-gap: 44px !important;
|
|
13211
|
+
}
|
|
13212
|
+
.gr-xl-12 {
|
|
13213
|
+
row-gap: 48px !important;
|
|
13214
|
+
}
|
|
13215
|
+
.gr-xl-13 {
|
|
13216
|
+
row-gap: 52px !important;
|
|
13217
|
+
}
|
|
13218
|
+
.gr-xl-14 {
|
|
13219
|
+
row-gap: 56px !important;
|
|
13220
|
+
}
|
|
13221
|
+
.gr-xl-15 {
|
|
13222
|
+
row-gap: 60px !important;
|
|
13223
|
+
}
|
|
13224
|
+
.gr-xl-16 {
|
|
13225
|
+
row-gap: 64px !important;
|
|
13226
|
+
}
|
|
13227
|
+
.gr-xl-auto {
|
|
13228
|
+
row-gap: auto !important;
|
|
13229
|
+
}
|
|
13230
|
+
.gc-xl-0 {
|
|
13231
|
+
column-gap: 0px !important;
|
|
13232
|
+
}
|
|
13233
|
+
.gc-xl-1 {
|
|
13234
|
+
column-gap: 4px !important;
|
|
13235
|
+
}
|
|
13236
|
+
.gc-xl-2 {
|
|
13237
|
+
column-gap: 8px !important;
|
|
13238
|
+
}
|
|
13239
|
+
.gc-xl-3 {
|
|
13240
|
+
column-gap: 12px !important;
|
|
13241
|
+
}
|
|
13242
|
+
.gc-xl-4 {
|
|
13243
|
+
column-gap: 16px !important;
|
|
13244
|
+
}
|
|
13245
|
+
.gc-xl-5 {
|
|
13246
|
+
column-gap: 20px !important;
|
|
13247
|
+
}
|
|
13248
|
+
.gc-xl-6 {
|
|
13249
|
+
column-gap: 24px !important;
|
|
13250
|
+
}
|
|
13251
|
+
.gc-xl-7 {
|
|
13252
|
+
column-gap: 28px !important;
|
|
13253
|
+
}
|
|
13254
|
+
.gc-xl-8 {
|
|
13255
|
+
column-gap: 32px !important;
|
|
13256
|
+
}
|
|
13257
|
+
.gc-xl-9 {
|
|
13258
|
+
column-gap: 36px !important;
|
|
13259
|
+
}
|
|
13260
|
+
.gc-xl-10 {
|
|
13261
|
+
column-gap: 40px !important;
|
|
13262
|
+
}
|
|
13263
|
+
.gc-xl-11 {
|
|
13264
|
+
column-gap: 44px !important;
|
|
13265
|
+
}
|
|
13266
|
+
.gc-xl-12 {
|
|
13267
|
+
column-gap: 48px !important;
|
|
13268
|
+
}
|
|
13269
|
+
.gc-xl-13 {
|
|
13270
|
+
column-gap: 52px !important;
|
|
13271
|
+
}
|
|
13272
|
+
.gc-xl-14 {
|
|
13273
|
+
column-gap: 56px !important;
|
|
13274
|
+
}
|
|
13275
|
+
.gc-xl-15 {
|
|
13276
|
+
column-gap: 60px !important;
|
|
13277
|
+
}
|
|
13278
|
+
.gc-xl-16 {
|
|
13279
|
+
column-gap: 64px !important;
|
|
13280
|
+
}
|
|
13281
|
+
.gc-xl-auto {
|
|
13282
|
+
column-gap: auto !important;
|
|
13283
|
+
}
|
|
12420
13284
|
.ma-xl-0 {
|
|
12421
13285
|
margin: 0px !important;
|
|
12422
13286
|
}
|
|
@@ -14245,6 +15109,168 @@ html.overflow-y-hidden {
|
|
|
14245
15109
|
.order-xxl-last {
|
|
14246
15110
|
order: 13 !important;
|
|
14247
15111
|
}
|
|
15112
|
+
.ga-xxl-0 {
|
|
15113
|
+
gap: 0px !important;
|
|
15114
|
+
}
|
|
15115
|
+
.ga-xxl-1 {
|
|
15116
|
+
gap: 4px !important;
|
|
15117
|
+
}
|
|
15118
|
+
.ga-xxl-2 {
|
|
15119
|
+
gap: 8px !important;
|
|
15120
|
+
}
|
|
15121
|
+
.ga-xxl-3 {
|
|
15122
|
+
gap: 12px !important;
|
|
15123
|
+
}
|
|
15124
|
+
.ga-xxl-4 {
|
|
15125
|
+
gap: 16px !important;
|
|
15126
|
+
}
|
|
15127
|
+
.ga-xxl-5 {
|
|
15128
|
+
gap: 20px !important;
|
|
15129
|
+
}
|
|
15130
|
+
.ga-xxl-6 {
|
|
15131
|
+
gap: 24px !important;
|
|
15132
|
+
}
|
|
15133
|
+
.ga-xxl-7 {
|
|
15134
|
+
gap: 28px !important;
|
|
15135
|
+
}
|
|
15136
|
+
.ga-xxl-8 {
|
|
15137
|
+
gap: 32px !important;
|
|
15138
|
+
}
|
|
15139
|
+
.ga-xxl-9 {
|
|
15140
|
+
gap: 36px !important;
|
|
15141
|
+
}
|
|
15142
|
+
.ga-xxl-10 {
|
|
15143
|
+
gap: 40px !important;
|
|
15144
|
+
}
|
|
15145
|
+
.ga-xxl-11 {
|
|
15146
|
+
gap: 44px !important;
|
|
15147
|
+
}
|
|
15148
|
+
.ga-xxl-12 {
|
|
15149
|
+
gap: 48px !important;
|
|
15150
|
+
}
|
|
15151
|
+
.ga-xxl-13 {
|
|
15152
|
+
gap: 52px !important;
|
|
15153
|
+
}
|
|
15154
|
+
.ga-xxl-14 {
|
|
15155
|
+
gap: 56px !important;
|
|
15156
|
+
}
|
|
15157
|
+
.ga-xxl-15 {
|
|
15158
|
+
gap: 60px !important;
|
|
15159
|
+
}
|
|
15160
|
+
.ga-xxl-16 {
|
|
15161
|
+
gap: 64px !important;
|
|
15162
|
+
}
|
|
15163
|
+
.ga-xxl-auto {
|
|
15164
|
+
gap: auto !important;
|
|
15165
|
+
}
|
|
15166
|
+
.gr-xxl-0 {
|
|
15167
|
+
row-gap: 0px !important;
|
|
15168
|
+
}
|
|
15169
|
+
.gr-xxl-1 {
|
|
15170
|
+
row-gap: 4px !important;
|
|
15171
|
+
}
|
|
15172
|
+
.gr-xxl-2 {
|
|
15173
|
+
row-gap: 8px !important;
|
|
15174
|
+
}
|
|
15175
|
+
.gr-xxl-3 {
|
|
15176
|
+
row-gap: 12px !important;
|
|
15177
|
+
}
|
|
15178
|
+
.gr-xxl-4 {
|
|
15179
|
+
row-gap: 16px !important;
|
|
15180
|
+
}
|
|
15181
|
+
.gr-xxl-5 {
|
|
15182
|
+
row-gap: 20px !important;
|
|
15183
|
+
}
|
|
15184
|
+
.gr-xxl-6 {
|
|
15185
|
+
row-gap: 24px !important;
|
|
15186
|
+
}
|
|
15187
|
+
.gr-xxl-7 {
|
|
15188
|
+
row-gap: 28px !important;
|
|
15189
|
+
}
|
|
15190
|
+
.gr-xxl-8 {
|
|
15191
|
+
row-gap: 32px !important;
|
|
15192
|
+
}
|
|
15193
|
+
.gr-xxl-9 {
|
|
15194
|
+
row-gap: 36px !important;
|
|
15195
|
+
}
|
|
15196
|
+
.gr-xxl-10 {
|
|
15197
|
+
row-gap: 40px !important;
|
|
15198
|
+
}
|
|
15199
|
+
.gr-xxl-11 {
|
|
15200
|
+
row-gap: 44px !important;
|
|
15201
|
+
}
|
|
15202
|
+
.gr-xxl-12 {
|
|
15203
|
+
row-gap: 48px !important;
|
|
15204
|
+
}
|
|
15205
|
+
.gr-xxl-13 {
|
|
15206
|
+
row-gap: 52px !important;
|
|
15207
|
+
}
|
|
15208
|
+
.gr-xxl-14 {
|
|
15209
|
+
row-gap: 56px !important;
|
|
15210
|
+
}
|
|
15211
|
+
.gr-xxl-15 {
|
|
15212
|
+
row-gap: 60px !important;
|
|
15213
|
+
}
|
|
15214
|
+
.gr-xxl-16 {
|
|
15215
|
+
row-gap: 64px !important;
|
|
15216
|
+
}
|
|
15217
|
+
.gr-xxl-auto {
|
|
15218
|
+
row-gap: auto !important;
|
|
15219
|
+
}
|
|
15220
|
+
.gc-xxl-0 {
|
|
15221
|
+
column-gap: 0px !important;
|
|
15222
|
+
}
|
|
15223
|
+
.gc-xxl-1 {
|
|
15224
|
+
column-gap: 4px !important;
|
|
15225
|
+
}
|
|
15226
|
+
.gc-xxl-2 {
|
|
15227
|
+
column-gap: 8px !important;
|
|
15228
|
+
}
|
|
15229
|
+
.gc-xxl-3 {
|
|
15230
|
+
column-gap: 12px !important;
|
|
15231
|
+
}
|
|
15232
|
+
.gc-xxl-4 {
|
|
15233
|
+
column-gap: 16px !important;
|
|
15234
|
+
}
|
|
15235
|
+
.gc-xxl-5 {
|
|
15236
|
+
column-gap: 20px !important;
|
|
15237
|
+
}
|
|
15238
|
+
.gc-xxl-6 {
|
|
15239
|
+
column-gap: 24px !important;
|
|
15240
|
+
}
|
|
15241
|
+
.gc-xxl-7 {
|
|
15242
|
+
column-gap: 28px !important;
|
|
15243
|
+
}
|
|
15244
|
+
.gc-xxl-8 {
|
|
15245
|
+
column-gap: 32px !important;
|
|
15246
|
+
}
|
|
15247
|
+
.gc-xxl-9 {
|
|
15248
|
+
column-gap: 36px !important;
|
|
15249
|
+
}
|
|
15250
|
+
.gc-xxl-10 {
|
|
15251
|
+
column-gap: 40px !important;
|
|
15252
|
+
}
|
|
15253
|
+
.gc-xxl-11 {
|
|
15254
|
+
column-gap: 44px !important;
|
|
15255
|
+
}
|
|
15256
|
+
.gc-xxl-12 {
|
|
15257
|
+
column-gap: 48px !important;
|
|
15258
|
+
}
|
|
15259
|
+
.gc-xxl-13 {
|
|
15260
|
+
column-gap: 52px !important;
|
|
15261
|
+
}
|
|
15262
|
+
.gc-xxl-14 {
|
|
15263
|
+
column-gap: 56px !important;
|
|
15264
|
+
}
|
|
15265
|
+
.gc-xxl-15 {
|
|
15266
|
+
column-gap: 60px !important;
|
|
15267
|
+
}
|
|
15268
|
+
.gc-xxl-16 {
|
|
15269
|
+
column-gap: 64px !important;
|
|
15270
|
+
}
|
|
15271
|
+
.gc-xxl-auto {
|
|
15272
|
+
column-gap: auto !important;
|
|
15273
|
+
}
|
|
14248
15274
|
.ma-xxl-0 {
|
|
14249
15275
|
margin: 0px !important;
|
|
14250
15276
|
}
|