@oslokommune/punkt-css 17.1.2 → 17.1.3

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.
@@ -3107,7 +3107,7 @@
3107
3107
  margin-right: 0;
3108
3108
  }
3109
3109
  /*
3110
- * CSS Grid layouts
3110
+ * CSS Grid
3111
3111
  */
3112
3112
  .pkt-grid {
3113
3113
  display: grid;
@@ -3321,6 +3321,15 @@
3321
3321
  .pkt-grid--rowgap-size-88 {
3322
3322
  row-gap: 5.5rem;
3323
3323
  }
3324
+ .pkt-grid--gap-size-96 {
3325
+ gap: 6rem;
3326
+ }
3327
+ .pkt-grid--colgap-size-96 {
3328
+ column-gap: 6rem;
3329
+ }
3330
+ .pkt-grid--rowgap-size-96 {
3331
+ row-gap: 6rem;
3332
+ }
3324
3333
  .pkt-grid--gap-size-104 {
3325
3334
  gap: 6.5rem;
3326
3335
  }
@@ -3339,24 +3348,6 @@
3339
3348
  .pkt-grid--rowgap-size-128 {
3340
3349
  row-gap: 8rem;
3341
3350
  }
3342
- .pkt-grid--gap-size-148 {
3343
- gap: 9.25rem;
3344
- }
3345
- .pkt-grid--colgap-size-148 {
3346
- column-gap: 9.25rem;
3347
- }
3348
- .pkt-grid--rowgap-size-148 {
3349
- row-gap: 9.25rem;
3350
- }
3351
- .pkt-grid--gap-size-5 {
3352
- gap: 0.3125rem;
3353
- }
3354
- .pkt-grid--colgap-size-5 {
3355
- column-gap: 0.3125rem;
3356
- }
3357
- .pkt-grid--rowgap-size-5 {
3358
- row-gap: 0.3125rem;
3359
- }
3360
3351
  .pkt-grid--gap-size-10 {
3361
3352
  gap: 0.625rem;
3362
3353
  }
@@ -3366,15 +3357,6 @@
3366
3357
  .pkt-grid--rowgap-size-10 {
3367
3358
  row-gap: 0.625rem;
3368
3359
  }
3369
- .pkt-grid--gap-size-15 {
3370
- gap: 0.9375rem;
3371
- }
3372
- .pkt-grid--colgap-size-15 {
3373
- column-gap: 0.9375rem;
3374
- }
3375
- .pkt-grid--rowgap-size-15 {
3376
- row-gap: 0.9375rem;
3377
- }
3378
3360
  .pkt-grid--gap-size-20 {
3379
3361
  gap: 1.25rem;
3380
3362
  }
@@ -3393,15 +3375,6 @@
3393
3375
  .pkt-grid--rowgap-size-30 {
3394
3376
  row-gap: 1.875rem;
3395
3377
  }
3396
- .pkt-grid--gap-size-50 {
3397
- gap: 3.125rem;
3398
- }
3399
- .pkt-grid--colgap-size-50 {
3400
- column-gap: 3.125rem;
3401
- }
3402
- .pkt-grid--rowgap-size-50 {
3403
- row-gap: 3.125rem;
3404
- }
3405
3378
  .pkt-grid--gap-size-60 {
3406
3379
  gap: 3.75rem;
3407
3380
  }
@@ -3411,6 +3384,33 @@
3411
3384
  .pkt-grid--rowgap-size-60 {
3412
3385
  row-gap: 3.75rem;
3413
3386
  }
3387
+ .pkt-grid--gap-size-5 {
3388
+ gap: 0.3125rem;
3389
+ }
3390
+ .pkt-grid--colgap-size-5 {
3391
+ column-gap: 0.3125rem;
3392
+ }
3393
+ .pkt-grid--rowgap-size-5 {
3394
+ row-gap: 0.3125rem;
3395
+ }
3396
+ .pkt-grid--gap-size-15 {
3397
+ gap: 0.9375rem;
3398
+ }
3399
+ .pkt-grid--colgap-size-15 {
3400
+ column-gap: 0.9375rem;
3401
+ }
3402
+ .pkt-grid--rowgap-size-15 {
3403
+ row-gap: 0.9375rem;
3404
+ }
3405
+ .pkt-grid--gap-size-50 {
3406
+ gap: 3.125rem;
3407
+ }
3408
+ .pkt-grid--colgap-size-50 {
3409
+ column-gap: 3.125rem;
3410
+ }
3411
+ .pkt-grid--rowgap-size-50 {
3412
+ row-gap: 3.125rem;
3413
+ }
3414
3414
  .pkt-grid--gap-size-75 {
3415
3415
  gap: 4.6875rem;
3416
3416
  }
@@ -3429,6 +3429,60 @@
3429
3429
  .pkt-grid--rowgap-size-100 {
3430
3430
  row-gap: 6.25rem;
3431
3431
  }
3432
+ .pkt-grid > .pkt-cell--left, .pkt-grid > * > .pkt-cell--left {
3433
+ justify-self: start;
3434
+ }
3435
+ .pkt-grid > .pkt-cell--center, .pkt-grid > * > .pkt-cell--center {
3436
+ justify-self: center;
3437
+ }
3438
+ .pkt-grid > .pkt-cell--right, .pkt-grid > * > .pkt-cell--right {
3439
+ justify-self: end;
3440
+ }
3441
+ .pkt-grid > .pkt-cell--top, .pkt-grid > * > .pkt-cell--top {
3442
+ align-self: self-start;
3443
+ }
3444
+ .pkt-grid > .pkt-cell--center-vertical, .pkt-grid > * > .pkt-cell--center-vertical {
3445
+ align-self: center;
3446
+ }
3447
+ .pkt-grid > .pkt-cell--bottom, .pkt-grid > * > .pkt-cell--bottom {
3448
+ align-self: self-end;
3449
+ }
3450
+ .pkt-grid > .pkt-cell.pkt-cell--span2, .pkt-grid > * > .pkt-cell.pkt-cell--span2 {
3451
+ grid-column-end: span 2;
3452
+ }
3453
+ .pkt-grid > .pkt-cell.pkt-cell--span3, .pkt-grid > * > .pkt-cell.pkt-cell--span3 {
3454
+ grid-column-end: span 3;
3455
+ }
3456
+ .pkt-grid > .pkt-cell.pkt-cell--span4, .pkt-grid > * > .pkt-cell.pkt-cell--span4 {
3457
+ grid-column-end: span 4;
3458
+ }
3459
+ .pkt-grid > .pkt-cell.pkt-cell--span5, .pkt-grid > * > .pkt-cell.pkt-cell--span5 {
3460
+ grid-column-end: span 5;
3461
+ }
3462
+ .pkt-grid > .pkt-cell.pkt-cell--span6, .pkt-grid > * > .pkt-cell.pkt-cell--span6 {
3463
+ grid-column-end: span 6;
3464
+ }
3465
+ .pkt-grid > .pkt-cell.pkt-cell--span7, .pkt-grid > * > .pkt-cell.pkt-cell--span7 {
3466
+ grid-column-end: span 7;
3467
+ }
3468
+ .pkt-grid > .pkt-cell.pkt-cell--span8, .pkt-grid > * > .pkt-cell.pkt-cell--span8 {
3469
+ grid-column-end: span 8;
3470
+ }
3471
+ .pkt-grid > .pkt-cell.pkt-cell--span9, .pkt-grid > * > .pkt-cell.pkt-cell--span9 {
3472
+ grid-column-end: span 9;
3473
+ }
3474
+ .pkt-grid > .pkt-cell.pkt-cell--span10, .pkt-grid > * > .pkt-cell.pkt-cell--span10 {
3475
+ grid-column-end: span 10;
3476
+ }
3477
+ .pkt-grid > .pkt-cell.pkt-cell--span11, .pkt-grid > * > .pkt-cell.pkt-cell--span11 {
3478
+ grid-column-end: span 11;
3479
+ }
3480
+ .pkt-grid > .pkt-cell.pkt-cell--span12, .pkt-grid > * > .pkt-cell.pkt-cell--span12 {
3481
+ grid-column-end: span 12;
3482
+ }
3483
+ /*
3484
+ * Responsiv grid
3485
+ */
3432
3486
  @media screen {
3433
3487
  .pkt-grid--gap-size-0-mobile-up {
3434
3488
  gap: 0rem;
@@ -3583,6 +3637,15 @@
3583
3637
  .pkt-grid--rowgap-size-88-mobile-up {
3584
3638
  row-gap: 5.5rem;
3585
3639
  }
3640
+ .pkt-grid--gap-size-96-mobile-up {
3641
+ gap: 6rem;
3642
+ }
3643
+ .pkt-grid--colgap-size-96-mobile-up {
3644
+ column-gap: 6rem;
3645
+ }
3646
+ .pkt-grid--rowgap-size-96-mobile-up {
3647
+ row-gap: 6rem;
3648
+ }
3586
3649
  .pkt-grid--gap-size-104-mobile-up {
3587
3650
  gap: 6.5rem;
3588
3651
  }
@@ -3601,24 +3664,6 @@
3601
3664
  .pkt-grid--rowgap-size-128-mobile-up {
3602
3665
  row-gap: 8rem;
3603
3666
  }
3604
- .pkt-grid--gap-size-148-mobile-up {
3605
- gap: 9.25rem;
3606
- }
3607
- .pkt-grid--colgap-size-148-mobile-up {
3608
- column-gap: 9.25rem;
3609
- }
3610
- .pkt-grid--rowgap-size-148-mobile-up {
3611
- row-gap: 9.25rem;
3612
- }
3613
- .pkt-grid--gap-size-5-mobile-up {
3614
- gap: 0.3125rem;
3615
- }
3616
- .pkt-grid--colgap-size-5-mobile-up {
3617
- column-gap: 0.3125rem;
3618
- }
3619
- .pkt-grid--rowgap-size-5-mobile-up {
3620
- row-gap: 0.3125rem;
3621
- }
3622
3667
  .pkt-grid--gap-size-10-mobile-up {
3623
3668
  gap: 0.625rem;
3624
3669
  }
@@ -3628,15 +3673,6 @@
3628
3673
  .pkt-grid--rowgap-size-10-mobile-up {
3629
3674
  row-gap: 0.625rem;
3630
3675
  }
3631
- .pkt-grid--gap-size-15-mobile-up {
3632
- gap: 0.9375rem;
3633
- }
3634
- .pkt-grid--colgap-size-15-mobile-up {
3635
- column-gap: 0.9375rem;
3636
- }
3637
- .pkt-grid--rowgap-size-15-mobile-up {
3638
- row-gap: 0.9375rem;
3639
- }
3640
3676
  .pkt-grid--gap-size-20-mobile-up {
3641
3677
  gap: 1.25rem;
3642
3678
  }
@@ -3655,15 +3691,6 @@
3655
3691
  .pkt-grid--rowgap-size-30-mobile-up {
3656
3692
  row-gap: 1.875rem;
3657
3693
  }
3658
- .pkt-grid--gap-size-50-mobile-up {
3659
- gap: 3.125rem;
3660
- }
3661
- .pkt-grid--colgap-size-50-mobile-up {
3662
- column-gap: 3.125rem;
3663
- }
3664
- .pkt-grid--rowgap-size-50-mobile-up {
3665
- row-gap: 3.125rem;
3666
- }
3667
3694
  .pkt-grid--gap-size-60-mobile-up {
3668
3695
  gap: 3.75rem;
3669
3696
  }
@@ -3673,6 +3700,33 @@
3673
3700
  .pkt-grid--rowgap-size-60-mobile-up {
3674
3701
  row-gap: 3.75rem;
3675
3702
  }
3703
+ .pkt-grid--gap-size-5-mobile-up {
3704
+ gap: 0.3125rem;
3705
+ }
3706
+ .pkt-grid--colgap-size-5-mobile-up {
3707
+ column-gap: 0.3125rem;
3708
+ }
3709
+ .pkt-grid--rowgap-size-5-mobile-up {
3710
+ row-gap: 0.3125rem;
3711
+ }
3712
+ .pkt-grid--gap-size-15-mobile-up {
3713
+ gap: 0.9375rem;
3714
+ }
3715
+ .pkt-grid--colgap-size-15-mobile-up {
3716
+ column-gap: 0.9375rem;
3717
+ }
3718
+ .pkt-grid--rowgap-size-15-mobile-up {
3719
+ row-gap: 0.9375rem;
3720
+ }
3721
+ .pkt-grid--gap-size-50-mobile-up {
3722
+ gap: 3.125rem;
3723
+ }
3724
+ .pkt-grid--colgap-size-50-mobile-up {
3725
+ column-gap: 3.125rem;
3726
+ }
3727
+ .pkt-grid--rowgap-size-50-mobile-up {
3728
+ row-gap: 3.125rem;
3729
+ }
3676
3730
  .pkt-grid--gap-size-75-mobile-up {
3677
3731
  gap: 4.6875rem;
3678
3732
  }
@@ -3846,6 +3900,15 @@
3846
3900
  .pkt-grid--rowgap-size-88-phablet-up {
3847
3901
  row-gap: 5.5rem;
3848
3902
  }
3903
+ .pkt-grid--gap-size-96-phablet-up {
3904
+ gap: 6rem;
3905
+ }
3906
+ .pkt-grid--colgap-size-96-phablet-up {
3907
+ column-gap: 6rem;
3908
+ }
3909
+ .pkt-grid--rowgap-size-96-phablet-up {
3910
+ row-gap: 6rem;
3911
+ }
3849
3912
  .pkt-grid--gap-size-104-phablet-up {
3850
3913
  gap: 6.5rem;
3851
3914
  }
@@ -3864,24 +3927,6 @@
3864
3927
  .pkt-grid--rowgap-size-128-phablet-up {
3865
3928
  row-gap: 8rem;
3866
3929
  }
3867
- .pkt-grid--gap-size-148-phablet-up {
3868
- gap: 9.25rem;
3869
- }
3870
- .pkt-grid--colgap-size-148-phablet-up {
3871
- column-gap: 9.25rem;
3872
- }
3873
- .pkt-grid--rowgap-size-148-phablet-up {
3874
- row-gap: 9.25rem;
3875
- }
3876
- .pkt-grid--gap-size-5-phablet-up {
3877
- gap: 0.3125rem;
3878
- }
3879
- .pkt-grid--colgap-size-5-phablet-up {
3880
- column-gap: 0.3125rem;
3881
- }
3882
- .pkt-grid--rowgap-size-5-phablet-up {
3883
- row-gap: 0.3125rem;
3884
- }
3885
3930
  .pkt-grid--gap-size-10-phablet-up {
3886
3931
  gap: 0.625rem;
3887
3932
  }
@@ -3891,15 +3936,6 @@
3891
3936
  .pkt-grid--rowgap-size-10-phablet-up {
3892
3937
  row-gap: 0.625rem;
3893
3938
  }
3894
- .pkt-grid--gap-size-15-phablet-up {
3895
- gap: 0.9375rem;
3896
- }
3897
- .pkt-grid--colgap-size-15-phablet-up {
3898
- column-gap: 0.9375rem;
3899
- }
3900
- .pkt-grid--rowgap-size-15-phablet-up {
3901
- row-gap: 0.9375rem;
3902
- }
3903
3939
  .pkt-grid--gap-size-20-phablet-up {
3904
3940
  gap: 1.25rem;
3905
3941
  }
@@ -3918,15 +3954,6 @@
3918
3954
  .pkt-grid--rowgap-size-30-phablet-up {
3919
3955
  row-gap: 1.875rem;
3920
3956
  }
3921
- .pkt-grid--gap-size-50-phablet-up {
3922
- gap: 3.125rem;
3923
- }
3924
- .pkt-grid--colgap-size-50-phablet-up {
3925
- column-gap: 3.125rem;
3926
- }
3927
- .pkt-grid--rowgap-size-50-phablet-up {
3928
- row-gap: 3.125rem;
3929
- }
3930
3957
  .pkt-grid--gap-size-60-phablet-up {
3931
3958
  gap: 3.75rem;
3932
3959
  }
@@ -3936,6 +3963,33 @@
3936
3963
  .pkt-grid--rowgap-size-60-phablet-up {
3937
3964
  row-gap: 3.75rem;
3938
3965
  }
3966
+ .pkt-grid--gap-size-5-phablet-up {
3967
+ gap: 0.3125rem;
3968
+ }
3969
+ .pkt-grid--colgap-size-5-phablet-up {
3970
+ column-gap: 0.3125rem;
3971
+ }
3972
+ .pkt-grid--rowgap-size-5-phablet-up {
3973
+ row-gap: 0.3125rem;
3974
+ }
3975
+ .pkt-grid--gap-size-15-phablet-up {
3976
+ gap: 0.9375rem;
3977
+ }
3978
+ .pkt-grid--colgap-size-15-phablet-up {
3979
+ column-gap: 0.9375rem;
3980
+ }
3981
+ .pkt-grid--rowgap-size-15-phablet-up {
3982
+ row-gap: 0.9375rem;
3983
+ }
3984
+ .pkt-grid--gap-size-50-phablet-up {
3985
+ gap: 3.125rem;
3986
+ }
3987
+ .pkt-grid--colgap-size-50-phablet-up {
3988
+ column-gap: 3.125rem;
3989
+ }
3990
+ .pkt-grid--rowgap-size-50-phablet-up {
3991
+ row-gap: 3.125rem;
3992
+ }
3939
3993
  .pkt-grid--gap-size-75-phablet-up {
3940
3994
  gap: 4.6875rem;
3941
3995
  }
@@ -4109,6 +4163,15 @@
4109
4163
  .pkt-grid--rowgap-size-88-tablet-up {
4110
4164
  row-gap: 5.5rem;
4111
4165
  }
4166
+ .pkt-grid--gap-size-96-tablet-up {
4167
+ gap: 6rem;
4168
+ }
4169
+ .pkt-grid--colgap-size-96-tablet-up {
4170
+ column-gap: 6rem;
4171
+ }
4172
+ .pkt-grid--rowgap-size-96-tablet-up {
4173
+ row-gap: 6rem;
4174
+ }
4112
4175
  .pkt-grid--gap-size-104-tablet-up {
4113
4176
  gap: 6.5rem;
4114
4177
  }
@@ -4127,24 +4190,6 @@
4127
4190
  .pkt-grid--rowgap-size-128-tablet-up {
4128
4191
  row-gap: 8rem;
4129
4192
  }
4130
- .pkt-grid--gap-size-148-tablet-up {
4131
- gap: 9.25rem;
4132
- }
4133
- .pkt-grid--colgap-size-148-tablet-up {
4134
- column-gap: 9.25rem;
4135
- }
4136
- .pkt-grid--rowgap-size-148-tablet-up {
4137
- row-gap: 9.25rem;
4138
- }
4139
- .pkt-grid--gap-size-5-tablet-up {
4140
- gap: 0.3125rem;
4141
- }
4142
- .pkt-grid--colgap-size-5-tablet-up {
4143
- column-gap: 0.3125rem;
4144
- }
4145
- .pkt-grid--rowgap-size-5-tablet-up {
4146
- row-gap: 0.3125rem;
4147
- }
4148
4193
  .pkt-grid--gap-size-10-tablet-up {
4149
4194
  gap: 0.625rem;
4150
4195
  }
@@ -4154,20 +4199,11 @@
4154
4199
  .pkt-grid--rowgap-size-10-tablet-up {
4155
4200
  row-gap: 0.625rem;
4156
4201
  }
4157
- .pkt-grid--gap-size-15-tablet-up {
4158
- gap: 0.9375rem;
4202
+ .pkt-grid--gap-size-20-tablet-up {
4203
+ gap: 1.25rem;
4159
4204
  }
4160
- .pkt-grid--colgap-size-15-tablet-up {
4161
- column-gap: 0.9375rem;
4162
- }
4163
- .pkt-grid--rowgap-size-15-tablet-up {
4164
- row-gap: 0.9375rem;
4165
- }
4166
- .pkt-grid--gap-size-20-tablet-up {
4167
- gap: 1.25rem;
4168
- }
4169
- .pkt-grid--colgap-size-20-tablet-up {
4170
- column-gap: 1.25rem;
4205
+ .pkt-grid--colgap-size-20-tablet-up {
4206
+ column-gap: 1.25rem;
4171
4207
  }
4172
4208
  .pkt-grid--rowgap-size-20-tablet-up {
4173
4209
  row-gap: 1.25rem;
@@ -4181,15 +4217,6 @@
4181
4217
  .pkt-grid--rowgap-size-30-tablet-up {
4182
4218
  row-gap: 1.875rem;
4183
4219
  }
4184
- .pkt-grid--gap-size-50-tablet-up {
4185
- gap: 3.125rem;
4186
- }
4187
- .pkt-grid--colgap-size-50-tablet-up {
4188
- column-gap: 3.125rem;
4189
- }
4190
- .pkt-grid--rowgap-size-50-tablet-up {
4191
- row-gap: 3.125rem;
4192
- }
4193
4220
  .pkt-grid--gap-size-60-tablet-up {
4194
4221
  gap: 3.75rem;
4195
4222
  }
@@ -4199,6 +4226,33 @@
4199
4226
  .pkt-grid--rowgap-size-60-tablet-up {
4200
4227
  row-gap: 3.75rem;
4201
4228
  }
4229
+ .pkt-grid--gap-size-5-tablet-up {
4230
+ gap: 0.3125rem;
4231
+ }
4232
+ .pkt-grid--colgap-size-5-tablet-up {
4233
+ column-gap: 0.3125rem;
4234
+ }
4235
+ .pkt-grid--rowgap-size-5-tablet-up {
4236
+ row-gap: 0.3125rem;
4237
+ }
4238
+ .pkt-grid--gap-size-15-tablet-up {
4239
+ gap: 0.9375rem;
4240
+ }
4241
+ .pkt-grid--colgap-size-15-tablet-up {
4242
+ column-gap: 0.9375rem;
4243
+ }
4244
+ .pkt-grid--rowgap-size-15-tablet-up {
4245
+ row-gap: 0.9375rem;
4246
+ }
4247
+ .pkt-grid--gap-size-50-tablet-up {
4248
+ gap: 3.125rem;
4249
+ }
4250
+ .pkt-grid--colgap-size-50-tablet-up {
4251
+ column-gap: 3.125rem;
4252
+ }
4253
+ .pkt-grid--rowgap-size-50-tablet-up {
4254
+ row-gap: 3.125rem;
4255
+ }
4202
4256
  .pkt-grid--gap-size-75-tablet-up {
4203
4257
  gap: 4.6875rem;
4204
4258
  }
@@ -4372,6 +4426,15 @@
4372
4426
  .pkt-grid--rowgap-size-88-tablet-big-up {
4373
4427
  row-gap: 5.5rem;
4374
4428
  }
4429
+ .pkt-grid--gap-size-96-tablet-big-up {
4430
+ gap: 6rem;
4431
+ }
4432
+ .pkt-grid--colgap-size-96-tablet-big-up {
4433
+ column-gap: 6rem;
4434
+ }
4435
+ .pkt-grid--rowgap-size-96-tablet-big-up {
4436
+ row-gap: 6rem;
4437
+ }
4375
4438
  .pkt-grid--gap-size-104-tablet-big-up {
4376
4439
  gap: 6.5rem;
4377
4440
  }
@@ -4390,24 +4453,6 @@
4390
4453
  .pkt-grid--rowgap-size-128-tablet-big-up {
4391
4454
  row-gap: 8rem;
4392
4455
  }
4393
- .pkt-grid--gap-size-148-tablet-big-up {
4394
- gap: 9.25rem;
4395
- }
4396
- .pkt-grid--colgap-size-148-tablet-big-up {
4397
- column-gap: 9.25rem;
4398
- }
4399
- .pkt-grid--rowgap-size-148-tablet-big-up {
4400
- row-gap: 9.25rem;
4401
- }
4402
- .pkt-grid--gap-size-5-tablet-big-up {
4403
- gap: 0.3125rem;
4404
- }
4405
- .pkt-grid--colgap-size-5-tablet-big-up {
4406
- column-gap: 0.3125rem;
4407
- }
4408
- .pkt-grid--rowgap-size-5-tablet-big-up {
4409
- row-gap: 0.3125rem;
4410
- }
4411
4456
  .pkt-grid--gap-size-10-tablet-big-up {
4412
4457
  gap: 0.625rem;
4413
4458
  }
@@ -4417,15 +4462,6 @@
4417
4462
  .pkt-grid--rowgap-size-10-tablet-big-up {
4418
4463
  row-gap: 0.625rem;
4419
4464
  }
4420
- .pkt-grid--gap-size-15-tablet-big-up {
4421
- gap: 0.9375rem;
4422
- }
4423
- .pkt-grid--colgap-size-15-tablet-big-up {
4424
- column-gap: 0.9375rem;
4425
- }
4426
- .pkt-grid--rowgap-size-15-tablet-big-up {
4427
- row-gap: 0.9375rem;
4428
- }
4429
4465
  .pkt-grid--gap-size-20-tablet-big-up {
4430
4466
  gap: 1.25rem;
4431
4467
  }
@@ -4444,15 +4480,6 @@
4444
4480
  .pkt-grid--rowgap-size-30-tablet-big-up {
4445
4481
  row-gap: 1.875rem;
4446
4482
  }
4447
- .pkt-grid--gap-size-50-tablet-big-up {
4448
- gap: 3.125rem;
4449
- }
4450
- .pkt-grid--colgap-size-50-tablet-big-up {
4451
- column-gap: 3.125rem;
4452
- }
4453
- .pkt-grid--rowgap-size-50-tablet-big-up {
4454
- row-gap: 3.125rem;
4455
- }
4456
4483
  .pkt-grid--gap-size-60-tablet-big-up {
4457
4484
  gap: 3.75rem;
4458
4485
  }
@@ -4462,6 +4489,33 @@
4462
4489
  .pkt-grid--rowgap-size-60-tablet-big-up {
4463
4490
  row-gap: 3.75rem;
4464
4491
  }
4492
+ .pkt-grid--gap-size-5-tablet-big-up {
4493
+ gap: 0.3125rem;
4494
+ }
4495
+ .pkt-grid--colgap-size-5-tablet-big-up {
4496
+ column-gap: 0.3125rem;
4497
+ }
4498
+ .pkt-grid--rowgap-size-5-tablet-big-up {
4499
+ row-gap: 0.3125rem;
4500
+ }
4501
+ .pkt-grid--gap-size-15-tablet-big-up {
4502
+ gap: 0.9375rem;
4503
+ }
4504
+ .pkt-grid--colgap-size-15-tablet-big-up {
4505
+ column-gap: 0.9375rem;
4506
+ }
4507
+ .pkt-grid--rowgap-size-15-tablet-big-up {
4508
+ row-gap: 0.9375rem;
4509
+ }
4510
+ .pkt-grid--gap-size-50-tablet-big-up {
4511
+ gap: 3.125rem;
4512
+ }
4513
+ .pkt-grid--colgap-size-50-tablet-big-up {
4514
+ column-gap: 3.125rem;
4515
+ }
4516
+ .pkt-grid--rowgap-size-50-tablet-big-up {
4517
+ row-gap: 3.125rem;
4518
+ }
4465
4519
  .pkt-grid--gap-size-75-tablet-big-up {
4466
4520
  gap: 4.6875rem;
4467
4521
  }
@@ -4635,6 +4689,15 @@
4635
4689
  .pkt-grid--rowgap-size-88-laptop-up {
4636
4690
  row-gap: 5.5rem;
4637
4691
  }
4692
+ .pkt-grid--gap-size-96-laptop-up {
4693
+ gap: 6rem;
4694
+ }
4695
+ .pkt-grid--colgap-size-96-laptop-up {
4696
+ column-gap: 6rem;
4697
+ }
4698
+ .pkt-grid--rowgap-size-96-laptop-up {
4699
+ row-gap: 6rem;
4700
+ }
4638
4701
  .pkt-grid--gap-size-104-laptop-up {
4639
4702
  gap: 6.5rem;
4640
4703
  }
@@ -4653,24 +4716,6 @@
4653
4716
  .pkt-grid--rowgap-size-128-laptop-up {
4654
4717
  row-gap: 8rem;
4655
4718
  }
4656
- .pkt-grid--gap-size-148-laptop-up {
4657
- gap: 9.25rem;
4658
- }
4659
- .pkt-grid--colgap-size-148-laptop-up {
4660
- column-gap: 9.25rem;
4661
- }
4662
- .pkt-grid--rowgap-size-148-laptop-up {
4663
- row-gap: 9.25rem;
4664
- }
4665
- .pkt-grid--gap-size-5-laptop-up {
4666
- gap: 0.3125rem;
4667
- }
4668
- .pkt-grid--colgap-size-5-laptop-up {
4669
- column-gap: 0.3125rem;
4670
- }
4671
- .pkt-grid--rowgap-size-5-laptop-up {
4672
- row-gap: 0.3125rem;
4673
- }
4674
4719
  .pkt-grid--gap-size-10-laptop-up {
4675
4720
  gap: 0.625rem;
4676
4721
  }
@@ -4680,15 +4725,6 @@
4680
4725
  .pkt-grid--rowgap-size-10-laptop-up {
4681
4726
  row-gap: 0.625rem;
4682
4727
  }
4683
- .pkt-grid--gap-size-15-laptop-up {
4684
- gap: 0.9375rem;
4685
- }
4686
- .pkt-grid--colgap-size-15-laptop-up {
4687
- column-gap: 0.9375rem;
4688
- }
4689
- .pkt-grid--rowgap-size-15-laptop-up {
4690
- row-gap: 0.9375rem;
4691
- }
4692
4728
  .pkt-grid--gap-size-20-laptop-up {
4693
4729
  gap: 1.25rem;
4694
4730
  }
@@ -4707,15 +4743,6 @@
4707
4743
  .pkt-grid--rowgap-size-30-laptop-up {
4708
4744
  row-gap: 1.875rem;
4709
4745
  }
4710
- .pkt-grid--gap-size-50-laptop-up {
4711
- gap: 3.125rem;
4712
- }
4713
- .pkt-grid--colgap-size-50-laptop-up {
4714
- column-gap: 3.125rem;
4715
- }
4716
- .pkt-grid--rowgap-size-50-laptop-up {
4717
- row-gap: 3.125rem;
4718
- }
4719
4746
  .pkt-grid--gap-size-60-laptop-up {
4720
4747
  gap: 3.75rem;
4721
4748
  }
@@ -4725,6 +4752,33 @@
4725
4752
  .pkt-grid--rowgap-size-60-laptop-up {
4726
4753
  row-gap: 3.75rem;
4727
4754
  }
4755
+ .pkt-grid--gap-size-5-laptop-up {
4756
+ gap: 0.3125rem;
4757
+ }
4758
+ .pkt-grid--colgap-size-5-laptop-up {
4759
+ column-gap: 0.3125rem;
4760
+ }
4761
+ .pkt-grid--rowgap-size-5-laptop-up {
4762
+ row-gap: 0.3125rem;
4763
+ }
4764
+ .pkt-grid--gap-size-15-laptop-up {
4765
+ gap: 0.9375rem;
4766
+ }
4767
+ .pkt-grid--colgap-size-15-laptop-up {
4768
+ column-gap: 0.9375rem;
4769
+ }
4770
+ .pkt-grid--rowgap-size-15-laptop-up {
4771
+ row-gap: 0.9375rem;
4772
+ }
4773
+ .pkt-grid--gap-size-50-laptop-up {
4774
+ gap: 3.125rem;
4775
+ }
4776
+ .pkt-grid--colgap-size-50-laptop-up {
4777
+ column-gap: 3.125rem;
4778
+ }
4779
+ .pkt-grid--rowgap-size-50-laptop-up {
4780
+ row-gap: 3.125rem;
4781
+ }
4728
4782
  .pkt-grid--gap-size-75-laptop-up {
4729
4783
  gap: 4.6875rem;
4730
4784
  }
@@ -4898,6 +4952,15 @@
4898
4952
  .pkt-grid--rowgap-size-88-desktop-up {
4899
4953
  row-gap: 5.5rem;
4900
4954
  }
4955
+ .pkt-grid--gap-size-96-desktop-up {
4956
+ gap: 6rem;
4957
+ }
4958
+ .pkt-grid--colgap-size-96-desktop-up {
4959
+ column-gap: 6rem;
4960
+ }
4961
+ .pkt-grid--rowgap-size-96-desktop-up {
4962
+ row-gap: 6rem;
4963
+ }
4901
4964
  .pkt-grid--gap-size-104-desktop-up {
4902
4965
  gap: 6.5rem;
4903
4966
  }
@@ -4916,24 +4979,6 @@
4916
4979
  .pkt-grid--rowgap-size-128-desktop-up {
4917
4980
  row-gap: 8rem;
4918
4981
  }
4919
- .pkt-grid--gap-size-148-desktop-up {
4920
- gap: 9.25rem;
4921
- }
4922
- .pkt-grid--colgap-size-148-desktop-up {
4923
- column-gap: 9.25rem;
4924
- }
4925
- .pkt-grid--rowgap-size-148-desktop-up {
4926
- row-gap: 9.25rem;
4927
- }
4928
- .pkt-grid--gap-size-5-desktop-up {
4929
- gap: 0.3125rem;
4930
- }
4931
- .pkt-grid--colgap-size-5-desktop-up {
4932
- column-gap: 0.3125rem;
4933
- }
4934
- .pkt-grid--rowgap-size-5-desktop-up {
4935
- row-gap: 0.3125rem;
4936
- }
4937
4982
  .pkt-grid--gap-size-10-desktop-up {
4938
4983
  gap: 0.625rem;
4939
4984
  }
@@ -4943,15 +4988,6 @@
4943
4988
  .pkt-grid--rowgap-size-10-desktop-up {
4944
4989
  row-gap: 0.625rem;
4945
4990
  }
4946
- .pkt-grid--gap-size-15-desktop-up {
4947
- gap: 0.9375rem;
4948
- }
4949
- .pkt-grid--colgap-size-15-desktop-up {
4950
- column-gap: 0.9375rem;
4951
- }
4952
- .pkt-grid--rowgap-size-15-desktop-up {
4953
- row-gap: 0.9375rem;
4954
- }
4955
4991
  .pkt-grid--gap-size-20-desktop-up {
4956
4992
  gap: 1.25rem;
4957
4993
  }
@@ -4970,15 +5006,6 @@
4970
5006
  .pkt-grid--rowgap-size-30-desktop-up {
4971
5007
  row-gap: 1.875rem;
4972
5008
  }
4973
- .pkt-grid--gap-size-50-desktop-up {
4974
- gap: 3.125rem;
4975
- }
4976
- .pkt-grid--colgap-size-50-desktop-up {
4977
- column-gap: 3.125rem;
4978
- }
4979
- .pkt-grid--rowgap-size-50-desktop-up {
4980
- row-gap: 3.125rem;
4981
- }
4982
5009
  .pkt-grid--gap-size-60-desktop-up {
4983
5010
  gap: 3.75rem;
4984
5011
  }
@@ -4988,6 +5015,33 @@
4988
5015
  .pkt-grid--rowgap-size-60-desktop-up {
4989
5016
  row-gap: 3.75rem;
4990
5017
  }
5018
+ .pkt-grid--gap-size-5-desktop-up {
5019
+ gap: 0.3125rem;
5020
+ }
5021
+ .pkt-grid--colgap-size-5-desktop-up {
5022
+ column-gap: 0.3125rem;
5023
+ }
5024
+ .pkt-grid--rowgap-size-5-desktop-up {
5025
+ row-gap: 0.3125rem;
5026
+ }
5027
+ .pkt-grid--gap-size-15-desktop-up {
5028
+ gap: 0.9375rem;
5029
+ }
5030
+ .pkt-grid--colgap-size-15-desktop-up {
5031
+ column-gap: 0.9375rem;
5032
+ }
5033
+ .pkt-grid--rowgap-size-15-desktop-up {
5034
+ row-gap: 0.9375rem;
5035
+ }
5036
+ .pkt-grid--gap-size-50-desktop-up {
5037
+ gap: 3.125rem;
5038
+ }
5039
+ .pkt-grid--colgap-size-50-desktop-up {
5040
+ column-gap: 3.125rem;
5041
+ }
5042
+ .pkt-grid--rowgap-size-50-desktop-up {
5043
+ row-gap: 3.125rem;
5044
+ }
4991
5045
  .pkt-grid--gap-size-75-desktop-up {
4992
5046
  gap: 4.6875rem;
4993
5047
  }
@@ -5007,57 +5061,6 @@
5007
5061
  row-gap: 6.25rem;
5008
5062
  }
5009
5063
  }
5010
- .pkt-grid > .pkt-cell--left, .pkt-grid > * > .pkt-cell--left {
5011
- justify-self: start;
5012
- }
5013
- .pkt-grid > .pkt-cell--center, .pkt-grid > * > .pkt-cell--center {
5014
- justify-self: center;
5015
- }
5016
- .pkt-grid > .pkt-cell--right, .pkt-grid > * > .pkt-cell--right {
5017
- justify-self: end;
5018
- }
5019
- .pkt-grid > .pkt-cell--top, .pkt-grid > * > .pkt-cell--top {
5020
- align-self: self-start;
5021
- }
5022
- .pkt-grid > .pkt-cell--center-vertical, .pkt-grid > * > .pkt-cell--center-vertical {
5023
- align-self: center;
5024
- }
5025
- .pkt-grid > .pkt-cell--bottom, .pkt-grid > * > .pkt-cell--bottom {
5026
- align-self: self-end;
5027
- }
5028
- .pkt-grid > .pkt-cell.pkt-cell--span2, .pkt-grid > * > .pkt-cell.pkt-cell--span2 {
5029
- grid-column-end: span 2;
5030
- }
5031
- .pkt-grid > .pkt-cell.pkt-cell--span3, .pkt-grid > * > .pkt-cell.pkt-cell--span3 {
5032
- grid-column-end: span 3;
5033
- }
5034
- .pkt-grid > .pkt-cell.pkt-cell--span4, .pkt-grid > * > .pkt-cell.pkt-cell--span4 {
5035
- grid-column-end: span 4;
5036
- }
5037
- .pkt-grid > .pkt-cell.pkt-cell--span5, .pkt-grid > * > .pkt-cell.pkt-cell--span5 {
5038
- grid-column-end: span 5;
5039
- }
5040
- .pkt-grid > .pkt-cell.pkt-cell--span6, .pkt-grid > * > .pkt-cell.pkt-cell--span6 {
5041
- grid-column-end: span 6;
5042
- }
5043
- .pkt-grid > .pkt-cell.pkt-cell--span7, .pkt-grid > * > .pkt-cell.pkt-cell--span7 {
5044
- grid-column-end: span 7;
5045
- }
5046
- .pkt-grid > .pkt-cell.pkt-cell--span8, .pkt-grid > * > .pkt-cell.pkt-cell--span8 {
5047
- grid-column-end: span 8;
5048
- }
5049
- .pkt-grid > .pkt-cell.pkt-cell--span9, .pkt-grid > * > .pkt-cell.pkt-cell--span9 {
5050
- grid-column-end: span 9;
5051
- }
5052
- .pkt-grid > .pkt-cell.pkt-cell--span10, .pkt-grid > * > .pkt-cell.pkt-cell--span10 {
5053
- grid-column-end: span 10;
5054
- }
5055
- .pkt-grid > .pkt-cell.pkt-cell--span11, .pkt-grid > * > .pkt-cell.pkt-cell--span11 {
5056
- grid-column-end: span 11;
5057
- }
5058
- .pkt-grid > .pkt-cell.pkt-cell--span12, .pkt-grid > * > .pkt-cell.pkt-cell--span12 {
5059
- grid-column-end: span 12;
5060
- }
5061
5064
  @media screen {
5062
5065
  .pkt-grid > .pkt-cell.pkt-cell--span2-mobile-up, .pkt-grid > * > .pkt-cell.pkt-cell--span2-mobile-up {
5063
5066
  grid-column-end: span 2;
@@ -7257,6 +7260,51 @@
7257
7260
  .gap-size-88 {
7258
7261
  gap: 5.5rem !important;
7259
7262
  }
7263
+ .m-size-96 {
7264
+ margin: 6rem !important;
7265
+ }
7266
+ .mt-size-96 {
7267
+ margin-block-start: 6rem !important;
7268
+ }
7269
+ .mr-size-96 {
7270
+ margin-inline-end: 6rem !important;
7271
+ }
7272
+ .mb-size-96 {
7273
+ margin-block-end: 6rem !important;
7274
+ }
7275
+ .ml-size-96 {
7276
+ margin-inline-start: 6rem !important;
7277
+ }
7278
+ .mx-size-96 {
7279
+ margin-inline: 6rem !important;
7280
+ }
7281
+ .my-size-96 {
7282
+ margin-block: 6rem !important;
7283
+ }
7284
+ .p-size-96 {
7285
+ padding: 6rem !important;
7286
+ }
7287
+ .pt-size-96 {
7288
+ padding-block-start: 6rem !important;
7289
+ }
7290
+ .pr-size-96 {
7291
+ padding-inline-end: 6rem !important;
7292
+ }
7293
+ .pb-size-96 {
7294
+ padding-block-end: 6rem !important;
7295
+ }
7296
+ .pl-size-96 {
7297
+ padding-inline-start: 6rem !important;
7298
+ }
7299
+ .px-size-96 {
7300
+ padding-inline: 6rem !important;
7301
+ }
7302
+ .py-size-96 {
7303
+ padding-block: 6rem !important;
7304
+ }
7305
+ .gap-size-96 {
7306
+ gap: 6rem !important;
7307
+ }
7260
7308
  .m-size-104 {
7261
7309
  margin: 6.5rem !important;
7262
7310
  }
@@ -7347,96 +7395,6 @@
7347
7395
  .gap-size-128 {
7348
7396
  gap: 8rem !important;
7349
7397
  }
7350
- .m-size-148 {
7351
- margin: 9.25rem !important;
7352
- }
7353
- .mt-size-148 {
7354
- margin-block-start: 9.25rem !important;
7355
- }
7356
- .mr-size-148 {
7357
- margin-inline-end: 9.25rem !important;
7358
- }
7359
- .mb-size-148 {
7360
- margin-block-end: 9.25rem !important;
7361
- }
7362
- .ml-size-148 {
7363
- margin-inline-start: 9.25rem !important;
7364
- }
7365
- .mx-size-148 {
7366
- margin-inline: 9.25rem !important;
7367
- }
7368
- .my-size-148 {
7369
- margin-block: 9.25rem !important;
7370
- }
7371
- .p-size-148 {
7372
- padding: 9.25rem !important;
7373
- }
7374
- .pt-size-148 {
7375
- padding-block-start: 9.25rem !important;
7376
- }
7377
- .pr-size-148 {
7378
- padding-inline-end: 9.25rem !important;
7379
- }
7380
- .pb-size-148 {
7381
- padding-block-end: 9.25rem !important;
7382
- }
7383
- .pl-size-148 {
7384
- padding-inline-start: 9.25rem !important;
7385
- }
7386
- .px-size-148 {
7387
- padding-inline: 9.25rem !important;
7388
- }
7389
- .py-size-148 {
7390
- padding-block: 9.25rem !important;
7391
- }
7392
- .gap-size-148 {
7393
- gap: 9.25rem !important;
7394
- }
7395
- .m-size-5 {
7396
- margin: 0.3125rem !important;
7397
- }
7398
- .mt-size-5 {
7399
- margin-block-start: 0.3125rem !important;
7400
- }
7401
- .mr-size-5 {
7402
- margin-inline-end: 0.3125rem !important;
7403
- }
7404
- .mb-size-5 {
7405
- margin-block-end: 0.3125rem !important;
7406
- }
7407
- .ml-size-5 {
7408
- margin-inline-start: 0.3125rem !important;
7409
- }
7410
- .mx-size-5 {
7411
- margin-inline: 0.3125rem !important;
7412
- }
7413
- .my-size-5 {
7414
- margin-block: 0.3125rem !important;
7415
- }
7416
- .p-size-5 {
7417
- padding: 0.3125rem !important;
7418
- }
7419
- .pt-size-5 {
7420
- padding-block-start: 0.3125rem !important;
7421
- }
7422
- .pr-size-5 {
7423
- padding-inline-end: 0.3125rem !important;
7424
- }
7425
- .pb-size-5 {
7426
- padding-block-end: 0.3125rem !important;
7427
- }
7428
- .pl-size-5 {
7429
- padding-inline-start: 0.3125rem !important;
7430
- }
7431
- .px-size-5 {
7432
- padding-inline: 0.3125rem !important;
7433
- }
7434
- .py-size-5 {
7435
- padding-block: 0.3125rem !important;
7436
- }
7437
- .gap-size-5 {
7438
- gap: 0.3125rem !important;
7439
- }
7440
7398
  .m-size-10 {
7441
7399
  margin: 0.625rem !important;
7442
7400
  }
@@ -7482,51 +7440,6 @@
7482
7440
  .gap-size-10 {
7483
7441
  gap: 0.625rem !important;
7484
7442
  }
7485
- .m-size-15 {
7486
- margin: 0.9375rem !important;
7487
- }
7488
- .mt-size-15 {
7489
- margin-block-start: 0.9375rem !important;
7490
- }
7491
- .mr-size-15 {
7492
- margin-inline-end: 0.9375rem !important;
7493
- }
7494
- .mb-size-15 {
7495
- margin-block-end: 0.9375rem !important;
7496
- }
7497
- .ml-size-15 {
7498
- margin-inline-start: 0.9375rem !important;
7499
- }
7500
- .mx-size-15 {
7501
- margin-inline: 0.9375rem !important;
7502
- }
7503
- .my-size-15 {
7504
- margin-block: 0.9375rem !important;
7505
- }
7506
- .p-size-15 {
7507
- padding: 0.9375rem !important;
7508
- }
7509
- .pt-size-15 {
7510
- padding-block-start: 0.9375rem !important;
7511
- }
7512
- .pr-size-15 {
7513
- padding-inline-end: 0.9375rem !important;
7514
- }
7515
- .pb-size-15 {
7516
- padding-block-end: 0.9375rem !important;
7517
- }
7518
- .pl-size-15 {
7519
- padding-inline-start: 0.9375rem !important;
7520
- }
7521
- .px-size-15 {
7522
- padding-inline: 0.9375rem !important;
7523
- }
7524
- .py-size-15 {
7525
- padding-block: 0.9375rem !important;
7526
- }
7527
- .gap-size-15 {
7528
- gap: 0.9375rem !important;
7529
- }
7530
7443
  .m-size-20 {
7531
7444
  margin: 1.25rem !important;
7532
7445
  }
@@ -7617,51 +7530,6 @@
7617
7530
  .gap-size-30 {
7618
7531
  gap: 1.875rem !important;
7619
7532
  }
7620
- .m-size-50 {
7621
- margin: 3.125rem !important;
7622
- }
7623
- .mt-size-50 {
7624
- margin-block-start: 3.125rem !important;
7625
- }
7626
- .mr-size-50 {
7627
- margin-inline-end: 3.125rem !important;
7628
- }
7629
- .mb-size-50 {
7630
- margin-block-end: 3.125rem !important;
7631
- }
7632
- .ml-size-50 {
7633
- margin-inline-start: 3.125rem !important;
7634
- }
7635
- .mx-size-50 {
7636
- margin-inline: 3.125rem !important;
7637
- }
7638
- .my-size-50 {
7639
- margin-block: 3.125rem !important;
7640
- }
7641
- .p-size-50 {
7642
- padding: 3.125rem !important;
7643
- }
7644
- .pt-size-50 {
7645
- padding-block-start: 3.125rem !important;
7646
- }
7647
- .pr-size-50 {
7648
- padding-inline-end: 3.125rem !important;
7649
- }
7650
- .pb-size-50 {
7651
- padding-block-end: 3.125rem !important;
7652
- }
7653
- .pl-size-50 {
7654
- padding-inline-start: 3.125rem !important;
7655
- }
7656
- .px-size-50 {
7657
- padding-inline: 3.125rem !important;
7658
- }
7659
- .py-size-50 {
7660
- padding-block: 3.125rem !important;
7661
- }
7662
- .gap-size-50 {
7663
- gap: 3.125rem !important;
7664
- }
7665
7533
  .m-size-60 {
7666
7534
  margin: 3.75rem !important;
7667
7535
  }
@@ -7707,59 +7575,194 @@
7707
7575
  .gap-size-60 {
7708
7576
  gap: 3.75rem !important;
7709
7577
  }
7710
- .m-size-75 {
7711
- margin: 4.6875rem !important;
7712
- }
7713
- .mt-size-75 {
7714
- margin-block-start: 4.6875rem !important;
7578
+ .m-size-5 {
7579
+ margin: 0.3125rem !important;
7715
7580
  }
7716
- .mr-size-75 {
7717
- margin-inline-end: 4.6875rem !important;
7581
+ .mt-size-5 {
7582
+ margin-block-start: 0.3125rem !important;
7718
7583
  }
7719
- .mb-size-75 {
7720
- margin-block-end: 4.6875rem !important;
7584
+ .mr-size-5 {
7585
+ margin-inline-end: 0.3125rem !important;
7721
7586
  }
7722
- .ml-size-75 {
7723
- margin-inline-start: 4.6875rem !important;
7587
+ .mb-size-5 {
7588
+ margin-block-end: 0.3125rem !important;
7724
7589
  }
7725
- .mx-size-75 {
7726
- margin-inline: 4.6875rem !important;
7590
+ .ml-size-5 {
7591
+ margin-inline-start: 0.3125rem !important;
7727
7592
  }
7728
- .my-size-75 {
7729
- margin-block: 4.6875rem !important;
7593
+ .mx-size-5 {
7594
+ margin-inline: 0.3125rem !important;
7730
7595
  }
7731
- .p-size-75 {
7732
- padding: 4.6875rem !important;
7596
+ .my-size-5 {
7597
+ margin-block: 0.3125rem !important;
7733
7598
  }
7734
- .pt-size-75 {
7735
- padding-block-start: 4.6875rem !important;
7599
+ .p-size-5 {
7600
+ padding: 0.3125rem !important;
7736
7601
  }
7737
- .pr-size-75 {
7738
- padding-inline-end: 4.6875rem !important;
7602
+ .pt-size-5 {
7603
+ padding-block-start: 0.3125rem !important;
7739
7604
  }
7740
- .pb-size-75 {
7741
- padding-block-end: 4.6875rem !important;
7605
+ .pr-size-5 {
7606
+ padding-inline-end: 0.3125rem !important;
7742
7607
  }
7743
- .pl-size-75 {
7744
- padding-inline-start: 4.6875rem !important;
7608
+ .pb-size-5 {
7609
+ padding-block-end: 0.3125rem !important;
7745
7610
  }
7746
- .px-size-75 {
7747
- padding-inline: 4.6875rem !important;
7611
+ .pl-size-5 {
7612
+ padding-inline-start: 0.3125rem !important;
7748
7613
  }
7749
- .py-size-75 {
7750
- padding-block: 4.6875rem !important;
7614
+ .px-size-5 {
7615
+ padding-inline: 0.3125rem !important;
7751
7616
  }
7752
- .gap-size-75 {
7753
- gap: 4.6875rem !important;
7617
+ .py-size-5 {
7618
+ padding-block: 0.3125rem !important;
7754
7619
  }
7755
- .m-size-100 {
7756
- margin: 6.25rem !important;
7620
+ .gap-size-5 {
7621
+ gap: 0.3125rem !important;
7757
7622
  }
7758
- .mt-size-100 {
7759
- margin-block-start: 6.25rem !important;
7623
+ .m-size-15 {
7624
+ margin: 0.9375rem !important;
7760
7625
  }
7761
- .mr-size-100 {
7762
- margin-inline-end: 6.25rem !important;
7626
+ .mt-size-15 {
7627
+ margin-block-start: 0.9375rem !important;
7628
+ }
7629
+ .mr-size-15 {
7630
+ margin-inline-end: 0.9375rem !important;
7631
+ }
7632
+ .mb-size-15 {
7633
+ margin-block-end: 0.9375rem !important;
7634
+ }
7635
+ .ml-size-15 {
7636
+ margin-inline-start: 0.9375rem !important;
7637
+ }
7638
+ .mx-size-15 {
7639
+ margin-inline: 0.9375rem !important;
7640
+ }
7641
+ .my-size-15 {
7642
+ margin-block: 0.9375rem !important;
7643
+ }
7644
+ .p-size-15 {
7645
+ padding: 0.9375rem !important;
7646
+ }
7647
+ .pt-size-15 {
7648
+ padding-block-start: 0.9375rem !important;
7649
+ }
7650
+ .pr-size-15 {
7651
+ padding-inline-end: 0.9375rem !important;
7652
+ }
7653
+ .pb-size-15 {
7654
+ padding-block-end: 0.9375rem !important;
7655
+ }
7656
+ .pl-size-15 {
7657
+ padding-inline-start: 0.9375rem !important;
7658
+ }
7659
+ .px-size-15 {
7660
+ padding-inline: 0.9375rem !important;
7661
+ }
7662
+ .py-size-15 {
7663
+ padding-block: 0.9375rem !important;
7664
+ }
7665
+ .gap-size-15 {
7666
+ gap: 0.9375rem !important;
7667
+ }
7668
+ .m-size-50 {
7669
+ margin: 3.125rem !important;
7670
+ }
7671
+ .mt-size-50 {
7672
+ margin-block-start: 3.125rem !important;
7673
+ }
7674
+ .mr-size-50 {
7675
+ margin-inline-end: 3.125rem !important;
7676
+ }
7677
+ .mb-size-50 {
7678
+ margin-block-end: 3.125rem !important;
7679
+ }
7680
+ .ml-size-50 {
7681
+ margin-inline-start: 3.125rem !important;
7682
+ }
7683
+ .mx-size-50 {
7684
+ margin-inline: 3.125rem !important;
7685
+ }
7686
+ .my-size-50 {
7687
+ margin-block: 3.125rem !important;
7688
+ }
7689
+ .p-size-50 {
7690
+ padding: 3.125rem !important;
7691
+ }
7692
+ .pt-size-50 {
7693
+ padding-block-start: 3.125rem !important;
7694
+ }
7695
+ .pr-size-50 {
7696
+ padding-inline-end: 3.125rem !important;
7697
+ }
7698
+ .pb-size-50 {
7699
+ padding-block-end: 3.125rem !important;
7700
+ }
7701
+ .pl-size-50 {
7702
+ padding-inline-start: 3.125rem !important;
7703
+ }
7704
+ .px-size-50 {
7705
+ padding-inline: 3.125rem !important;
7706
+ }
7707
+ .py-size-50 {
7708
+ padding-block: 3.125rem !important;
7709
+ }
7710
+ .gap-size-50 {
7711
+ gap: 3.125rem !important;
7712
+ }
7713
+ .m-size-75 {
7714
+ margin: 4.6875rem !important;
7715
+ }
7716
+ .mt-size-75 {
7717
+ margin-block-start: 4.6875rem !important;
7718
+ }
7719
+ .mr-size-75 {
7720
+ margin-inline-end: 4.6875rem !important;
7721
+ }
7722
+ .mb-size-75 {
7723
+ margin-block-end: 4.6875rem !important;
7724
+ }
7725
+ .ml-size-75 {
7726
+ margin-inline-start: 4.6875rem !important;
7727
+ }
7728
+ .mx-size-75 {
7729
+ margin-inline: 4.6875rem !important;
7730
+ }
7731
+ .my-size-75 {
7732
+ margin-block: 4.6875rem !important;
7733
+ }
7734
+ .p-size-75 {
7735
+ padding: 4.6875rem !important;
7736
+ }
7737
+ .pt-size-75 {
7738
+ padding-block-start: 4.6875rem !important;
7739
+ }
7740
+ .pr-size-75 {
7741
+ padding-inline-end: 4.6875rem !important;
7742
+ }
7743
+ .pb-size-75 {
7744
+ padding-block-end: 4.6875rem !important;
7745
+ }
7746
+ .pl-size-75 {
7747
+ padding-inline-start: 4.6875rem !important;
7748
+ }
7749
+ .px-size-75 {
7750
+ padding-inline: 4.6875rem !important;
7751
+ }
7752
+ .py-size-75 {
7753
+ padding-block: 4.6875rem !important;
7754
+ }
7755
+ .gap-size-75 {
7756
+ gap: 4.6875rem !important;
7757
+ }
7758
+ .m-size-100 {
7759
+ margin: 6.25rem !important;
7760
+ }
7761
+ .mt-size-100 {
7762
+ margin-block-start: 6.25rem !important;
7763
+ }
7764
+ .mr-size-100 {
7765
+ margin-inline-end: 6.25rem !important;
7763
7766
  }
7764
7767
  .mb-size-100 {
7765
7768
  margin-block-end: 6.25rem !important;
@@ -7797,6 +7800,9 @@
7797
7800
  .gap-size-100 {
7798
7801
  gap: 6.25rem !important;
7799
7802
  }
7803
+ /*
7804
+ * Responsiv spacing
7805
+ */
7800
7806
  @media screen {
7801
7807
  .m-size-0--mobile-up {
7802
7808
  margin: 0rem !important;
@@ -8563,6 +8569,51 @@
8563
8569
  .gap-size-88--mobile-up {
8564
8570
  gap: 5.5rem !important;
8565
8571
  }
8572
+ .m-size-96--mobile-up {
8573
+ margin: 6rem !important;
8574
+ }
8575
+ .mt-size-96--mobile-up {
8576
+ margin-block-start: 6rem !important;
8577
+ }
8578
+ .mr-size-96--mobile-up {
8579
+ margin-inline-end: 6rem !important;
8580
+ }
8581
+ .mb-size-96--mobile-up {
8582
+ margin-block-end: 6rem !important;
8583
+ }
8584
+ .ml-size-96--mobile-up {
8585
+ margin-inline-start: 6rem !important;
8586
+ }
8587
+ .mx-size-96--mobile-up {
8588
+ margin-inline: 6rem !important;
8589
+ }
8590
+ .my-size-96--mobile-up {
8591
+ margin-block: 6rem !important;
8592
+ }
8593
+ .p-size-96--mobile-up {
8594
+ padding: 6rem !important;
8595
+ }
8596
+ .pt-size-96--mobile-up {
8597
+ padding-block-start: 6rem !important;
8598
+ }
8599
+ .pr-size-96--mobile-up {
8600
+ padding-inline-end: 6rem !important;
8601
+ }
8602
+ .pb-size-96--mobile-up {
8603
+ padding-block-end: 6rem !important;
8604
+ }
8605
+ .pl-size-96--mobile-up {
8606
+ padding-inline-start: 6rem !important;
8607
+ }
8608
+ .px-size-96--mobile-up {
8609
+ padding-inline: 6rem !important;
8610
+ }
8611
+ .py-size-96--mobile-up {
8612
+ padding-block: 6rem !important;
8613
+ }
8614
+ .gap-size-96--mobile-up {
8615
+ gap: 6rem !important;
8616
+ }
8566
8617
  .m-size-104--mobile-up {
8567
8618
  margin: 6.5rem !important;
8568
8619
  }
@@ -8653,96 +8704,6 @@
8653
8704
  .gap-size-128--mobile-up {
8654
8705
  gap: 8rem !important;
8655
8706
  }
8656
- .m-size-148--mobile-up {
8657
- margin: 9.25rem !important;
8658
- }
8659
- .mt-size-148--mobile-up {
8660
- margin-block-start: 9.25rem !important;
8661
- }
8662
- .mr-size-148--mobile-up {
8663
- margin-inline-end: 9.25rem !important;
8664
- }
8665
- .mb-size-148--mobile-up {
8666
- margin-block-end: 9.25rem !important;
8667
- }
8668
- .ml-size-148--mobile-up {
8669
- margin-inline-start: 9.25rem !important;
8670
- }
8671
- .mx-size-148--mobile-up {
8672
- margin-inline: 9.25rem !important;
8673
- }
8674
- .my-size-148--mobile-up {
8675
- margin-block: 9.25rem !important;
8676
- }
8677
- .p-size-148--mobile-up {
8678
- padding: 9.25rem !important;
8679
- }
8680
- .pt-size-148--mobile-up {
8681
- padding-block-start: 9.25rem !important;
8682
- }
8683
- .pr-size-148--mobile-up {
8684
- padding-inline-end: 9.25rem !important;
8685
- }
8686
- .pb-size-148--mobile-up {
8687
- padding-block-end: 9.25rem !important;
8688
- }
8689
- .pl-size-148--mobile-up {
8690
- padding-inline-start: 9.25rem !important;
8691
- }
8692
- .px-size-148--mobile-up {
8693
- padding-inline: 9.25rem !important;
8694
- }
8695
- .py-size-148--mobile-up {
8696
- padding-block: 9.25rem !important;
8697
- }
8698
- .gap-size-148--mobile-up {
8699
- gap: 9.25rem !important;
8700
- }
8701
- .m-size-5--mobile-up {
8702
- margin: 0.3125rem !important;
8703
- }
8704
- .mt-size-5--mobile-up {
8705
- margin-block-start: 0.3125rem !important;
8706
- }
8707
- .mr-size-5--mobile-up {
8708
- margin-inline-end: 0.3125rem !important;
8709
- }
8710
- .mb-size-5--mobile-up {
8711
- margin-block-end: 0.3125rem !important;
8712
- }
8713
- .ml-size-5--mobile-up {
8714
- margin-inline-start: 0.3125rem !important;
8715
- }
8716
- .mx-size-5--mobile-up {
8717
- margin-inline: 0.3125rem !important;
8718
- }
8719
- .my-size-5--mobile-up {
8720
- margin-block: 0.3125rem !important;
8721
- }
8722
- .p-size-5--mobile-up {
8723
- padding: 0.3125rem !important;
8724
- }
8725
- .pt-size-5--mobile-up {
8726
- padding-block-start: 0.3125rem !important;
8727
- }
8728
- .pr-size-5--mobile-up {
8729
- padding-inline-end: 0.3125rem !important;
8730
- }
8731
- .pb-size-5--mobile-up {
8732
- padding-block-end: 0.3125rem !important;
8733
- }
8734
- .pl-size-5--mobile-up {
8735
- padding-inline-start: 0.3125rem !important;
8736
- }
8737
- .px-size-5--mobile-up {
8738
- padding-inline: 0.3125rem !important;
8739
- }
8740
- .py-size-5--mobile-up {
8741
- padding-block: 0.3125rem !important;
8742
- }
8743
- .gap-size-5--mobile-up {
8744
- gap: 0.3125rem !important;
8745
- }
8746
8707
  .m-size-10--mobile-up {
8747
8708
  margin: 0.625rem !important;
8748
8709
  }
@@ -8788,80 +8749,35 @@
8788
8749
  .gap-size-10--mobile-up {
8789
8750
  gap: 0.625rem !important;
8790
8751
  }
8791
- .m-size-15--mobile-up {
8792
- margin: 0.9375rem !important;
8752
+ .m-size-20--mobile-up {
8753
+ margin: 1.25rem !important;
8793
8754
  }
8794
- .mt-size-15--mobile-up {
8795
- margin-block-start: 0.9375rem !important;
8755
+ .mt-size-20--mobile-up {
8756
+ margin-block-start: 1.25rem !important;
8796
8757
  }
8797
- .mr-size-15--mobile-up {
8798
- margin-inline-end: 0.9375rem !important;
8758
+ .mr-size-20--mobile-up {
8759
+ margin-inline-end: 1.25rem !important;
8799
8760
  }
8800
- .mb-size-15--mobile-up {
8801
- margin-block-end: 0.9375rem !important;
8761
+ .mb-size-20--mobile-up {
8762
+ margin-block-end: 1.25rem !important;
8802
8763
  }
8803
- .ml-size-15--mobile-up {
8804
- margin-inline-start: 0.9375rem !important;
8764
+ .ml-size-20--mobile-up {
8765
+ margin-inline-start: 1.25rem !important;
8805
8766
  }
8806
- .mx-size-15--mobile-up {
8807
- margin-inline: 0.9375rem !important;
8767
+ .mx-size-20--mobile-up {
8768
+ margin-inline: 1.25rem !important;
8808
8769
  }
8809
- .my-size-15--mobile-up {
8810
- margin-block: 0.9375rem !important;
8770
+ .my-size-20--mobile-up {
8771
+ margin-block: 1.25rem !important;
8811
8772
  }
8812
- .p-size-15--mobile-up {
8813
- padding: 0.9375rem !important;
8773
+ .p-size-20--mobile-up {
8774
+ padding: 1.25rem !important;
8814
8775
  }
8815
- .pt-size-15--mobile-up {
8816
- padding-block-start: 0.9375rem !important;
8776
+ .pt-size-20--mobile-up {
8777
+ padding-block-start: 1.25rem !important;
8817
8778
  }
8818
- .pr-size-15--mobile-up {
8819
- padding-inline-end: 0.9375rem !important;
8820
- }
8821
- .pb-size-15--mobile-up {
8822
- padding-block-end: 0.9375rem !important;
8823
- }
8824
- .pl-size-15--mobile-up {
8825
- padding-inline-start: 0.9375rem !important;
8826
- }
8827
- .px-size-15--mobile-up {
8828
- padding-inline: 0.9375rem !important;
8829
- }
8830
- .py-size-15--mobile-up {
8831
- padding-block: 0.9375rem !important;
8832
- }
8833
- .gap-size-15--mobile-up {
8834
- gap: 0.9375rem !important;
8835
- }
8836
- .m-size-20--mobile-up {
8837
- margin: 1.25rem !important;
8838
- }
8839
- .mt-size-20--mobile-up {
8840
- margin-block-start: 1.25rem !important;
8841
- }
8842
- .mr-size-20--mobile-up {
8843
- margin-inline-end: 1.25rem !important;
8844
- }
8845
- .mb-size-20--mobile-up {
8846
- margin-block-end: 1.25rem !important;
8847
- }
8848
- .ml-size-20--mobile-up {
8849
- margin-inline-start: 1.25rem !important;
8850
- }
8851
- .mx-size-20--mobile-up {
8852
- margin-inline: 1.25rem !important;
8853
- }
8854
- .my-size-20--mobile-up {
8855
- margin-block: 1.25rem !important;
8856
- }
8857
- .p-size-20--mobile-up {
8858
- padding: 1.25rem !important;
8859
- }
8860
- .pt-size-20--mobile-up {
8861
- padding-block-start: 1.25rem !important;
8862
- }
8863
- .pr-size-20--mobile-up {
8864
- padding-inline-end: 1.25rem !important;
8779
+ .pr-size-20--mobile-up {
8780
+ padding-inline-end: 1.25rem !important;
8865
8781
  }
8866
8782
  .pb-size-20--mobile-up {
8867
8783
  padding-block-end: 1.25rem !important;
@@ -8923,51 +8839,6 @@
8923
8839
  .gap-size-30--mobile-up {
8924
8840
  gap: 1.875rem !important;
8925
8841
  }
8926
- .m-size-50--mobile-up {
8927
- margin: 3.125rem !important;
8928
- }
8929
- .mt-size-50--mobile-up {
8930
- margin-block-start: 3.125rem !important;
8931
- }
8932
- .mr-size-50--mobile-up {
8933
- margin-inline-end: 3.125rem !important;
8934
- }
8935
- .mb-size-50--mobile-up {
8936
- margin-block-end: 3.125rem !important;
8937
- }
8938
- .ml-size-50--mobile-up {
8939
- margin-inline-start: 3.125rem !important;
8940
- }
8941
- .mx-size-50--mobile-up {
8942
- margin-inline: 3.125rem !important;
8943
- }
8944
- .my-size-50--mobile-up {
8945
- margin-block: 3.125rem !important;
8946
- }
8947
- .p-size-50--mobile-up {
8948
- padding: 3.125rem !important;
8949
- }
8950
- .pt-size-50--mobile-up {
8951
- padding-block-start: 3.125rem !important;
8952
- }
8953
- .pr-size-50--mobile-up {
8954
- padding-inline-end: 3.125rem !important;
8955
- }
8956
- .pb-size-50--mobile-up {
8957
- padding-block-end: 3.125rem !important;
8958
- }
8959
- .pl-size-50--mobile-up {
8960
- padding-inline-start: 3.125rem !important;
8961
- }
8962
- .px-size-50--mobile-up {
8963
- padding-inline: 3.125rem !important;
8964
- }
8965
- .py-size-50--mobile-up {
8966
- padding-block: 3.125rem !important;
8967
- }
8968
- .gap-size-50--mobile-up {
8969
- gap: 3.125rem !important;
8970
- }
8971
8842
  .m-size-60--mobile-up {
8972
8843
  margin: 3.75rem !important;
8973
8844
  }
@@ -9013,6 +8884,141 @@
9013
8884
  .gap-size-60--mobile-up {
9014
8885
  gap: 3.75rem !important;
9015
8886
  }
8887
+ .m-size-5--mobile-up {
8888
+ margin: 0.3125rem !important;
8889
+ }
8890
+ .mt-size-5--mobile-up {
8891
+ margin-block-start: 0.3125rem !important;
8892
+ }
8893
+ .mr-size-5--mobile-up {
8894
+ margin-inline-end: 0.3125rem !important;
8895
+ }
8896
+ .mb-size-5--mobile-up {
8897
+ margin-block-end: 0.3125rem !important;
8898
+ }
8899
+ .ml-size-5--mobile-up {
8900
+ margin-inline-start: 0.3125rem !important;
8901
+ }
8902
+ .mx-size-5--mobile-up {
8903
+ margin-inline: 0.3125rem !important;
8904
+ }
8905
+ .my-size-5--mobile-up {
8906
+ margin-block: 0.3125rem !important;
8907
+ }
8908
+ .p-size-5--mobile-up {
8909
+ padding: 0.3125rem !important;
8910
+ }
8911
+ .pt-size-5--mobile-up {
8912
+ padding-block-start: 0.3125rem !important;
8913
+ }
8914
+ .pr-size-5--mobile-up {
8915
+ padding-inline-end: 0.3125rem !important;
8916
+ }
8917
+ .pb-size-5--mobile-up {
8918
+ padding-block-end: 0.3125rem !important;
8919
+ }
8920
+ .pl-size-5--mobile-up {
8921
+ padding-inline-start: 0.3125rem !important;
8922
+ }
8923
+ .px-size-5--mobile-up {
8924
+ padding-inline: 0.3125rem !important;
8925
+ }
8926
+ .py-size-5--mobile-up {
8927
+ padding-block: 0.3125rem !important;
8928
+ }
8929
+ .gap-size-5--mobile-up {
8930
+ gap: 0.3125rem !important;
8931
+ }
8932
+ .m-size-15--mobile-up {
8933
+ margin: 0.9375rem !important;
8934
+ }
8935
+ .mt-size-15--mobile-up {
8936
+ margin-block-start: 0.9375rem !important;
8937
+ }
8938
+ .mr-size-15--mobile-up {
8939
+ margin-inline-end: 0.9375rem !important;
8940
+ }
8941
+ .mb-size-15--mobile-up {
8942
+ margin-block-end: 0.9375rem !important;
8943
+ }
8944
+ .ml-size-15--mobile-up {
8945
+ margin-inline-start: 0.9375rem !important;
8946
+ }
8947
+ .mx-size-15--mobile-up {
8948
+ margin-inline: 0.9375rem !important;
8949
+ }
8950
+ .my-size-15--mobile-up {
8951
+ margin-block: 0.9375rem !important;
8952
+ }
8953
+ .p-size-15--mobile-up {
8954
+ padding: 0.9375rem !important;
8955
+ }
8956
+ .pt-size-15--mobile-up {
8957
+ padding-block-start: 0.9375rem !important;
8958
+ }
8959
+ .pr-size-15--mobile-up {
8960
+ padding-inline-end: 0.9375rem !important;
8961
+ }
8962
+ .pb-size-15--mobile-up {
8963
+ padding-block-end: 0.9375rem !important;
8964
+ }
8965
+ .pl-size-15--mobile-up {
8966
+ padding-inline-start: 0.9375rem !important;
8967
+ }
8968
+ .px-size-15--mobile-up {
8969
+ padding-inline: 0.9375rem !important;
8970
+ }
8971
+ .py-size-15--mobile-up {
8972
+ padding-block: 0.9375rem !important;
8973
+ }
8974
+ .gap-size-15--mobile-up {
8975
+ gap: 0.9375rem !important;
8976
+ }
8977
+ .m-size-50--mobile-up {
8978
+ margin: 3.125rem !important;
8979
+ }
8980
+ .mt-size-50--mobile-up {
8981
+ margin-block-start: 3.125rem !important;
8982
+ }
8983
+ .mr-size-50--mobile-up {
8984
+ margin-inline-end: 3.125rem !important;
8985
+ }
8986
+ .mb-size-50--mobile-up {
8987
+ margin-block-end: 3.125rem !important;
8988
+ }
8989
+ .ml-size-50--mobile-up {
8990
+ margin-inline-start: 3.125rem !important;
8991
+ }
8992
+ .mx-size-50--mobile-up {
8993
+ margin-inline: 3.125rem !important;
8994
+ }
8995
+ .my-size-50--mobile-up {
8996
+ margin-block: 3.125rem !important;
8997
+ }
8998
+ .p-size-50--mobile-up {
8999
+ padding: 3.125rem !important;
9000
+ }
9001
+ .pt-size-50--mobile-up {
9002
+ padding-block-start: 3.125rem !important;
9003
+ }
9004
+ .pr-size-50--mobile-up {
9005
+ padding-inline-end: 3.125rem !important;
9006
+ }
9007
+ .pb-size-50--mobile-up {
9008
+ padding-block-end: 3.125rem !important;
9009
+ }
9010
+ .pl-size-50--mobile-up {
9011
+ padding-inline-start: 3.125rem !important;
9012
+ }
9013
+ .px-size-50--mobile-up {
9014
+ padding-inline: 3.125rem !important;
9015
+ }
9016
+ .py-size-50--mobile-up {
9017
+ padding-block: 3.125rem !important;
9018
+ }
9019
+ .gap-size-50--mobile-up {
9020
+ gap: 3.125rem !important;
9021
+ }
9016
9022
  .m-size-75--mobile-up {
9017
9023
  margin: 4.6875rem !important;
9018
9024
  }
@@ -9870,6 +9876,51 @@
9870
9876
  .gap-size-88--phablet-up {
9871
9877
  gap: 5.5rem !important;
9872
9878
  }
9879
+ .m-size-96--phablet-up {
9880
+ margin: 6rem !important;
9881
+ }
9882
+ .mt-size-96--phablet-up {
9883
+ margin-block-start: 6rem !important;
9884
+ }
9885
+ .mr-size-96--phablet-up {
9886
+ margin-inline-end: 6rem !important;
9887
+ }
9888
+ .mb-size-96--phablet-up {
9889
+ margin-block-end: 6rem !important;
9890
+ }
9891
+ .ml-size-96--phablet-up {
9892
+ margin-inline-start: 6rem !important;
9893
+ }
9894
+ .mx-size-96--phablet-up {
9895
+ margin-inline: 6rem !important;
9896
+ }
9897
+ .my-size-96--phablet-up {
9898
+ margin-block: 6rem !important;
9899
+ }
9900
+ .p-size-96--phablet-up {
9901
+ padding: 6rem !important;
9902
+ }
9903
+ .pt-size-96--phablet-up {
9904
+ padding-block-start: 6rem !important;
9905
+ }
9906
+ .pr-size-96--phablet-up {
9907
+ padding-inline-end: 6rem !important;
9908
+ }
9909
+ .pb-size-96--phablet-up {
9910
+ padding-block-end: 6rem !important;
9911
+ }
9912
+ .pl-size-96--phablet-up {
9913
+ padding-inline-start: 6rem !important;
9914
+ }
9915
+ .px-size-96--phablet-up {
9916
+ padding-inline: 6rem !important;
9917
+ }
9918
+ .py-size-96--phablet-up {
9919
+ padding-block: 6rem !important;
9920
+ }
9921
+ .gap-size-96--phablet-up {
9922
+ gap: 6rem !important;
9923
+ }
9873
9924
  .m-size-104--phablet-up {
9874
9925
  margin: 6.5rem !important;
9875
9926
  }
@@ -9960,119 +10011,29 @@
9960
10011
  .gap-size-128--phablet-up {
9961
10012
  gap: 8rem !important;
9962
10013
  }
9963
- .m-size-148--phablet-up {
9964
- margin: 9.25rem !important;
9965
- }
9966
- .mt-size-148--phablet-up {
9967
- margin-block-start: 9.25rem !important;
10014
+ .m-size-10--phablet-up {
10015
+ margin: 0.625rem !important;
9968
10016
  }
9969
- .mr-size-148--phablet-up {
9970
- margin-inline-end: 9.25rem !important;
10017
+ .mt-size-10--phablet-up {
10018
+ margin-block-start: 0.625rem !important;
9971
10019
  }
9972
- .mb-size-148--phablet-up {
9973
- margin-block-end: 9.25rem !important;
10020
+ .mr-size-10--phablet-up {
10021
+ margin-inline-end: 0.625rem !important;
9974
10022
  }
9975
- .ml-size-148--phablet-up {
9976
- margin-inline-start: 9.25rem !important;
10023
+ .mb-size-10--phablet-up {
10024
+ margin-block-end: 0.625rem !important;
9977
10025
  }
9978
- .mx-size-148--phablet-up {
9979
- margin-inline: 9.25rem !important;
10026
+ .ml-size-10--phablet-up {
10027
+ margin-inline-start: 0.625rem !important;
9980
10028
  }
9981
- .my-size-148--phablet-up {
9982
- margin-block: 9.25rem !important;
10029
+ .mx-size-10--phablet-up {
10030
+ margin-inline: 0.625rem !important;
9983
10031
  }
9984
- .p-size-148--phablet-up {
9985
- padding: 9.25rem !important;
10032
+ .my-size-10--phablet-up {
10033
+ margin-block: 0.625rem !important;
9986
10034
  }
9987
- .pt-size-148--phablet-up {
9988
- padding-block-start: 9.25rem !important;
9989
- }
9990
- .pr-size-148--phablet-up {
9991
- padding-inline-end: 9.25rem !important;
9992
- }
9993
- .pb-size-148--phablet-up {
9994
- padding-block-end: 9.25rem !important;
9995
- }
9996
- .pl-size-148--phablet-up {
9997
- padding-inline-start: 9.25rem !important;
9998
- }
9999
- .px-size-148--phablet-up {
10000
- padding-inline: 9.25rem !important;
10001
- }
10002
- .py-size-148--phablet-up {
10003
- padding-block: 9.25rem !important;
10004
- }
10005
- .gap-size-148--phablet-up {
10006
- gap: 9.25rem !important;
10007
- }
10008
- .m-size-5--phablet-up {
10009
- margin: 0.3125rem !important;
10010
- }
10011
- .mt-size-5--phablet-up {
10012
- margin-block-start: 0.3125rem !important;
10013
- }
10014
- .mr-size-5--phablet-up {
10015
- margin-inline-end: 0.3125rem !important;
10016
- }
10017
- .mb-size-5--phablet-up {
10018
- margin-block-end: 0.3125rem !important;
10019
- }
10020
- .ml-size-5--phablet-up {
10021
- margin-inline-start: 0.3125rem !important;
10022
- }
10023
- .mx-size-5--phablet-up {
10024
- margin-inline: 0.3125rem !important;
10025
- }
10026
- .my-size-5--phablet-up {
10027
- margin-block: 0.3125rem !important;
10028
- }
10029
- .p-size-5--phablet-up {
10030
- padding: 0.3125rem !important;
10031
- }
10032
- .pt-size-5--phablet-up {
10033
- padding-block-start: 0.3125rem !important;
10034
- }
10035
- .pr-size-5--phablet-up {
10036
- padding-inline-end: 0.3125rem !important;
10037
- }
10038
- .pb-size-5--phablet-up {
10039
- padding-block-end: 0.3125rem !important;
10040
- }
10041
- .pl-size-5--phablet-up {
10042
- padding-inline-start: 0.3125rem !important;
10043
- }
10044
- .px-size-5--phablet-up {
10045
- padding-inline: 0.3125rem !important;
10046
- }
10047
- .py-size-5--phablet-up {
10048
- padding-block: 0.3125rem !important;
10049
- }
10050
- .gap-size-5--phablet-up {
10051
- gap: 0.3125rem !important;
10052
- }
10053
- .m-size-10--phablet-up {
10054
- margin: 0.625rem !important;
10055
- }
10056
- .mt-size-10--phablet-up {
10057
- margin-block-start: 0.625rem !important;
10058
- }
10059
- .mr-size-10--phablet-up {
10060
- margin-inline-end: 0.625rem !important;
10061
- }
10062
- .mb-size-10--phablet-up {
10063
- margin-block-end: 0.625rem !important;
10064
- }
10065
- .ml-size-10--phablet-up {
10066
- margin-inline-start: 0.625rem !important;
10067
- }
10068
- .mx-size-10--phablet-up {
10069
- margin-inline: 0.625rem !important;
10070
- }
10071
- .my-size-10--phablet-up {
10072
- margin-block: 0.625rem !important;
10073
- }
10074
- .p-size-10--phablet-up {
10075
- padding: 0.625rem !important;
10035
+ .p-size-10--phablet-up {
10036
+ padding: 0.625rem !important;
10076
10037
  }
10077
10038
  .pt-size-10--phablet-up {
10078
10039
  padding-block-start: 0.625rem !important;
@@ -10095,51 +10056,6 @@
10095
10056
  .gap-size-10--phablet-up {
10096
10057
  gap: 0.625rem !important;
10097
10058
  }
10098
- .m-size-15--phablet-up {
10099
- margin: 0.9375rem !important;
10100
- }
10101
- .mt-size-15--phablet-up {
10102
- margin-block-start: 0.9375rem !important;
10103
- }
10104
- .mr-size-15--phablet-up {
10105
- margin-inline-end: 0.9375rem !important;
10106
- }
10107
- .mb-size-15--phablet-up {
10108
- margin-block-end: 0.9375rem !important;
10109
- }
10110
- .ml-size-15--phablet-up {
10111
- margin-inline-start: 0.9375rem !important;
10112
- }
10113
- .mx-size-15--phablet-up {
10114
- margin-inline: 0.9375rem !important;
10115
- }
10116
- .my-size-15--phablet-up {
10117
- margin-block: 0.9375rem !important;
10118
- }
10119
- .p-size-15--phablet-up {
10120
- padding: 0.9375rem !important;
10121
- }
10122
- .pt-size-15--phablet-up {
10123
- padding-block-start: 0.9375rem !important;
10124
- }
10125
- .pr-size-15--phablet-up {
10126
- padding-inline-end: 0.9375rem !important;
10127
- }
10128
- .pb-size-15--phablet-up {
10129
- padding-block-end: 0.9375rem !important;
10130
- }
10131
- .pl-size-15--phablet-up {
10132
- padding-inline-start: 0.9375rem !important;
10133
- }
10134
- .px-size-15--phablet-up {
10135
- padding-inline: 0.9375rem !important;
10136
- }
10137
- .py-size-15--phablet-up {
10138
- padding-block: 0.9375rem !important;
10139
- }
10140
- .gap-size-15--phablet-up {
10141
- gap: 0.9375rem !important;
10142
- }
10143
10059
  .m-size-20--phablet-up {
10144
10060
  margin: 1.25rem !important;
10145
10061
  }
@@ -10230,51 +10146,6 @@
10230
10146
  .gap-size-30--phablet-up {
10231
10147
  gap: 1.875rem !important;
10232
10148
  }
10233
- .m-size-50--phablet-up {
10234
- margin: 3.125rem !important;
10235
- }
10236
- .mt-size-50--phablet-up {
10237
- margin-block-start: 3.125rem !important;
10238
- }
10239
- .mr-size-50--phablet-up {
10240
- margin-inline-end: 3.125rem !important;
10241
- }
10242
- .mb-size-50--phablet-up {
10243
- margin-block-end: 3.125rem !important;
10244
- }
10245
- .ml-size-50--phablet-up {
10246
- margin-inline-start: 3.125rem !important;
10247
- }
10248
- .mx-size-50--phablet-up {
10249
- margin-inline: 3.125rem !important;
10250
- }
10251
- .my-size-50--phablet-up {
10252
- margin-block: 3.125rem !important;
10253
- }
10254
- .p-size-50--phablet-up {
10255
- padding: 3.125rem !important;
10256
- }
10257
- .pt-size-50--phablet-up {
10258
- padding-block-start: 3.125rem !important;
10259
- }
10260
- .pr-size-50--phablet-up {
10261
- padding-inline-end: 3.125rem !important;
10262
- }
10263
- .pb-size-50--phablet-up {
10264
- padding-block-end: 3.125rem !important;
10265
- }
10266
- .pl-size-50--phablet-up {
10267
- padding-inline-start: 3.125rem !important;
10268
- }
10269
- .px-size-50--phablet-up {
10270
- padding-inline: 3.125rem !important;
10271
- }
10272
- .py-size-50--phablet-up {
10273
- padding-block: 3.125rem !important;
10274
- }
10275
- .gap-size-50--phablet-up {
10276
- gap: 3.125rem !important;
10277
- }
10278
10149
  .m-size-60--phablet-up {
10279
10150
  margin: 3.75rem !important;
10280
10151
  }
@@ -10320,74 +10191,209 @@
10320
10191
  .gap-size-60--phablet-up {
10321
10192
  gap: 3.75rem !important;
10322
10193
  }
10323
- .m-size-75--phablet-up {
10324
- margin: 4.6875rem !important;
10325
- }
10326
- .mt-size-75--phablet-up {
10327
- margin-block-start: 4.6875rem !important;
10194
+ .m-size-5--phablet-up {
10195
+ margin: 0.3125rem !important;
10328
10196
  }
10329
- .mr-size-75--phablet-up {
10330
- margin-inline-end: 4.6875rem !important;
10197
+ .mt-size-5--phablet-up {
10198
+ margin-block-start: 0.3125rem !important;
10331
10199
  }
10332
- .mb-size-75--phablet-up {
10333
- margin-block-end: 4.6875rem !important;
10200
+ .mr-size-5--phablet-up {
10201
+ margin-inline-end: 0.3125rem !important;
10334
10202
  }
10335
- .ml-size-75--phablet-up {
10336
- margin-inline-start: 4.6875rem !important;
10203
+ .mb-size-5--phablet-up {
10204
+ margin-block-end: 0.3125rem !important;
10337
10205
  }
10338
- .mx-size-75--phablet-up {
10339
- margin-inline: 4.6875rem !important;
10206
+ .ml-size-5--phablet-up {
10207
+ margin-inline-start: 0.3125rem !important;
10340
10208
  }
10341
- .my-size-75--phablet-up {
10342
- margin-block: 4.6875rem !important;
10209
+ .mx-size-5--phablet-up {
10210
+ margin-inline: 0.3125rem !important;
10343
10211
  }
10344
- .p-size-75--phablet-up {
10345
- padding: 4.6875rem !important;
10212
+ .my-size-5--phablet-up {
10213
+ margin-block: 0.3125rem !important;
10346
10214
  }
10347
- .pt-size-75--phablet-up {
10348
- padding-block-start: 4.6875rem !important;
10215
+ .p-size-5--phablet-up {
10216
+ padding: 0.3125rem !important;
10349
10217
  }
10350
- .pr-size-75--phablet-up {
10351
- padding-inline-end: 4.6875rem !important;
10218
+ .pt-size-5--phablet-up {
10219
+ padding-block-start: 0.3125rem !important;
10352
10220
  }
10353
- .pb-size-75--phablet-up {
10354
- padding-block-end: 4.6875rem !important;
10221
+ .pr-size-5--phablet-up {
10222
+ padding-inline-end: 0.3125rem !important;
10355
10223
  }
10356
- .pl-size-75--phablet-up {
10357
- padding-inline-start: 4.6875rem !important;
10224
+ .pb-size-5--phablet-up {
10225
+ padding-block-end: 0.3125rem !important;
10358
10226
  }
10359
- .px-size-75--phablet-up {
10360
- padding-inline: 4.6875rem !important;
10227
+ .pl-size-5--phablet-up {
10228
+ padding-inline-start: 0.3125rem !important;
10361
10229
  }
10362
- .py-size-75--phablet-up {
10363
- padding-block: 4.6875rem !important;
10230
+ .px-size-5--phablet-up {
10231
+ padding-inline: 0.3125rem !important;
10364
10232
  }
10365
- .gap-size-75--phablet-up {
10366
- gap: 4.6875rem !important;
10233
+ .py-size-5--phablet-up {
10234
+ padding-block: 0.3125rem !important;
10367
10235
  }
10368
- .m-size-100--phablet-up {
10369
- margin: 6.25rem !important;
10236
+ .gap-size-5--phablet-up {
10237
+ gap: 0.3125rem !important;
10370
10238
  }
10371
- .mt-size-100--phablet-up {
10372
- margin-block-start: 6.25rem !important;
10239
+ .m-size-15--phablet-up {
10240
+ margin: 0.9375rem !important;
10373
10241
  }
10374
- .mr-size-100--phablet-up {
10375
- margin-inline-end: 6.25rem !important;
10242
+ .mt-size-15--phablet-up {
10243
+ margin-block-start: 0.9375rem !important;
10376
10244
  }
10377
- .mb-size-100--phablet-up {
10378
- margin-block-end: 6.25rem !important;
10245
+ .mr-size-15--phablet-up {
10246
+ margin-inline-end: 0.9375rem !important;
10379
10247
  }
10380
- .ml-size-100--phablet-up {
10381
- margin-inline-start: 6.25rem !important;
10248
+ .mb-size-15--phablet-up {
10249
+ margin-block-end: 0.9375rem !important;
10382
10250
  }
10383
- .mx-size-100--phablet-up {
10384
- margin-inline: 6.25rem !important;
10251
+ .ml-size-15--phablet-up {
10252
+ margin-inline-start: 0.9375rem !important;
10385
10253
  }
10386
- .my-size-100--phablet-up {
10387
- margin-block: 6.25rem !important;
10254
+ .mx-size-15--phablet-up {
10255
+ margin-inline: 0.9375rem !important;
10388
10256
  }
10389
- .p-size-100--phablet-up {
10390
- padding: 6.25rem !important;
10257
+ .my-size-15--phablet-up {
10258
+ margin-block: 0.9375rem !important;
10259
+ }
10260
+ .p-size-15--phablet-up {
10261
+ padding: 0.9375rem !important;
10262
+ }
10263
+ .pt-size-15--phablet-up {
10264
+ padding-block-start: 0.9375rem !important;
10265
+ }
10266
+ .pr-size-15--phablet-up {
10267
+ padding-inline-end: 0.9375rem !important;
10268
+ }
10269
+ .pb-size-15--phablet-up {
10270
+ padding-block-end: 0.9375rem !important;
10271
+ }
10272
+ .pl-size-15--phablet-up {
10273
+ padding-inline-start: 0.9375rem !important;
10274
+ }
10275
+ .px-size-15--phablet-up {
10276
+ padding-inline: 0.9375rem !important;
10277
+ }
10278
+ .py-size-15--phablet-up {
10279
+ padding-block: 0.9375rem !important;
10280
+ }
10281
+ .gap-size-15--phablet-up {
10282
+ gap: 0.9375rem !important;
10283
+ }
10284
+ .m-size-50--phablet-up {
10285
+ margin: 3.125rem !important;
10286
+ }
10287
+ .mt-size-50--phablet-up {
10288
+ margin-block-start: 3.125rem !important;
10289
+ }
10290
+ .mr-size-50--phablet-up {
10291
+ margin-inline-end: 3.125rem !important;
10292
+ }
10293
+ .mb-size-50--phablet-up {
10294
+ margin-block-end: 3.125rem !important;
10295
+ }
10296
+ .ml-size-50--phablet-up {
10297
+ margin-inline-start: 3.125rem !important;
10298
+ }
10299
+ .mx-size-50--phablet-up {
10300
+ margin-inline: 3.125rem !important;
10301
+ }
10302
+ .my-size-50--phablet-up {
10303
+ margin-block: 3.125rem !important;
10304
+ }
10305
+ .p-size-50--phablet-up {
10306
+ padding: 3.125rem !important;
10307
+ }
10308
+ .pt-size-50--phablet-up {
10309
+ padding-block-start: 3.125rem !important;
10310
+ }
10311
+ .pr-size-50--phablet-up {
10312
+ padding-inline-end: 3.125rem !important;
10313
+ }
10314
+ .pb-size-50--phablet-up {
10315
+ padding-block-end: 3.125rem !important;
10316
+ }
10317
+ .pl-size-50--phablet-up {
10318
+ padding-inline-start: 3.125rem !important;
10319
+ }
10320
+ .px-size-50--phablet-up {
10321
+ padding-inline: 3.125rem !important;
10322
+ }
10323
+ .py-size-50--phablet-up {
10324
+ padding-block: 3.125rem !important;
10325
+ }
10326
+ .gap-size-50--phablet-up {
10327
+ gap: 3.125rem !important;
10328
+ }
10329
+ .m-size-75--phablet-up {
10330
+ margin: 4.6875rem !important;
10331
+ }
10332
+ .mt-size-75--phablet-up {
10333
+ margin-block-start: 4.6875rem !important;
10334
+ }
10335
+ .mr-size-75--phablet-up {
10336
+ margin-inline-end: 4.6875rem !important;
10337
+ }
10338
+ .mb-size-75--phablet-up {
10339
+ margin-block-end: 4.6875rem !important;
10340
+ }
10341
+ .ml-size-75--phablet-up {
10342
+ margin-inline-start: 4.6875rem !important;
10343
+ }
10344
+ .mx-size-75--phablet-up {
10345
+ margin-inline: 4.6875rem !important;
10346
+ }
10347
+ .my-size-75--phablet-up {
10348
+ margin-block: 4.6875rem !important;
10349
+ }
10350
+ .p-size-75--phablet-up {
10351
+ padding: 4.6875rem !important;
10352
+ }
10353
+ .pt-size-75--phablet-up {
10354
+ padding-block-start: 4.6875rem !important;
10355
+ }
10356
+ .pr-size-75--phablet-up {
10357
+ padding-inline-end: 4.6875rem !important;
10358
+ }
10359
+ .pb-size-75--phablet-up {
10360
+ padding-block-end: 4.6875rem !important;
10361
+ }
10362
+ .pl-size-75--phablet-up {
10363
+ padding-inline-start: 4.6875rem !important;
10364
+ }
10365
+ .px-size-75--phablet-up {
10366
+ padding-inline: 4.6875rem !important;
10367
+ }
10368
+ .py-size-75--phablet-up {
10369
+ padding-block: 4.6875rem !important;
10370
+ }
10371
+ .gap-size-75--phablet-up {
10372
+ gap: 4.6875rem !important;
10373
+ }
10374
+ .m-size-100--phablet-up {
10375
+ margin: 6.25rem !important;
10376
+ }
10377
+ .mt-size-100--phablet-up {
10378
+ margin-block-start: 6.25rem !important;
10379
+ }
10380
+ .mr-size-100--phablet-up {
10381
+ margin-inline-end: 6.25rem !important;
10382
+ }
10383
+ .mb-size-100--phablet-up {
10384
+ margin-block-end: 6.25rem !important;
10385
+ }
10386
+ .ml-size-100--phablet-up {
10387
+ margin-inline-start: 6.25rem !important;
10388
+ }
10389
+ .mx-size-100--phablet-up {
10390
+ margin-inline: 6.25rem !important;
10391
+ }
10392
+ .my-size-100--phablet-up {
10393
+ margin-block: 6.25rem !important;
10394
+ }
10395
+ .p-size-100--phablet-up {
10396
+ padding: 6.25rem !important;
10391
10397
  }
10392
10398
  .pt-size-100--phablet-up {
10393
10399
  padding-block-start: 6.25rem !important;
@@ -11177,6 +11183,51 @@
11177
11183
  .gap-size-88--tablet-up {
11178
11184
  gap: 5.5rem !important;
11179
11185
  }
11186
+ .m-size-96--tablet-up {
11187
+ margin: 6rem !important;
11188
+ }
11189
+ .mt-size-96--tablet-up {
11190
+ margin-block-start: 6rem !important;
11191
+ }
11192
+ .mr-size-96--tablet-up {
11193
+ margin-inline-end: 6rem !important;
11194
+ }
11195
+ .mb-size-96--tablet-up {
11196
+ margin-block-end: 6rem !important;
11197
+ }
11198
+ .ml-size-96--tablet-up {
11199
+ margin-inline-start: 6rem !important;
11200
+ }
11201
+ .mx-size-96--tablet-up {
11202
+ margin-inline: 6rem !important;
11203
+ }
11204
+ .my-size-96--tablet-up {
11205
+ margin-block: 6rem !important;
11206
+ }
11207
+ .p-size-96--tablet-up {
11208
+ padding: 6rem !important;
11209
+ }
11210
+ .pt-size-96--tablet-up {
11211
+ padding-block-start: 6rem !important;
11212
+ }
11213
+ .pr-size-96--tablet-up {
11214
+ padding-inline-end: 6rem !important;
11215
+ }
11216
+ .pb-size-96--tablet-up {
11217
+ padding-block-end: 6rem !important;
11218
+ }
11219
+ .pl-size-96--tablet-up {
11220
+ padding-inline-start: 6rem !important;
11221
+ }
11222
+ .px-size-96--tablet-up {
11223
+ padding-inline: 6rem !important;
11224
+ }
11225
+ .py-size-96--tablet-up {
11226
+ padding-block: 6rem !important;
11227
+ }
11228
+ .gap-size-96--tablet-up {
11229
+ gap: 6rem !important;
11230
+ }
11180
11231
  .m-size-104--tablet-up {
11181
11232
  margin: 6.5rem !important;
11182
11233
  }
@@ -11267,96 +11318,6 @@
11267
11318
  .gap-size-128--tablet-up {
11268
11319
  gap: 8rem !important;
11269
11320
  }
11270
- .m-size-148--tablet-up {
11271
- margin: 9.25rem !important;
11272
- }
11273
- .mt-size-148--tablet-up {
11274
- margin-block-start: 9.25rem !important;
11275
- }
11276
- .mr-size-148--tablet-up {
11277
- margin-inline-end: 9.25rem !important;
11278
- }
11279
- .mb-size-148--tablet-up {
11280
- margin-block-end: 9.25rem !important;
11281
- }
11282
- .ml-size-148--tablet-up {
11283
- margin-inline-start: 9.25rem !important;
11284
- }
11285
- .mx-size-148--tablet-up {
11286
- margin-inline: 9.25rem !important;
11287
- }
11288
- .my-size-148--tablet-up {
11289
- margin-block: 9.25rem !important;
11290
- }
11291
- .p-size-148--tablet-up {
11292
- padding: 9.25rem !important;
11293
- }
11294
- .pt-size-148--tablet-up {
11295
- padding-block-start: 9.25rem !important;
11296
- }
11297
- .pr-size-148--tablet-up {
11298
- padding-inline-end: 9.25rem !important;
11299
- }
11300
- .pb-size-148--tablet-up {
11301
- padding-block-end: 9.25rem !important;
11302
- }
11303
- .pl-size-148--tablet-up {
11304
- padding-inline-start: 9.25rem !important;
11305
- }
11306
- .px-size-148--tablet-up {
11307
- padding-inline: 9.25rem !important;
11308
- }
11309
- .py-size-148--tablet-up {
11310
- padding-block: 9.25rem !important;
11311
- }
11312
- .gap-size-148--tablet-up {
11313
- gap: 9.25rem !important;
11314
- }
11315
- .m-size-5--tablet-up {
11316
- margin: 0.3125rem !important;
11317
- }
11318
- .mt-size-5--tablet-up {
11319
- margin-block-start: 0.3125rem !important;
11320
- }
11321
- .mr-size-5--tablet-up {
11322
- margin-inline-end: 0.3125rem !important;
11323
- }
11324
- .mb-size-5--tablet-up {
11325
- margin-block-end: 0.3125rem !important;
11326
- }
11327
- .ml-size-5--tablet-up {
11328
- margin-inline-start: 0.3125rem !important;
11329
- }
11330
- .mx-size-5--tablet-up {
11331
- margin-inline: 0.3125rem !important;
11332
- }
11333
- .my-size-5--tablet-up {
11334
- margin-block: 0.3125rem !important;
11335
- }
11336
- .p-size-5--tablet-up {
11337
- padding: 0.3125rem !important;
11338
- }
11339
- .pt-size-5--tablet-up {
11340
- padding-block-start: 0.3125rem !important;
11341
- }
11342
- .pr-size-5--tablet-up {
11343
- padding-inline-end: 0.3125rem !important;
11344
- }
11345
- .pb-size-5--tablet-up {
11346
- padding-block-end: 0.3125rem !important;
11347
- }
11348
- .pl-size-5--tablet-up {
11349
- padding-inline-start: 0.3125rem !important;
11350
- }
11351
- .px-size-5--tablet-up {
11352
- padding-inline: 0.3125rem !important;
11353
- }
11354
- .py-size-5--tablet-up {
11355
- padding-block: 0.3125rem !important;
11356
- }
11357
- .gap-size-5--tablet-up {
11358
- gap: 0.3125rem !important;
11359
- }
11360
11321
  .m-size-10--tablet-up {
11361
11322
  margin: 0.625rem !important;
11362
11323
  }
@@ -11402,51 +11363,6 @@
11402
11363
  .gap-size-10--tablet-up {
11403
11364
  gap: 0.625rem !important;
11404
11365
  }
11405
- .m-size-15--tablet-up {
11406
- margin: 0.9375rem !important;
11407
- }
11408
- .mt-size-15--tablet-up {
11409
- margin-block-start: 0.9375rem !important;
11410
- }
11411
- .mr-size-15--tablet-up {
11412
- margin-inline-end: 0.9375rem !important;
11413
- }
11414
- .mb-size-15--tablet-up {
11415
- margin-block-end: 0.9375rem !important;
11416
- }
11417
- .ml-size-15--tablet-up {
11418
- margin-inline-start: 0.9375rem !important;
11419
- }
11420
- .mx-size-15--tablet-up {
11421
- margin-inline: 0.9375rem !important;
11422
- }
11423
- .my-size-15--tablet-up {
11424
- margin-block: 0.9375rem !important;
11425
- }
11426
- .p-size-15--tablet-up {
11427
- padding: 0.9375rem !important;
11428
- }
11429
- .pt-size-15--tablet-up {
11430
- padding-block-start: 0.9375rem !important;
11431
- }
11432
- .pr-size-15--tablet-up {
11433
- padding-inline-end: 0.9375rem !important;
11434
- }
11435
- .pb-size-15--tablet-up {
11436
- padding-block-end: 0.9375rem !important;
11437
- }
11438
- .pl-size-15--tablet-up {
11439
- padding-inline-start: 0.9375rem !important;
11440
- }
11441
- .px-size-15--tablet-up {
11442
- padding-inline: 0.9375rem !important;
11443
- }
11444
- .py-size-15--tablet-up {
11445
- padding-block: 0.9375rem !important;
11446
- }
11447
- .gap-size-15--tablet-up {
11448
- gap: 0.9375rem !important;
11449
- }
11450
11366
  .m-size-20--tablet-up {
11451
11367
  margin: 1.25rem !important;
11452
11368
  }
@@ -11537,51 +11453,6 @@
11537
11453
  .gap-size-30--tablet-up {
11538
11454
  gap: 1.875rem !important;
11539
11455
  }
11540
- .m-size-50--tablet-up {
11541
- margin: 3.125rem !important;
11542
- }
11543
- .mt-size-50--tablet-up {
11544
- margin-block-start: 3.125rem !important;
11545
- }
11546
- .mr-size-50--tablet-up {
11547
- margin-inline-end: 3.125rem !important;
11548
- }
11549
- .mb-size-50--tablet-up {
11550
- margin-block-end: 3.125rem !important;
11551
- }
11552
- .ml-size-50--tablet-up {
11553
- margin-inline-start: 3.125rem !important;
11554
- }
11555
- .mx-size-50--tablet-up {
11556
- margin-inline: 3.125rem !important;
11557
- }
11558
- .my-size-50--tablet-up {
11559
- margin-block: 3.125rem !important;
11560
- }
11561
- .p-size-50--tablet-up {
11562
- padding: 3.125rem !important;
11563
- }
11564
- .pt-size-50--tablet-up {
11565
- padding-block-start: 3.125rem !important;
11566
- }
11567
- .pr-size-50--tablet-up {
11568
- padding-inline-end: 3.125rem !important;
11569
- }
11570
- .pb-size-50--tablet-up {
11571
- padding-block-end: 3.125rem !important;
11572
- }
11573
- .pl-size-50--tablet-up {
11574
- padding-inline-start: 3.125rem !important;
11575
- }
11576
- .px-size-50--tablet-up {
11577
- padding-inline: 3.125rem !important;
11578
- }
11579
- .py-size-50--tablet-up {
11580
- padding-block: 3.125rem !important;
11581
- }
11582
- .gap-size-50--tablet-up {
11583
- gap: 3.125rem !important;
11584
- }
11585
11456
  .m-size-60--tablet-up {
11586
11457
  margin: 3.75rem !important;
11587
11458
  }
@@ -11606,26 +11477,161 @@
11606
11477
  .p-size-60--tablet-up {
11607
11478
  padding: 3.75rem !important;
11608
11479
  }
11609
- .pt-size-60--tablet-up {
11610
- padding-block-start: 3.75rem !important;
11480
+ .pt-size-60--tablet-up {
11481
+ padding-block-start: 3.75rem !important;
11482
+ }
11483
+ .pr-size-60--tablet-up {
11484
+ padding-inline-end: 3.75rem !important;
11485
+ }
11486
+ .pb-size-60--tablet-up {
11487
+ padding-block-end: 3.75rem !important;
11488
+ }
11489
+ .pl-size-60--tablet-up {
11490
+ padding-inline-start: 3.75rem !important;
11491
+ }
11492
+ .px-size-60--tablet-up {
11493
+ padding-inline: 3.75rem !important;
11494
+ }
11495
+ .py-size-60--tablet-up {
11496
+ padding-block: 3.75rem !important;
11497
+ }
11498
+ .gap-size-60--tablet-up {
11499
+ gap: 3.75rem !important;
11500
+ }
11501
+ .m-size-5--tablet-up {
11502
+ margin: 0.3125rem !important;
11503
+ }
11504
+ .mt-size-5--tablet-up {
11505
+ margin-block-start: 0.3125rem !important;
11506
+ }
11507
+ .mr-size-5--tablet-up {
11508
+ margin-inline-end: 0.3125rem !important;
11509
+ }
11510
+ .mb-size-5--tablet-up {
11511
+ margin-block-end: 0.3125rem !important;
11512
+ }
11513
+ .ml-size-5--tablet-up {
11514
+ margin-inline-start: 0.3125rem !important;
11515
+ }
11516
+ .mx-size-5--tablet-up {
11517
+ margin-inline: 0.3125rem !important;
11518
+ }
11519
+ .my-size-5--tablet-up {
11520
+ margin-block: 0.3125rem !important;
11521
+ }
11522
+ .p-size-5--tablet-up {
11523
+ padding: 0.3125rem !important;
11524
+ }
11525
+ .pt-size-5--tablet-up {
11526
+ padding-block-start: 0.3125rem !important;
11527
+ }
11528
+ .pr-size-5--tablet-up {
11529
+ padding-inline-end: 0.3125rem !important;
11530
+ }
11531
+ .pb-size-5--tablet-up {
11532
+ padding-block-end: 0.3125rem !important;
11533
+ }
11534
+ .pl-size-5--tablet-up {
11535
+ padding-inline-start: 0.3125rem !important;
11536
+ }
11537
+ .px-size-5--tablet-up {
11538
+ padding-inline: 0.3125rem !important;
11539
+ }
11540
+ .py-size-5--tablet-up {
11541
+ padding-block: 0.3125rem !important;
11542
+ }
11543
+ .gap-size-5--tablet-up {
11544
+ gap: 0.3125rem !important;
11545
+ }
11546
+ .m-size-15--tablet-up {
11547
+ margin: 0.9375rem !important;
11548
+ }
11549
+ .mt-size-15--tablet-up {
11550
+ margin-block-start: 0.9375rem !important;
11551
+ }
11552
+ .mr-size-15--tablet-up {
11553
+ margin-inline-end: 0.9375rem !important;
11554
+ }
11555
+ .mb-size-15--tablet-up {
11556
+ margin-block-end: 0.9375rem !important;
11557
+ }
11558
+ .ml-size-15--tablet-up {
11559
+ margin-inline-start: 0.9375rem !important;
11560
+ }
11561
+ .mx-size-15--tablet-up {
11562
+ margin-inline: 0.9375rem !important;
11563
+ }
11564
+ .my-size-15--tablet-up {
11565
+ margin-block: 0.9375rem !important;
11566
+ }
11567
+ .p-size-15--tablet-up {
11568
+ padding: 0.9375rem !important;
11569
+ }
11570
+ .pt-size-15--tablet-up {
11571
+ padding-block-start: 0.9375rem !important;
11572
+ }
11573
+ .pr-size-15--tablet-up {
11574
+ padding-inline-end: 0.9375rem !important;
11575
+ }
11576
+ .pb-size-15--tablet-up {
11577
+ padding-block-end: 0.9375rem !important;
11578
+ }
11579
+ .pl-size-15--tablet-up {
11580
+ padding-inline-start: 0.9375rem !important;
11581
+ }
11582
+ .px-size-15--tablet-up {
11583
+ padding-inline: 0.9375rem !important;
11584
+ }
11585
+ .py-size-15--tablet-up {
11586
+ padding-block: 0.9375rem !important;
11587
+ }
11588
+ .gap-size-15--tablet-up {
11589
+ gap: 0.9375rem !important;
11590
+ }
11591
+ .m-size-50--tablet-up {
11592
+ margin: 3.125rem !important;
11593
+ }
11594
+ .mt-size-50--tablet-up {
11595
+ margin-block-start: 3.125rem !important;
11596
+ }
11597
+ .mr-size-50--tablet-up {
11598
+ margin-inline-end: 3.125rem !important;
11599
+ }
11600
+ .mb-size-50--tablet-up {
11601
+ margin-block-end: 3.125rem !important;
11602
+ }
11603
+ .ml-size-50--tablet-up {
11604
+ margin-inline-start: 3.125rem !important;
11605
+ }
11606
+ .mx-size-50--tablet-up {
11607
+ margin-inline: 3.125rem !important;
11608
+ }
11609
+ .my-size-50--tablet-up {
11610
+ margin-block: 3.125rem !important;
11611
+ }
11612
+ .p-size-50--tablet-up {
11613
+ padding: 3.125rem !important;
11614
+ }
11615
+ .pt-size-50--tablet-up {
11616
+ padding-block-start: 3.125rem !important;
11611
11617
  }
11612
- .pr-size-60--tablet-up {
11613
- padding-inline-end: 3.75rem !important;
11618
+ .pr-size-50--tablet-up {
11619
+ padding-inline-end: 3.125rem !important;
11614
11620
  }
11615
- .pb-size-60--tablet-up {
11616
- padding-block-end: 3.75rem !important;
11621
+ .pb-size-50--tablet-up {
11622
+ padding-block-end: 3.125rem !important;
11617
11623
  }
11618
- .pl-size-60--tablet-up {
11619
- padding-inline-start: 3.75rem !important;
11624
+ .pl-size-50--tablet-up {
11625
+ padding-inline-start: 3.125rem !important;
11620
11626
  }
11621
- .px-size-60--tablet-up {
11622
- padding-inline: 3.75rem !important;
11627
+ .px-size-50--tablet-up {
11628
+ padding-inline: 3.125rem !important;
11623
11629
  }
11624
- .py-size-60--tablet-up {
11625
- padding-block: 3.75rem !important;
11630
+ .py-size-50--tablet-up {
11631
+ padding-block: 3.125rem !important;
11626
11632
  }
11627
- .gap-size-60--tablet-up {
11628
- gap: 3.75rem !important;
11633
+ .gap-size-50--tablet-up {
11634
+ gap: 3.125rem !important;
11629
11635
  }
11630
11636
  .m-size-75--tablet-up {
11631
11637
  margin: 4.6875rem !important;
@@ -12484,6 +12490,51 @@
12484
12490
  .gap-size-88--tablet-big-up {
12485
12491
  gap: 5.5rem !important;
12486
12492
  }
12493
+ .m-size-96--tablet-big-up {
12494
+ margin: 6rem !important;
12495
+ }
12496
+ .mt-size-96--tablet-big-up {
12497
+ margin-block-start: 6rem !important;
12498
+ }
12499
+ .mr-size-96--tablet-big-up {
12500
+ margin-inline-end: 6rem !important;
12501
+ }
12502
+ .mb-size-96--tablet-big-up {
12503
+ margin-block-end: 6rem !important;
12504
+ }
12505
+ .ml-size-96--tablet-big-up {
12506
+ margin-inline-start: 6rem !important;
12507
+ }
12508
+ .mx-size-96--tablet-big-up {
12509
+ margin-inline: 6rem !important;
12510
+ }
12511
+ .my-size-96--tablet-big-up {
12512
+ margin-block: 6rem !important;
12513
+ }
12514
+ .p-size-96--tablet-big-up {
12515
+ padding: 6rem !important;
12516
+ }
12517
+ .pt-size-96--tablet-big-up {
12518
+ padding-block-start: 6rem !important;
12519
+ }
12520
+ .pr-size-96--tablet-big-up {
12521
+ padding-inline-end: 6rem !important;
12522
+ }
12523
+ .pb-size-96--tablet-big-up {
12524
+ padding-block-end: 6rem !important;
12525
+ }
12526
+ .pl-size-96--tablet-big-up {
12527
+ padding-inline-start: 6rem !important;
12528
+ }
12529
+ .px-size-96--tablet-big-up {
12530
+ padding-inline: 6rem !important;
12531
+ }
12532
+ .py-size-96--tablet-big-up {
12533
+ padding-block: 6rem !important;
12534
+ }
12535
+ .gap-size-96--tablet-big-up {
12536
+ gap: 6rem !important;
12537
+ }
12487
12538
  .m-size-104--tablet-big-up {
12488
12539
  margin: 6.5rem !important;
12489
12540
  }
@@ -12574,50 +12625,185 @@
12574
12625
  .gap-size-128--tablet-big-up {
12575
12626
  gap: 8rem !important;
12576
12627
  }
12577
- .m-size-148--tablet-big-up {
12578
- margin: 9.25rem !important;
12628
+ .m-size-10--tablet-big-up {
12629
+ margin: 0.625rem !important;
12630
+ }
12631
+ .mt-size-10--tablet-big-up {
12632
+ margin-block-start: 0.625rem !important;
12633
+ }
12634
+ .mr-size-10--tablet-big-up {
12635
+ margin-inline-end: 0.625rem !important;
12636
+ }
12637
+ .mb-size-10--tablet-big-up {
12638
+ margin-block-end: 0.625rem !important;
12639
+ }
12640
+ .ml-size-10--tablet-big-up {
12641
+ margin-inline-start: 0.625rem !important;
12642
+ }
12643
+ .mx-size-10--tablet-big-up {
12644
+ margin-inline: 0.625rem !important;
12645
+ }
12646
+ .my-size-10--tablet-big-up {
12647
+ margin-block: 0.625rem !important;
12648
+ }
12649
+ .p-size-10--tablet-big-up {
12650
+ padding: 0.625rem !important;
12651
+ }
12652
+ .pt-size-10--tablet-big-up {
12653
+ padding-block-start: 0.625rem !important;
12654
+ }
12655
+ .pr-size-10--tablet-big-up {
12656
+ padding-inline-end: 0.625rem !important;
12657
+ }
12658
+ .pb-size-10--tablet-big-up {
12659
+ padding-block-end: 0.625rem !important;
12660
+ }
12661
+ .pl-size-10--tablet-big-up {
12662
+ padding-inline-start: 0.625rem !important;
12663
+ }
12664
+ .px-size-10--tablet-big-up {
12665
+ padding-inline: 0.625rem !important;
12666
+ }
12667
+ .py-size-10--tablet-big-up {
12668
+ padding-block: 0.625rem !important;
12669
+ }
12670
+ .gap-size-10--tablet-big-up {
12671
+ gap: 0.625rem !important;
12672
+ }
12673
+ .m-size-20--tablet-big-up {
12674
+ margin: 1.25rem !important;
12675
+ }
12676
+ .mt-size-20--tablet-big-up {
12677
+ margin-block-start: 1.25rem !important;
12678
+ }
12679
+ .mr-size-20--tablet-big-up {
12680
+ margin-inline-end: 1.25rem !important;
12681
+ }
12682
+ .mb-size-20--tablet-big-up {
12683
+ margin-block-end: 1.25rem !important;
12684
+ }
12685
+ .ml-size-20--tablet-big-up {
12686
+ margin-inline-start: 1.25rem !important;
12687
+ }
12688
+ .mx-size-20--tablet-big-up {
12689
+ margin-inline: 1.25rem !important;
12690
+ }
12691
+ .my-size-20--tablet-big-up {
12692
+ margin-block: 1.25rem !important;
12693
+ }
12694
+ .p-size-20--tablet-big-up {
12695
+ padding: 1.25rem !important;
12696
+ }
12697
+ .pt-size-20--tablet-big-up {
12698
+ padding-block-start: 1.25rem !important;
12699
+ }
12700
+ .pr-size-20--tablet-big-up {
12701
+ padding-inline-end: 1.25rem !important;
12702
+ }
12703
+ .pb-size-20--tablet-big-up {
12704
+ padding-block-end: 1.25rem !important;
12705
+ }
12706
+ .pl-size-20--tablet-big-up {
12707
+ padding-inline-start: 1.25rem !important;
12708
+ }
12709
+ .px-size-20--tablet-big-up {
12710
+ padding-inline: 1.25rem !important;
12711
+ }
12712
+ .py-size-20--tablet-big-up {
12713
+ padding-block: 1.25rem !important;
12714
+ }
12715
+ .gap-size-20--tablet-big-up {
12716
+ gap: 1.25rem !important;
12717
+ }
12718
+ .m-size-30--tablet-big-up {
12719
+ margin: 1.875rem !important;
12720
+ }
12721
+ .mt-size-30--tablet-big-up {
12722
+ margin-block-start: 1.875rem !important;
12723
+ }
12724
+ .mr-size-30--tablet-big-up {
12725
+ margin-inline-end: 1.875rem !important;
12726
+ }
12727
+ .mb-size-30--tablet-big-up {
12728
+ margin-block-end: 1.875rem !important;
12729
+ }
12730
+ .ml-size-30--tablet-big-up {
12731
+ margin-inline-start: 1.875rem !important;
12732
+ }
12733
+ .mx-size-30--tablet-big-up {
12734
+ margin-inline: 1.875rem !important;
12735
+ }
12736
+ .my-size-30--tablet-big-up {
12737
+ margin-block: 1.875rem !important;
12738
+ }
12739
+ .p-size-30--tablet-big-up {
12740
+ padding: 1.875rem !important;
12741
+ }
12742
+ .pt-size-30--tablet-big-up {
12743
+ padding-block-start: 1.875rem !important;
12744
+ }
12745
+ .pr-size-30--tablet-big-up {
12746
+ padding-inline-end: 1.875rem !important;
12747
+ }
12748
+ .pb-size-30--tablet-big-up {
12749
+ padding-block-end: 1.875rem !important;
12750
+ }
12751
+ .pl-size-30--tablet-big-up {
12752
+ padding-inline-start: 1.875rem !important;
12753
+ }
12754
+ .px-size-30--tablet-big-up {
12755
+ padding-inline: 1.875rem !important;
12756
+ }
12757
+ .py-size-30--tablet-big-up {
12758
+ padding-block: 1.875rem !important;
12759
+ }
12760
+ .gap-size-30--tablet-big-up {
12761
+ gap: 1.875rem !important;
12762
+ }
12763
+ .m-size-60--tablet-big-up {
12764
+ margin: 3.75rem !important;
12579
12765
  }
12580
- .mt-size-148--tablet-big-up {
12581
- margin-block-start: 9.25rem !important;
12766
+ .mt-size-60--tablet-big-up {
12767
+ margin-block-start: 3.75rem !important;
12582
12768
  }
12583
- .mr-size-148--tablet-big-up {
12584
- margin-inline-end: 9.25rem !important;
12769
+ .mr-size-60--tablet-big-up {
12770
+ margin-inline-end: 3.75rem !important;
12585
12771
  }
12586
- .mb-size-148--tablet-big-up {
12587
- margin-block-end: 9.25rem !important;
12772
+ .mb-size-60--tablet-big-up {
12773
+ margin-block-end: 3.75rem !important;
12588
12774
  }
12589
- .ml-size-148--tablet-big-up {
12590
- margin-inline-start: 9.25rem !important;
12775
+ .ml-size-60--tablet-big-up {
12776
+ margin-inline-start: 3.75rem !important;
12591
12777
  }
12592
- .mx-size-148--tablet-big-up {
12593
- margin-inline: 9.25rem !important;
12778
+ .mx-size-60--tablet-big-up {
12779
+ margin-inline: 3.75rem !important;
12594
12780
  }
12595
- .my-size-148--tablet-big-up {
12596
- margin-block: 9.25rem !important;
12781
+ .my-size-60--tablet-big-up {
12782
+ margin-block: 3.75rem !important;
12597
12783
  }
12598
- .p-size-148--tablet-big-up {
12599
- padding: 9.25rem !important;
12784
+ .p-size-60--tablet-big-up {
12785
+ padding: 3.75rem !important;
12600
12786
  }
12601
- .pt-size-148--tablet-big-up {
12602
- padding-block-start: 9.25rem !important;
12787
+ .pt-size-60--tablet-big-up {
12788
+ padding-block-start: 3.75rem !important;
12603
12789
  }
12604
- .pr-size-148--tablet-big-up {
12605
- padding-inline-end: 9.25rem !important;
12790
+ .pr-size-60--tablet-big-up {
12791
+ padding-inline-end: 3.75rem !important;
12606
12792
  }
12607
- .pb-size-148--tablet-big-up {
12608
- padding-block-end: 9.25rem !important;
12793
+ .pb-size-60--tablet-big-up {
12794
+ padding-block-end: 3.75rem !important;
12609
12795
  }
12610
- .pl-size-148--tablet-big-up {
12611
- padding-inline-start: 9.25rem !important;
12796
+ .pl-size-60--tablet-big-up {
12797
+ padding-inline-start: 3.75rem !important;
12612
12798
  }
12613
- .px-size-148--tablet-big-up {
12614
- padding-inline: 9.25rem !important;
12799
+ .px-size-60--tablet-big-up {
12800
+ padding-inline: 3.75rem !important;
12615
12801
  }
12616
- .py-size-148--tablet-big-up {
12617
- padding-block: 9.25rem !important;
12802
+ .py-size-60--tablet-big-up {
12803
+ padding-block: 3.75rem !important;
12618
12804
  }
12619
- .gap-size-148--tablet-big-up {
12620
- gap: 9.25rem !important;
12805
+ .gap-size-60--tablet-big-up {
12806
+ gap: 3.75rem !important;
12621
12807
  }
12622
12808
  .m-size-5--tablet-big-up {
12623
12809
  margin: 0.3125rem !important;
@@ -12662,52 +12848,7 @@
12662
12848
  padding-block: 0.3125rem !important;
12663
12849
  }
12664
12850
  .gap-size-5--tablet-big-up {
12665
- gap: 0.3125rem !important;
12666
- }
12667
- .m-size-10--tablet-big-up {
12668
- margin: 0.625rem !important;
12669
- }
12670
- .mt-size-10--tablet-big-up {
12671
- margin-block-start: 0.625rem !important;
12672
- }
12673
- .mr-size-10--tablet-big-up {
12674
- margin-inline-end: 0.625rem !important;
12675
- }
12676
- .mb-size-10--tablet-big-up {
12677
- margin-block-end: 0.625rem !important;
12678
- }
12679
- .ml-size-10--tablet-big-up {
12680
- margin-inline-start: 0.625rem !important;
12681
- }
12682
- .mx-size-10--tablet-big-up {
12683
- margin-inline: 0.625rem !important;
12684
- }
12685
- .my-size-10--tablet-big-up {
12686
- margin-block: 0.625rem !important;
12687
- }
12688
- .p-size-10--tablet-big-up {
12689
- padding: 0.625rem !important;
12690
- }
12691
- .pt-size-10--tablet-big-up {
12692
- padding-block-start: 0.625rem !important;
12693
- }
12694
- .pr-size-10--tablet-big-up {
12695
- padding-inline-end: 0.625rem !important;
12696
- }
12697
- .pb-size-10--tablet-big-up {
12698
- padding-block-end: 0.625rem !important;
12699
- }
12700
- .pl-size-10--tablet-big-up {
12701
- padding-inline-start: 0.625rem !important;
12702
- }
12703
- .px-size-10--tablet-big-up {
12704
- padding-inline: 0.625rem !important;
12705
- }
12706
- .py-size-10--tablet-big-up {
12707
- padding-block: 0.625rem !important;
12708
- }
12709
- .gap-size-10--tablet-big-up {
12710
- gap: 0.625rem !important;
12851
+ gap: 0.3125rem !important;
12711
12852
  }
12712
12853
  .m-size-15--tablet-big-up {
12713
12854
  margin: 0.9375rem !important;
@@ -12754,96 +12895,6 @@
12754
12895
  .gap-size-15--tablet-big-up {
12755
12896
  gap: 0.9375rem !important;
12756
12897
  }
12757
- .m-size-20--tablet-big-up {
12758
- margin: 1.25rem !important;
12759
- }
12760
- .mt-size-20--tablet-big-up {
12761
- margin-block-start: 1.25rem !important;
12762
- }
12763
- .mr-size-20--tablet-big-up {
12764
- margin-inline-end: 1.25rem !important;
12765
- }
12766
- .mb-size-20--tablet-big-up {
12767
- margin-block-end: 1.25rem !important;
12768
- }
12769
- .ml-size-20--tablet-big-up {
12770
- margin-inline-start: 1.25rem !important;
12771
- }
12772
- .mx-size-20--tablet-big-up {
12773
- margin-inline: 1.25rem !important;
12774
- }
12775
- .my-size-20--tablet-big-up {
12776
- margin-block: 1.25rem !important;
12777
- }
12778
- .p-size-20--tablet-big-up {
12779
- padding: 1.25rem !important;
12780
- }
12781
- .pt-size-20--tablet-big-up {
12782
- padding-block-start: 1.25rem !important;
12783
- }
12784
- .pr-size-20--tablet-big-up {
12785
- padding-inline-end: 1.25rem !important;
12786
- }
12787
- .pb-size-20--tablet-big-up {
12788
- padding-block-end: 1.25rem !important;
12789
- }
12790
- .pl-size-20--tablet-big-up {
12791
- padding-inline-start: 1.25rem !important;
12792
- }
12793
- .px-size-20--tablet-big-up {
12794
- padding-inline: 1.25rem !important;
12795
- }
12796
- .py-size-20--tablet-big-up {
12797
- padding-block: 1.25rem !important;
12798
- }
12799
- .gap-size-20--tablet-big-up {
12800
- gap: 1.25rem !important;
12801
- }
12802
- .m-size-30--tablet-big-up {
12803
- margin: 1.875rem !important;
12804
- }
12805
- .mt-size-30--tablet-big-up {
12806
- margin-block-start: 1.875rem !important;
12807
- }
12808
- .mr-size-30--tablet-big-up {
12809
- margin-inline-end: 1.875rem !important;
12810
- }
12811
- .mb-size-30--tablet-big-up {
12812
- margin-block-end: 1.875rem !important;
12813
- }
12814
- .ml-size-30--tablet-big-up {
12815
- margin-inline-start: 1.875rem !important;
12816
- }
12817
- .mx-size-30--tablet-big-up {
12818
- margin-inline: 1.875rem !important;
12819
- }
12820
- .my-size-30--tablet-big-up {
12821
- margin-block: 1.875rem !important;
12822
- }
12823
- .p-size-30--tablet-big-up {
12824
- padding: 1.875rem !important;
12825
- }
12826
- .pt-size-30--tablet-big-up {
12827
- padding-block-start: 1.875rem !important;
12828
- }
12829
- .pr-size-30--tablet-big-up {
12830
- padding-inline-end: 1.875rem !important;
12831
- }
12832
- .pb-size-30--tablet-big-up {
12833
- padding-block-end: 1.875rem !important;
12834
- }
12835
- .pl-size-30--tablet-big-up {
12836
- padding-inline-start: 1.875rem !important;
12837
- }
12838
- .px-size-30--tablet-big-up {
12839
- padding-inline: 1.875rem !important;
12840
- }
12841
- .py-size-30--tablet-big-up {
12842
- padding-block: 1.875rem !important;
12843
- }
12844
- .gap-size-30--tablet-big-up {
12845
- gap: 1.875rem !important;
12846
- }
12847
12898
  .m-size-50--tablet-big-up {
12848
12899
  margin: 3.125rem !important;
12849
12900
  }
@@ -12889,51 +12940,6 @@
12889
12940
  .gap-size-50--tablet-big-up {
12890
12941
  gap: 3.125rem !important;
12891
12942
  }
12892
- .m-size-60--tablet-big-up {
12893
- margin: 3.75rem !important;
12894
- }
12895
- .mt-size-60--tablet-big-up {
12896
- margin-block-start: 3.75rem !important;
12897
- }
12898
- .mr-size-60--tablet-big-up {
12899
- margin-inline-end: 3.75rem !important;
12900
- }
12901
- .mb-size-60--tablet-big-up {
12902
- margin-block-end: 3.75rem !important;
12903
- }
12904
- .ml-size-60--tablet-big-up {
12905
- margin-inline-start: 3.75rem !important;
12906
- }
12907
- .mx-size-60--tablet-big-up {
12908
- margin-inline: 3.75rem !important;
12909
- }
12910
- .my-size-60--tablet-big-up {
12911
- margin-block: 3.75rem !important;
12912
- }
12913
- .p-size-60--tablet-big-up {
12914
- padding: 3.75rem !important;
12915
- }
12916
- .pt-size-60--tablet-big-up {
12917
- padding-block-start: 3.75rem !important;
12918
- }
12919
- .pr-size-60--tablet-big-up {
12920
- padding-inline-end: 3.75rem !important;
12921
- }
12922
- .pb-size-60--tablet-big-up {
12923
- padding-block-end: 3.75rem !important;
12924
- }
12925
- .pl-size-60--tablet-big-up {
12926
- padding-inline-start: 3.75rem !important;
12927
- }
12928
- .px-size-60--tablet-big-up {
12929
- padding-inline: 3.75rem !important;
12930
- }
12931
- .py-size-60--tablet-big-up {
12932
- padding-block: 3.75rem !important;
12933
- }
12934
- .gap-size-60--tablet-big-up {
12935
- gap: 3.75rem !important;
12936
- }
12937
12943
  .m-size-75--tablet-big-up {
12938
12944
  margin: 4.6875rem !important;
12939
12945
  }
@@ -13791,6 +13797,51 @@
13791
13797
  .gap-size-88--laptop-up {
13792
13798
  gap: 5.5rem !important;
13793
13799
  }
13800
+ .m-size-96--laptop-up {
13801
+ margin: 6rem !important;
13802
+ }
13803
+ .mt-size-96--laptop-up {
13804
+ margin-block-start: 6rem !important;
13805
+ }
13806
+ .mr-size-96--laptop-up {
13807
+ margin-inline-end: 6rem !important;
13808
+ }
13809
+ .mb-size-96--laptop-up {
13810
+ margin-block-end: 6rem !important;
13811
+ }
13812
+ .ml-size-96--laptop-up {
13813
+ margin-inline-start: 6rem !important;
13814
+ }
13815
+ .mx-size-96--laptop-up {
13816
+ margin-inline: 6rem !important;
13817
+ }
13818
+ .my-size-96--laptop-up {
13819
+ margin-block: 6rem !important;
13820
+ }
13821
+ .p-size-96--laptop-up {
13822
+ padding: 6rem !important;
13823
+ }
13824
+ .pt-size-96--laptop-up {
13825
+ padding-block-start: 6rem !important;
13826
+ }
13827
+ .pr-size-96--laptop-up {
13828
+ padding-inline-end: 6rem !important;
13829
+ }
13830
+ .pb-size-96--laptop-up {
13831
+ padding-block-end: 6rem !important;
13832
+ }
13833
+ .pl-size-96--laptop-up {
13834
+ padding-inline-start: 6rem !important;
13835
+ }
13836
+ .px-size-96--laptop-up {
13837
+ padding-inline: 6rem !important;
13838
+ }
13839
+ .py-size-96--laptop-up {
13840
+ padding-block: 6rem !important;
13841
+ }
13842
+ .gap-size-96--laptop-up {
13843
+ gap: 6rem !important;
13844
+ }
13794
13845
  .m-size-104--laptop-up {
13795
13846
  margin: 6.5rem !important;
13796
13847
  }
@@ -13881,96 +13932,6 @@
13881
13932
  .gap-size-128--laptop-up {
13882
13933
  gap: 8rem !important;
13883
13934
  }
13884
- .m-size-148--laptop-up {
13885
- margin: 9.25rem !important;
13886
- }
13887
- .mt-size-148--laptop-up {
13888
- margin-block-start: 9.25rem !important;
13889
- }
13890
- .mr-size-148--laptop-up {
13891
- margin-inline-end: 9.25rem !important;
13892
- }
13893
- .mb-size-148--laptop-up {
13894
- margin-block-end: 9.25rem !important;
13895
- }
13896
- .ml-size-148--laptop-up {
13897
- margin-inline-start: 9.25rem !important;
13898
- }
13899
- .mx-size-148--laptop-up {
13900
- margin-inline: 9.25rem !important;
13901
- }
13902
- .my-size-148--laptop-up {
13903
- margin-block: 9.25rem !important;
13904
- }
13905
- .p-size-148--laptop-up {
13906
- padding: 9.25rem !important;
13907
- }
13908
- .pt-size-148--laptop-up {
13909
- padding-block-start: 9.25rem !important;
13910
- }
13911
- .pr-size-148--laptop-up {
13912
- padding-inline-end: 9.25rem !important;
13913
- }
13914
- .pb-size-148--laptop-up {
13915
- padding-block-end: 9.25rem !important;
13916
- }
13917
- .pl-size-148--laptop-up {
13918
- padding-inline-start: 9.25rem !important;
13919
- }
13920
- .px-size-148--laptop-up {
13921
- padding-inline: 9.25rem !important;
13922
- }
13923
- .py-size-148--laptop-up {
13924
- padding-block: 9.25rem !important;
13925
- }
13926
- .gap-size-148--laptop-up {
13927
- gap: 9.25rem !important;
13928
- }
13929
- .m-size-5--laptop-up {
13930
- margin: 0.3125rem !important;
13931
- }
13932
- .mt-size-5--laptop-up {
13933
- margin-block-start: 0.3125rem !important;
13934
- }
13935
- .mr-size-5--laptop-up {
13936
- margin-inline-end: 0.3125rem !important;
13937
- }
13938
- .mb-size-5--laptop-up {
13939
- margin-block-end: 0.3125rem !important;
13940
- }
13941
- .ml-size-5--laptop-up {
13942
- margin-inline-start: 0.3125rem !important;
13943
- }
13944
- .mx-size-5--laptop-up {
13945
- margin-inline: 0.3125rem !important;
13946
- }
13947
- .my-size-5--laptop-up {
13948
- margin-block: 0.3125rem !important;
13949
- }
13950
- .p-size-5--laptop-up {
13951
- padding: 0.3125rem !important;
13952
- }
13953
- .pt-size-5--laptop-up {
13954
- padding-block-start: 0.3125rem !important;
13955
- }
13956
- .pr-size-5--laptop-up {
13957
- padding-inline-end: 0.3125rem !important;
13958
- }
13959
- .pb-size-5--laptop-up {
13960
- padding-block-end: 0.3125rem !important;
13961
- }
13962
- .pl-size-5--laptop-up {
13963
- padding-inline-start: 0.3125rem !important;
13964
- }
13965
- .px-size-5--laptop-up {
13966
- padding-inline: 0.3125rem !important;
13967
- }
13968
- .py-size-5--laptop-up {
13969
- padding-block: 0.3125rem !important;
13970
- }
13971
- .gap-size-5--laptop-up {
13972
- gap: 0.3125rem !important;
13973
- }
13974
13935
  .m-size-10--laptop-up {
13975
13936
  margin: 0.625rem !important;
13976
13937
  }
@@ -14016,51 +13977,6 @@
14016
13977
  .gap-size-10--laptop-up {
14017
13978
  gap: 0.625rem !important;
14018
13979
  }
14019
- .m-size-15--laptop-up {
14020
- margin: 0.9375rem !important;
14021
- }
14022
- .mt-size-15--laptop-up {
14023
- margin-block-start: 0.9375rem !important;
14024
- }
14025
- .mr-size-15--laptop-up {
14026
- margin-inline-end: 0.9375rem !important;
14027
- }
14028
- .mb-size-15--laptop-up {
14029
- margin-block-end: 0.9375rem !important;
14030
- }
14031
- .ml-size-15--laptop-up {
14032
- margin-inline-start: 0.9375rem !important;
14033
- }
14034
- .mx-size-15--laptop-up {
14035
- margin-inline: 0.9375rem !important;
14036
- }
14037
- .my-size-15--laptop-up {
14038
- margin-block: 0.9375rem !important;
14039
- }
14040
- .p-size-15--laptop-up {
14041
- padding: 0.9375rem !important;
14042
- }
14043
- .pt-size-15--laptop-up {
14044
- padding-block-start: 0.9375rem !important;
14045
- }
14046
- .pr-size-15--laptop-up {
14047
- padding-inline-end: 0.9375rem !important;
14048
- }
14049
- .pb-size-15--laptop-up {
14050
- padding-block-end: 0.9375rem !important;
14051
- }
14052
- .pl-size-15--laptop-up {
14053
- padding-inline-start: 0.9375rem !important;
14054
- }
14055
- .px-size-15--laptop-up {
14056
- padding-inline: 0.9375rem !important;
14057
- }
14058
- .py-size-15--laptop-up {
14059
- padding-block: 0.9375rem !important;
14060
- }
14061
- .gap-size-15--laptop-up {
14062
- gap: 0.9375rem !important;
14063
- }
14064
13980
  .m-size-20--laptop-up {
14065
13981
  margin: 1.25rem !important;
14066
13982
  }
@@ -14151,51 +14067,6 @@
14151
14067
  .gap-size-30--laptop-up {
14152
14068
  gap: 1.875rem !important;
14153
14069
  }
14154
- .m-size-50--laptop-up {
14155
- margin: 3.125rem !important;
14156
- }
14157
- .mt-size-50--laptop-up {
14158
- margin-block-start: 3.125rem !important;
14159
- }
14160
- .mr-size-50--laptop-up {
14161
- margin-inline-end: 3.125rem !important;
14162
- }
14163
- .mb-size-50--laptop-up {
14164
- margin-block-end: 3.125rem !important;
14165
- }
14166
- .ml-size-50--laptop-up {
14167
- margin-inline-start: 3.125rem !important;
14168
- }
14169
- .mx-size-50--laptop-up {
14170
- margin-inline: 3.125rem !important;
14171
- }
14172
- .my-size-50--laptop-up {
14173
- margin-block: 3.125rem !important;
14174
- }
14175
- .p-size-50--laptop-up {
14176
- padding: 3.125rem !important;
14177
- }
14178
- .pt-size-50--laptop-up {
14179
- padding-block-start: 3.125rem !important;
14180
- }
14181
- .pr-size-50--laptop-up {
14182
- padding-inline-end: 3.125rem !important;
14183
- }
14184
- .pb-size-50--laptop-up {
14185
- padding-block-end: 3.125rem !important;
14186
- }
14187
- .pl-size-50--laptop-up {
14188
- padding-inline-start: 3.125rem !important;
14189
- }
14190
- .px-size-50--laptop-up {
14191
- padding-inline: 3.125rem !important;
14192
- }
14193
- .py-size-50--laptop-up {
14194
- padding-block: 3.125rem !important;
14195
- }
14196
- .gap-size-50--laptop-up {
14197
- gap: 3.125rem !important;
14198
- }
14199
14070
  .m-size-60--laptop-up {
14200
14071
  margin: 3.75rem !important;
14201
14072
  }
@@ -14241,6 +14112,141 @@
14241
14112
  .gap-size-60--laptop-up {
14242
14113
  gap: 3.75rem !important;
14243
14114
  }
14115
+ .m-size-5--laptop-up {
14116
+ margin: 0.3125rem !important;
14117
+ }
14118
+ .mt-size-5--laptop-up {
14119
+ margin-block-start: 0.3125rem !important;
14120
+ }
14121
+ .mr-size-5--laptop-up {
14122
+ margin-inline-end: 0.3125rem !important;
14123
+ }
14124
+ .mb-size-5--laptop-up {
14125
+ margin-block-end: 0.3125rem !important;
14126
+ }
14127
+ .ml-size-5--laptop-up {
14128
+ margin-inline-start: 0.3125rem !important;
14129
+ }
14130
+ .mx-size-5--laptop-up {
14131
+ margin-inline: 0.3125rem !important;
14132
+ }
14133
+ .my-size-5--laptop-up {
14134
+ margin-block: 0.3125rem !important;
14135
+ }
14136
+ .p-size-5--laptop-up {
14137
+ padding: 0.3125rem !important;
14138
+ }
14139
+ .pt-size-5--laptop-up {
14140
+ padding-block-start: 0.3125rem !important;
14141
+ }
14142
+ .pr-size-5--laptop-up {
14143
+ padding-inline-end: 0.3125rem !important;
14144
+ }
14145
+ .pb-size-5--laptop-up {
14146
+ padding-block-end: 0.3125rem !important;
14147
+ }
14148
+ .pl-size-5--laptop-up {
14149
+ padding-inline-start: 0.3125rem !important;
14150
+ }
14151
+ .px-size-5--laptop-up {
14152
+ padding-inline: 0.3125rem !important;
14153
+ }
14154
+ .py-size-5--laptop-up {
14155
+ padding-block: 0.3125rem !important;
14156
+ }
14157
+ .gap-size-5--laptop-up {
14158
+ gap: 0.3125rem !important;
14159
+ }
14160
+ .m-size-15--laptop-up {
14161
+ margin: 0.9375rem !important;
14162
+ }
14163
+ .mt-size-15--laptop-up {
14164
+ margin-block-start: 0.9375rem !important;
14165
+ }
14166
+ .mr-size-15--laptop-up {
14167
+ margin-inline-end: 0.9375rem !important;
14168
+ }
14169
+ .mb-size-15--laptop-up {
14170
+ margin-block-end: 0.9375rem !important;
14171
+ }
14172
+ .ml-size-15--laptop-up {
14173
+ margin-inline-start: 0.9375rem !important;
14174
+ }
14175
+ .mx-size-15--laptop-up {
14176
+ margin-inline: 0.9375rem !important;
14177
+ }
14178
+ .my-size-15--laptop-up {
14179
+ margin-block: 0.9375rem !important;
14180
+ }
14181
+ .p-size-15--laptop-up {
14182
+ padding: 0.9375rem !important;
14183
+ }
14184
+ .pt-size-15--laptop-up {
14185
+ padding-block-start: 0.9375rem !important;
14186
+ }
14187
+ .pr-size-15--laptop-up {
14188
+ padding-inline-end: 0.9375rem !important;
14189
+ }
14190
+ .pb-size-15--laptop-up {
14191
+ padding-block-end: 0.9375rem !important;
14192
+ }
14193
+ .pl-size-15--laptop-up {
14194
+ padding-inline-start: 0.9375rem !important;
14195
+ }
14196
+ .px-size-15--laptop-up {
14197
+ padding-inline: 0.9375rem !important;
14198
+ }
14199
+ .py-size-15--laptop-up {
14200
+ padding-block: 0.9375rem !important;
14201
+ }
14202
+ .gap-size-15--laptop-up {
14203
+ gap: 0.9375rem !important;
14204
+ }
14205
+ .m-size-50--laptop-up {
14206
+ margin: 3.125rem !important;
14207
+ }
14208
+ .mt-size-50--laptop-up {
14209
+ margin-block-start: 3.125rem !important;
14210
+ }
14211
+ .mr-size-50--laptop-up {
14212
+ margin-inline-end: 3.125rem !important;
14213
+ }
14214
+ .mb-size-50--laptop-up {
14215
+ margin-block-end: 3.125rem !important;
14216
+ }
14217
+ .ml-size-50--laptop-up {
14218
+ margin-inline-start: 3.125rem !important;
14219
+ }
14220
+ .mx-size-50--laptop-up {
14221
+ margin-inline: 3.125rem !important;
14222
+ }
14223
+ .my-size-50--laptop-up {
14224
+ margin-block: 3.125rem !important;
14225
+ }
14226
+ .p-size-50--laptop-up {
14227
+ padding: 3.125rem !important;
14228
+ }
14229
+ .pt-size-50--laptop-up {
14230
+ padding-block-start: 3.125rem !important;
14231
+ }
14232
+ .pr-size-50--laptop-up {
14233
+ padding-inline-end: 3.125rem !important;
14234
+ }
14235
+ .pb-size-50--laptop-up {
14236
+ padding-block-end: 3.125rem !important;
14237
+ }
14238
+ .pl-size-50--laptop-up {
14239
+ padding-inline-start: 3.125rem !important;
14240
+ }
14241
+ .px-size-50--laptop-up {
14242
+ padding-inline: 3.125rem !important;
14243
+ }
14244
+ .py-size-50--laptop-up {
14245
+ padding-block: 3.125rem !important;
14246
+ }
14247
+ .gap-size-50--laptop-up {
14248
+ gap: 3.125rem !important;
14249
+ }
14244
14250
  .m-size-75--laptop-up {
14245
14251
  margin: 4.6875rem !important;
14246
14252
  }
@@ -15098,6 +15104,51 @@
15098
15104
  .gap-size-88--desktop-up {
15099
15105
  gap: 5.5rem !important;
15100
15106
  }
15107
+ .m-size-96--desktop-up {
15108
+ margin: 6rem !important;
15109
+ }
15110
+ .mt-size-96--desktop-up {
15111
+ margin-block-start: 6rem !important;
15112
+ }
15113
+ .mr-size-96--desktop-up {
15114
+ margin-inline-end: 6rem !important;
15115
+ }
15116
+ .mb-size-96--desktop-up {
15117
+ margin-block-end: 6rem !important;
15118
+ }
15119
+ .ml-size-96--desktop-up {
15120
+ margin-inline-start: 6rem !important;
15121
+ }
15122
+ .mx-size-96--desktop-up {
15123
+ margin-inline: 6rem !important;
15124
+ }
15125
+ .my-size-96--desktop-up {
15126
+ margin-block: 6rem !important;
15127
+ }
15128
+ .p-size-96--desktop-up {
15129
+ padding: 6rem !important;
15130
+ }
15131
+ .pt-size-96--desktop-up {
15132
+ padding-block-start: 6rem !important;
15133
+ }
15134
+ .pr-size-96--desktop-up {
15135
+ padding-inline-end: 6rem !important;
15136
+ }
15137
+ .pb-size-96--desktop-up {
15138
+ padding-block-end: 6rem !important;
15139
+ }
15140
+ .pl-size-96--desktop-up {
15141
+ padding-inline-start: 6rem !important;
15142
+ }
15143
+ .px-size-96--desktop-up {
15144
+ padding-inline: 6rem !important;
15145
+ }
15146
+ .py-size-96--desktop-up {
15147
+ padding-block: 6rem !important;
15148
+ }
15149
+ .gap-size-96--desktop-up {
15150
+ gap: 6rem !important;
15151
+ }
15101
15152
  .m-size-104--desktop-up {
15102
15153
  margin: 6.5rem !important;
15103
15154
  }
@@ -15165,118 +15216,28 @@
15165
15216
  margin-block: 8rem !important;
15166
15217
  }
15167
15218
  .p-size-128--desktop-up {
15168
- padding: 8rem !important;
15169
- }
15170
- .pt-size-128--desktop-up {
15171
- padding-block-start: 8rem !important;
15172
- }
15173
- .pr-size-128--desktop-up {
15174
- padding-inline-end: 8rem !important;
15175
- }
15176
- .pb-size-128--desktop-up {
15177
- padding-block-end: 8rem !important;
15178
- }
15179
- .pl-size-128--desktop-up {
15180
- padding-inline-start: 8rem !important;
15181
- }
15182
- .px-size-128--desktop-up {
15183
- padding-inline: 8rem !important;
15184
- }
15185
- .py-size-128--desktop-up {
15186
- padding-block: 8rem !important;
15187
- }
15188
- .gap-size-128--desktop-up {
15189
- gap: 8rem !important;
15190
- }
15191
- .m-size-148--desktop-up {
15192
- margin: 9.25rem !important;
15193
- }
15194
- .mt-size-148--desktop-up {
15195
- margin-block-start: 9.25rem !important;
15196
- }
15197
- .mr-size-148--desktop-up {
15198
- margin-inline-end: 9.25rem !important;
15199
- }
15200
- .mb-size-148--desktop-up {
15201
- margin-block-end: 9.25rem !important;
15202
- }
15203
- .ml-size-148--desktop-up {
15204
- margin-inline-start: 9.25rem !important;
15205
- }
15206
- .mx-size-148--desktop-up {
15207
- margin-inline: 9.25rem !important;
15208
- }
15209
- .my-size-148--desktop-up {
15210
- margin-block: 9.25rem !important;
15211
- }
15212
- .p-size-148--desktop-up {
15213
- padding: 9.25rem !important;
15214
- }
15215
- .pt-size-148--desktop-up {
15216
- padding-block-start: 9.25rem !important;
15217
- }
15218
- .pr-size-148--desktop-up {
15219
- padding-inline-end: 9.25rem !important;
15220
- }
15221
- .pb-size-148--desktop-up {
15222
- padding-block-end: 9.25rem !important;
15223
- }
15224
- .pl-size-148--desktop-up {
15225
- padding-inline-start: 9.25rem !important;
15226
- }
15227
- .px-size-148--desktop-up {
15228
- padding-inline: 9.25rem !important;
15229
- }
15230
- .py-size-148--desktop-up {
15231
- padding-block: 9.25rem !important;
15232
- }
15233
- .gap-size-148--desktop-up {
15234
- gap: 9.25rem !important;
15235
- }
15236
- .m-size-5--desktop-up {
15237
- margin: 0.3125rem !important;
15238
- }
15239
- .mt-size-5--desktop-up {
15240
- margin-block-start: 0.3125rem !important;
15241
- }
15242
- .mr-size-5--desktop-up {
15243
- margin-inline-end: 0.3125rem !important;
15244
- }
15245
- .mb-size-5--desktop-up {
15246
- margin-block-end: 0.3125rem !important;
15247
- }
15248
- .ml-size-5--desktop-up {
15249
- margin-inline-start: 0.3125rem !important;
15250
- }
15251
- .mx-size-5--desktop-up {
15252
- margin-inline: 0.3125rem !important;
15253
- }
15254
- .my-size-5--desktop-up {
15255
- margin-block: 0.3125rem !important;
15256
- }
15257
- .p-size-5--desktop-up {
15258
- padding: 0.3125rem !important;
15219
+ padding: 8rem !important;
15259
15220
  }
15260
- .pt-size-5--desktop-up {
15261
- padding-block-start: 0.3125rem !important;
15221
+ .pt-size-128--desktop-up {
15222
+ padding-block-start: 8rem !important;
15262
15223
  }
15263
- .pr-size-5--desktop-up {
15264
- padding-inline-end: 0.3125rem !important;
15224
+ .pr-size-128--desktop-up {
15225
+ padding-inline-end: 8rem !important;
15265
15226
  }
15266
- .pb-size-5--desktop-up {
15267
- padding-block-end: 0.3125rem !important;
15227
+ .pb-size-128--desktop-up {
15228
+ padding-block-end: 8rem !important;
15268
15229
  }
15269
- .pl-size-5--desktop-up {
15270
- padding-inline-start: 0.3125rem !important;
15230
+ .pl-size-128--desktop-up {
15231
+ padding-inline-start: 8rem !important;
15271
15232
  }
15272
- .px-size-5--desktop-up {
15273
- padding-inline: 0.3125rem !important;
15233
+ .px-size-128--desktop-up {
15234
+ padding-inline: 8rem !important;
15274
15235
  }
15275
- .py-size-5--desktop-up {
15276
- padding-block: 0.3125rem !important;
15236
+ .py-size-128--desktop-up {
15237
+ padding-block: 8rem !important;
15277
15238
  }
15278
- .gap-size-5--desktop-up {
15279
- gap: 0.3125rem !important;
15239
+ .gap-size-128--desktop-up {
15240
+ gap: 8rem !important;
15280
15241
  }
15281
15242
  .m-size-10--desktop-up {
15282
15243
  margin: 0.625rem !important;
@@ -15323,51 +15284,6 @@
15323
15284
  .gap-size-10--desktop-up {
15324
15285
  gap: 0.625rem !important;
15325
15286
  }
15326
- .m-size-15--desktop-up {
15327
- margin: 0.9375rem !important;
15328
- }
15329
- .mt-size-15--desktop-up {
15330
- margin-block-start: 0.9375rem !important;
15331
- }
15332
- .mr-size-15--desktop-up {
15333
- margin-inline-end: 0.9375rem !important;
15334
- }
15335
- .mb-size-15--desktop-up {
15336
- margin-block-end: 0.9375rem !important;
15337
- }
15338
- .ml-size-15--desktop-up {
15339
- margin-inline-start: 0.9375rem !important;
15340
- }
15341
- .mx-size-15--desktop-up {
15342
- margin-inline: 0.9375rem !important;
15343
- }
15344
- .my-size-15--desktop-up {
15345
- margin-block: 0.9375rem !important;
15346
- }
15347
- .p-size-15--desktop-up {
15348
- padding: 0.9375rem !important;
15349
- }
15350
- .pt-size-15--desktop-up {
15351
- padding-block-start: 0.9375rem !important;
15352
- }
15353
- .pr-size-15--desktop-up {
15354
- padding-inline-end: 0.9375rem !important;
15355
- }
15356
- .pb-size-15--desktop-up {
15357
- padding-block-end: 0.9375rem !important;
15358
- }
15359
- .pl-size-15--desktop-up {
15360
- padding-inline-start: 0.9375rem !important;
15361
- }
15362
- .px-size-15--desktop-up {
15363
- padding-inline: 0.9375rem !important;
15364
- }
15365
- .py-size-15--desktop-up {
15366
- padding-block: 0.9375rem !important;
15367
- }
15368
- .gap-size-15--desktop-up {
15369
- gap: 0.9375rem !important;
15370
- }
15371
15287
  .m-size-20--desktop-up {
15372
15288
  margin: 1.25rem !important;
15373
15289
  }
@@ -15458,51 +15374,6 @@
15458
15374
  .gap-size-30--desktop-up {
15459
15375
  gap: 1.875rem !important;
15460
15376
  }
15461
- .m-size-50--desktop-up {
15462
- margin: 3.125rem !important;
15463
- }
15464
- .mt-size-50--desktop-up {
15465
- margin-block-start: 3.125rem !important;
15466
- }
15467
- .mr-size-50--desktop-up {
15468
- margin-inline-end: 3.125rem !important;
15469
- }
15470
- .mb-size-50--desktop-up {
15471
- margin-block-end: 3.125rem !important;
15472
- }
15473
- .ml-size-50--desktop-up {
15474
- margin-inline-start: 3.125rem !important;
15475
- }
15476
- .mx-size-50--desktop-up {
15477
- margin-inline: 3.125rem !important;
15478
- }
15479
- .my-size-50--desktop-up {
15480
- margin-block: 3.125rem !important;
15481
- }
15482
- .p-size-50--desktop-up {
15483
- padding: 3.125rem !important;
15484
- }
15485
- .pt-size-50--desktop-up {
15486
- padding-block-start: 3.125rem !important;
15487
- }
15488
- .pr-size-50--desktop-up {
15489
- padding-inline-end: 3.125rem !important;
15490
- }
15491
- .pb-size-50--desktop-up {
15492
- padding-block-end: 3.125rem !important;
15493
- }
15494
- .pl-size-50--desktop-up {
15495
- padding-inline-start: 3.125rem !important;
15496
- }
15497
- .px-size-50--desktop-up {
15498
- padding-inline: 3.125rem !important;
15499
- }
15500
- .py-size-50--desktop-up {
15501
- padding-block: 3.125rem !important;
15502
- }
15503
- .gap-size-50--desktop-up {
15504
- gap: 3.125rem !important;
15505
- }
15506
15377
  .m-size-60--desktop-up {
15507
15378
  margin: 3.75rem !important;
15508
15379
  }
@@ -15548,6 +15419,141 @@
15548
15419
  .gap-size-60--desktop-up {
15549
15420
  gap: 3.75rem !important;
15550
15421
  }
15422
+ .m-size-5--desktop-up {
15423
+ margin: 0.3125rem !important;
15424
+ }
15425
+ .mt-size-5--desktop-up {
15426
+ margin-block-start: 0.3125rem !important;
15427
+ }
15428
+ .mr-size-5--desktop-up {
15429
+ margin-inline-end: 0.3125rem !important;
15430
+ }
15431
+ .mb-size-5--desktop-up {
15432
+ margin-block-end: 0.3125rem !important;
15433
+ }
15434
+ .ml-size-5--desktop-up {
15435
+ margin-inline-start: 0.3125rem !important;
15436
+ }
15437
+ .mx-size-5--desktop-up {
15438
+ margin-inline: 0.3125rem !important;
15439
+ }
15440
+ .my-size-5--desktop-up {
15441
+ margin-block: 0.3125rem !important;
15442
+ }
15443
+ .p-size-5--desktop-up {
15444
+ padding: 0.3125rem !important;
15445
+ }
15446
+ .pt-size-5--desktop-up {
15447
+ padding-block-start: 0.3125rem !important;
15448
+ }
15449
+ .pr-size-5--desktop-up {
15450
+ padding-inline-end: 0.3125rem !important;
15451
+ }
15452
+ .pb-size-5--desktop-up {
15453
+ padding-block-end: 0.3125rem !important;
15454
+ }
15455
+ .pl-size-5--desktop-up {
15456
+ padding-inline-start: 0.3125rem !important;
15457
+ }
15458
+ .px-size-5--desktop-up {
15459
+ padding-inline: 0.3125rem !important;
15460
+ }
15461
+ .py-size-5--desktop-up {
15462
+ padding-block: 0.3125rem !important;
15463
+ }
15464
+ .gap-size-5--desktop-up {
15465
+ gap: 0.3125rem !important;
15466
+ }
15467
+ .m-size-15--desktop-up {
15468
+ margin: 0.9375rem !important;
15469
+ }
15470
+ .mt-size-15--desktop-up {
15471
+ margin-block-start: 0.9375rem !important;
15472
+ }
15473
+ .mr-size-15--desktop-up {
15474
+ margin-inline-end: 0.9375rem !important;
15475
+ }
15476
+ .mb-size-15--desktop-up {
15477
+ margin-block-end: 0.9375rem !important;
15478
+ }
15479
+ .ml-size-15--desktop-up {
15480
+ margin-inline-start: 0.9375rem !important;
15481
+ }
15482
+ .mx-size-15--desktop-up {
15483
+ margin-inline: 0.9375rem !important;
15484
+ }
15485
+ .my-size-15--desktop-up {
15486
+ margin-block: 0.9375rem !important;
15487
+ }
15488
+ .p-size-15--desktop-up {
15489
+ padding: 0.9375rem !important;
15490
+ }
15491
+ .pt-size-15--desktop-up {
15492
+ padding-block-start: 0.9375rem !important;
15493
+ }
15494
+ .pr-size-15--desktop-up {
15495
+ padding-inline-end: 0.9375rem !important;
15496
+ }
15497
+ .pb-size-15--desktop-up {
15498
+ padding-block-end: 0.9375rem !important;
15499
+ }
15500
+ .pl-size-15--desktop-up {
15501
+ padding-inline-start: 0.9375rem !important;
15502
+ }
15503
+ .px-size-15--desktop-up {
15504
+ padding-inline: 0.9375rem !important;
15505
+ }
15506
+ .py-size-15--desktop-up {
15507
+ padding-block: 0.9375rem !important;
15508
+ }
15509
+ .gap-size-15--desktop-up {
15510
+ gap: 0.9375rem !important;
15511
+ }
15512
+ .m-size-50--desktop-up {
15513
+ margin: 3.125rem !important;
15514
+ }
15515
+ .mt-size-50--desktop-up {
15516
+ margin-block-start: 3.125rem !important;
15517
+ }
15518
+ .mr-size-50--desktop-up {
15519
+ margin-inline-end: 3.125rem !important;
15520
+ }
15521
+ .mb-size-50--desktop-up {
15522
+ margin-block-end: 3.125rem !important;
15523
+ }
15524
+ .ml-size-50--desktop-up {
15525
+ margin-inline-start: 3.125rem !important;
15526
+ }
15527
+ .mx-size-50--desktop-up {
15528
+ margin-inline: 3.125rem !important;
15529
+ }
15530
+ .my-size-50--desktop-up {
15531
+ margin-block: 3.125rem !important;
15532
+ }
15533
+ .p-size-50--desktop-up {
15534
+ padding: 3.125rem !important;
15535
+ }
15536
+ .pt-size-50--desktop-up {
15537
+ padding-block-start: 3.125rem !important;
15538
+ }
15539
+ .pr-size-50--desktop-up {
15540
+ padding-inline-end: 3.125rem !important;
15541
+ }
15542
+ .pb-size-50--desktop-up {
15543
+ padding-block-end: 3.125rem !important;
15544
+ }
15545
+ .pl-size-50--desktop-up {
15546
+ padding-inline-start: 3.125rem !important;
15547
+ }
15548
+ .px-size-50--desktop-up {
15549
+ padding-inline: 3.125rem !important;
15550
+ }
15551
+ .py-size-50--desktop-up {
15552
+ padding-block: 3.125rem !important;
15553
+ }
15554
+ .gap-size-50--desktop-up {
15555
+ gap: 3.125rem !important;
15556
+ }
15551
15557
  .m-size-75--desktop-up {
15552
15558
  margin: 4.6875rem !important;
15553
15559
  }
@@ -20792,7 +20798,7 @@
20792
20798
  padding: 0;
20793
20799
  display: grid;
20794
20800
  grid-template-columns: 1fr;
20795
- gap: 1.25rem;
20801
+ gap: 1.5rem;
20796
20802
  }
20797
20803
  @supports not (container-type: inline-size) {
20798
20804
  @media screen and (min-width: 48rem) {