@oslokommune/punkt-css 12.4.3 → 12.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/css/components/textinput.css +1 -1
- package/dist/css/components/textinput.min.css +1 -1
- package/dist/css/pkt-base.css +617 -1
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-components.css +1 -1
- package/dist/css/pkt-components.min.css +1 -1
- package/dist/css/pkt-elements.css +3 -3
- package/dist/css/pkt-elements.min.css +1 -1
- package/dist/css/pkt.css +620 -4
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/variables/_index.scss +1 -1
- package/dist/scss/base/_spacing.scss +11 -3
- package/package.json +2 -2
package/dist/css/pkt.css
CHANGED
|
@@ -1650,6 +1650,10 @@ body {
|
|
|
1650
1650
|
padding-bottom: 0rem !important;
|
|
1651
1651
|
}
|
|
1652
1652
|
|
|
1653
|
+
.gap-size-0 {
|
|
1654
|
+
gap: 0rem !important;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1653
1657
|
@media screen and (min-width: 0) {
|
|
1654
1658
|
.m-size-0--mobile-up {
|
|
1655
1659
|
margin: 0rem !important;
|
|
@@ -1697,6 +1701,9 @@ body {
|
|
|
1697
1701
|
padding-top: 0rem !important;
|
|
1698
1702
|
padding-bottom: 0rem !important;
|
|
1699
1703
|
}
|
|
1704
|
+
.gap-size-0--mobile-up {
|
|
1705
|
+
gap: 0rem !important;
|
|
1706
|
+
}
|
|
1700
1707
|
}
|
|
1701
1708
|
@media screen and (min-width: 36rem) {
|
|
1702
1709
|
.m-size-0--phablet-up {
|
|
@@ -1745,6 +1752,9 @@ body {
|
|
|
1745
1752
|
padding-top: 0rem !important;
|
|
1746
1753
|
padding-bottom: 0rem !important;
|
|
1747
1754
|
}
|
|
1755
|
+
.gap-size-0--phablet-up {
|
|
1756
|
+
gap: 0rem !important;
|
|
1757
|
+
}
|
|
1748
1758
|
}
|
|
1749
1759
|
@media screen and (min-width: 48rem) {
|
|
1750
1760
|
.m-size-0--tablet-up {
|
|
@@ -1793,6 +1803,9 @@ body {
|
|
|
1793
1803
|
padding-top: 0rem !important;
|
|
1794
1804
|
padding-bottom: 0rem !important;
|
|
1795
1805
|
}
|
|
1806
|
+
.gap-size-0--tablet-up {
|
|
1807
|
+
gap: 0rem !important;
|
|
1808
|
+
}
|
|
1796
1809
|
}
|
|
1797
1810
|
@media screen and (min-width: 64rem) {
|
|
1798
1811
|
.m-size-0--tablet-big-up {
|
|
@@ -1841,6 +1854,9 @@ body {
|
|
|
1841
1854
|
padding-top: 0rem !important;
|
|
1842
1855
|
padding-bottom: 0rem !important;
|
|
1843
1856
|
}
|
|
1857
|
+
.gap-size-0--tablet-big-up {
|
|
1858
|
+
gap: 0rem !important;
|
|
1859
|
+
}
|
|
1844
1860
|
}
|
|
1845
1861
|
@media screen and (min-width: 80rem) {
|
|
1846
1862
|
.m-size-0--laptop-up {
|
|
@@ -1889,6 +1905,9 @@ body {
|
|
|
1889
1905
|
padding-top: 0rem !important;
|
|
1890
1906
|
padding-bottom: 0rem !important;
|
|
1891
1907
|
}
|
|
1908
|
+
.gap-size-0--laptop-up {
|
|
1909
|
+
gap: 0rem !important;
|
|
1910
|
+
}
|
|
1892
1911
|
}
|
|
1893
1912
|
@media screen and (min-width: 100rem) {
|
|
1894
1913
|
.m-size-0--desktop-up {
|
|
@@ -1937,6 +1956,9 @@ body {
|
|
|
1937
1956
|
padding-top: 0rem !important;
|
|
1938
1957
|
padding-bottom: 0rem !important;
|
|
1939
1958
|
}
|
|
1959
|
+
.gap-size-0--desktop-up {
|
|
1960
|
+
gap: 0rem !important;
|
|
1961
|
+
}
|
|
1940
1962
|
}
|
|
1941
1963
|
.m-size-2 {
|
|
1942
1964
|
margin: 0.125rem !important;
|
|
@@ -1998,6 +2020,10 @@ body {
|
|
|
1998
2020
|
padding-bottom: 0.125rem !important;
|
|
1999
2021
|
}
|
|
2000
2022
|
|
|
2023
|
+
.gap-size-2 {
|
|
2024
|
+
gap: 0.125rem !important;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2001
2027
|
@media screen and (min-width: 0) {
|
|
2002
2028
|
.m-size-2--mobile-up {
|
|
2003
2029
|
margin: 0.125rem !important;
|
|
@@ -2045,6 +2071,9 @@ body {
|
|
|
2045
2071
|
padding-top: 0.125rem !important;
|
|
2046
2072
|
padding-bottom: 0.125rem !important;
|
|
2047
2073
|
}
|
|
2074
|
+
.gap-size-2--mobile-up {
|
|
2075
|
+
gap: 0.125rem !important;
|
|
2076
|
+
}
|
|
2048
2077
|
}
|
|
2049
2078
|
@media screen and (min-width: 36rem) {
|
|
2050
2079
|
.m-size-2--phablet-up {
|
|
@@ -2093,6 +2122,9 @@ body {
|
|
|
2093
2122
|
padding-top: 0.125rem !important;
|
|
2094
2123
|
padding-bottom: 0.125rem !important;
|
|
2095
2124
|
}
|
|
2125
|
+
.gap-size-2--phablet-up {
|
|
2126
|
+
gap: 0.125rem !important;
|
|
2127
|
+
}
|
|
2096
2128
|
}
|
|
2097
2129
|
@media screen and (min-width: 48rem) {
|
|
2098
2130
|
.m-size-2--tablet-up {
|
|
@@ -2141,6 +2173,9 @@ body {
|
|
|
2141
2173
|
padding-top: 0.125rem !important;
|
|
2142
2174
|
padding-bottom: 0.125rem !important;
|
|
2143
2175
|
}
|
|
2176
|
+
.gap-size-2--tablet-up {
|
|
2177
|
+
gap: 0.125rem !important;
|
|
2178
|
+
}
|
|
2144
2179
|
}
|
|
2145
2180
|
@media screen and (min-width: 64rem) {
|
|
2146
2181
|
.m-size-2--tablet-big-up {
|
|
@@ -2189,6 +2224,9 @@ body {
|
|
|
2189
2224
|
padding-top: 0.125rem !important;
|
|
2190
2225
|
padding-bottom: 0.125rem !important;
|
|
2191
2226
|
}
|
|
2227
|
+
.gap-size-2--tablet-big-up {
|
|
2228
|
+
gap: 0.125rem !important;
|
|
2229
|
+
}
|
|
2192
2230
|
}
|
|
2193
2231
|
@media screen and (min-width: 80rem) {
|
|
2194
2232
|
.m-size-2--laptop-up {
|
|
@@ -2237,6 +2275,9 @@ body {
|
|
|
2237
2275
|
padding-top: 0.125rem !important;
|
|
2238
2276
|
padding-bottom: 0.125rem !important;
|
|
2239
2277
|
}
|
|
2278
|
+
.gap-size-2--laptop-up {
|
|
2279
|
+
gap: 0.125rem !important;
|
|
2280
|
+
}
|
|
2240
2281
|
}
|
|
2241
2282
|
@media screen and (min-width: 100rem) {
|
|
2242
2283
|
.m-size-2--desktop-up {
|
|
@@ -2285,6 +2326,9 @@ body {
|
|
|
2285
2326
|
padding-top: 0.125rem !important;
|
|
2286
2327
|
padding-bottom: 0.125rem !important;
|
|
2287
2328
|
}
|
|
2329
|
+
.gap-size-2--desktop-up {
|
|
2330
|
+
gap: 0.125rem !important;
|
|
2331
|
+
}
|
|
2288
2332
|
}
|
|
2289
2333
|
.m-size-4 {
|
|
2290
2334
|
margin: 0.25rem !important;
|
|
@@ -2346,6 +2390,10 @@ body {
|
|
|
2346
2390
|
padding-bottom: 0.25rem !important;
|
|
2347
2391
|
}
|
|
2348
2392
|
|
|
2393
|
+
.gap-size-4 {
|
|
2394
|
+
gap: 0.25rem !important;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2349
2397
|
@media screen and (min-width: 0) {
|
|
2350
2398
|
.m-size-4--mobile-up {
|
|
2351
2399
|
margin: 0.25rem !important;
|
|
@@ -2393,6 +2441,9 @@ body {
|
|
|
2393
2441
|
padding-top: 0.25rem !important;
|
|
2394
2442
|
padding-bottom: 0.25rem !important;
|
|
2395
2443
|
}
|
|
2444
|
+
.gap-size-4--mobile-up {
|
|
2445
|
+
gap: 0.25rem !important;
|
|
2446
|
+
}
|
|
2396
2447
|
}
|
|
2397
2448
|
@media screen and (min-width: 36rem) {
|
|
2398
2449
|
.m-size-4--phablet-up {
|
|
@@ -2441,6 +2492,9 @@ body {
|
|
|
2441
2492
|
padding-top: 0.25rem !important;
|
|
2442
2493
|
padding-bottom: 0.25rem !important;
|
|
2443
2494
|
}
|
|
2495
|
+
.gap-size-4--phablet-up {
|
|
2496
|
+
gap: 0.25rem !important;
|
|
2497
|
+
}
|
|
2444
2498
|
}
|
|
2445
2499
|
@media screen and (min-width: 48rem) {
|
|
2446
2500
|
.m-size-4--tablet-up {
|
|
@@ -2489,6 +2543,9 @@ body {
|
|
|
2489
2543
|
padding-top: 0.25rem !important;
|
|
2490
2544
|
padding-bottom: 0.25rem !important;
|
|
2491
2545
|
}
|
|
2546
|
+
.gap-size-4--tablet-up {
|
|
2547
|
+
gap: 0.25rem !important;
|
|
2548
|
+
}
|
|
2492
2549
|
}
|
|
2493
2550
|
@media screen and (min-width: 64rem) {
|
|
2494
2551
|
.m-size-4--tablet-big-up {
|
|
@@ -2537,6 +2594,9 @@ body {
|
|
|
2537
2594
|
padding-top: 0.25rem !important;
|
|
2538
2595
|
padding-bottom: 0.25rem !important;
|
|
2539
2596
|
}
|
|
2597
|
+
.gap-size-4--tablet-big-up {
|
|
2598
|
+
gap: 0.25rem !important;
|
|
2599
|
+
}
|
|
2540
2600
|
}
|
|
2541
2601
|
@media screen and (min-width: 80rem) {
|
|
2542
2602
|
.m-size-4--laptop-up {
|
|
@@ -2585,6 +2645,9 @@ body {
|
|
|
2585
2645
|
padding-top: 0.25rem !important;
|
|
2586
2646
|
padding-bottom: 0.25rem !important;
|
|
2587
2647
|
}
|
|
2648
|
+
.gap-size-4--laptop-up {
|
|
2649
|
+
gap: 0.25rem !important;
|
|
2650
|
+
}
|
|
2588
2651
|
}
|
|
2589
2652
|
@media screen and (min-width: 100rem) {
|
|
2590
2653
|
.m-size-4--desktop-up {
|
|
@@ -2633,6 +2696,9 @@ body {
|
|
|
2633
2696
|
padding-top: 0.25rem !important;
|
|
2634
2697
|
padding-bottom: 0.25rem !important;
|
|
2635
2698
|
}
|
|
2699
|
+
.gap-size-4--desktop-up {
|
|
2700
|
+
gap: 0.25rem !important;
|
|
2701
|
+
}
|
|
2636
2702
|
}
|
|
2637
2703
|
.m-size-6 {
|
|
2638
2704
|
margin: 0.375rem !important;
|
|
@@ -2694,6 +2760,10 @@ body {
|
|
|
2694
2760
|
padding-bottom: 0.375rem !important;
|
|
2695
2761
|
}
|
|
2696
2762
|
|
|
2763
|
+
.gap-size-6 {
|
|
2764
|
+
gap: 0.375rem !important;
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2697
2767
|
@media screen and (min-width: 0) {
|
|
2698
2768
|
.m-size-6--mobile-up {
|
|
2699
2769
|
margin: 0.375rem !important;
|
|
@@ -2741,6 +2811,9 @@ body {
|
|
|
2741
2811
|
padding-top: 0.375rem !important;
|
|
2742
2812
|
padding-bottom: 0.375rem !important;
|
|
2743
2813
|
}
|
|
2814
|
+
.gap-size-6--mobile-up {
|
|
2815
|
+
gap: 0.375rem !important;
|
|
2816
|
+
}
|
|
2744
2817
|
}
|
|
2745
2818
|
@media screen and (min-width: 36rem) {
|
|
2746
2819
|
.m-size-6--phablet-up {
|
|
@@ -2789,6 +2862,9 @@ body {
|
|
|
2789
2862
|
padding-top: 0.375rem !important;
|
|
2790
2863
|
padding-bottom: 0.375rem !important;
|
|
2791
2864
|
}
|
|
2865
|
+
.gap-size-6--phablet-up {
|
|
2866
|
+
gap: 0.375rem !important;
|
|
2867
|
+
}
|
|
2792
2868
|
}
|
|
2793
2869
|
@media screen and (min-width: 48rem) {
|
|
2794
2870
|
.m-size-6--tablet-up {
|
|
@@ -2837,6 +2913,9 @@ body {
|
|
|
2837
2913
|
padding-top: 0.375rem !important;
|
|
2838
2914
|
padding-bottom: 0.375rem !important;
|
|
2839
2915
|
}
|
|
2916
|
+
.gap-size-6--tablet-up {
|
|
2917
|
+
gap: 0.375rem !important;
|
|
2918
|
+
}
|
|
2840
2919
|
}
|
|
2841
2920
|
@media screen and (min-width: 64rem) {
|
|
2842
2921
|
.m-size-6--tablet-big-up {
|
|
@@ -2885,6 +2964,9 @@ body {
|
|
|
2885
2964
|
padding-top: 0.375rem !important;
|
|
2886
2965
|
padding-bottom: 0.375rem !important;
|
|
2887
2966
|
}
|
|
2967
|
+
.gap-size-6--tablet-big-up {
|
|
2968
|
+
gap: 0.375rem !important;
|
|
2969
|
+
}
|
|
2888
2970
|
}
|
|
2889
2971
|
@media screen and (min-width: 80rem) {
|
|
2890
2972
|
.m-size-6--laptop-up {
|
|
@@ -2933,6 +3015,9 @@ body {
|
|
|
2933
3015
|
padding-top: 0.375rem !important;
|
|
2934
3016
|
padding-bottom: 0.375rem !important;
|
|
2935
3017
|
}
|
|
3018
|
+
.gap-size-6--laptop-up {
|
|
3019
|
+
gap: 0.375rem !important;
|
|
3020
|
+
}
|
|
2936
3021
|
}
|
|
2937
3022
|
@media screen and (min-width: 100rem) {
|
|
2938
3023
|
.m-size-6--desktop-up {
|
|
@@ -2981,6 +3066,9 @@ body {
|
|
|
2981
3066
|
padding-top: 0.375rem !important;
|
|
2982
3067
|
padding-bottom: 0.375rem !important;
|
|
2983
3068
|
}
|
|
3069
|
+
.gap-size-6--desktop-up {
|
|
3070
|
+
gap: 0.375rem !important;
|
|
3071
|
+
}
|
|
2984
3072
|
}
|
|
2985
3073
|
.m-size-8 {
|
|
2986
3074
|
margin: 0.5rem !important;
|
|
@@ -3042,6 +3130,10 @@ body {
|
|
|
3042
3130
|
padding-bottom: 0.5rem !important;
|
|
3043
3131
|
}
|
|
3044
3132
|
|
|
3133
|
+
.gap-size-8 {
|
|
3134
|
+
gap: 0.5rem !important;
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3045
3137
|
@media screen and (min-width: 0) {
|
|
3046
3138
|
.m-size-8--mobile-up {
|
|
3047
3139
|
margin: 0.5rem !important;
|
|
@@ -3089,6 +3181,9 @@ body {
|
|
|
3089
3181
|
padding-top: 0.5rem !important;
|
|
3090
3182
|
padding-bottom: 0.5rem !important;
|
|
3091
3183
|
}
|
|
3184
|
+
.gap-size-8--mobile-up {
|
|
3185
|
+
gap: 0.5rem !important;
|
|
3186
|
+
}
|
|
3092
3187
|
}
|
|
3093
3188
|
@media screen and (min-width: 36rem) {
|
|
3094
3189
|
.m-size-8--phablet-up {
|
|
@@ -3137,6 +3232,9 @@ body {
|
|
|
3137
3232
|
padding-top: 0.5rem !important;
|
|
3138
3233
|
padding-bottom: 0.5rem !important;
|
|
3139
3234
|
}
|
|
3235
|
+
.gap-size-8--phablet-up {
|
|
3236
|
+
gap: 0.5rem !important;
|
|
3237
|
+
}
|
|
3140
3238
|
}
|
|
3141
3239
|
@media screen and (min-width: 48rem) {
|
|
3142
3240
|
.m-size-8--tablet-up {
|
|
@@ -3185,6 +3283,9 @@ body {
|
|
|
3185
3283
|
padding-top: 0.5rem !important;
|
|
3186
3284
|
padding-bottom: 0.5rem !important;
|
|
3187
3285
|
}
|
|
3286
|
+
.gap-size-8--tablet-up {
|
|
3287
|
+
gap: 0.5rem !important;
|
|
3288
|
+
}
|
|
3188
3289
|
}
|
|
3189
3290
|
@media screen and (min-width: 64rem) {
|
|
3190
3291
|
.m-size-8--tablet-big-up {
|
|
@@ -3233,6 +3334,9 @@ body {
|
|
|
3233
3334
|
padding-top: 0.5rem !important;
|
|
3234
3335
|
padding-bottom: 0.5rem !important;
|
|
3235
3336
|
}
|
|
3337
|
+
.gap-size-8--tablet-big-up {
|
|
3338
|
+
gap: 0.5rem !important;
|
|
3339
|
+
}
|
|
3236
3340
|
}
|
|
3237
3341
|
@media screen and (min-width: 80rem) {
|
|
3238
3342
|
.m-size-8--laptop-up {
|
|
@@ -3281,6 +3385,9 @@ body {
|
|
|
3281
3385
|
padding-top: 0.5rem !important;
|
|
3282
3386
|
padding-bottom: 0.5rem !important;
|
|
3283
3387
|
}
|
|
3388
|
+
.gap-size-8--laptop-up {
|
|
3389
|
+
gap: 0.5rem !important;
|
|
3390
|
+
}
|
|
3284
3391
|
}
|
|
3285
3392
|
@media screen and (min-width: 100rem) {
|
|
3286
3393
|
.m-size-8--desktop-up {
|
|
@@ -3329,6 +3436,9 @@ body {
|
|
|
3329
3436
|
padding-top: 0.5rem !important;
|
|
3330
3437
|
padding-bottom: 0.5rem !important;
|
|
3331
3438
|
}
|
|
3439
|
+
.gap-size-8--desktop-up {
|
|
3440
|
+
gap: 0.5rem !important;
|
|
3441
|
+
}
|
|
3332
3442
|
}
|
|
3333
3443
|
.m-size-12 {
|
|
3334
3444
|
margin: 0.75rem !important;
|
|
@@ -3390,6 +3500,10 @@ body {
|
|
|
3390
3500
|
padding-bottom: 0.75rem !important;
|
|
3391
3501
|
}
|
|
3392
3502
|
|
|
3503
|
+
.gap-size-12 {
|
|
3504
|
+
gap: 0.75rem !important;
|
|
3505
|
+
}
|
|
3506
|
+
|
|
3393
3507
|
@media screen and (min-width: 0) {
|
|
3394
3508
|
.m-size-12--mobile-up {
|
|
3395
3509
|
margin: 0.75rem !important;
|
|
@@ -3437,6 +3551,9 @@ body {
|
|
|
3437
3551
|
padding-top: 0.75rem !important;
|
|
3438
3552
|
padding-bottom: 0.75rem !important;
|
|
3439
3553
|
}
|
|
3554
|
+
.gap-size-12--mobile-up {
|
|
3555
|
+
gap: 0.75rem !important;
|
|
3556
|
+
}
|
|
3440
3557
|
}
|
|
3441
3558
|
@media screen and (min-width: 36rem) {
|
|
3442
3559
|
.m-size-12--phablet-up {
|
|
@@ -3485,6 +3602,9 @@ body {
|
|
|
3485
3602
|
padding-top: 0.75rem !important;
|
|
3486
3603
|
padding-bottom: 0.75rem !important;
|
|
3487
3604
|
}
|
|
3605
|
+
.gap-size-12--phablet-up {
|
|
3606
|
+
gap: 0.75rem !important;
|
|
3607
|
+
}
|
|
3488
3608
|
}
|
|
3489
3609
|
@media screen and (min-width: 48rem) {
|
|
3490
3610
|
.m-size-12--tablet-up {
|
|
@@ -3533,6 +3653,9 @@ body {
|
|
|
3533
3653
|
padding-top: 0.75rem !important;
|
|
3534
3654
|
padding-bottom: 0.75rem !important;
|
|
3535
3655
|
}
|
|
3656
|
+
.gap-size-12--tablet-up {
|
|
3657
|
+
gap: 0.75rem !important;
|
|
3658
|
+
}
|
|
3536
3659
|
}
|
|
3537
3660
|
@media screen and (min-width: 64rem) {
|
|
3538
3661
|
.m-size-12--tablet-big-up {
|
|
@@ -3581,6 +3704,9 @@ body {
|
|
|
3581
3704
|
padding-top: 0.75rem !important;
|
|
3582
3705
|
padding-bottom: 0.75rem !important;
|
|
3583
3706
|
}
|
|
3707
|
+
.gap-size-12--tablet-big-up {
|
|
3708
|
+
gap: 0.75rem !important;
|
|
3709
|
+
}
|
|
3584
3710
|
}
|
|
3585
3711
|
@media screen and (min-width: 80rem) {
|
|
3586
3712
|
.m-size-12--laptop-up {
|
|
@@ -3629,6 +3755,9 @@ body {
|
|
|
3629
3755
|
padding-top: 0.75rem !important;
|
|
3630
3756
|
padding-bottom: 0.75rem !important;
|
|
3631
3757
|
}
|
|
3758
|
+
.gap-size-12--laptop-up {
|
|
3759
|
+
gap: 0.75rem !important;
|
|
3760
|
+
}
|
|
3632
3761
|
}
|
|
3633
3762
|
@media screen and (min-width: 100rem) {
|
|
3634
3763
|
.m-size-12--desktop-up {
|
|
@@ -3677,6 +3806,9 @@ body {
|
|
|
3677
3806
|
padding-top: 0.75rem !important;
|
|
3678
3807
|
padding-bottom: 0.75rem !important;
|
|
3679
3808
|
}
|
|
3809
|
+
.gap-size-12--desktop-up {
|
|
3810
|
+
gap: 0.75rem !important;
|
|
3811
|
+
}
|
|
3680
3812
|
}
|
|
3681
3813
|
.m-size-16 {
|
|
3682
3814
|
margin: 1rem !important;
|
|
@@ -3738,6 +3870,10 @@ body {
|
|
|
3738
3870
|
padding-bottom: 1rem !important;
|
|
3739
3871
|
}
|
|
3740
3872
|
|
|
3873
|
+
.gap-size-16 {
|
|
3874
|
+
gap: 1rem !important;
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3741
3877
|
@media screen and (min-width: 0) {
|
|
3742
3878
|
.m-size-16--mobile-up {
|
|
3743
3879
|
margin: 1rem !important;
|
|
@@ -3785,6 +3921,9 @@ body {
|
|
|
3785
3921
|
padding-top: 1rem !important;
|
|
3786
3922
|
padding-bottom: 1rem !important;
|
|
3787
3923
|
}
|
|
3924
|
+
.gap-size-16--mobile-up {
|
|
3925
|
+
gap: 1rem !important;
|
|
3926
|
+
}
|
|
3788
3927
|
}
|
|
3789
3928
|
@media screen and (min-width: 36rem) {
|
|
3790
3929
|
.m-size-16--phablet-up {
|
|
@@ -3833,6 +3972,9 @@ body {
|
|
|
3833
3972
|
padding-top: 1rem !important;
|
|
3834
3973
|
padding-bottom: 1rem !important;
|
|
3835
3974
|
}
|
|
3975
|
+
.gap-size-16--phablet-up {
|
|
3976
|
+
gap: 1rem !important;
|
|
3977
|
+
}
|
|
3836
3978
|
}
|
|
3837
3979
|
@media screen and (min-width: 48rem) {
|
|
3838
3980
|
.m-size-16--tablet-up {
|
|
@@ -3881,6 +4023,9 @@ body {
|
|
|
3881
4023
|
padding-top: 1rem !important;
|
|
3882
4024
|
padding-bottom: 1rem !important;
|
|
3883
4025
|
}
|
|
4026
|
+
.gap-size-16--tablet-up {
|
|
4027
|
+
gap: 1rem !important;
|
|
4028
|
+
}
|
|
3884
4029
|
}
|
|
3885
4030
|
@media screen and (min-width: 64rem) {
|
|
3886
4031
|
.m-size-16--tablet-big-up {
|
|
@@ -3929,6 +4074,9 @@ body {
|
|
|
3929
4074
|
padding-top: 1rem !important;
|
|
3930
4075
|
padding-bottom: 1rem !important;
|
|
3931
4076
|
}
|
|
4077
|
+
.gap-size-16--tablet-big-up {
|
|
4078
|
+
gap: 1rem !important;
|
|
4079
|
+
}
|
|
3932
4080
|
}
|
|
3933
4081
|
@media screen and (min-width: 80rem) {
|
|
3934
4082
|
.m-size-16--laptop-up {
|
|
@@ -3977,6 +4125,9 @@ body {
|
|
|
3977
4125
|
padding-top: 1rem !important;
|
|
3978
4126
|
padding-bottom: 1rem !important;
|
|
3979
4127
|
}
|
|
4128
|
+
.gap-size-16--laptop-up {
|
|
4129
|
+
gap: 1rem !important;
|
|
4130
|
+
}
|
|
3980
4131
|
}
|
|
3981
4132
|
@media screen and (min-width: 100rem) {
|
|
3982
4133
|
.m-size-16--desktop-up {
|
|
@@ -4025,6 +4176,9 @@ body {
|
|
|
4025
4176
|
padding-top: 1rem !important;
|
|
4026
4177
|
padding-bottom: 1rem !important;
|
|
4027
4178
|
}
|
|
4179
|
+
.gap-size-16--desktop-up {
|
|
4180
|
+
gap: 1rem !important;
|
|
4181
|
+
}
|
|
4028
4182
|
}
|
|
4029
4183
|
.m-size-24 {
|
|
4030
4184
|
margin: 1.5rem !important;
|
|
@@ -4086,6 +4240,10 @@ body {
|
|
|
4086
4240
|
padding-bottom: 1.5rem !important;
|
|
4087
4241
|
}
|
|
4088
4242
|
|
|
4243
|
+
.gap-size-24 {
|
|
4244
|
+
gap: 1.5rem !important;
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4089
4247
|
@media screen and (min-width: 0) {
|
|
4090
4248
|
.m-size-24--mobile-up {
|
|
4091
4249
|
margin: 1.5rem !important;
|
|
@@ -4133,6 +4291,9 @@ body {
|
|
|
4133
4291
|
padding-top: 1.5rem !important;
|
|
4134
4292
|
padding-bottom: 1.5rem !important;
|
|
4135
4293
|
}
|
|
4294
|
+
.gap-size-24--mobile-up {
|
|
4295
|
+
gap: 1.5rem !important;
|
|
4296
|
+
}
|
|
4136
4297
|
}
|
|
4137
4298
|
@media screen and (min-width: 36rem) {
|
|
4138
4299
|
.m-size-24--phablet-up {
|
|
@@ -4181,6 +4342,9 @@ body {
|
|
|
4181
4342
|
padding-top: 1.5rem !important;
|
|
4182
4343
|
padding-bottom: 1.5rem !important;
|
|
4183
4344
|
}
|
|
4345
|
+
.gap-size-24--phablet-up {
|
|
4346
|
+
gap: 1.5rem !important;
|
|
4347
|
+
}
|
|
4184
4348
|
}
|
|
4185
4349
|
@media screen and (min-width: 48rem) {
|
|
4186
4350
|
.m-size-24--tablet-up {
|
|
@@ -4229,6 +4393,9 @@ body {
|
|
|
4229
4393
|
padding-top: 1.5rem !important;
|
|
4230
4394
|
padding-bottom: 1.5rem !important;
|
|
4231
4395
|
}
|
|
4396
|
+
.gap-size-24--tablet-up {
|
|
4397
|
+
gap: 1.5rem !important;
|
|
4398
|
+
}
|
|
4232
4399
|
}
|
|
4233
4400
|
@media screen and (min-width: 64rem) {
|
|
4234
4401
|
.m-size-24--tablet-big-up {
|
|
@@ -4277,6 +4444,9 @@ body {
|
|
|
4277
4444
|
padding-top: 1.5rem !important;
|
|
4278
4445
|
padding-bottom: 1.5rem !important;
|
|
4279
4446
|
}
|
|
4447
|
+
.gap-size-24--tablet-big-up {
|
|
4448
|
+
gap: 1.5rem !important;
|
|
4449
|
+
}
|
|
4280
4450
|
}
|
|
4281
4451
|
@media screen and (min-width: 80rem) {
|
|
4282
4452
|
.m-size-24--laptop-up {
|
|
@@ -4325,6 +4495,9 @@ body {
|
|
|
4325
4495
|
padding-top: 1.5rem !important;
|
|
4326
4496
|
padding-bottom: 1.5rem !important;
|
|
4327
4497
|
}
|
|
4498
|
+
.gap-size-24--laptop-up {
|
|
4499
|
+
gap: 1.5rem !important;
|
|
4500
|
+
}
|
|
4328
4501
|
}
|
|
4329
4502
|
@media screen and (min-width: 100rem) {
|
|
4330
4503
|
.m-size-24--desktop-up {
|
|
@@ -4373,6 +4546,9 @@ body {
|
|
|
4373
4546
|
padding-top: 1.5rem !important;
|
|
4374
4547
|
padding-bottom: 1.5rem !important;
|
|
4375
4548
|
}
|
|
4549
|
+
.gap-size-24--desktop-up {
|
|
4550
|
+
gap: 1.5rem !important;
|
|
4551
|
+
}
|
|
4376
4552
|
}
|
|
4377
4553
|
.m-size-32 {
|
|
4378
4554
|
margin: 2rem !important;
|
|
@@ -4434,6 +4610,10 @@ body {
|
|
|
4434
4610
|
padding-bottom: 2rem !important;
|
|
4435
4611
|
}
|
|
4436
4612
|
|
|
4613
|
+
.gap-size-32 {
|
|
4614
|
+
gap: 2rem !important;
|
|
4615
|
+
}
|
|
4616
|
+
|
|
4437
4617
|
@media screen and (min-width: 0) {
|
|
4438
4618
|
.m-size-32--mobile-up {
|
|
4439
4619
|
margin: 2rem !important;
|
|
@@ -4481,6 +4661,9 @@ body {
|
|
|
4481
4661
|
padding-top: 2rem !important;
|
|
4482
4662
|
padding-bottom: 2rem !important;
|
|
4483
4663
|
}
|
|
4664
|
+
.gap-size-32--mobile-up {
|
|
4665
|
+
gap: 2rem !important;
|
|
4666
|
+
}
|
|
4484
4667
|
}
|
|
4485
4668
|
@media screen and (min-width: 36rem) {
|
|
4486
4669
|
.m-size-32--phablet-up {
|
|
@@ -4529,6 +4712,9 @@ body {
|
|
|
4529
4712
|
padding-top: 2rem !important;
|
|
4530
4713
|
padding-bottom: 2rem !important;
|
|
4531
4714
|
}
|
|
4715
|
+
.gap-size-32--phablet-up {
|
|
4716
|
+
gap: 2rem !important;
|
|
4717
|
+
}
|
|
4532
4718
|
}
|
|
4533
4719
|
@media screen and (min-width: 48rem) {
|
|
4534
4720
|
.m-size-32--tablet-up {
|
|
@@ -4577,6 +4763,9 @@ body {
|
|
|
4577
4763
|
padding-top: 2rem !important;
|
|
4578
4764
|
padding-bottom: 2rem !important;
|
|
4579
4765
|
}
|
|
4766
|
+
.gap-size-32--tablet-up {
|
|
4767
|
+
gap: 2rem !important;
|
|
4768
|
+
}
|
|
4580
4769
|
}
|
|
4581
4770
|
@media screen and (min-width: 64rem) {
|
|
4582
4771
|
.m-size-32--tablet-big-up {
|
|
@@ -4625,6 +4814,9 @@ body {
|
|
|
4625
4814
|
padding-top: 2rem !important;
|
|
4626
4815
|
padding-bottom: 2rem !important;
|
|
4627
4816
|
}
|
|
4817
|
+
.gap-size-32--tablet-big-up {
|
|
4818
|
+
gap: 2rem !important;
|
|
4819
|
+
}
|
|
4628
4820
|
}
|
|
4629
4821
|
@media screen and (min-width: 80rem) {
|
|
4630
4822
|
.m-size-32--laptop-up {
|
|
@@ -4673,6 +4865,9 @@ body {
|
|
|
4673
4865
|
padding-top: 2rem !important;
|
|
4674
4866
|
padding-bottom: 2rem !important;
|
|
4675
4867
|
}
|
|
4868
|
+
.gap-size-32--laptop-up {
|
|
4869
|
+
gap: 2rem !important;
|
|
4870
|
+
}
|
|
4676
4871
|
}
|
|
4677
4872
|
@media screen and (min-width: 100rem) {
|
|
4678
4873
|
.m-size-32--desktop-up {
|
|
@@ -4721,6 +4916,9 @@ body {
|
|
|
4721
4916
|
padding-top: 2rem !important;
|
|
4722
4917
|
padding-bottom: 2rem !important;
|
|
4723
4918
|
}
|
|
4919
|
+
.gap-size-32--desktop-up {
|
|
4920
|
+
gap: 2rem !important;
|
|
4921
|
+
}
|
|
4724
4922
|
}
|
|
4725
4923
|
.m-size-40 {
|
|
4726
4924
|
margin: 2.5rem !important;
|
|
@@ -4782,6 +4980,10 @@ body {
|
|
|
4782
4980
|
padding-bottom: 2.5rem !important;
|
|
4783
4981
|
}
|
|
4784
4982
|
|
|
4983
|
+
.gap-size-40 {
|
|
4984
|
+
gap: 2.5rem !important;
|
|
4985
|
+
}
|
|
4986
|
+
|
|
4785
4987
|
@media screen and (min-width: 0) {
|
|
4786
4988
|
.m-size-40--mobile-up {
|
|
4787
4989
|
margin: 2.5rem !important;
|
|
@@ -4829,6 +5031,9 @@ body {
|
|
|
4829
5031
|
padding-top: 2.5rem !important;
|
|
4830
5032
|
padding-bottom: 2.5rem !important;
|
|
4831
5033
|
}
|
|
5034
|
+
.gap-size-40--mobile-up {
|
|
5035
|
+
gap: 2.5rem !important;
|
|
5036
|
+
}
|
|
4832
5037
|
}
|
|
4833
5038
|
@media screen and (min-width: 36rem) {
|
|
4834
5039
|
.m-size-40--phablet-up {
|
|
@@ -4877,6 +5082,9 @@ body {
|
|
|
4877
5082
|
padding-top: 2.5rem !important;
|
|
4878
5083
|
padding-bottom: 2.5rem !important;
|
|
4879
5084
|
}
|
|
5085
|
+
.gap-size-40--phablet-up {
|
|
5086
|
+
gap: 2.5rem !important;
|
|
5087
|
+
}
|
|
4880
5088
|
}
|
|
4881
5089
|
@media screen and (min-width: 48rem) {
|
|
4882
5090
|
.m-size-40--tablet-up {
|
|
@@ -4925,6 +5133,9 @@ body {
|
|
|
4925
5133
|
padding-top: 2.5rem !important;
|
|
4926
5134
|
padding-bottom: 2.5rem !important;
|
|
4927
5135
|
}
|
|
5136
|
+
.gap-size-40--tablet-up {
|
|
5137
|
+
gap: 2.5rem !important;
|
|
5138
|
+
}
|
|
4928
5139
|
}
|
|
4929
5140
|
@media screen and (min-width: 64rem) {
|
|
4930
5141
|
.m-size-40--tablet-big-up {
|
|
@@ -4973,6 +5184,9 @@ body {
|
|
|
4973
5184
|
padding-top: 2.5rem !important;
|
|
4974
5185
|
padding-bottom: 2.5rem !important;
|
|
4975
5186
|
}
|
|
5187
|
+
.gap-size-40--tablet-big-up {
|
|
5188
|
+
gap: 2.5rem !important;
|
|
5189
|
+
}
|
|
4976
5190
|
}
|
|
4977
5191
|
@media screen and (min-width: 80rem) {
|
|
4978
5192
|
.m-size-40--laptop-up {
|
|
@@ -5021,6 +5235,9 @@ body {
|
|
|
5021
5235
|
padding-top: 2.5rem !important;
|
|
5022
5236
|
padding-bottom: 2.5rem !important;
|
|
5023
5237
|
}
|
|
5238
|
+
.gap-size-40--laptop-up {
|
|
5239
|
+
gap: 2.5rem !important;
|
|
5240
|
+
}
|
|
5024
5241
|
}
|
|
5025
5242
|
@media screen and (min-width: 100rem) {
|
|
5026
5243
|
.m-size-40--desktop-up {
|
|
@@ -5069,6 +5286,9 @@ body {
|
|
|
5069
5286
|
padding-top: 2.5rem !important;
|
|
5070
5287
|
padding-bottom: 2.5rem !important;
|
|
5071
5288
|
}
|
|
5289
|
+
.gap-size-40--desktop-up {
|
|
5290
|
+
gap: 2.5rem !important;
|
|
5291
|
+
}
|
|
5072
5292
|
}
|
|
5073
5293
|
.m-size-48 {
|
|
5074
5294
|
margin: 3rem !important;
|
|
@@ -5130,6 +5350,10 @@ body {
|
|
|
5130
5350
|
padding-bottom: 3rem !important;
|
|
5131
5351
|
}
|
|
5132
5352
|
|
|
5353
|
+
.gap-size-48 {
|
|
5354
|
+
gap: 3rem !important;
|
|
5355
|
+
}
|
|
5356
|
+
|
|
5133
5357
|
@media screen and (min-width: 0) {
|
|
5134
5358
|
.m-size-48--mobile-up {
|
|
5135
5359
|
margin: 3rem !important;
|
|
@@ -5177,6 +5401,9 @@ body {
|
|
|
5177
5401
|
padding-top: 3rem !important;
|
|
5178
5402
|
padding-bottom: 3rem !important;
|
|
5179
5403
|
}
|
|
5404
|
+
.gap-size-48--mobile-up {
|
|
5405
|
+
gap: 3rem !important;
|
|
5406
|
+
}
|
|
5180
5407
|
}
|
|
5181
5408
|
@media screen and (min-width: 36rem) {
|
|
5182
5409
|
.m-size-48--phablet-up {
|
|
@@ -5225,6 +5452,9 @@ body {
|
|
|
5225
5452
|
padding-top: 3rem !important;
|
|
5226
5453
|
padding-bottom: 3rem !important;
|
|
5227
5454
|
}
|
|
5455
|
+
.gap-size-48--phablet-up {
|
|
5456
|
+
gap: 3rem !important;
|
|
5457
|
+
}
|
|
5228
5458
|
}
|
|
5229
5459
|
@media screen and (min-width: 48rem) {
|
|
5230
5460
|
.m-size-48--tablet-up {
|
|
@@ -5273,6 +5503,9 @@ body {
|
|
|
5273
5503
|
padding-top: 3rem !important;
|
|
5274
5504
|
padding-bottom: 3rem !important;
|
|
5275
5505
|
}
|
|
5506
|
+
.gap-size-48--tablet-up {
|
|
5507
|
+
gap: 3rem !important;
|
|
5508
|
+
}
|
|
5276
5509
|
}
|
|
5277
5510
|
@media screen and (min-width: 64rem) {
|
|
5278
5511
|
.m-size-48--tablet-big-up {
|
|
@@ -5321,6 +5554,9 @@ body {
|
|
|
5321
5554
|
padding-top: 3rem !important;
|
|
5322
5555
|
padding-bottom: 3rem !important;
|
|
5323
5556
|
}
|
|
5557
|
+
.gap-size-48--tablet-big-up {
|
|
5558
|
+
gap: 3rem !important;
|
|
5559
|
+
}
|
|
5324
5560
|
}
|
|
5325
5561
|
@media screen and (min-width: 80rem) {
|
|
5326
5562
|
.m-size-48--laptop-up {
|
|
@@ -5369,6 +5605,9 @@ body {
|
|
|
5369
5605
|
padding-top: 3rem !important;
|
|
5370
5606
|
padding-bottom: 3rem !important;
|
|
5371
5607
|
}
|
|
5608
|
+
.gap-size-48--laptop-up {
|
|
5609
|
+
gap: 3rem !important;
|
|
5610
|
+
}
|
|
5372
5611
|
}
|
|
5373
5612
|
@media screen and (min-width: 100rem) {
|
|
5374
5613
|
.m-size-48--desktop-up {
|
|
@@ -5417,6 +5656,9 @@ body {
|
|
|
5417
5656
|
padding-top: 3rem !important;
|
|
5418
5657
|
padding-bottom: 3rem !important;
|
|
5419
5658
|
}
|
|
5659
|
+
.gap-size-48--desktop-up {
|
|
5660
|
+
gap: 3rem !important;
|
|
5661
|
+
}
|
|
5420
5662
|
}
|
|
5421
5663
|
.m-size-52 {
|
|
5422
5664
|
margin: 3.25rem !important;
|
|
@@ -5478,6 +5720,10 @@ body {
|
|
|
5478
5720
|
padding-bottom: 3.25rem !important;
|
|
5479
5721
|
}
|
|
5480
5722
|
|
|
5723
|
+
.gap-size-52 {
|
|
5724
|
+
gap: 3.25rem !important;
|
|
5725
|
+
}
|
|
5726
|
+
|
|
5481
5727
|
@media screen and (min-width: 0) {
|
|
5482
5728
|
.m-size-52--mobile-up {
|
|
5483
5729
|
margin: 3.25rem !important;
|
|
@@ -5525,6 +5771,9 @@ body {
|
|
|
5525
5771
|
padding-top: 3.25rem !important;
|
|
5526
5772
|
padding-bottom: 3.25rem !important;
|
|
5527
5773
|
}
|
|
5774
|
+
.gap-size-52--mobile-up {
|
|
5775
|
+
gap: 3.25rem !important;
|
|
5776
|
+
}
|
|
5528
5777
|
}
|
|
5529
5778
|
@media screen and (min-width: 36rem) {
|
|
5530
5779
|
.m-size-52--phablet-up {
|
|
@@ -5573,6 +5822,9 @@ body {
|
|
|
5573
5822
|
padding-top: 3.25rem !important;
|
|
5574
5823
|
padding-bottom: 3.25rem !important;
|
|
5575
5824
|
}
|
|
5825
|
+
.gap-size-52--phablet-up {
|
|
5826
|
+
gap: 3.25rem !important;
|
|
5827
|
+
}
|
|
5576
5828
|
}
|
|
5577
5829
|
@media screen and (min-width: 48rem) {
|
|
5578
5830
|
.m-size-52--tablet-up {
|
|
@@ -5621,6 +5873,9 @@ body {
|
|
|
5621
5873
|
padding-top: 3.25rem !important;
|
|
5622
5874
|
padding-bottom: 3.25rem !important;
|
|
5623
5875
|
}
|
|
5876
|
+
.gap-size-52--tablet-up {
|
|
5877
|
+
gap: 3.25rem !important;
|
|
5878
|
+
}
|
|
5624
5879
|
}
|
|
5625
5880
|
@media screen and (min-width: 64rem) {
|
|
5626
5881
|
.m-size-52--tablet-big-up {
|
|
@@ -5669,6 +5924,9 @@ body {
|
|
|
5669
5924
|
padding-top: 3.25rem !important;
|
|
5670
5925
|
padding-bottom: 3.25rem !important;
|
|
5671
5926
|
}
|
|
5927
|
+
.gap-size-52--tablet-big-up {
|
|
5928
|
+
gap: 3.25rem !important;
|
|
5929
|
+
}
|
|
5672
5930
|
}
|
|
5673
5931
|
@media screen and (min-width: 80rem) {
|
|
5674
5932
|
.m-size-52--laptop-up {
|
|
@@ -5717,6 +5975,9 @@ body {
|
|
|
5717
5975
|
padding-top: 3.25rem !important;
|
|
5718
5976
|
padding-bottom: 3.25rem !important;
|
|
5719
5977
|
}
|
|
5978
|
+
.gap-size-52--laptop-up {
|
|
5979
|
+
gap: 3.25rem !important;
|
|
5980
|
+
}
|
|
5720
5981
|
}
|
|
5721
5982
|
@media screen and (min-width: 100rem) {
|
|
5722
5983
|
.m-size-52--desktop-up {
|
|
@@ -5765,6 +6026,9 @@ body {
|
|
|
5765
6026
|
padding-top: 3.25rem !important;
|
|
5766
6027
|
padding-bottom: 3.25rem !important;
|
|
5767
6028
|
}
|
|
6029
|
+
.gap-size-52--desktop-up {
|
|
6030
|
+
gap: 3.25rem !important;
|
|
6031
|
+
}
|
|
5768
6032
|
}
|
|
5769
6033
|
.m-size-56 {
|
|
5770
6034
|
margin: 3.5rem !important;
|
|
@@ -5826,6 +6090,10 @@ body {
|
|
|
5826
6090
|
padding-bottom: 3.5rem !important;
|
|
5827
6091
|
}
|
|
5828
6092
|
|
|
6093
|
+
.gap-size-56 {
|
|
6094
|
+
gap: 3.5rem !important;
|
|
6095
|
+
}
|
|
6096
|
+
|
|
5829
6097
|
@media screen and (min-width: 0) {
|
|
5830
6098
|
.m-size-56--mobile-up {
|
|
5831
6099
|
margin: 3.5rem !important;
|
|
@@ -5873,6 +6141,9 @@ body {
|
|
|
5873
6141
|
padding-top: 3.5rem !important;
|
|
5874
6142
|
padding-bottom: 3.5rem !important;
|
|
5875
6143
|
}
|
|
6144
|
+
.gap-size-56--mobile-up {
|
|
6145
|
+
gap: 3.5rem !important;
|
|
6146
|
+
}
|
|
5876
6147
|
}
|
|
5877
6148
|
@media screen and (min-width: 36rem) {
|
|
5878
6149
|
.m-size-56--phablet-up {
|
|
@@ -5921,6 +6192,9 @@ body {
|
|
|
5921
6192
|
padding-top: 3.5rem !important;
|
|
5922
6193
|
padding-bottom: 3.5rem !important;
|
|
5923
6194
|
}
|
|
6195
|
+
.gap-size-56--phablet-up {
|
|
6196
|
+
gap: 3.5rem !important;
|
|
6197
|
+
}
|
|
5924
6198
|
}
|
|
5925
6199
|
@media screen and (min-width: 48rem) {
|
|
5926
6200
|
.m-size-56--tablet-up {
|
|
@@ -5969,6 +6243,9 @@ body {
|
|
|
5969
6243
|
padding-top: 3.5rem !important;
|
|
5970
6244
|
padding-bottom: 3.5rem !important;
|
|
5971
6245
|
}
|
|
6246
|
+
.gap-size-56--tablet-up {
|
|
6247
|
+
gap: 3.5rem !important;
|
|
6248
|
+
}
|
|
5972
6249
|
}
|
|
5973
6250
|
@media screen and (min-width: 64rem) {
|
|
5974
6251
|
.m-size-56--tablet-big-up {
|
|
@@ -6017,6 +6294,9 @@ body {
|
|
|
6017
6294
|
padding-top: 3.5rem !important;
|
|
6018
6295
|
padding-bottom: 3.5rem !important;
|
|
6019
6296
|
}
|
|
6297
|
+
.gap-size-56--tablet-big-up {
|
|
6298
|
+
gap: 3.5rem !important;
|
|
6299
|
+
}
|
|
6020
6300
|
}
|
|
6021
6301
|
@media screen and (min-width: 80rem) {
|
|
6022
6302
|
.m-size-56--laptop-up {
|
|
@@ -6065,6 +6345,9 @@ body {
|
|
|
6065
6345
|
padding-top: 3.5rem !important;
|
|
6066
6346
|
padding-bottom: 3.5rem !important;
|
|
6067
6347
|
}
|
|
6348
|
+
.gap-size-56--laptop-up {
|
|
6349
|
+
gap: 3.5rem !important;
|
|
6350
|
+
}
|
|
6068
6351
|
}
|
|
6069
6352
|
@media screen and (min-width: 100rem) {
|
|
6070
6353
|
.m-size-56--desktop-up {
|
|
@@ -6113,6 +6396,9 @@ body {
|
|
|
6113
6396
|
padding-top: 3.5rem !important;
|
|
6114
6397
|
padding-bottom: 3.5rem !important;
|
|
6115
6398
|
}
|
|
6399
|
+
.gap-size-56--desktop-up {
|
|
6400
|
+
gap: 3.5rem !important;
|
|
6401
|
+
}
|
|
6116
6402
|
}
|
|
6117
6403
|
.m-size-64 {
|
|
6118
6404
|
margin: 4rem !important;
|
|
@@ -6174,6 +6460,10 @@ body {
|
|
|
6174
6460
|
padding-bottom: 4rem !important;
|
|
6175
6461
|
}
|
|
6176
6462
|
|
|
6463
|
+
.gap-size-64 {
|
|
6464
|
+
gap: 4rem !important;
|
|
6465
|
+
}
|
|
6466
|
+
|
|
6177
6467
|
@media screen and (min-width: 0) {
|
|
6178
6468
|
.m-size-64--mobile-up {
|
|
6179
6469
|
margin: 4rem !important;
|
|
@@ -6221,6 +6511,9 @@ body {
|
|
|
6221
6511
|
padding-top: 4rem !important;
|
|
6222
6512
|
padding-bottom: 4rem !important;
|
|
6223
6513
|
}
|
|
6514
|
+
.gap-size-64--mobile-up {
|
|
6515
|
+
gap: 4rem !important;
|
|
6516
|
+
}
|
|
6224
6517
|
}
|
|
6225
6518
|
@media screen and (min-width: 36rem) {
|
|
6226
6519
|
.m-size-64--phablet-up {
|
|
@@ -6269,6 +6562,9 @@ body {
|
|
|
6269
6562
|
padding-top: 4rem !important;
|
|
6270
6563
|
padding-bottom: 4rem !important;
|
|
6271
6564
|
}
|
|
6565
|
+
.gap-size-64--phablet-up {
|
|
6566
|
+
gap: 4rem !important;
|
|
6567
|
+
}
|
|
6272
6568
|
}
|
|
6273
6569
|
@media screen and (min-width: 48rem) {
|
|
6274
6570
|
.m-size-64--tablet-up {
|
|
@@ -6317,6 +6613,9 @@ body {
|
|
|
6317
6613
|
padding-top: 4rem !important;
|
|
6318
6614
|
padding-bottom: 4rem !important;
|
|
6319
6615
|
}
|
|
6616
|
+
.gap-size-64--tablet-up {
|
|
6617
|
+
gap: 4rem !important;
|
|
6618
|
+
}
|
|
6320
6619
|
}
|
|
6321
6620
|
@media screen and (min-width: 64rem) {
|
|
6322
6621
|
.m-size-64--tablet-big-up {
|
|
@@ -6365,6 +6664,9 @@ body {
|
|
|
6365
6664
|
padding-top: 4rem !important;
|
|
6366
6665
|
padding-bottom: 4rem !important;
|
|
6367
6666
|
}
|
|
6667
|
+
.gap-size-64--tablet-big-up {
|
|
6668
|
+
gap: 4rem !important;
|
|
6669
|
+
}
|
|
6368
6670
|
}
|
|
6369
6671
|
@media screen and (min-width: 80rem) {
|
|
6370
6672
|
.m-size-64--laptop-up {
|
|
@@ -6413,6 +6715,9 @@ body {
|
|
|
6413
6715
|
padding-top: 4rem !important;
|
|
6414
6716
|
padding-bottom: 4rem !important;
|
|
6415
6717
|
}
|
|
6718
|
+
.gap-size-64--laptop-up {
|
|
6719
|
+
gap: 4rem !important;
|
|
6720
|
+
}
|
|
6416
6721
|
}
|
|
6417
6722
|
@media screen and (min-width: 100rem) {
|
|
6418
6723
|
.m-size-64--desktop-up {
|
|
@@ -6461,6 +6766,9 @@ body {
|
|
|
6461
6766
|
padding-top: 4rem !important;
|
|
6462
6767
|
padding-bottom: 4rem !important;
|
|
6463
6768
|
}
|
|
6769
|
+
.gap-size-64--desktop-up {
|
|
6770
|
+
gap: 4rem !important;
|
|
6771
|
+
}
|
|
6464
6772
|
}
|
|
6465
6773
|
.m-size-72 {
|
|
6466
6774
|
margin: 4.5rem !important;
|
|
@@ -6522,6 +6830,10 @@ body {
|
|
|
6522
6830
|
padding-bottom: 4.5rem !important;
|
|
6523
6831
|
}
|
|
6524
6832
|
|
|
6833
|
+
.gap-size-72 {
|
|
6834
|
+
gap: 4.5rem !important;
|
|
6835
|
+
}
|
|
6836
|
+
|
|
6525
6837
|
@media screen and (min-width: 0) {
|
|
6526
6838
|
.m-size-72--mobile-up {
|
|
6527
6839
|
margin: 4.5rem !important;
|
|
@@ -6569,6 +6881,9 @@ body {
|
|
|
6569
6881
|
padding-top: 4.5rem !important;
|
|
6570
6882
|
padding-bottom: 4.5rem !important;
|
|
6571
6883
|
}
|
|
6884
|
+
.gap-size-72--mobile-up {
|
|
6885
|
+
gap: 4.5rem !important;
|
|
6886
|
+
}
|
|
6572
6887
|
}
|
|
6573
6888
|
@media screen and (min-width: 36rem) {
|
|
6574
6889
|
.m-size-72--phablet-up {
|
|
@@ -6617,6 +6932,9 @@ body {
|
|
|
6617
6932
|
padding-top: 4.5rem !important;
|
|
6618
6933
|
padding-bottom: 4.5rem !important;
|
|
6619
6934
|
}
|
|
6935
|
+
.gap-size-72--phablet-up {
|
|
6936
|
+
gap: 4.5rem !important;
|
|
6937
|
+
}
|
|
6620
6938
|
}
|
|
6621
6939
|
@media screen and (min-width: 48rem) {
|
|
6622
6940
|
.m-size-72--tablet-up {
|
|
@@ -6665,6 +6983,9 @@ body {
|
|
|
6665
6983
|
padding-top: 4.5rem !important;
|
|
6666
6984
|
padding-bottom: 4.5rem !important;
|
|
6667
6985
|
}
|
|
6986
|
+
.gap-size-72--tablet-up {
|
|
6987
|
+
gap: 4.5rem !important;
|
|
6988
|
+
}
|
|
6668
6989
|
}
|
|
6669
6990
|
@media screen and (min-width: 64rem) {
|
|
6670
6991
|
.m-size-72--tablet-big-up {
|
|
@@ -6713,6 +7034,9 @@ body {
|
|
|
6713
7034
|
padding-top: 4.5rem !important;
|
|
6714
7035
|
padding-bottom: 4.5rem !important;
|
|
6715
7036
|
}
|
|
7037
|
+
.gap-size-72--tablet-big-up {
|
|
7038
|
+
gap: 4.5rem !important;
|
|
7039
|
+
}
|
|
6716
7040
|
}
|
|
6717
7041
|
@media screen and (min-width: 80rem) {
|
|
6718
7042
|
.m-size-72--laptop-up {
|
|
@@ -6761,6 +7085,9 @@ body {
|
|
|
6761
7085
|
padding-top: 4.5rem !important;
|
|
6762
7086
|
padding-bottom: 4.5rem !important;
|
|
6763
7087
|
}
|
|
7088
|
+
.gap-size-72--laptop-up {
|
|
7089
|
+
gap: 4.5rem !important;
|
|
7090
|
+
}
|
|
6764
7091
|
}
|
|
6765
7092
|
@media screen and (min-width: 100rem) {
|
|
6766
7093
|
.m-size-72--desktop-up {
|
|
@@ -6809,6 +7136,9 @@ body {
|
|
|
6809
7136
|
padding-top: 4.5rem !important;
|
|
6810
7137
|
padding-bottom: 4.5rem !important;
|
|
6811
7138
|
}
|
|
7139
|
+
.gap-size-72--desktop-up {
|
|
7140
|
+
gap: 4.5rem !important;
|
|
7141
|
+
}
|
|
6812
7142
|
}
|
|
6813
7143
|
.m-size-80 {
|
|
6814
7144
|
margin: 5rem !important;
|
|
@@ -6870,6 +7200,10 @@ body {
|
|
|
6870
7200
|
padding-bottom: 5rem !important;
|
|
6871
7201
|
}
|
|
6872
7202
|
|
|
7203
|
+
.gap-size-80 {
|
|
7204
|
+
gap: 5rem !important;
|
|
7205
|
+
}
|
|
7206
|
+
|
|
6873
7207
|
@media screen and (min-width: 0) {
|
|
6874
7208
|
.m-size-80--mobile-up {
|
|
6875
7209
|
margin: 5rem !important;
|
|
@@ -6917,6 +7251,9 @@ body {
|
|
|
6917
7251
|
padding-top: 5rem !important;
|
|
6918
7252
|
padding-bottom: 5rem !important;
|
|
6919
7253
|
}
|
|
7254
|
+
.gap-size-80--mobile-up {
|
|
7255
|
+
gap: 5rem !important;
|
|
7256
|
+
}
|
|
6920
7257
|
}
|
|
6921
7258
|
@media screen and (min-width: 36rem) {
|
|
6922
7259
|
.m-size-80--phablet-up {
|
|
@@ -6965,6 +7302,9 @@ body {
|
|
|
6965
7302
|
padding-top: 5rem !important;
|
|
6966
7303
|
padding-bottom: 5rem !important;
|
|
6967
7304
|
}
|
|
7305
|
+
.gap-size-80--phablet-up {
|
|
7306
|
+
gap: 5rem !important;
|
|
7307
|
+
}
|
|
6968
7308
|
}
|
|
6969
7309
|
@media screen and (min-width: 48rem) {
|
|
6970
7310
|
.m-size-80--tablet-up {
|
|
@@ -7013,6 +7353,9 @@ body {
|
|
|
7013
7353
|
padding-top: 5rem !important;
|
|
7014
7354
|
padding-bottom: 5rem !important;
|
|
7015
7355
|
}
|
|
7356
|
+
.gap-size-80--tablet-up {
|
|
7357
|
+
gap: 5rem !important;
|
|
7358
|
+
}
|
|
7016
7359
|
}
|
|
7017
7360
|
@media screen and (min-width: 64rem) {
|
|
7018
7361
|
.m-size-80--tablet-big-up {
|
|
@@ -7061,6 +7404,9 @@ body {
|
|
|
7061
7404
|
padding-top: 5rem !important;
|
|
7062
7405
|
padding-bottom: 5rem !important;
|
|
7063
7406
|
}
|
|
7407
|
+
.gap-size-80--tablet-big-up {
|
|
7408
|
+
gap: 5rem !important;
|
|
7409
|
+
}
|
|
7064
7410
|
}
|
|
7065
7411
|
@media screen and (min-width: 80rem) {
|
|
7066
7412
|
.m-size-80--laptop-up {
|
|
@@ -7109,6 +7455,9 @@ body {
|
|
|
7109
7455
|
padding-top: 5rem !important;
|
|
7110
7456
|
padding-bottom: 5rem !important;
|
|
7111
7457
|
}
|
|
7458
|
+
.gap-size-80--laptop-up {
|
|
7459
|
+
gap: 5rem !important;
|
|
7460
|
+
}
|
|
7112
7461
|
}
|
|
7113
7462
|
@media screen and (min-width: 100rem) {
|
|
7114
7463
|
.m-size-80--desktop-up {
|
|
@@ -7157,6 +7506,9 @@ body {
|
|
|
7157
7506
|
padding-top: 5rem !important;
|
|
7158
7507
|
padding-bottom: 5rem !important;
|
|
7159
7508
|
}
|
|
7509
|
+
.gap-size-80--desktop-up {
|
|
7510
|
+
gap: 5rem !important;
|
|
7511
|
+
}
|
|
7160
7512
|
}
|
|
7161
7513
|
.m-size-88 {
|
|
7162
7514
|
margin: 5.5rem !important;
|
|
@@ -7218,6 +7570,10 @@ body {
|
|
|
7218
7570
|
padding-bottom: 5.5rem !important;
|
|
7219
7571
|
}
|
|
7220
7572
|
|
|
7573
|
+
.gap-size-88 {
|
|
7574
|
+
gap: 5.5rem !important;
|
|
7575
|
+
}
|
|
7576
|
+
|
|
7221
7577
|
@media screen and (min-width: 0) {
|
|
7222
7578
|
.m-size-88--mobile-up {
|
|
7223
7579
|
margin: 5.5rem !important;
|
|
@@ -7265,6 +7621,9 @@ body {
|
|
|
7265
7621
|
padding-top: 5.5rem !important;
|
|
7266
7622
|
padding-bottom: 5.5rem !important;
|
|
7267
7623
|
}
|
|
7624
|
+
.gap-size-88--mobile-up {
|
|
7625
|
+
gap: 5.5rem !important;
|
|
7626
|
+
}
|
|
7268
7627
|
}
|
|
7269
7628
|
@media screen and (min-width: 36rem) {
|
|
7270
7629
|
.m-size-88--phablet-up {
|
|
@@ -7313,6 +7672,9 @@ body {
|
|
|
7313
7672
|
padding-top: 5.5rem !important;
|
|
7314
7673
|
padding-bottom: 5.5rem !important;
|
|
7315
7674
|
}
|
|
7675
|
+
.gap-size-88--phablet-up {
|
|
7676
|
+
gap: 5.5rem !important;
|
|
7677
|
+
}
|
|
7316
7678
|
}
|
|
7317
7679
|
@media screen and (min-width: 48rem) {
|
|
7318
7680
|
.m-size-88--tablet-up {
|
|
@@ -7361,6 +7723,9 @@ body {
|
|
|
7361
7723
|
padding-top: 5.5rem !important;
|
|
7362
7724
|
padding-bottom: 5.5rem !important;
|
|
7363
7725
|
}
|
|
7726
|
+
.gap-size-88--tablet-up {
|
|
7727
|
+
gap: 5.5rem !important;
|
|
7728
|
+
}
|
|
7364
7729
|
}
|
|
7365
7730
|
@media screen and (min-width: 64rem) {
|
|
7366
7731
|
.m-size-88--tablet-big-up {
|
|
@@ -7409,6 +7774,9 @@ body {
|
|
|
7409
7774
|
padding-top: 5.5rem !important;
|
|
7410
7775
|
padding-bottom: 5.5rem !important;
|
|
7411
7776
|
}
|
|
7777
|
+
.gap-size-88--tablet-big-up {
|
|
7778
|
+
gap: 5.5rem !important;
|
|
7779
|
+
}
|
|
7412
7780
|
}
|
|
7413
7781
|
@media screen and (min-width: 80rem) {
|
|
7414
7782
|
.m-size-88--laptop-up {
|
|
@@ -7457,6 +7825,9 @@ body {
|
|
|
7457
7825
|
padding-top: 5.5rem !important;
|
|
7458
7826
|
padding-bottom: 5.5rem !important;
|
|
7459
7827
|
}
|
|
7828
|
+
.gap-size-88--laptop-up {
|
|
7829
|
+
gap: 5.5rem !important;
|
|
7830
|
+
}
|
|
7460
7831
|
}
|
|
7461
7832
|
@media screen and (min-width: 100rem) {
|
|
7462
7833
|
.m-size-88--desktop-up {
|
|
@@ -7505,6 +7876,9 @@ body {
|
|
|
7505
7876
|
padding-top: 5.5rem !important;
|
|
7506
7877
|
padding-bottom: 5.5rem !important;
|
|
7507
7878
|
}
|
|
7879
|
+
.gap-size-88--desktop-up {
|
|
7880
|
+
gap: 5.5rem !important;
|
|
7881
|
+
}
|
|
7508
7882
|
}
|
|
7509
7883
|
.m-size-104 {
|
|
7510
7884
|
margin: 6.5rem !important;
|
|
@@ -7566,6 +7940,10 @@ body {
|
|
|
7566
7940
|
padding-bottom: 6.5rem !important;
|
|
7567
7941
|
}
|
|
7568
7942
|
|
|
7943
|
+
.gap-size-104 {
|
|
7944
|
+
gap: 6.5rem !important;
|
|
7945
|
+
}
|
|
7946
|
+
|
|
7569
7947
|
@media screen and (min-width: 0) {
|
|
7570
7948
|
.m-size-104--mobile-up {
|
|
7571
7949
|
margin: 6.5rem !important;
|
|
@@ -7613,6 +7991,9 @@ body {
|
|
|
7613
7991
|
padding-top: 6.5rem !important;
|
|
7614
7992
|
padding-bottom: 6.5rem !important;
|
|
7615
7993
|
}
|
|
7994
|
+
.gap-size-104--mobile-up {
|
|
7995
|
+
gap: 6.5rem !important;
|
|
7996
|
+
}
|
|
7616
7997
|
}
|
|
7617
7998
|
@media screen and (min-width: 36rem) {
|
|
7618
7999
|
.m-size-104--phablet-up {
|
|
@@ -7661,6 +8042,9 @@ body {
|
|
|
7661
8042
|
padding-top: 6.5rem !important;
|
|
7662
8043
|
padding-bottom: 6.5rem !important;
|
|
7663
8044
|
}
|
|
8045
|
+
.gap-size-104--phablet-up {
|
|
8046
|
+
gap: 6.5rem !important;
|
|
8047
|
+
}
|
|
7664
8048
|
}
|
|
7665
8049
|
@media screen and (min-width: 48rem) {
|
|
7666
8050
|
.m-size-104--tablet-up {
|
|
@@ -7709,6 +8093,9 @@ body {
|
|
|
7709
8093
|
padding-top: 6.5rem !important;
|
|
7710
8094
|
padding-bottom: 6.5rem !important;
|
|
7711
8095
|
}
|
|
8096
|
+
.gap-size-104--tablet-up {
|
|
8097
|
+
gap: 6.5rem !important;
|
|
8098
|
+
}
|
|
7712
8099
|
}
|
|
7713
8100
|
@media screen and (min-width: 64rem) {
|
|
7714
8101
|
.m-size-104--tablet-big-up {
|
|
@@ -7757,6 +8144,9 @@ body {
|
|
|
7757
8144
|
padding-top: 6.5rem !important;
|
|
7758
8145
|
padding-bottom: 6.5rem !important;
|
|
7759
8146
|
}
|
|
8147
|
+
.gap-size-104--tablet-big-up {
|
|
8148
|
+
gap: 6.5rem !important;
|
|
8149
|
+
}
|
|
7760
8150
|
}
|
|
7761
8151
|
@media screen and (min-width: 80rem) {
|
|
7762
8152
|
.m-size-104--laptop-up {
|
|
@@ -7805,6 +8195,9 @@ body {
|
|
|
7805
8195
|
padding-top: 6.5rem !important;
|
|
7806
8196
|
padding-bottom: 6.5rem !important;
|
|
7807
8197
|
}
|
|
8198
|
+
.gap-size-104--laptop-up {
|
|
8199
|
+
gap: 6.5rem !important;
|
|
8200
|
+
}
|
|
7808
8201
|
}
|
|
7809
8202
|
@media screen and (min-width: 100rem) {
|
|
7810
8203
|
.m-size-104--desktop-up {
|
|
@@ -7853,6 +8246,9 @@ body {
|
|
|
7853
8246
|
padding-top: 6.5rem !important;
|
|
7854
8247
|
padding-bottom: 6.5rem !important;
|
|
7855
8248
|
}
|
|
8249
|
+
.gap-size-104--desktop-up {
|
|
8250
|
+
gap: 6.5rem !important;
|
|
8251
|
+
}
|
|
7856
8252
|
}
|
|
7857
8253
|
.m-size-128 {
|
|
7858
8254
|
margin: 8rem !important;
|
|
@@ -7914,6 +8310,10 @@ body {
|
|
|
7914
8310
|
padding-bottom: 8rem !important;
|
|
7915
8311
|
}
|
|
7916
8312
|
|
|
8313
|
+
.gap-size-128 {
|
|
8314
|
+
gap: 8rem !important;
|
|
8315
|
+
}
|
|
8316
|
+
|
|
7917
8317
|
@media screen and (min-width: 0) {
|
|
7918
8318
|
.m-size-128--mobile-up {
|
|
7919
8319
|
margin: 8rem !important;
|
|
@@ -7961,6 +8361,9 @@ body {
|
|
|
7961
8361
|
padding-top: 8rem !important;
|
|
7962
8362
|
padding-bottom: 8rem !important;
|
|
7963
8363
|
}
|
|
8364
|
+
.gap-size-128--mobile-up {
|
|
8365
|
+
gap: 8rem !important;
|
|
8366
|
+
}
|
|
7964
8367
|
}
|
|
7965
8368
|
@media screen and (min-width: 36rem) {
|
|
7966
8369
|
.m-size-128--phablet-up {
|
|
@@ -8009,6 +8412,9 @@ body {
|
|
|
8009
8412
|
padding-top: 8rem !important;
|
|
8010
8413
|
padding-bottom: 8rem !important;
|
|
8011
8414
|
}
|
|
8415
|
+
.gap-size-128--phablet-up {
|
|
8416
|
+
gap: 8rem !important;
|
|
8417
|
+
}
|
|
8012
8418
|
}
|
|
8013
8419
|
@media screen and (min-width: 48rem) {
|
|
8014
8420
|
.m-size-128--tablet-up {
|
|
@@ -8057,6 +8463,9 @@ body {
|
|
|
8057
8463
|
padding-top: 8rem !important;
|
|
8058
8464
|
padding-bottom: 8rem !important;
|
|
8059
8465
|
}
|
|
8466
|
+
.gap-size-128--tablet-up {
|
|
8467
|
+
gap: 8rem !important;
|
|
8468
|
+
}
|
|
8060
8469
|
}
|
|
8061
8470
|
@media screen and (min-width: 64rem) {
|
|
8062
8471
|
.m-size-128--tablet-big-up {
|
|
@@ -8105,6 +8514,9 @@ body {
|
|
|
8105
8514
|
padding-top: 8rem !important;
|
|
8106
8515
|
padding-bottom: 8rem !important;
|
|
8107
8516
|
}
|
|
8517
|
+
.gap-size-128--tablet-big-up {
|
|
8518
|
+
gap: 8rem !important;
|
|
8519
|
+
}
|
|
8108
8520
|
}
|
|
8109
8521
|
@media screen and (min-width: 80rem) {
|
|
8110
8522
|
.m-size-128--laptop-up {
|
|
@@ -8153,6 +8565,9 @@ body {
|
|
|
8153
8565
|
padding-top: 8rem !important;
|
|
8154
8566
|
padding-bottom: 8rem !important;
|
|
8155
8567
|
}
|
|
8568
|
+
.gap-size-128--laptop-up {
|
|
8569
|
+
gap: 8rem !important;
|
|
8570
|
+
}
|
|
8156
8571
|
}
|
|
8157
8572
|
@media screen and (min-width: 100rem) {
|
|
8158
8573
|
.m-size-128--desktop-up {
|
|
@@ -8201,6 +8616,9 @@ body {
|
|
|
8201
8616
|
padding-top: 8rem !important;
|
|
8202
8617
|
padding-bottom: 8rem !important;
|
|
8203
8618
|
}
|
|
8619
|
+
.gap-size-128--desktop-up {
|
|
8620
|
+
gap: 8rem !important;
|
|
8621
|
+
}
|
|
8204
8622
|
}
|
|
8205
8623
|
.m-size-5 {
|
|
8206
8624
|
margin: 0.3125rem !important;
|
|
@@ -8262,6 +8680,10 @@ body {
|
|
|
8262
8680
|
padding-bottom: 0.3125rem !important;
|
|
8263
8681
|
}
|
|
8264
8682
|
|
|
8683
|
+
.gap-size-5 {
|
|
8684
|
+
gap: 0.3125rem !important;
|
|
8685
|
+
}
|
|
8686
|
+
|
|
8265
8687
|
@media screen and (min-width: 0) {
|
|
8266
8688
|
.m-size-5--mobile-up {
|
|
8267
8689
|
margin: 0.3125rem !important;
|
|
@@ -8309,6 +8731,9 @@ body {
|
|
|
8309
8731
|
padding-top: 0.3125rem !important;
|
|
8310
8732
|
padding-bottom: 0.3125rem !important;
|
|
8311
8733
|
}
|
|
8734
|
+
.gap-size-5--mobile-up {
|
|
8735
|
+
gap: 0.3125rem !important;
|
|
8736
|
+
}
|
|
8312
8737
|
}
|
|
8313
8738
|
@media screen and (min-width: 36rem) {
|
|
8314
8739
|
.m-size-5--phablet-up {
|
|
@@ -8357,6 +8782,9 @@ body {
|
|
|
8357
8782
|
padding-top: 0.3125rem !important;
|
|
8358
8783
|
padding-bottom: 0.3125rem !important;
|
|
8359
8784
|
}
|
|
8785
|
+
.gap-size-5--phablet-up {
|
|
8786
|
+
gap: 0.3125rem !important;
|
|
8787
|
+
}
|
|
8360
8788
|
}
|
|
8361
8789
|
@media screen and (min-width: 48rem) {
|
|
8362
8790
|
.m-size-5--tablet-up {
|
|
@@ -8405,6 +8833,9 @@ body {
|
|
|
8405
8833
|
padding-top: 0.3125rem !important;
|
|
8406
8834
|
padding-bottom: 0.3125rem !important;
|
|
8407
8835
|
}
|
|
8836
|
+
.gap-size-5--tablet-up {
|
|
8837
|
+
gap: 0.3125rem !important;
|
|
8838
|
+
}
|
|
8408
8839
|
}
|
|
8409
8840
|
@media screen and (min-width: 64rem) {
|
|
8410
8841
|
.m-size-5--tablet-big-up {
|
|
@@ -8453,6 +8884,9 @@ body {
|
|
|
8453
8884
|
padding-top: 0.3125rem !important;
|
|
8454
8885
|
padding-bottom: 0.3125rem !important;
|
|
8455
8886
|
}
|
|
8887
|
+
.gap-size-5--tablet-big-up {
|
|
8888
|
+
gap: 0.3125rem !important;
|
|
8889
|
+
}
|
|
8456
8890
|
}
|
|
8457
8891
|
@media screen and (min-width: 80rem) {
|
|
8458
8892
|
.m-size-5--laptop-up {
|
|
@@ -8501,6 +8935,9 @@ body {
|
|
|
8501
8935
|
padding-top: 0.3125rem !important;
|
|
8502
8936
|
padding-bottom: 0.3125rem !important;
|
|
8503
8937
|
}
|
|
8938
|
+
.gap-size-5--laptop-up {
|
|
8939
|
+
gap: 0.3125rem !important;
|
|
8940
|
+
}
|
|
8504
8941
|
}
|
|
8505
8942
|
@media screen and (min-width: 100rem) {
|
|
8506
8943
|
.m-size-5--desktop-up {
|
|
@@ -8549,6 +8986,9 @@ body {
|
|
|
8549
8986
|
padding-top: 0.3125rem !important;
|
|
8550
8987
|
padding-bottom: 0.3125rem !important;
|
|
8551
8988
|
}
|
|
8989
|
+
.gap-size-5--desktop-up {
|
|
8990
|
+
gap: 0.3125rem !important;
|
|
8991
|
+
}
|
|
8552
8992
|
}
|
|
8553
8993
|
.m-size-10 {
|
|
8554
8994
|
margin: 0.625rem !important;
|
|
@@ -8610,6 +9050,10 @@ body {
|
|
|
8610
9050
|
padding-bottom: 0.625rem !important;
|
|
8611
9051
|
}
|
|
8612
9052
|
|
|
9053
|
+
.gap-size-10 {
|
|
9054
|
+
gap: 0.625rem !important;
|
|
9055
|
+
}
|
|
9056
|
+
|
|
8613
9057
|
@media screen and (min-width: 0) {
|
|
8614
9058
|
.m-size-10--mobile-up {
|
|
8615
9059
|
margin: 0.625rem !important;
|
|
@@ -8657,6 +9101,9 @@ body {
|
|
|
8657
9101
|
padding-top: 0.625rem !important;
|
|
8658
9102
|
padding-bottom: 0.625rem !important;
|
|
8659
9103
|
}
|
|
9104
|
+
.gap-size-10--mobile-up {
|
|
9105
|
+
gap: 0.625rem !important;
|
|
9106
|
+
}
|
|
8660
9107
|
}
|
|
8661
9108
|
@media screen and (min-width: 36rem) {
|
|
8662
9109
|
.m-size-10--phablet-up {
|
|
@@ -8705,6 +9152,9 @@ body {
|
|
|
8705
9152
|
padding-top: 0.625rem !important;
|
|
8706
9153
|
padding-bottom: 0.625rem !important;
|
|
8707
9154
|
}
|
|
9155
|
+
.gap-size-10--phablet-up {
|
|
9156
|
+
gap: 0.625rem !important;
|
|
9157
|
+
}
|
|
8708
9158
|
}
|
|
8709
9159
|
@media screen and (min-width: 48rem) {
|
|
8710
9160
|
.m-size-10--tablet-up {
|
|
@@ -8753,6 +9203,9 @@ body {
|
|
|
8753
9203
|
padding-top: 0.625rem !important;
|
|
8754
9204
|
padding-bottom: 0.625rem !important;
|
|
8755
9205
|
}
|
|
9206
|
+
.gap-size-10--tablet-up {
|
|
9207
|
+
gap: 0.625rem !important;
|
|
9208
|
+
}
|
|
8756
9209
|
}
|
|
8757
9210
|
@media screen and (min-width: 64rem) {
|
|
8758
9211
|
.m-size-10--tablet-big-up {
|
|
@@ -8801,6 +9254,9 @@ body {
|
|
|
8801
9254
|
padding-top: 0.625rem !important;
|
|
8802
9255
|
padding-bottom: 0.625rem !important;
|
|
8803
9256
|
}
|
|
9257
|
+
.gap-size-10--tablet-big-up {
|
|
9258
|
+
gap: 0.625rem !important;
|
|
9259
|
+
}
|
|
8804
9260
|
}
|
|
8805
9261
|
@media screen and (min-width: 80rem) {
|
|
8806
9262
|
.m-size-10--laptop-up {
|
|
@@ -8849,6 +9305,9 @@ body {
|
|
|
8849
9305
|
padding-top: 0.625rem !important;
|
|
8850
9306
|
padding-bottom: 0.625rem !important;
|
|
8851
9307
|
}
|
|
9308
|
+
.gap-size-10--laptop-up {
|
|
9309
|
+
gap: 0.625rem !important;
|
|
9310
|
+
}
|
|
8852
9311
|
}
|
|
8853
9312
|
@media screen and (min-width: 100rem) {
|
|
8854
9313
|
.m-size-10--desktop-up {
|
|
@@ -8897,6 +9356,9 @@ body {
|
|
|
8897
9356
|
padding-top: 0.625rem !important;
|
|
8898
9357
|
padding-bottom: 0.625rem !important;
|
|
8899
9358
|
}
|
|
9359
|
+
.gap-size-10--desktop-up {
|
|
9360
|
+
gap: 0.625rem !important;
|
|
9361
|
+
}
|
|
8900
9362
|
}
|
|
8901
9363
|
.m-size-15 {
|
|
8902
9364
|
margin: 0.9375rem !important;
|
|
@@ -8958,6 +9420,10 @@ body {
|
|
|
8958
9420
|
padding-bottom: 0.9375rem !important;
|
|
8959
9421
|
}
|
|
8960
9422
|
|
|
9423
|
+
.gap-size-15 {
|
|
9424
|
+
gap: 0.9375rem !important;
|
|
9425
|
+
}
|
|
9426
|
+
|
|
8961
9427
|
@media screen and (min-width: 0) {
|
|
8962
9428
|
.m-size-15--mobile-up {
|
|
8963
9429
|
margin: 0.9375rem !important;
|
|
@@ -9005,6 +9471,9 @@ body {
|
|
|
9005
9471
|
padding-top: 0.9375rem !important;
|
|
9006
9472
|
padding-bottom: 0.9375rem !important;
|
|
9007
9473
|
}
|
|
9474
|
+
.gap-size-15--mobile-up {
|
|
9475
|
+
gap: 0.9375rem !important;
|
|
9476
|
+
}
|
|
9008
9477
|
}
|
|
9009
9478
|
@media screen and (min-width: 36rem) {
|
|
9010
9479
|
.m-size-15--phablet-up {
|
|
@@ -9053,6 +9522,9 @@ body {
|
|
|
9053
9522
|
padding-top: 0.9375rem !important;
|
|
9054
9523
|
padding-bottom: 0.9375rem !important;
|
|
9055
9524
|
}
|
|
9525
|
+
.gap-size-15--phablet-up {
|
|
9526
|
+
gap: 0.9375rem !important;
|
|
9527
|
+
}
|
|
9056
9528
|
}
|
|
9057
9529
|
@media screen and (min-width: 48rem) {
|
|
9058
9530
|
.m-size-15--tablet-up {
|
|
@@ -9101,6 +9573,9 @@ body {
|
|
|
9101
9573
|
padding-top: 0.9375rem !important;
|
|
9102
9574
|
padding-bottom: 0.9375rem !important;
|
|
9103
9575
|
}
|
|
9576
|
+
.gap-size-15--tablet-up {
|
|
9577
|
+
gap: 0.9375rem !important;
|
|
9578
|
+
}
|
|
9104
9579
|
}
|
|
9105
9580
|
@media screen and (min-width: 64rem) {
|
|
9106
9581
|
.m-size-15--tablet-big-up {
|
|
@@ -9149,6 +9624,9 @@ body {
|
|
|
9149
9624
|
padding-top: 0.9375rem !important;
|
|
9150
9625
|
padding-bottom: 0.9375rem !important;
|
|
9151
9626
|
}
|
|
9627
|
+
.gap-size-15--tablet-big-up {
|
|
9628
|
+
gap: 0.9375rem !important;
|
|
9629
|
+
}
|
|
9152
9630
|
}
|
|
9153
9631
|
@media screen and (min-width: 80rem) {
|
|
9154
9632
|
.m-size-15--laptop-up {
|
|
@@ -9197,6 +9675,9 @@ body {
|
|
|
9197
9675
|
padding-top: 0.9375rem !important;
|
|
9198
9676
|
padding-bottom: 0.9375rem !important;
|
|
9199
9677
|
}
|
|
9678
|
+
.gap-size-15--laptop-up {
|
|
9679
|
+
gap: 0.9375rem !important;
|
|
9680
|
+
}
|
|
9200
9681
|
}
|
|
9201
9682
|
@media screen and (min-width: 100rem) {
|
|
9202
9683
|
.m-size-15--desktop-up {
|
|
@@ -9245,6 +9726,9 @@ body {
|
|
|
9245
9726
|
padding-top: 0.9375rem !important;
|
|
9246
9727
|
padding-bottom: 0.9375rem !important;
|
|
9247
9728
|
}
|
|
9729
|
+
.gap-size-15--desktop-up {
|
|
9730
|
+
gap: 0.9375rem !important;
|
|
9731
|
+
}
|
|
9248
9732
|
}
|
|
9249
9733
|
.m-size-20 {
|
|
9250
9734
|
margin: 1.25rem !important;
|
|
@@ -9306,6 +9790,10 @@ body {
|
|
|
9306
9790
|
padding-bottom: 1.25rem !important;
|
|
9307
9791
|
}
|
|
9308
9792
|
|
|
9793
|
+
.gap-size-20 {
|
|
9794
|
+
gap: 1.25rem !important;
|
|
9795
|
+
}
|
|
9796
|
+
|
|
9309
9797
|
@media screen and (min-width: 0) {
|
|
9310
9798
|
.m-size-20--mobile-up {
|
|
9311
9799
|
margin: 1.25rem !important;
|
|
@@ -9353,6 +9841,9 @@ body {
|
|
|
9353
9841
|
padding-top: 1.25rem !important;
|
|
9354
9842
|
padding-bottom: 1.25rem !important;
|
|
9355
9843
|
}
|
|
9844
|
+
.gap-size-20--mobile-up {
|
|
9845
|
+
gap: 1.25rem !important;
|
|
9846
|
+
}
|
|
9356
9847
|
}
|
|
9357
9848
|
@media screen and (min-width: 36rem) {
|
|
9358
9849
|
.m-size-20--phablet-up {
|
|
@@ -9401,6 +9892,9 @@ body {
|
|
|
9401
9892
|
padding-top: 1.25rem !important;
|
|
9402
9893
|
padding-bottom: 1.25rem !important;
|
|
9403
9894
|
}
|
|
9895
|
+
.gap-size-20--phablet-up {
|
|
9896
|
+
gap: 1.25rem !important;
|
|
9897
|
+
}
|
|
9404
9898
|
}
|
|
9405
9899
|
@media screen and (min-width: 48rem) {
|
|
9406
9900
|
.m-size-20--tablet-up {
|
|
@@ -9449,6 +9943,9 @@ body {
|
|
|
9449
9943
|
padding-top: 1.25rem !important;
|
|
9450
9944
|
padding-bottom: 1.25rem !important;
|
|
9451
9945
|
}
|
|
9946
|
+
.gap-size-20--tablet-up {
|
|
9947
|
+
gap: 1.25rem !important;
|
|
9948
|
+
}
|
|
9452
9949
|
}
|
|
9453
9950
|
@media screen and (min-width: 64rem) {
|
|
9454
9951
|
.m-size-20--tablet-big-up {
|
|
@@ -9497,6 +9994,9 @@ body {
|
|
|
9497
9994
|
padding-top: 1.25rem !important;
|
|
9498
9995
|
padding-bottom: 1.25rem !important;
|
|
9499
9996
|
}
|
|
9997
|
+
.gap-size-20--tablet-big-up {
|
|
9998
|
+
gap: 1.25rem !important;
|
|
9999
|
+
}
|
|
9500
10000
|
}
|
|
9501
10001
|
@media screen and (min-width: 80rem) {
|
|
9502
10002
|
.m-size-20--laptop-up {
|
|
@@ -9545,6 +10045,9 @@ body {
|
|
|
9545
10045
|
padding-top: 1.25rem !important;
|
|
9546
10046
|
padding-bottom: 1.25rem !important;
|
|
9547
10047
|
}
|
|
10048
|
+
.gap-size-20--laptop-up {
|
|
10049
|
+
gap: 1.25rem !important;
|
|
10050
|
+
}
|
|
9548
10051
|
}
|
|
9549
10052
|
@media screen and (min-width: 100rem) {
|
|
9550
10053
|
.m-size-20--desktop-up {
|
|
@@ -9593,6 +10096,9 @@ body {
|
|
|
9593
10096
|
padding-top: 1.25rem !important;
|
|
9594
10097
|
padding-bottom: 1.25rem !important;
|
|
9595
10098
|
}
|
|
10099
|
+
.gap-size-20--desktop-up {
|
|
10100
|
+
gap: 1.25rem !important;
|
|
10101
|
+
}
|
|
9596
10102
|
}
|
|
9597
10103
|
.m-size-30 {
|
|
9598
10104
|
margin: 1.875rem !important;
|
|
@@ -9654,6 +10160,10 @@ body {
|
|
|
9654
10160
|
padding-bottom: 1.875rem !important;
|
|
9655
10161
|
}
|
|
9656
10162
|
|
|
10163
|
+
.gap-size-30 {
|
|
10164
|
+
gap: 1.875rem !important;
|
|
10165
|
+
}
|
|
10166
|
+
|
|
9657
10167
|
@media screen and (min-width: 0) {
|
|
9658
10168
|
.m-size-30--mobile-up {
|
|
9659
10169
|
margin: 1.875rem !important;
|
|
@@ -9701,6 +10211,9 @@ body {
|
|
|
9701
10211
|
padding-top: 1.875rem !important;
|
|
9702
10212
|
padding-bottom: 1.875rem !important;
|
|
9703
10213
|
}
|
|
10214
|
+
.gap-size-30--mobile-up {
|
|
10215
|
+
gap: 1.875rem !important;
|
|
10216
|
+
}
|
|
9704
10217
|
}
|
|
9705
10218
|
@media screen and (min-width: 36rem) {
|
|
9706
10219
|
.m-size-30--phablet-up {
|
|
@@ -9749,6 +10262,9 @@ body {
|
|
|
9749
10262
|
padding-top: 1.875rem !important;
|
|
9750
10263
|
padding-bottom: 1.875rem !important;
|
|
9751
10264
|
}
|
|
10265
|
+
.gap-size-30--phablet-up {
|
|
10266
|
+
gap: 1.875rem !important;
|
|
10267
|
+
}
|
|
9752
10268
|
}
|
|
9753
10269
|
@media screen and (min-width: 48rem) {
|
|
9754
10270
|
.m-size-30--tablet-up {
|
|
@@ -9797,6 +10313,9 @@ body {
|
|
|
9797
10313
|
padding-top: 1.875rem !important;
|
|
9798
10314
|
padding-bottom: 1.875rem !important;
|
|
9799
10315
|
}
|
|
10316
|
+
.gap-size-30--tablet-up {
|
|
10317
|
+
gap: 1.875rem !important;
|
|
10318
|
+
}
|
|
9800
10319
|
}
|
|
9801
10320
|
@media screen and (min-width: 64rem) {
|
|
9802
10321
|
.m-size-30--tablet-big-up {
|
|
@@ -9845,6 +10364,9 @@ body {
|
|
|
9845
10364
|
padding-top: 1.875rem !important;
|
|
9846
10365
|
padding-bottom: 1.875rem !important;
|
|
9847
10366
|
}
|
|
10367
|
+
.gap-size-30--tablet-big-up {
|
|
10368
|
+
gap: 1.875rem !important;
|
|
10369
|
+
}
|
|
9848
10370
|
}
|
|
9849
10371
|
@media screen and (min-width: 80rem) {
|
|
9850
10372
|
.m-size-30--laptop-up {
|
|
@@ -9893,6 +10415,9 @@ body {
|
|
|
9893
10415
|
padding-top: 1.875rem !important;
|
|
9894
10416
|
padding-bottom: 1.875rem !important;
|
|
9895
10417
|
}
|
|
10418
|
+
.gap-size-30--laptop-up {
|
|
10419
|
+
gap: 1.875rem !important;
|
|
10420
|
+
}
|
|
9896
10421
|
}
|
|
9897
10422
|
@media screen and (min-width: 100rem) {
|
|
9898
10423
|
.m-size-30--desktop-up {
|
|
@@ -9941,6 +10466,9 @@ body {
|
|
|
9941
10466
|
padding-top: 1.875rem !important;
|
|
9942
10467
|
padding-bottom: 1.875rem !important;
|
|
9943
10468
|
}
|
|
10469
|
+
.gap-size-30--desktop-up {
|
|
10470
|
+
gap: 1.875rem !important;
|
|
10471
|
+
}
|
|
9944
10472
|
}
|
|
9945
10473
|
.m-size-50 {
|
|
9946
10474
|
margin: 3.125rem !important;
|
|
@@ -10002,6 +10530,10 @@ body {
|
|
|
10002
10530
|
padding-bottom: 3.125rem !important;
|
|
10003
10531
|
}
|
|
10004
10532
|
|
|
10533
|
+
.gap-size-50 {
|
|
10534
|
+
gap: 3.125rem !important;
|
|
10535
|
+
}
|
|
10536
|
+
|
|
10005
10537
|
@media screen and (min-width: 0) {
|
|
10006
10538
|
.m-size-50--mobile-up {
|
|
10007
10539
|
margin: 3.125rem !important;
|
|
@@ -10049,6 +10581,9 @@ body {
|
|
|
10049
10581
|
padding-top: 3.125rem !important;
|
|
10050
10582
|
padding-bottom: 3.125rem !important;
|
|
10051
10583
|
}
|
|
10584
|
+
.gap-size-50--mobile-up {
|
|
10585
|
+
gap: 3.125rem !important;
|
|
10586
|
+
}
|
|
10052
10587
|
}
|
|
10053
10588
|
@media screen and (min-width: 36rem) {
|
|
10054
10589
|
.m-size-50--phablet-up {
|
|
@@ -10097,6 +10632,9 @@ body {
|
|
|
10097
10632
|
padding-top: 3.125rem !important;
|
|
10098
10633
|
padding-bottom: 3.125rem !important;
|
|
10099
10634
|
}
|
|
10635
|
+
.gap-size-50--phablet-up {
|
|
10636
|
+
gap: 3.125rem !important;
|
|
10637
|
+
}
|
|
10100
10638
|
}
|
|
10101
10639
|
@media screen and (min-width: 48rem) {
|
|
10102
10640
|
.m-size-50--tablet-up {
|
|
@@ -10145,6 +10683,9 @@ body {
|
|
|
10145
10683
|
padding-top: 3.125rem !important;
|
|
10146
10684
|
padding-bottom: 3.125rem !important;
|
|
10147
10685
|
}
|
|
10686
|
+
.gap-size-50--tablet-up {
|
|
10687
|
+
gap: 3.125rem !important;
|
|
10688
|
+
}
|
|
10148
10689
|
}
|
|
10149
10690
|
@media screen and (min-width: 64rem) {
|
|
10150
10691
|
.m-size-50--tablet-big-up {
|
|
@@ -10193,6 +10734,9 @@ body {
|
|
|
10193
10734
|
padding-top: 3.125rem !important;
|
|
10194
10735
|
padding-bottom: 3.125rem !important;
|
|
10195
10736
|
}
|
|
10737
|
+
.gap-size-50--tablet-big-up {
|
|
10738
|
+
gap: 3.125rem !important;
|
|
10739
|
+
}
|
|
10196
10740
|
}
|
|
10197
10741
|
@media screen and (min-width: 80rem) {
|
|
10198
10742
|
.m-size-50--laptop-up {
|
|
@@ -10241,6 +10785,9 @@ body {
|
|
|
10241
10785
|
padding-top: 3.125rem !important;
|
|
10242
10786
|
padding-bottom: 3.125rem !important;
|
|
10243
10787
|
}
|
|
10788
|
+
.gap-size-50--laptop-up {
|
|
10789
|
+
gap: 3.125rem !important;
|
|
10790
|
+
}
|
|
10244
10791
|
}
|
|
10245
10792
|
@media screen and (min-width: 100rem) {
|
|
10246
10793
|
.m-size-50--desktop-up {
|
|
@@ -10289,6 +10836,9 @@ body {
|
|
|
10289
10836
|
padding-top: 3.125rem !important;
|
|
10290
10837
|
padding-bottom: 3.125rem !important;
|
|
10291
10838
|
}
|
|
10839
|
+
.gap-size-50--desktop-up {
|
|
10840
|
+
gap: 3.125rem !important;
|
|
10841
|
+
}
|
|
10292
10842
|
}
|
|
10293
10843
|
.m-size-60 {
|
|
10294
10844
|
margin: 3.75rem !important;
|
|
@@ -10350,6 +10900,10 @@ body {
|
|
|
10350
10900
|
padding-bottom: 3.75rem !important;
|
|
10351
10901
|
}
|
|
10352
10902
|
|
|
10903
|
+
.gap-size-60 {
|
|
10904
|
+
gap: 3.75rem !important;
|
|
10905
|
+
}
|
|
10906
|
+
|
|
10353
10907
|
@media screen and (min-width: 0) {
|
|
10354
10908
|
.m-size-60--mobile-up {
|
|
10355
10909
|
margin: 3.75rem !important;
|
|
@@ -10397,6 +10951,9 @@ body {
|
|
|
10397
10951
|
padding-top: 3.75rem !important;
|
|
10398
10952
|
padding-bottom: 3.75rem !important;
|
|
10399
10953
|
}
|
|
10954
|
+
.gap-size-60--mobile-up {
|
|
10955
|
+
gap: 3.75rem !important;
|
|
10956
|
+
}
|
|
10400
10957
|
}
|
|
10401
10958
|
@media screen and (min-width: 36rem) {
|
|
10402
10959
|
.m-size-60--phablet-up {
|
|
@@ -10445,6 +11002,9 @@ body {
|
|
|
10445
11002
|
padding-top: 3.75rem !important;
|
|
10446
11003
|
padding-bottom: 3.75rem !important;
|
|
10447
11004
|
}
|
|
11005
|
+
.gap-size-60--phablet-up {
|
|
11006
|
+
gap: 3.75rem !important;
|
|
11007
|
+
}
|
|
10448
11008
|
}
|
|
10449
11009
|
@media screen and (min-width: 48rem) {
|
|
10450
11010
|
.m-size-60--tablet-up {
|
|
@@ -10493,6 +11053,9 @@ body {
|
|
|
10493
11053
|
padding-top: 3.75rem !important;
|
|
10494
11054
|
padding-bottom: 3.75rem !important;
|
|
10495
11055
|
}
|
|
11056
|
+
.gap-size-60--tablet-up {
|
|
11057
|
+
gap: 3.75rem !important;
|
|
11058
|
+
}
|
|
10496
11059
|
}
|
|
10497
11060
|
@media screen and (min-width: 64rem) {
|
|
10498
11061
|
.m-size-60--tablet-big-up {
|
|
@@ -10541,6 +11104,9 @@ body {
|
|
|
10541
11104
|
padding-top: 3.75rem !important;
|
|
10542
11105
|
padding-bottom: 3.75rem !important;
|
|
10543
11106
|
}
|
|
11107
|
+
.gap-size-60--tablet-big-up {
|
|
11108
|
+
gap: 3.75rem !important;
|
|
11109
|
+
}
|
|
10544
11110
|
}
|
|
10545
11111
|
@media screen and (min-width: 80rem) {
|
|
10546
11112
|
.m-size-60--laptop-up {
|
|
@@ -10589,6 +11155,9 @@ body {
|
|
|
10589
11155
|
padding-top: 3.75rem !important;
|
|
10590
11156
|
padding-bottom: 3.75rem !important;
|
|
10591
11157
|
}
|
|
11158
|
+
.gap-size-60--laptop-up {
|
|
11159
|
+
gap: 3.75rem !important;
|
|
11160
|
+
}
|
|
10592
11161
|
}
|
|
10593
11162
|
@media screen and (min-width: 100rem) {
|
|
10594
11163
|
.m-size-60--desktop-up {
|
|
@@ -10637,6 +11206,9 @@ body {
|
|
|
10637
11206
|
padding-top: 3.75rem !important;
|
|
10638
11207
|
padding-bottom: 3.75rem !important;
|
|
10639
11208
|
}
|
|
11209
|
+
.gap-size-60--desktop-up {
|
|
11210
|
+
gap: 3.75rem !important;
|
|
11211
|
+
}
|
|
10640
11212
|
}
|
|
10641
11213
|
.m-size-75 {
|
|
10642
11214
|
margin: 4.6875rem !important;
|
|
@@ -10698,6 +11270,10 @@ body {
|
|
|
10698
11270
|
padding-bottom: 4.6875rem !important;
|
|
10699
11271
|
}
|
|
10700
11272
|
|
|
11273
|
+
.gap-size-75 {
|
|
11274
|
+
gap: 4.6875rem !important;
|
|
11275
|
+
}
|
|
11276
|
+
|
|
10701
11277
|
@media screen and (min-width: 0) {
|
|
10702
11278
|
.m-size-75--mobile-up {
|
|
10703
11279
|
margin: 4.6875rem !important;
|
|
@@ -10745,6 +11321,9 @@ body {
|
|
|
10745
11321
|
padding-top: 4.6875rem !important;
|
|
10746
11322
|
padding-bottom: 4.6875rem !important;
|
|
10747
11323
|
}
|
|
11324
|
+
.gap-size-75--mobile-up {
|
|
11325
|
+
gap: 4.6875rem !important;
|
|
11326
|
+
}
|
|
10748
11327
|
}
|
|
10749
11328
|
@media screen and (min-width: 36rem) {
|
|
10750
11329
|
.m-size-75--phablet-up {
|
|
@@ -10793,6 +11372,9 @@ body {
|
|
|
10793
11372
|
padding-top: 4.6875rem !important;
|
|
10794
11373
|
padding-bottom: 4.6875rem !important;
|
|
10795
11374
|
}
|
|
11375
|
+
.gap-size-75--phablet-up {
|
|
11376
|
+
gap: 4.6875rem !important;
|
|
11377
|
+
}
|
|
10796
11378
|
}
|
|
10797
11379
|
@media screen and (min-width: 48rem) {
|
|
10798
11380
|
.m-size-75--tablet-up {
|
|
@@ -10841,6 +11423,9 @@ body {
|
|
|
10841
11423
|
padding-top: 4.6875rem !important;
|
|
10842
11424
|
padding-bottom: 4.6875rem !important;
|
|
10843
11425
|
}
|
|
11426
|
+
.gap-size-75--tablet-up {
|
|
11427
|
+
gap: 4.6875rem !important;
|
|
11428
|
+
}
|
|
10844
11429
|
}
|
|
10845
11430
|
@media screen and (min-width: 64rem) {
|
|
10846
11431
|
.m-size-75--tablet-big-up {
|
|
@@ -10889,6 +11474,9 @@ body {
|
|
|
10889
11474
|
padding-top: 4.6875rem !important;
|
|
10890
11475
|
padding-bottom: 4.6875rem !important;
|
|
10891
11476
|
}
|
|
11477
|
+
.gap-size-75--tablet-big-up {
|
|
11478
|
+
gap: 4.6875rem !important;
|
|
11479
|
+
}
|
|
10892
11480
|
}
|
|
10893
11481
|
@media screen and (min-width: 80rem) {
|
|
10894
11482
|
.m-size-75--laptop-up {
|
|
@@ -10937,6 +11525,9 @@ body {
|
|
|
10937
11525
|
padding-top: 4.6875rem !important;
|
|
10938
11526
|
padding-bottom: 4.6875rem !important;
|
|
10939
11527
|
}
|
|
11528
|
+
.gap-size-75--laptop-up {
|
|
11529
|
+
gap: 4.6875rem !important;
|
|
11530
|
+
}
|
|
10940
11531
|
}
|
|
10941
11532
|
@media screen and (min-width: 100rem) {
|
|
10942
11533
|
.m-size-75--desktop-up {
|
|
@@ -10985,6 +11576,9 @@ body {
|
|
|
10985
11576
|
padding-top: 4.6875rem !important;
|
|
10986
11577
|
padding-bottom: 4.6875rem !important;
|
|
10987
11578
|
}
|
|
11579
|
+
.gap-size-75--desktop-up {
|
|
11580
|
+
gap: 4.6875rem !important;
|
|
11581
|
+
}
|
|
10988
11582
|
}
|
|
10989
11583
|
.m-size-100 {
|
|
10990
11584
|
margin: 6.25rem !important;
|
|
@@ -11046,6 +11640,10 @@ body {
|
|
|
11046
11640
|
padding-bottom: 6.25rem !important;
|
|
11047
11641
|
}
|
|
11048
11642
|
|
|
11643
|
+
.gap-size-100 {
|
|
11644
|
+
gap: 6.25rem !important;
|
|
11645
|
+
}
|
|
11646
|
+
|
|
11049
11647
|
@media screen and (min-width: 0) {
|
|
11050
11648
|
.m-size-100--mobile-up {
|
|
11051
11649
|
margin: 6.25rem !important;
|
|
@@ -11093,6 +11691,9 @@ body {
|
|
|
11093
11691
|
padding-top: 6.25rem !important;
|
|
11094
11692
|
padding-bottom: 6.25rem !important;
|
|
11095
11693
|
}
|
|
11694
|
+
.gap-size-100--mobile-up {
|
|
11695
|
+
gap: 6.25rem !important;
|
|
11696
|
+
}
|
|
11096
11697
|
}
|
|
11097
11698
|
@media screen and (min-width: 36rem) {
|
|
11098
11699
|
.m-size-100--phablet-up {
|
|
@@ -11141,6 +11742,9 @@ body {
|
|
|
11141
11742
|
padding-top: 6.25rem !important;
|
|
11142
11743
|
padding-bottom: 6.25rem !important;
|
|
11143
11744
|
}
|
|
11745
|
+
.gap-size-100--phablet-up {
|
|
11746
|
+
gap: 6.25rem !important;
|
|
11747
|
+
}
|
|
11144
11748
|
}
|
|
11145
11749
|
@media screen and (min-width: 48rem) {
|
|
11146
11750
|
.m-size-100--tablet-up {
|
|
@@ -11189,6 +11793,9 @@ body {
|
|
|
11189
11793
|
padding-top: 6.25rem !important;
|
|
11190
11794
|
padding-bottom: 6.25rem !important;
|
|
11191
11795
|
}
|
|
11796
|
+
.gap-size-100--tablet-up {
|
|
11797
|
+
gap: 6.25rem !important;
|
|
11798
|
+
}
|
|
11192
11799
|
}
|
|
11193
11800
|
@media screen and (min-width: 64rem) {
|
|
11194
11801
|
.m-size-100--tablet-big-up {
|
|
@@ -11237,6 +11844,9 @@ body {
|
|
|
11237
11844
|
padding-top: 6.25rem !important;
|
|
11238
11845
|
padding-bottom: 6.25rem !important;
|
|
11239
11846
|
}
|
|
11847
|
+
.gap-size-100--tablet-big-up {
|
|
11848
|
+
gap: 6.25rem !important;
|
|
11849
|
+
}
|
|
11240
11850
|
}
|
|
11241
11851
|
@media screen and (min-width: 80rem) {
|
|
11242
11852
|
.m-size-100--laptop-up {
|
|
@@ -11285,6 +11895,9 @@ body {
|
|
|
11285
11895
|
padding-top: 6.25rem !important;
|
|
11286
11896
|
padding-bottom: 6.25rem !important;
|
|
11287
11897
|
}
|
|
11898
|
+
.gap-size-100--laptop-up {
|
|
11899
|
+
gap: 6.25rem !important;
|
|
11900
|
+
}
|
|
11288
11901
|
}
|
|
11289
11902
|
@media screen and (min-width: 100rem) {
|
|
11290
11903
|
.m-size-100--desktop-up {
|
|
@@ -11333,6 +11946,9 @@ body {
|
|
|
11333
11946
|
padding-top: 6.25rem !important;
|
|
11334
11947
|
padding-bottom: 6.25rem !important;
|
|
11335
11948
|
}
|
|
11949
|
+
.gap-size-100--desktop-up {
|
|
11950
|
+
gap: 6.25rem !important;
|
|
11951
|
+
}
|
|
11336
11952
|
}
|
|
11337
11953
|
/*
|
|
11338
11954
|
* Containers
|
|
@@ -13602,7 +14218,7 @@ a:active, a.pkt-link--active,
|
|
|
13602
14218
|
.pkt-link--external::after {
|
|
13603
14219
|
display: inline-block;
|
|
13604
14220
|
content: " ";
|
|
13605
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/12.
|
|
14221
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/12.5/icons/new-window-small.svg);
|
|
13606
14222
|
background-image: var(--svg);
|
|
13607
14223
|
background-repeat: no-repeat;
|
|
13608
14224
|
background-size: 18px 18px;
|
|
@@ -17480,7 +18096,7 @@ div.pkt-btn:not([data-disabled]):active, .pkt-btn:enabled:active, .pkt-btn.pkt-b
|
|
|
17480
18096
|
outline-color: var(--pkt-color-input-border-hover);
|
|
17481
18097
|
}
|
|
17482
18098
|
.pkt-input-check__input-checkbox:checked[type=checkbox] {
|
|
17483
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/12.
|
|
18099
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/12.5/icons/check-medium.svg);
|
|
17484
18100
|
position: relative;
|
|
17485
18101
|
background-color: var(--pkt-color-input-border-normal);
|
|
17486
18102
|
}
|
|
@@ -17540,7 +18156,7 @@ div.pkt-btn:not([data-disabled]):active, .pkt-btn:enabled:active, .pkt-btn.pkt-b
|
|
|
17540
18156
|
cursor: not-allowed;
|
|
17541
18157
|
}
|
|
17542
18158
|
.pkt-input-check__input-checkbox:disabled[type=checkbox][role=switch]:checked:after {
|
|
17543
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/12.
|
|
18159
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/12.5/icons/check-medium.svg);
|
|
17544
18160
|
--pkt-color-input-check-border: var(
|
|
17545
18161
|
--pkt-color-input-border-normal
|
|
17546
18162
|
);
|
|
@@ -17787,7 +18403,7 @@ Therefore, this is removed from the reset here, and images who need to be fluid
|
|
|
17787
18403
|
}
|
|
17788
18404
|
.pkt-input:is(select):not([multiple]), .pkt-textinput__input:is(select):not([multiple]), .pkt-select select:is(select):not([multiple]),
|
|
17789
18405
|
.pkt-select:is(select):not([multiple]) {
|
|
17790
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/12.
|
|
18406
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/12.5/icons/chevron-thin-down.svg);
|
|
17791
18407
|
background-image: var(--svg);
|
|
17792
18408
|
background-repeat: no-repeat;
|
|
17793
18409
|
background-position: right 0.7rem top 50%;
|