@unifiedsoftware/styles 2.0.0-alpha.3 → 2.0.0-alpha.4
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/css/fci.css +228 -87
- package/css/fci.min.css +1 -1
- package/css/styles.css +1281 -188
- package/css/styles.min.css +1 -1
- package/package.json +1 -1
- package/scss/_utilities.scss +103 -6
- package/scss/components/_accordion.scss +19 -20
- package/scss/components/_card.scss +6 -5
- package/scss/components/_descriptions.scss +17 -6
- package/scss/themes/fci/_tokens.scss +10 -0
- package/scss/themes/fci/components/_accordion.scss +81 -131
- package/scss/themes/fci/components/_button.scss +2 -2
- package/scss/themes/fci/components/_card.scss +2 -2
- package/scss/themes/fci/components/_descriptions.scss +37 -0
- package/scss/themes/fci/components/_index.scss +1 -0
package/css/styles.css
CHANGED
|
@@ -1092,15 +1092,11 @@
|
|
|
1092
1092
|
position: relative;
|
|
1093
1093
|
border-radius: var(--us-accordion-border-radius);
|
|
1094
1094
|
z-index: 0;
|
|
1095
|
+
}
|
|
1096
|
+
.us-accordion:not(.us-accordion--splitted) {
|
|
1095
1097
|
overflow: hidden;
|
|
1096
1098
|
background-color: white;
|
|
1097
1099
|
}
|
|
1098
|
-
.us-accordion--bordered:not(.us-accordion--splitted) {
|
|
1099
|
-
border: var(--us-accordion-border-width) var(--us-accordion-border-style) var(--us-accordion-border-color);
|
|
1100
|
-
}
|
|
1101
|
-
.us-accordion--shadow:not(.us-accordion--splitted) {
|
|
1102
|
-
filter: drop-shadow(rgba(141, 141, 141, 0.15) 0.5px 1px 1px) drop-shadow(rgba(141, 141, 141, 0.15) 1px 2px 2px) drop-shadow(rgba(141, 141, 141, 0.15) 2px 4px 4px) drop-shadow(rgba(141, 141, 141, 0.15) 4px 8px 8px) drop-shadow(rgba(141, 141, 141, 0.15) 8px 16px 16px);
|
|
1103
|
-
}
|
|
1104
1100
|
.us-accordion--splitted {
|
|
1105
1101
|
display: grid;
|
|
1106
1102
|
gap: var(--us-accordion-splitted-gap);
|
|
@@ -1109,13 +1105,8 @@
|
|
|
1109
1105
|
border-radius: var(--us-accordion-border-radius);
|
|
1110
1106
|
overflow: hidden;
|
|
1111
1107
|
}
|
|
1112
|
-
.us-accordion--bordered.us-accordion--splitted .us-accordion-item {
|
|
1113
|
-
border: var(--us-accordion-border-width) var(--us-accordion-border-style) var(--us-accordion-border-color);
|
|
1114
|
-
}
|
|
1115
|
-
.us-accordion--shadow.us-accordion--splitted .us-accordion-item {
|
|
1116
|
-
filter: drop-shadow(rgba(141, 141, 141, 0.15) 0.5px 1px 1px) drop-shadow(rgba(141, 141, 141, 0.15) 1px 2px 2px) drop-shadow(rgba(141, 141, 141, 0.15) 2px 4px 4px) drop-shadow(rgba(141, 141, 141, 0.15) 4px 8px 8px) drop-shadow(rgba(141, 141, 141, 0.15) 8px 16px 16px);
|
|
1117
|
-
}
|
|
1118
1108
|
.us-accordion-item {
|
|
1109
|
+
position: relative;
|
|
1119
1110
|
border-bottom: 1px solid #e6e6e6;
|
|
1120
1111
|
}
|
|
1121
1112
|
.us-accordion-item:last-child {
|
|
@@ -1607,6 +1598,7 @@
|
|
|
1607
1598
|
overflow: hidden;
|
|
1608
1599
|
display: flex;
|
|
1609
1600
|
flex-direction: column;
|
|
1601
|
+
justify-content: center;
|
|
1610
1602
|
}
|
|
1611
1603
|
.us-card-header--centered .us-card-header__start-content, .us-card-header--centered .us-card-header__end-content {
|
|
1612
1604
|
position: absolute;
|
|
@@ -1712,29 +1704,29 @@
|
|
|
1712
1704
|
object-fit: cover;
|
|
1713
1705
|
}
|
|
1714
1706
|
.us-card-header--underlined {
|
|
1715
|
-
|
|
1707
|
+
margin-bottom: var(--us-card-padding-y);
|
|
1716
1708
|
}
|
|
1717
1709
|
.us-card-header--underlined::after {
|
|
1718
1710
|
content: "";
|
|
1719
1711
|
position: absolute;
|
|
1720
1712
|
left: calc(var(--us-card-padding-x) * -1);
|
|
1721
1713
|
right: calc(var(--us-card-padding-x) * -1);
|
|
1722
|
-
bottom:
|
|
1714
|
+
bottom: calc(var(--us-card-padding-y) * -1);
|
|
1723
1715
|
border-bottom: 1px solid var(--us-card-border-color);
|
|
1724
1716
|
}
|
|
1725
1717
|
.us-card-footer--underlined {
|
|
1726
|
-
|
|
1718
|
+
margin-top: var(--us-card-padding-y);
|
|
1727
1719
|
}
|
|
1728
1720
|
.us-card-footer--underlined::after {
|
|
1729
1721
|
content: "";
|
|
1730
1722
|
position: absolute;
|
|
1731
1723
|
left: calc(var(--us-card-padding-x) * -1);
|
|
1732
1724
|
right: calc(var(--us-card-padding-x) * -1);
|
|
1733
|
-
top:
|
|
1725
|
+
top: calc(var(--us-card-padding-y) * -1);
|
|
1734
1726
|
border-top: 1px solid var(--us-card-border-color);
|
|
1735
1727
|
}
|
|
1736
1728
|
.us-card-header--underlined:last-child {
|
|
1737
|
-
|
|
1729
|
+
margin-bottom: 0;
|
|
1738
1730
|
}
|
|
1739
1731
|
.us-card-header--underlined:last-child::after {
|
|
1740
1732
|
border-bottom: none;
|
|
@@ -1743,22 +1735,35 @@
|
|
|
1743
1735
|
border-top: none;
|
|
1744
1736
|
}
|
|
1745
1737
|
|
|
1746
|
-
.us-
|
|
1747
|
-
|
|
1748
|
-
|
|
1738
|
+
.us-descriptions {
|
|
1739
|
+
display: grid;
|
|
1740
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1741
|
+
row-gap: var(--us-descriptions-gap-x);
|
|
1742
|
+
column-gap: var(--us-descriptions-gap-y);
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
.us-description__label {
|
|
1746
|
+
font-size: var(--us-description-label-font-size);
|
|
1747
|
+
font-weight: var(--us-description-text-font-weight);
|
|
1748
|
+
color: var(--us-description-label-color);
|
|
1749
|
+
opacity: var(--us-description-label-opacity);
|
|
1749
1750
|
overflow: hidden;
|
|
1750
1751
|
text-overflow: ellipsis;
|
|
1751
1752
|
white-space: nowrap;
|
|
1752
1753
|
display: block;
|
|
1753
1754
|
}
|
|
1754
|
-
.us-
|
|
1755
|
-
font-size: 14px;
|
|
1756
|
-
font-weight: 500;
|
|
1755
|
+
.us-description__content {
|
|
1757
1756
|
overflow: hidden;
|
|
1758
1757
|
text-overflow: ellipsis;
|
|
1759
1758
|
white-space: nowrap;
|
|
1760
1759
|
display: block;
|
|
1761
1760
|
}
|
|
1761
|
+
.us-description__text {
|
|
1762
|
+
font-size: var(--us-description-text-font-size);
|
|
1763
|
+
font-weight: var(--us-description-text-font-weight);
|
|
1764
|
+
color: var(--us-description-text-color);
|
|
1765
|
+
opacity: var(--us-description-text-opacity);
|
|
1766
|
+
}
|
|
1762
1767
|
|
|
1763
1768
|
.us-result {
|
|
1764
1769
|
flex-grow: 1;
|
|
@@ -2108,114 +2113,342 @@
|
|
|
2108
2113
|
align-items: baseline;
|
|
2109
2114
|
}
|
|
2110
2115
|
|
|
2111
|
-
.us-
|
|
2116
|
+
.us-fs-xs {
|
|
2117
|
+
font-size: var(--us-fs-xs);
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
.us-fs-sm {
|
|
2121
|
+
font-size: var(--us-fs-sm);
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.us-fs-md {
|
|
2125
|
+
font-size: var(--us-fs-md);
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
.us-fs-lg {
|
|
2129
|
+
font-size: var(--us-fs-lg);
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
.us-fs-xl {
|
|
2133
|
+
font-size: var(--us-fs-xl);
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
.us-fs-2xl {
|
|
2137
|
+
font-size: var(--us-fs-2xl);
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
.us-fs-3xl {
|
|
2141
|
+
font-size: var(--us-fs-3xl);
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
.us-fs-4xl {
|
|
2145
|
+
font-size: var(--us-fs-4xl);
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
.us-fs-5xl {
|
|
2149
|
+
font-size: var(--us-fs-5xl);
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
.us-g-0 {
|
|
2112
2153
|
gap: 0;
|
|
2113
2154
|
}
|
|
2114
2155
|
|
|
2115
|
-
.us-
|
|
2156
|
+
.us-g-1 {
|
|
2116
2157
|
gap: 0.25rem;
|
|
2117
2158
|
}
|
|
2118
2159
|
|
|
2119
|
-
.us-
|
|
2160
|
+
.us-g-2 {
|
|
2120
2161
|
gap: 0.5rem;
|
|
2121
2162
|
}
|
|
2122
2163
|
|
|
2123
|
-
.us-
|
|
2164
|
+
.us-g-3 {
|
|
2124
2165
|
gap: 0.75rem;
|
|
2125
2166
|
}
|
|
2126
2167
|
|
|
2127
|
-
.us-
|
|
2168
|
+
.us-g-4 {
|
|
2128
2169
|
gap: 1rem;
|
|
2129
2170
|
}
|
|
2130
2171
|
|
|
2131
|
-
.us-
|
|
2172
|
+
.us-g-5 {
|
|
2132
2173
|
gap: 1.25rem;
|
|
2133
2174
|
}
|
|
2134
2175
|
|
|
2135
|
-
.us-
|
|
2176
|
+
.us-g-6 {
|
|
2136
2177
|
gap: 1.5rem;
|
|
2137
2178
|
}
|
|
2138
2179
|
|
|
2139
|
-
.us-
|
|
2180
|
+
.us-g-7 {
|
|
2140
2181
|
gap: 1.75rem;
|
|
2141
2182
|
}
|
|
2142
2183
|
|
|
2143
|
-
.us-
|
|
2184
|
+
.us-g-8 {
|
|
2144
2185
|
gap: 2rem;
|
|
2145
2186
|
}
|
|
2146
2187
|
|
|
2147
|
-
.us-
|
|
2188
|
+
.us-gx-0 {
|
|
2148
2189
|
column-gap: 0;
|
|
2149
2190
|
}
|
|
2150
2191
|
|
|
2151
|
-
.us-
|
|
2192
|
+
.us-gx-1 {
|
|
2152
2193
|
column-gap: 0.25rem;
|
|
2153
2194
|
}
|
|
2154
2195
|
|
|
2155
|
-
.us-
|
|
2196
|
+
.us-gx-2 {
|
|
2156
2197
|
column-gap: 0.5rem;
|
|
2157
2198
|
}
|
|
2158
2199
|
|
|
2159
|
-
.us-
|
|
2200
|
+
.us-gx-3 {
|
|
2160
2201
|
column-gap: 0.75rem;
|
|
2161
2202
|
}
|
|
2162
2203
|
|
|
2163
|
-
.us-
|
|
2204
|
+
.us-gx-4 {
|
|
2164
2205
|
column-gap: 1rem;
|
|
2165
2206
|
}
|
|
2166
2207
|
|
|
2167
|
-
.us-
|
|
2208
|
+
.us-gx-5 {
|
|
2168
2209
|
column-gap: 1.25rem;
|
|
2169
2210
|
}
|
|
2170
2211
|
|
|
2171
|
-
.us-
|
|
2212
|
+
.us-gx-6 {
|
|
2172
2213
|
column-gap: 1.5rem;
|
|
2173
2214
|
}
|
|
2174
2215
|
|
|
2175
|
-
.us-
|
|
2216
|
+
.us-gx-7 {
|
|
2176
2217
|
column-gap: 1.75rem;
|
|
2177
2218
|
}
|
|
2178
2219
|
|
|
2179
|
-
.us-
|
|
2220
|
+
.us-gx-8 {
|
|
2180
2221
|
column-gap: 2rem;
|
|
2181
2222
|
}
|
|
2182
2223
|
|
|
2183
|
-
.us-
|
|
2224
|
+
.us-gy-0 {
|
|
2184
2225
|
row-gap: 0;
|
|
2185
2226
|
}
|
|
2186
2227
|
|
|
2187
|
-
.us-
|
|
2228
|
+
.us-gy-1 {
|
|
2188
2229
|
row-gap: 0.25rem;
|
|
2189
2230
|
}
|
|
2190
2231
|
|
|
2191
|
-
.us-
|
|
2232
|
+
.us-gy-2 {
|
|
2192
2233
|
row-gap: 0.5rem;
|
|
2193
2234
|
}
|
|
2194
2235
|
|
|
2195
|
-
.us-
|
|
2236
|
+
.us-gy-3 {
|
|
2196
2237
|
row-gap: 0.75rem;
|
|
2197
2238
|
}
|
|
2198
2239
|
|
|
2199
|
-
.us-
|
|
2240
|
+
.us-gy-4 {
|
|
2200
2241
|
row-gap: 1rem;
|
|
2201
2242
|
}
|
|
2202
2243
|
|
|
2203
|
-
.us-
|
|
2244
|
+
.us-gy-5 {
|
|
2204
2245
|
row-gap: 1.25rem;
|
|
2205
2246
|
}
|
|
2206
2247
|
|
|
2207
|
-
.us-
|
|
2248
|
+
.us-gy-6 {
|
|
2208
2249
|
row-gap: 1.5rem;
|
|
2209
2250
|
}
|
|
2210
2251
|
|
|
2211
|
-
.us-
|
|
2252
|
+
.us-gy-7 {
|
|
2212
2253
|
row-gap: 1.75rem;
|
|
2213
2254
|
}
|
|
2214
2255
|
|
|
2215
|
-
.us-
|
|
2256
|
+
.us-gy-8 {
|
|
2216
2257
|
row-gap: 2rem;
|
|
2217
2258
|
}
|
|
2218
2259
|
|
|
2260
|
+
.us-cols-1 {
|
|
2261
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.us-cols-2 {
|
|
2265
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
.us-cols-3 {
|
|
2269
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
.us-cols-4 {
|
|
2273
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
.us-cols-5 {
|
|
2277
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
.us-cols-6 {
|
|
2281
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
.us-cols-7 {
|
|
2285
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.us-cols-8 {
|
|
2289
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.us-cols-9 {
|
|
2293
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.us-cols-10 {
|
|
2297
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
.us-cols-11 {
|
|
2301
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.us-cols-12 {
|
|
2305
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
.us-col-1 {
|
|
2309
|
+
grid-column: span 1/span 1;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
.us-col-2 {
|
|
2313
|
+
grid-column: span 2/span 2;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.us-col-3 {
|
|
2317
|
+
grid-column: span 3/span 3;
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
.us-col-4 {
|
|
2321
|
+
grid-column: span 4/span 4;
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
.us-col-5 {
|
|
2325
|
+
grid-column: span 5/span 5;
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
.us-col-6 {
|
|
2329
|
+
grid-column: span 6/span 6;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
.us-col-7 {
|
|
2333
|
+
grid-column: span 7/span 7;
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.us-col-8 {
|
|
2337
|
+
grid-column: span 8/span 8;
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
.us-col-9 {
|
|
2341
|
+
grid-column: span 9/span 9;
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
.us-col-10 {
|
|
2345
|
+
grid-column: span 10/span 10;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.us-col-11 {
|
|
2349
|
+
grid-column: span 11/span 11;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
.us-col-12 {
|
|
2353
|
+
grid-column: span 12/span 12;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.us-col-s-1 {
|
|
2357
|
+
grid-column-start: 1;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
.us-col-s-2 {
|
|
2361
|
+
grid-column-start: 2;
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
.us-col-s-3 {
|
|
2365
|
+
grid-column-start: 3;
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
.us-col-s-4 {
|
|
2369
|
+
grid-column-start: 4;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.us-col-s-5 {
|
|
2373
|
+
grid-column-start: 5;
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
.us-col-s-6 {
|
|
2377
|
+
grid-column-start: 6;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
.us-col-s-7 {
|
|
2381
|
+
grid-column-start: 7;
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
.us-col-s-8 {
|
|
2385
|
+
grid-column-start: 8;
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
.us-col-s-9 {
|
|
2389
|
+
grid-column-start: 9;
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
.us-col-s-10 {
|
|
2393
|
+
grid-column-start: 10;
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2396
|
+
.us-col-s-11 {
|
|
2397
|
+
grid-column-start: 11;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.us-col-s-12 {
|
|
2401
|
+
grid-column-start: 12;
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
.us-col-e-1 {
|
|
2405
|
+
grid-column: 1;
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
.us-col-e-2 {
|
|
2409
|
+
grid-column: 2;
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
.us-col-e-3 {
|
|
2413
|
+
grid-column: 3;
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
.us-col-e-4 {
|
|
2417
|
+
grid-column: 4;
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
.us-col-e-5 {
|
|
2421
|
+
grid-column: 5;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.us-col-e-6 {
|
|
2425
|
+
grid-column: 6;
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
.us-col-e-7 {
|
|
2429
|
+
grid-column: 7;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.us-col-e-8 {
|
|
2433
|
+
grid-column: 8;
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.us-col-e-9 {
|
|
2437
|
+
grid-column: 9;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.us-col-e-10 {
|
|
2441
|
+
grid-column: 10;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.us-col-e-11 {
|
|
2445
|
+
grid-column: 11;
|
|
2446
|
+
}
|
|
2447
|
+
|
|
2448
|
+
.us-col-e-12 {
|
|
2449
|
+
grid-column: 12;
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2219
2452
|
@media screen and (min-width: 0px) {
|
|
2220
2453
|
.xs\:us-h-full {
|
|
2221
2454
|
height: 100%;
|
|
@@ -2313,89 +2546,260 @@
|
|
|
2313
2546
|
.xs\:us-items-baseline {
|
|
2314
2547
|
align-items: baseline;
|
|
2315
2548
|
}
|
|
2316
|
-
.xs\:us-
|
|
2549
|
+
.xs\:us-fs-xs {
|
|
2550
|
+
font-size: var(--us-fs-xs);
|
|
2551
|
+
}
|
|
2552
|
+
.xs\:us-fs-sm {
|
|
2553
|
+
font-size: var(--us-fs-sm);
|
|
2554
|
+
}
|
|
2555
|
+
.xs\:us-fs-md {
|
|
2556
|
+
font-size: var(--us-fs-md);
|
|
2557
|
+
}
|
|
2558
|
+
.xs\:us-fs-lg {
|
|
2559
|
+
font-size: var(--us-fs-lg);
|
|
2560
|
+
}
|
|
2561
|
+
.xs\:us-fs-xl {
|
|
2562
|
+
font-size: var(--us-fs-xl);
|
|
2563
|
+
}
|
|
2564
|
+
.xs\:us-fs-2xl {
|
|
2565
|
+
font-size: var(--us-fs-2xl);
|
|
2566
|
+
}
|
|
2567
|
+
.xs\:us-fs-3xl {
|
|
2568
|
+
font-size: var(--us-fs-3xl);
|
|
2569
|
+
}
|
|
2570
|
+
.xs\:us-fs-4xl {
|
|
2571
|
+
font-size: var(--us-fs-4xl);
|
|
2572
|
+
}
|
|
2573
|
+
.xs\:us-fs-5xl {
|
|
2574
|
+
font-size: var(--us-fs-5xl);
|
|
2575
|
+
}
|
|
2576
|
+
.xs\:us-g-0 {
|
|
2317
2577
|
gap: 0;
|
|
2318
2578
|
}
|
|
2319
|
-
.xs\:us-
|
|
2579
|
+
.xs\:us-g-1 {
|
|
2320
2580
|
gap: 0.25rem;
|
|
2321
2581
|
}
|
|
2322
|
-
.xs\:us-
|
|
2582
|
+
.xs\:us-g-2 {
|
|
2323
2583
|
gap: 0.5rem;
|
|
2324
2584
|
}
|
|
2325
|
-
.xs\:us-
|
|
2585
|
+
.xs\:us-g-3 {
|
|
2326
2586
|
gap: 0.75rem;
|
|
2327
2587
|
}
|
|
2328
|
-
.xs\:us-
|
|
2588
|
+
.xs\:us-g-4 {
|
|
2329
2589
|
gap: 1rem;
|
|
2330
2590
|
}
|
|
2331
|
-
.xs\:us-
|
|
2591
|
+
.xs\:us-g-5 {
|
|
2332
2592
|
gap: 1.25rem;
|
|
2333
2593
|
}
|
|
2334
|
-
.xs\:us-
|
|
2594
|
+
.xs\:us-g-6 {
|
|
2335
2595
|
gap: 1.5rem;
|
|
2336
2596
|
}
|
|
2337
|
-
.xs\:us-
|
|
2597
|
+
.xs\:us-g-7 {
|
|
2338
2598
|
gap: 1.75rem;
|
|
2339
2599
|
}
|
|
2340
|
-
.xs\:us-
|
|
2600
|
+
.xs\:us-g-8 {
|
|
2341
2601
|
gap: 2rem;
|
|
2342
2602
|
}
|
|
2343
|
-
.xs\:us-
|
|
2603
|
+
.xs\:us-gx-0 {
|
|
2344
2604
|
column-gap: 0;
|
|
2345
2605
|
}
|
|
2346
|
-
.xs\:us-
|
|
2606
|
+
.xs\:us-gx-1 {
|
|
2347
2607
|
column-gap: 0.25rem;
|
|
2348
2608
|
}
|
|
2349
|
-
.xs\:us-
|
|
2609
|
+
.xs\:us-gx-2 {
|
|
2350
2610
|
column-gap: 0.5rem;
|
|
2351
2611
|
}
|
|
2352
|
-
.xs\:us-
|
|
2612
|
+
.xs\:us-gx-3 {
|
|
2353
2613
|
column-gap: 0.75rem;
|
|
2354
2614
|
}
|
|
2355
|
-
.xs\:us-
|
|
2615
|
+
.xs\:us-gx-4 {
|
|
2356
2616
|
column-gap: 1rem;
|
|
2357
2617
|
}
|
|
2358
|
-
.xs\:us-
|
|
2618
|
+
.xs\:us-gx-5 {
|
|
2359
2619
|
column-gap: 1.25rem;
|
|
2360
2620
|
}
|
|
2361
|
-
.xs\:us-
|
|
2621
|
+
.xs\:us-gx-6 {
|
|
2362
2622
|
column-gap: 1.5rem;
|
|
2363
2623
|
}
|
|
2364
|
-
.xs\:us-
|
|
2624
|
+
.xs\:us-gx-7 {
|
|
2365
2625
|
column-gap: 1.75rem;
|
|
2366
2626
|
}
|
|
2367
|
-
.xs\:us-
|
|
2627
|
+
.xs\:us-gx-8 {
|
|
2368
2628
|
column-gap: 2rem;
|
|
2369
2629
|
}
|
|
2370
|
-
.xs\:us-
|
|
2630
|
+
.xs\:us-gy-0 {
|
|
2371
2631
|
row-gap: 0;
|
|
2372
2632
|
}
|
|
2373
|
-
.xs\:us-
|
|
2633
|
+
.xs\:us-gy-1 {
|
|
2374
2634
|
row-gap: 0.25rem;
|
|
2375
2635
|
}
|
|
2376
|
-
.xs\:us-
|
|
2636
|
+
.xs\:us-gy-2 {
|
|
2377
2637
|
row-gap: 0.5rem;
|
|
2378
2638
|
}
|
|
2379
|
-
.xs\:us-
|
|
2639
|
+
.xs\:us-gy-3 {
|
|
2380
2640
|
row-gap: 0.75rem;
|
|
2381
2641
|
}
|
|
2382
|
-
.xs\:us-
|
|
2642
|
+
.xs\:us-gy-4 {
|
|
2383
2643
|
row-gap: 1rem;
|
|
2384
2644
|
}
|
|
2385
|
-
.xs\:us-
|
|
2645
|
+
.xs\:us-gy-5 {
|
|
2386
2646
|
row-gap: 1.25rem;
|
|
2387
2647
|
}
|
|
2388
|
-
.xs\:us-
|
|
2648
|
+
.xs\:us-gy-6 {
|
|
2389
2649
|
row-gap: 1.5rem;
|
|
2390
2650
|
}
|
|
2391
|
-
.xs\:us-
|
|
2651
|
+
.xs\:us-gy-7 {
|
|
2392
2652
|
row-gap: 1.75rem;
|
|
2393
2653
|
}
|
|
2394
|
-
.xs\:us-
|
|
2654
|
+
.xs\:us-gy-8 {
|
|
2395
2655
|
row-gap: 2rem;
|
|
2396
2656
|
}
|
|
2657
|
+
.xs\:us-cols-1 {
|
|
2658
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2659
|
+
}
|
|
2660
|
+
.xs\:us-cols-2 {
|
|
2661
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2662
|
+
}
|
|
2663
|
+
.xs\:us-cols-3 {
|
|
2664
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2665
|
+
}
|
|
2666
|
+
.xs\:us-cols-4 {
|
|
2667
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2668
|
+
}
|
|
2669
|
+
.xs\:us-cols-5 {
|
|
2670
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2671
|
+
}
|
|
2672
|
+
.xs\:us-cols-6 {
|
|
2673
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2674
|
+
}
|
|
2675
|
+
.xs\:us-cols-7 {
|
|
2676
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
2677
|
+
}
|
|
2678
|
+
.xs\:us-cols-8 {
|
|
2679
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2680
|
+
}
|
|
2681
|
+
.xs\:us-cols-9 {
|
|
2682
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
2683
|
+
}
|
|
2684
|
+
.xs\:us-cols-10 {
|
|
2685
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
2686
|
+
}
|
|
2687
|
+
.xs\:us-cols-11 {
|
|
2688
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
2689
|
+
}
|
|
2690
|
+
.xs\:us-cols-12 {
|
|
2691
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
2692
|
+
}
|
|
2693
|
+
.xs\:us-col-1 {
|
|
2694
|
+
grid-column: span 1/span 1;
|
|
2695
|
+
}
|
|
2696
|
+
.xs\:us-col-2 {
|
|
2697
|
+
grid-column: span 2/span 2;
|
|
2698
|
+
}
|
|
2699
|
+
.xs\:us-col-3 {
|
|
2700
|
+
grid-column: span 3/span 3;
|
|
2701
|
+
}
|
|
2702
|
+
.xs\:us-col-4 {
|
|
2703
|
+
grid-column: span 4/span 4;
|
|
2704
|
+
}
|
|
2705
|
+
.xs\:us-col-5 {
|
|
2706
|
+
grid-column: span 5/span 5;
|
|
2707
|
+
}
|
|
2708
|
+
.xs\:us-col-6 {
|
|
2709
|
+
grid-column: span 6/span 6;
|
|
2710
|
+
}
|
|
2711
|
+
.xs\:us-col-7 {
|
|
2712
|
+
grid-column: span 7/span 7;
|
|
2713
|
+
}
|
|
2714
|
+
.xs\:us-col-8 {
|
|
2715
|
+
grid-column: span 8/span 8;
|
|
2716
|
+
}
|
|
2717
|
+
.xs\:us-col-9 {
|
|
2718
|
+
grid-column: span 9/span 9;
|
|
2719
|
+
}
|
|
2720
|
+
.xs\:us-col-10 {
|
|
2721
|
+
grid-column: span 10/span 10;
|
|
2722
|
+
}
|
|
2723
|
+
.xs\:us-col-11 {
|
|
2724
|
+
grid-column: span 11/span 11;
|
|
2725
|
+
}
|
|
2726
|
+
.xs\:us-col-12 {
|
|
2727
|
+
grid-column: span 12/span 12;
|
|
2728
|
+
}
|
|
2729
|
+
.xs\:us-col-s-1 {
|
|
2730
|
+
grid-column-start: 1;
|
|
2731
|
+
}
|
|
2732
|
+
.xs\:us-col-s-2 {
|
|
2733
|
+
grid-column-start: 2;
|
|
2734
|
+
}
|
|
2735
|
+
.xs\:us-col-s-3 {
|
|
2736
|
+
grid-column-start: 3;
|
|
2737
|
+
}
|
|
2738
|
+
.xs\:us-col-s-4 {
|
|
2739
|
+
grid-column-start: 4;
|
|
2740
|
+
}
|
|
2741
|
+
.xs\:us-col-s-5 {
|
|
2742
|
+
grid-column-start: 5;
|
|
2743
|
+
}
|
|
2744
|
+
.xs\:us-col-s-6 {
|
|
2745
|
+
grid-column-start: 6;
|
|
2746
|
+
}
|
|
2747
|
+
.xs\:us-col-s-7 {
|
|
2748
|
+
grid-column-start: 7;
|
|
2749
|
+
}
|
|
2750
|
+
.xs\:us-col-s-8 {
|
|
2751
|
+
grid-column-start: 8;
|
|
2752
|
+
}
|
|
2753
|
+
.xs\:us-col-s-9 {
|
|
2754
|
+
grid-column-start: 9;
|
|
2755
|
+
}
|
|
2756
|
+
.xs\:us-col-s-10 {
|
|
2757
|
+
grid-column-start: 10;
|
|
2758
|
+
}
|
|
2759
|
+
.xs\:us-col-s-11 {
|
|
2760
|
+
grid-column-start: 11;
|
|
2761
|
+
}
|
|
2762
|
+
.xs\:us-col-s-12 {
|
|
2763
|
+
grid-column-start: 12;
|
|
2764
|
+
}
|
|
2765
|
+
.xs\:us-col-e-1 {
|
|
2766
|
+
grid-column: 1;
|
|
2767
|
+
}
|
|
2768
|
+
.xs\:us-col-e-2 {
|
|
2769
|
+
grid-column: 2;
|
|
2770
|
+
}
|
|
2771
|
+
.xs\:us-col-e-3 {
|
|
2772
|
+
grid-column: 3;
|
|
2773
|
+
}
|
|
2774
|
+
.xs\:us-col-e-4 {
|
|
2775
|
+
grid-column: 4;
|
|
2776
|
+
}
|
|
2777
|
+
.xs\:us-col-e-5 {
|
|
2778
|
+
grid-column: 5;
|
|
2779
|
+
}
|
|
2780
|
+
.xs\:us-col-e-6 {
|
|
2781
|
+
grid-column: 6;
|
|
2782
|
+
}
|
|
2783
|
+
.xs\:us-col-e-7 {
|
|
2784
|
+
grid-column: 7;
|
|
2785
|
+
}
|
|
2786
|
+
.xs\:us-col-e-8 {
|
|
2787
|
+
grid-column: 8;
|
|
2788
|
+
}
|
|
2789
|
+
.xs\:us-col-e-9 {
|
|
2790
|
+
grid-column: 9;
|
|
2791
|
+
}
|
|
2792
|
+
.xs\:us-col-e-10 {
|
|
2793
|
+
grid-column: 10;
|
|
2794
|
+
}
|
|
2795
|
+
.xs\:us-col-e-11 {
|
|
2796
|
+
grid-column: 11;
|
|
2797
|
+
}
|
|
2798
|
+
.xs\:us-col-e-12 {
|
|
2799
|
+
grid-column: 12;
|
|
2800
|
+
}
|
|
2397
2801
|
}
|
|
2398
|
-
@media screen and (min-width:
|
|
2802
|
+
@media screen and (min-width: 640px) {
|
|
2399
2803
|
.sm\:us-h-full {
|
|
2400
2804
|
height: 100%;
|
|
2401
2805
|
}
|
|
@@ -2492,87 +2896,258 @@
|
|
|
2492
2896
|
.sm\:us-items-baseline {
|
|
2493
2897
|
align-items: baseline;
|
|
2494
2898
|
}
|
|
2495
|
-
.sm\:us-
|
|
2899
|
+
.sm\:us-fs-xs {
|
|
2900
|
+
font-size: var(--us-fs-xs);
|
|
2901
|
+
}
|
|
2902
|
+
.sm\:us-fs-sm {
|
|
2903
|
+
font-size: var(--us-fs-sm);
|
|
2904
|
+
}
|
|
2905
|
+
.sm\:us-fs-md {
|
|
2906
|
+
font-size: var(--us-fs-md);
|
|
2907
|
+
}
|
|
2908
|
+
.sm\:us-fs-lg {
|
|
2909
|
+
font-size: var(--us-fs-lg);
|
|
2910
|
+
}
|
|
2911
|
+
.sm\:us-fs-xl {
|
|
2912
|
+
font-size: var(--us-fs-xl);
|
|
2913
|
+
}
|
|
2914
|
+
.sm\:us-fs-2xl {
|
|
2915
|
+
font-size: var(--us-fs-2xl);
|
|
2916
|
+
}
|
|
2917
|
+
.sm\:us-fs-3xl {
|
|
2918
|
+
font-size: var(--us-fs-3xl);
|
|
2919
|
+
}
|
|
2920
|
+
.sm\:us-fs-4xl {
|
|
2921
|
+
font-size: var(--us-fs-4xl);
|
|
2922
|
+
}
|
|
2923
|
+
.sm\:us-fs-5xl {
|
|
2924
|
+
font-size: var(--us-fs-5xl);
|
|
2925
|
+
}
|
|
2926
|
+
.sm\:us-g-0 {
|
|
2496
2927
|
gap: 0;
|
|
2497
2928
|
}
|
|
2498
|
-
.sm\:us-
|
|
2929
|
+
.sm\:us-g-1 {
|
|
2499
2930
|
gap: 0.25rem;
|
|
2500
2931
|
}
|
|
2501
|
-
.sm\:us-
|
|
2932
|
+
.sm\:us-g-2 {
|
|
2502
2933
|
gap: 0.5rem;
|
|
2503
2934
|
}
|
|
2504
|
-
.sm\:us-
|
|
2935
|
+
.sm\:us-g-3 {
|
|
2505
2936
|
gap: 0.75rem;
|
|
2506
2937
|
}
|
|
2507
|
-
.sm\:us-
|
|
2938
|
+
.sm\:us-g-4 {
|
|
2508
2939
|
gap: 1rem;
|
|
2509
2940
|
}
|
|
2510
|
-
.sm\:us-
|
|
2941
|
+
.sm\:us-g-5 {
|
|
2511
2942
|
gap: 1.25rem;
|
|
2512
2943
|
}
|
|
2513
|
-
.sm\:us-
|
|
2944
|
+
.sm\:us-g-6 {
|
|
2514
2945
|
gap: 1.5rem;
|
|
2515
2946
|
}
|
|
2516
|
-
.sm\:us-
|
|
2947
|
+
.sm\:us-g-7 {
|
|
2517
2948
|
gap: 1.75rem;
|
|
2518
2949
|
}
|
|
2519
|
-
.sm\:us-
|
|
2950
|
+
.sm\:us-g-8 {
|
|
2520
2951
|
gap: 2rem;
|
|
2521
2952
|
}
|
|
2522
|
-
.sm\:us-
|
|
2953
|
+
.sm\:us-gx-0 {
|
|
2523
2954
|
column-gap: 0;
|
|
2524
2955
|
}
|
|
2525
|
-
.sm\:us-
|
|
2956
|
+
.sm\:us-gx-1 {
|
|
2526
2957
|
column-gap: 0.25rem;
|
|
2527
2958
|
}
|
|
2528
|
-
.sm\:us-
|
|
2959
|
+
.sm\:us-gx-2 {
|
|
2529
2960
|
column-gap: 0.5rem;
|
|
2530
2961
|
}
|
|
2531
|
-
.sm\:us-
|
|
2962
|
+
.sm\:us-gx-3 {
|
|
2532
2963
|
column-gap: 0.75rem;
|
|
2533
2964
|
}
|
|
2534
|
-
.sm\:us-
|
|
2965
|
+
.sm\:us-gx-4 {
|
|
2535
2966
|
column-gap: 1rem;
|
|
2536
2967
|
}
|
|
2537
|
-
.sm\:us-
|
|
2968
|
+
.sm\:us-gx-5 {
|
|
2538
2969
|
column-gap: 1.25rem;
|
|
2539
2970
|
}
|
|
2540
|
-
.sm\:us-
|
|
2971
|
+
.sm\:us-gx-6 {
|
|
2541
2972
|
column-gap: 1.5rem;
|
|
2542
2973
|
}
|
|
2543
|
-
.sm\:us-
|
|
2974
|
+
.sm\:us-gx-7 {
|
|
2544
2975
|
column-gap: 1.75rem;
|
|
2545
2976
|
}
|
|
2546
|
-
.sm\:us-
|
|
2977
|
+
.sm\:us-gx-8 {
|
|
2547
2978
|
column-gap: 2rem;
|
|
2548
2979
|
}
|
|
2549
|
-
.sm\:us-
|
|
2980
|
+
.sm\:us-gy-0 {
|
|
2550
2981
|
row-gap: 0;
|
|
2551
2982
|
}
|
|
2552
|
-
.sm\:us-
|
|
2983
|
+
.sm\:us-gy-1 {
|
|
2553
2984
|
row-gap: 0.25rem;
|
|
2554
2985
|
}
|
|
2555
|
-
.sm\:us-
|
|
2986
|
+
.sm\:us-gy-2 {
|
|
2556
2987
|
row-gap: 0.5rem;
|
|
2557
2988
|
}
|
|
2558
|
-
.sm\:us-
|
|
2989
|
+
.sm\:us-gy-3 {
|
|
2559
2990
|
row-gap: 0.75rem;
|
|
2560
2991
|
}
|
|
2561
|
-
.sm\:us-
|
|
2992
|
+
.sm\:us-gy-4 {
|
|
2562
2993
|
row-gap: 1rem;
|
|
2563
2994
|
}
|
|
2564
|
-
.sm\:us-
|
|
2995
|
+
.sm\:us-gy-5 {
|
|
2565
2996
|
row-gap: 1.25rem;
|
|
2566
2997
|
}
|
|
2567
|
-
.sm\:us-
|
|
2998
|
+
.sm\:us-gy-6 {
|
|
2568
2999
|
row-gap: 1.5rem;
|
|
2569
3000
|
}
|
|
2570
|
-
.sm\:us-
|
|
3001
|
+
.sm\:us-gy-7 {
|
|
2571
3002
|
row-gap: 1.75rem;
|
|
2572
3003
|
}
|
|
2573
|
-
.sm\:us-
|
|
3004
|
+
.sm\:us-gy-8 {
|
|
2574
3005
|
row-gap: 2rem;
|
|
2575
3006
|
}
|
|
3007
|
+
.sm\:us-cols-1 {
|
|
3008
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3009
|
+
}
|
|
3010
|
+
.sm\:us-cols-2 {
|
|
3011
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3012
|
+
}
|
|
3013
|
+
.sm\:us-cols-3 {
|
|
3014
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3015
|
+
}
|
|
3016
|
+
.sm\:us-cols-4 {
|
|
3017
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3018
|
+
}
|
|
3019
|
+
.sm\:us-cols-5 {
|
|
3020
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
3021
|
+
}
|
|
3022
|
+
.sm\:us-cols-6 {
|
|
3023
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
3024
|
+
}
|
|
3025
|
+
.sm\:us-cols-7 {
|
|
3026
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
3027
|
+
}
|
|
3028
|
+
.sm\:us-cols-8 {
|
|
3029
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
3030
|
+
}
|
|
3031
|
+
.sm\:us-cols-9 {
|
|
3032
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
3033
|
+
}
|
|
3034
|
+
.sm\:us-cols-10 {
|
|
3035
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
3036
|
+
}
|
|
3037
|
+
.sm\:us-cols-11 {
|
|
3038
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
3039
|
+
}
|
|
3040
|
+
.sm\:us-cols-12 {
|
|
3041
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
3042
|
+
}
|
|
3043
|
+
.sm\:us-col-1 {
|
|
3044
|
+
grid-column: span 1/span 1;
|
|
3045
|
+
}
|
|
3046
|
+
.sm\:us-col-2 {
|
|
3047
|
+
grid-column: span 2/span 2;
|
|
3048
|
+
}
|
|
3049
|
+
.sm\:us-col-3 {
|
|
3050
|
+
grid-column: span 3/span 3;
|
|
3051
|
+
}
|
|
3052
|
+
.sm\:us-col-4 {
|
|
3053
|
+
grid-column: span 4/span 4;
|
|
3054
|
+
}
|
|
3055
|
+
.sm\:us-col-5 {
|
|
3056
|
+
grid-column: span 5/span 5;
|
|
3057
|
+
}
|
|
3058
|
+
.sm\:us-col-6 {
|
|
3059
|
+
grid-column: span 6/span 6;
|
|
3060
|
+
}
|
|
3061
|
+
.sm\:us-col-7 {
|
|
3062
|
+
grid-column: span 7/span 7;
|
|
3063
|
+
}
|
|
3064
|
+
.sm\:us-col-8 {
|
|
3065
|
+
grid-column: span 8/span 8;
|
|
3066
|
+
}
|
|
3067
|
+
.sm\:us-col-9 {
|
|
3068
|
+
grid-column: span 9/span 9;
|
|
3069
|
+
}
|
|
3070
|
+
.sm\:us-col-10 {
|
|
3071
|
+
grid-column: span 10/span 10;
|
|
3072
|
+
}
|
|
3073
|
+
.sm\:us-col-11 {
|
|
3074
|
+
grid-column: span 11/span 11;
|
|
3075
|
+
}
|
|
3076
|
+
.sm\:us-col-12 {
|
|
3077
|
+
grid-column: span 12/span 12;
|
|
3078
|
+
}
|
|
3079
|
+
.sm\:us-col-s-1 {
|
|
3080
|
+
grid-column-start: 1;
|
|
3081
|
+
}
|
|
3082
|
+
.sm\:us-col-s-2 {
|
|
3083
|
+
grid-column-start: 2;
|
|
3084
|
+
}
|
|
3085
|
+
.sm\:us-col-s-3 {
|
|
3086
|
+
grid-column-start: 3;
|
|
3087
|
+
}
|
|
3088
|
+
.sm\:us-col-s-4 {
|
|
3089
|
+
grid-column-start: 4;
|
|
3090
|
+
}
|
|
3091
|
+
.sm\:us-col-s-5 {
|
|
3092
|
+
grid-column-start: 5;
|
|
3093
|
+
}
|
|
3094
|
+
.sm\:us-col-s-6 {
|
|
3095
|
+
grid-column-start: 6;
|
|
3096
|
+
}
|
|
3097
|
+
.sm\:us-col-s-7 {
|
|
3098
|
+
grid-column-start: 7;
|
|
3099
|
+
}
|
|
3100
|
+
.sm\:us-col-s-8 {
|
|
3101
|
+
grid-column-start: 8;
|
|
3102
|
+
}
|
|
3103
|
+
.sm\:us-col-s-9 {
|
|
3104
|
+
grid-column-start: 9;
|
|
3105
|
+
}
|
|
3106
|
+
.sm\:us-col-s-10 {
|
|
3107
|
+
grid-column-start: 10;
|
|
3108
|
+
}
|
|
3109
|
+
.sm\:us-col-s-11 {
|
|
3110
|
+
grid-column-start: 11;
|
|
3111
|
+
}
|
|
3112
|
+
.sm\:us-col-s-12 {
|
|
3113
|
+
grid-column-start: 12;
|
|
3114
|
+
}
|
|
3115
|
+
.sm\:us-col-e-1 {
|
|
3116
|
+
grid-column: 1;
|
|
3117
|
+
}
|
|
3118
|
+
.sm\:us-col-e-2 {
|
|
3119
|
+
grid-column: 2;
|
|
3120
|
+
}
|
|
3121
|
+
.sm\:us-col-e-3 {
|
|
3122
|
+
grid-column: 3;
|
|
3123
|
+
}
|
|
3124
|
+
.sm\:us-col-e-4 {
|
|
3125
|
+
grid-column: 4;
|
|
3126
|
+
}
|
|
3127
|
+
.sm\:us-col-e-5 {
|
|
3128
|
+
grid-column: 5;
|
|
3129
|
+
}
|
|
3130
|
+
.sm\:us-col-e-6 {
|
|
3131
|
+
grid-column: 6;
|
|
3132
|
+
}
|
|
3133
|
+
.sm\:us-col-e-7 {
|
|
3134
|
+
grid-column: 7;
|
|
3135
|
+
}
|
|
3136
|
+
.sm\:us-col-e-8 {
|
|
3137
|
+
grid-column: 8;
|
|
3138
|
+
}
|
|
3139
|
+
.sm\:us-col-e-9 {
|
|
3140
|
+
grid-column: 9;
|
|
3141
|
+
}
|
|
3142
|
+
.sm\:us-col-e-10 {
|
|
3143
|
+
grid-column: 10;
|
|
3144
|
+
}
|
|
3145
|
+
.sm\:us-col-e-11 {
|
|
3146
|
+
grid-column: 11;
|
|
3147
|
+
}
|
|
3148
|
+
.sm\:us-col-e-12 {
|
|
3149
|
+
grid-column: 12;
|
|
3150
|
+
}
|
|
2576
3151
|
}
|
|
2577
3152
|
@media screen and (min-width: 960px) {
|
|
2578
3153
|
.md\:us-h-full {
|
|
@@ -2671,89 +3246,260 @@
|
|
|
2671
3246
|
.md\:us-items-baseline {
|
|
2672
3247
|
align-items: baseline;
|
|
2673
3248
|
}
|
|
2674
|
-
.md\:us-
|
|
3249
|
+
.md\:us-fs-xs {
|
|
3250
|
+
font-size: var(--us-fs-xs);
|
|
3251
|
+
}
|
|
3252
|
+
.md\:us-fs-sm {
|
|
3253
|
+
font-size: var(--us-fs-sm);
|
|
3254
|
+
}
|
|
3255
|
+
.md\:us-fs-md {
|
|
3256
|
+
font-size: var(--us-fs-md);
|
|
3257
|
+
}
|
|
3258
|
+
.md\:us-fs-lg {
|
|
3259
|
+
font-size: var(--us-fs-lg);
|
|
3260
|
+
}
|
|
3261
|
+
.md\:us-fs-xl {
|
|
3262
|
+
font-size: var(--us-fs-xl);
|
|
3263
|
+
}
|
|
3264
|
+
.md\:us-fs-2xl {
|
|
3265
|
+
font-size: var(--us-fs-2xl);
|
|
3266
|
+
}
|
|
3267
|
+
.md\:us-fs-3xl {
|
|
3268
|
+
font-size: var(--us-fs-3xl);
|
|
3269
|
+
}
|
|
3270
|
+
.md\:us-fs-4xl {
|
|
3271
|
+
font-size: var(--us-fs-4xl);
|
|
3272
|
+
}
|
|
3273
|
+
.md\:us-fs-5xl {
|
|
3274
|
+
font-size: var(--us-fs-5xl);
|
|
3275
|
+
}
|
|
3276
|
+
.md\:us-g-0 {
|
|
2675
3277
|
gap: 0;
|
|
2676
3278
|
}
|
|
2677
|
-
.md\:us-
|
|
3279
|
+
.md\:us-g-1 {
|
|
2678
3280
|
gap: 0.25rem;
|
|
2679
3281
|
}
|
|
2680
|
-
.md\:us-
|
|
3282
|
+
.md\:us-g-2 {
|
|
2681
3283
|
gap: 0.5rem;
|
|
2682
3284
|
}
|
|
2683
|
-
.md\:us-
|
|
3285
|
+
.md\:us-g-3 {
|
|
2684
3286
|
gap: 0.75rem;
|
|
2685
3287
|
}
|
|
2686
|
-
.md\:us-
|
|
3288
|
+
.md\:us-g-4 {
|
|
2687
3289
|
gap: 1rem;
|
|
2688
3290
|
}
|
|
2689
|
-
.md\:us-
|
|
3291
|
+
.md\:us-g-5 {
|
|
2690
3292
|
gap: 1.25rem;
|
|
2691
3293
|
}
|
|
2692
|
-
.md\:us-
|
|
3294
|
+
.md\:us-g-6 {
|
|
2693
3295
|
gap: 1.5rem;
|
|
2694
3296
|
}
|
|
2695
|
-
.md\:us-
|
|
3297
|
+
.md\:us-g-7 {
|
|
2696
3298
|
gap: 1.75rem;
|
|
2697
3299
|
}
|
|
2698
|
-
.md\:us-
|
|
3300
|
+
.md\:us-g-8 {
|
|
2699
3301
|
gap: 2rem;
|
|
2700
3302
|
}
|
|
2701
|
-
.md\:us-
|
|
3303
|
+
.md\:us-gx-0 {
|
|
2702
3304
|
column-gap: 0;
|
|
2703
3305
|
}
|
|
2704
|
-
.md\:us-
|
|
3306
|
+
.md\:us-gx-1 {
|
|
2705
3307
|
column-gap: 0.25rem;
|
|
2706
3308
|
}
|
|
2707
|
-
.md\:us-
|
|
3309
|
+
.md\:us-gx-2 {
|
|
2708
3310
|
column-gap: 0.5rem;
|
|
2709
3311
|
}
|
|
2710
|
-
.md\:us-
|
|
3312
|
+
.md\:us-gx-3 {
|
|
2711
3313
|
column-gap: 0.75rem;
|
|
2712
3314
|
}
|
|
2713
|
-
.md\:us-
|
|
3315
|
+
.md\:us-gx-4 {
|
|
2714
3316
|
column-gap: 1rem;
|
|
2715
3317
|
}
|
|
2716
|
-
.md\:us-
|
|
3318
|
+
.md\:us-gx-5 {
|
|
2717
3319
|
column-gap: 1.25rem;
|
|
2718
3320
|
}
|
|
2719
|
-
.md\:us-
|
|
3321
|
+
.md\:us-gx-6 {
|
|
2720
3322
|
column-gap: 1.5rem;
|
|
2721
3323
|
}
|
|
2722
|
-
.md\:us-
|
|
3324
|
+
.md\:us-gx-7 {
|
|
2723
3325
|
column-gap: 1.75rem;
|
|
2724
3326
|
}
|
|
2725
|
-
.md\:us-
|
|
3327
|
+
.md\:us-gx-8 {
|
|
2726
3328
|
column-gap: 2rem;
|
|
2727
3329
|
}
|
|
2728
|
-
.md\:us-
|
|
3330
|
+
.md\:us-gy-0 {
|
|
2729
3331
|
row-gap: 0;
|
|
2730
3332
|
}
|
|
2731
|
-
.md\:us-
|
|
3333
|
+
.md\:us-gy-1 {
|
|
2732
3334
|
row-gap: 0.25rem;
|
|
2733
3335
|
}
|
|
2734
|
-
.md\:us-
|
|
3336
|
+
.md\:us-gy-2 {
|
|
2735
3337
|
row-gap: 0.5rem;
|
|
2736
3338
|
}
|
|
2737
|
-
.md\:us-
|
|
3339
|
+
.md\:us-gy-3 {
|
|
2738
3340
|
row-gap: 0.75rem;
|
|
2739
3341
|
}
|
|
2740
|
-
.md\:us-
|
|
3342
|
+
.md\:us-gy-4 {
|
|
2741
3343
|
row-gap: 1rem;
|
|
2742
3344
|
}
|
|
2743
|
-
.md\:us-
|
|
3345
|
+
.md\:us-gy-5 {
|
|
2744
3346
|
row-gap: 1.25rem;
|
|
2745
3347
|
}
|
|
2746
|
-
.md\:us-
|
|
3348
|
+
.md\:us-gy-6 {
|
|
2747
3349
|
row-gap: 1.5rem;
|
|
2748
3350
|
}
|
|
2749
|
-
.md\:us-
|
|
3351
|
+
.md\:us-gy-7 {
|
|
2750
3352
|
row-gap: 1.75rem;
|
|
2751
3353
|
}
|
|
2752
|
-
.md\:us-
|
|
3354
|
+
.md\:us-gy-8 {
|
|
2753
3355
|
row-gap: 2rem;
|
|
2754
3356
|
}
|
|
3357
|
+
.md\:us-cols-1 {
|
|
3358
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3359
|
+
}
|
|
3360
|
+
.md\:us-cols-2 {
|
|
3361
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3362
|
+
}
|
|
3363
|
+
.md\:us-cols-3 {
|
|
3364
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3365
|
+
}
|
|
3366
|
+
.md\:us-cols-4 {
|
|
3367
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3368
|
+
}
|
|
3369
|
+
.md\:us-cols-5 {
|
|
3370
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
3371
|
+
}
|
|
3372
|
+
.md\:us-cols-6 {
|
|
3373
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
3374
|
+
}
|
|
3375
|
+
.md\:us-cols-7 {
|
|
3376
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
3377
|
+
}
|
|
3378
|
+
.md\:us-cols-8 {
|
|
3379
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
3380
|
+
}
|
|
3381
|
+
.md\:us-cols-9 {
|
|
3382
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
3383
|
+
}
|
|
3384
|
+
.md\:us-cols-10 {
|
|
3385
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
3386
|
+
}
|
|
3387
|
+
.md\:us-cols-11 {
|
|
3388
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
3389
|
+
}
|
|
3390
|
+
.md\:us-cols-12 {
|
|
3391
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
3392
|
+
}
|
|
3393
|
+
.md\:us-col-1 {
|
|
3394
|
+
grid-column: span 1/span 1;
|
|
3395
|
+
}
|
|
3396
|
+
.md\:us-col-2 {
|
|
3397
|
+
grid-column: span 2/span 2;
|
|
3398
|
+
}
|
|
3399
|
+
.md\:us-col-3 {
|
|
3400
|
+
grid-column: span 3/span 3;
|
|
3401
|
+
}
|
|
3402
|
+
.md\:us-col-4 {
|
|
3403
|
+
grid-column: span 4/span 4;
|
|
3404
|
+
}
|
|
3405
|
+
.md\:us-col-5 {
|
|
3406
|
+
grid-column: span 5/span 5;
|
|
3407
|
+
}
|
|
3408
|
+
.md\:us-col-6 {
|
|
3409
|
+
grid-column: span 6/span 6;
|
|
3410
|
+
}
|
|
3411
|
+
.md\:us-col-7 {
|
|
3412
|
+
grid-column: span 7/span 7;
|
|
3413
|
+
}
|
|
3414
|
+
.md\:us-col-8 {
|
|
3415
|
+
grid-column: span 8/span 8;
|
|
3416
|
+
}
|
|
3417
|
+
.md\:us-col-9 {
|
|
3418
|
+
grid-column: span 9/span 9;
|
|
3419
|
+
}
|
|
3420
|
+
.md\:us-col-10 {
|
|
3421
|
+
grid-column: span 10/span 10;
|
|
3422
|
+
}
|
|
3423
|
+
.md\:us-col-11 {
|
|
3424
|
+
grid-column: span 11/span 11;
|
|
3425
|
+
}
|
|
3426
|
+
.md\:us-col-12 {
|
|
3427
|
+
grid-column: span 12/span 12;
|
|
3428
|
+
}
|
|
3429
|
+
.md\:us-col-s-1 {
|
|
3430
|
+
grid-column-start: 1;
|
|
3431
|
+
}
|
|
3432
|
+
.md\:us-col-s-2 {
|
|
3433
|
+
grid-column-start: 2;
|
|
3434
|
+
}
|
|
3435
|
+
.md\:us-col-s-3 {
|
|
3436
|
+
grid-column-start: 3;
|
|
3437
|
+
}
|
|
3438
|
+
.md\:us-col-s-4 {
|
|
3439
|
+
grid-column-start: 4;
|
|
3440
|
+
}
|
|
3441
|
+
.md\:us-col-s-5 {
|
|
3442
|
+
grid-column-start: 5;
|
|
3443
|
+
}
|
|
3444
|
+
.md\:us-col-s-6 {
|
|
3445
|
+
grid-column-start: 6;
|
|
3446
|
+
}
|
|
3447
|
+
.md\:us-col-s-7 {
|
|
3448
|
+
grid-column-start: 7;
|
|
3449
|
+
}
|
|
3450
|
+
.md\:us-col-s-8 {
|
|
3451
|
+
grid-column-start: 8;
|
|
3452
|
+
}
|
|
3453
|
+
.md\:us-col-s-9 {
|
|
3454
|
+
grid-column-start: 9;
|
|
3455
|
+
}
|
|
3456
|
+
.md\:us-col-s-10 {
|
|
3457
|
+
grid-column-start: 10;
|
|
3458
|
+
}
|
|
3459
|
+
.md\:us-col-s-11 {
|
|
3460
|
+
grid-column-start: 11;
|
|
3461
|
+
}
|
|
3462
|
+
.md\:us-col-s-12 {
|
|
3463
|
+
grid-column-start: 12;
|
|
3464
|
+
}
|
|
3465
|
+
.md\:us-col-e-1 {
|
|
3466
|
+
grid-column: 1;
|
|
3467
|
+
}
|
|
3468
|
+
.md\:us-col-e-2 {
|
|
3469
|
+
grid-column: 2;
|
|
3470
|
+
}
|
|
3471
|
+
.md\:us-col-e-3 {
|
|
3472
|
+
grid-column: 3;
|
|
3473
|
+
}
|
|
3474
|
+
.md\:us-col-e-4 {
|
|
3475
|
+
grid-column: 4;
|
|
3476
|
+
}
|
|
3477
|
+
.md\:us-col-e-5 {
|
|
3478
|
+
grid-column: 5;
|
|
3479
|
+
}
|
|
3480
|
+
.md\:us-col-e-6 {
|
|
3481
|
+
grid-column: 6;
|
|
3482
|
+
}
|
|
3483
|
+
.md\:us-col-e-7 {
|
|
3484
|
+
grid-column: 7;
|
|
3485
|
+
}
|
|
3486
|
+
.md\:us-col-e-8 {
|
|
3487
|
+
grid-column: 8;
|
|
3488
|
+
}
|
|
3489
|
+
.md\:us-col-e-9 {
|
|
3490
|
+
grid-column: 9;
|
|
3491
|
+
}
|
|
3492
|
+
.md\:us-col-e-10 {
|
|
3493
|
+
grid-column: 10;
|
|
3494
|
+
}
|
|
3495
|
+
.md\:us-col-e-11 {
|
|
3496
|
+
grid-column: 11;
|
|
3497
|
+
}
|
|
3498
|
+
.md\:us-col-e-12 {
|
|
3499
|
+
grid-column: 12;
|
|
3500
|
+
}
|
|
2755
3501
|
}
|
|
2756
|
-
@media screen and (min-width:
|
|
3502
|
+
@media screen and (min-width: 1024px) {
|
|
2757
3503
|
.lg\:us-h-full {
|
|
2758
3504
|
height: 100%;
|
|
2759
3505
|
}
|
|
@@ -2850,89 +3596,260 @@
|
|
|
2850
3596
|
.lg\:us-items-baseline {
|
|
2851
3597
|
align-items: baseline;
|
|
2852
3598
|
}
|
|
2853
|
-
.lg\:us-
|
|
3599
|
+
.lg\:us-fs-xs {
|
|
3600
|
+
font-size: var(--us-fs-xs);
|
|
3601
|
+
}
|
|
3602
|
+
.lg\:us-fs-sm {
|
|
3603
|
+
font-size: var(--us-fs-sm);
|
|
3604
|
+
}
|
|
3605
|
+
.lg\:us-fs-md {
|
|
3606
|
+
font-size: var(--us-fs-md);
|
|
3607
|
+
}
|
|
3608
|
+
.lg\:us-fs-lg {
|
|
3609
|
+
font-size: var(--us-fs-lg);
|
|
3610
|
+
}
|
|
3611
|
+
.lg\:us-fs-xl {
|
|
3612
|
+
font-size: var(--us-fs-xl);
|
|
3613
|
+
}
|
|
3614
|
+
.lg\:us-fs-2xl {
|
|
3615
|
+
font-size: var(--us-fs-2xl);
|
|
3616
|
+
}
|
|
3617
|
+
.lg\:us-fs-3xl {
|
|
3618
|
+
font-size: var(--us-fs-3xl);
|
|
3619
|
+
}
|
|
3620
|
+
.lg\:us-fs-4xl {
|
|
3621
|
+
font-size: var(--us-fs-4xl);
|
|
3622
|
+
}
|
|
3623
|
+
.lg\:us-fs-5xl {
|
|
3624
|
+
font-size: var(--us-fs-5xl);
|
|
3625
|
+
}
|
|
3626
|
+
.lg\:us-g-0 {
|
|
2854
3627
|
gap: 0;
|
|
2855
3628
|
}
|
|
2856
|
-
.lg\:us-
|
|
3629
|
+
.lg\:us-g-1 {
|
|
2857
3630
|
gap: 0.25rem;
|
|
2858
3631
|
}
|
|
2859
|
-
.lg\:us-
|
|
3632
|
+
.lg\:us-g-2 {
|
|
2860
3633
|
gap: 0.5rem;
|
|
2861
3634
|
}
|
|
2862
|
-
.lg\:us-
|
|
3635
|
+
.lg\:us-g-3 {
|
|
2863
3636
|
gap: 0.75rem;
|
|
2864
3637
|
}
|
|
2865
|
-
.lg\:us-
|
|
3638
|
+
.lg\:us-g-4 {
|
|
2866
3639
|
gap: 1rem;
|
|
2867
3640
|
}
|
|
2868
|
-
.lg\:us-
|
|
3641
|
+
.lg\:us-g-5 {
|
|
2869
3642
|
gap: 1.25rem;
|
|
2870
3643
|
}
|
|
2871
|
-
.lg\:us-
|
|
3644
|
+
.lg\:us-g-6 {
|
|
2872
3645
|
gap: 1.5rem;
|
|
2873
3646
|
}
|
|
2874
|
-
.lg\:us-
|
|
3647
|
+
.lg\:us-g-7 {
|
|
2875
3648
|
gap: 1.75rem;
|
|
2876
3649
|
}
|
|
2877
|
-
.lg\:us-
|
|
3650
|
+
.lg\:us-g-8 {
|
|
2878
3651
|
gap: 2rem;
|
|
2879
3652
|
}
|
|
2880
|
-
.lg\:us-
|
|
3653
|
+
.lg\:us-gx-0 {
|
|
2881
3654
|
column-gap: 0;
|
|
2882
3655
|
}
|
|
2883
|
-
.lg\:us-
|
|
3656
|
+
.lg\:us-gx-1 {
|
|
2884
3657
|
column-gap: 0.25rem;
|
|
2885
3658
|
}
|
|
2886
|
-
.lg\:us-
|
|
3659
|
+
.lg\:us-gx-2 {
|
|
2887
3660
|
column-gap: 0.5rem;
|
|
2888
3661
|
}
|
|
2889
|
-
.lg\:us-
|
|
3662
|
+
.lg\:us-gx-3 {
|
|
2890
3663
|
column-gap: 0.75rem;
|
|
2891
3664
|
}
|
|
2892
|
-
.lg\:us-
|
|
3665
|
+
.lg\:us-gx-4 {
|
|
2893
3666
|
column-gap: 1rem;
|
|
2894
3667
|
}
|
|
2895
|
-
.lg\:us-
|
|
3668
|
+
.lg\:us-gx-5 {
|
|
2896
3669
|
column-gap: 1.25rem;
|
|
2897
3670
|
}
|
|
2898
|
-
.lg\:us-
|
|
3671
|
+
.lg\:us-gx-6 {
|
|
2899
3672
|
column-gap: 1.5rem;
|
|
2900
3673
|
}
|
|
2901
|
-
.lg\:us-
|
|
3674
|
+
.lg\:us-gx-7 {
|
|
2902
3675
|
column-gap: 1.75rem;
|
|
2903
3676
|
}
|
|
2904
|
-
.lg\:us-
|
|
3677
|
+
.lg\:us-gx-8 {
|
|
2905
3678
|
column-gap: 2rem;
|
|
2906
3679
|
}
|
|
2907
|
-
.lg\:us-
|
|
3680
|
+
.lg\:us-gy-0 {
|
|
2908
3681
|
row-gap: 0;
|
|
2909
3682
|
}
|
|
2910
|
-
.lg\:us-
|
|
3683
|
+
.lg\:us-gy-1 {
|
|
2911
3684
|
row-gap: 0.25rem;
|
|
2912
3685
|
}
|
|
2913
|
-
.lg\:us-
|
|
3686
|
+
.lg\:us-gy-2 {
|
|
2914
3687
|
row-gap: 0.5rem;
|
|
2915
3688
|
}
|
|
2916
|
-
.lg\:us-
|
|
3689
|
+
.lg\:us-gy-3 {
|
|
2917
3690
|
row-gap: 0.75rem;
|
|
2918
3691
|
}
|
|
2919
|
-
.lg\:us-
|
|
3692
|
+
.lg\:us-gy-4 {
|
|
2920
3693
|
row-gap: 1rem;
|
|
2921
3694
|
}
|
|
2922
|
-
.lg\:us-
|
|
3695
|
+
.lg\:us-gy-5 {
|
|
2923
3696
|
row-gap: 1.25rem;
|
|
2924
3697
|
}
|
|
2925
|
-
.lg\:us-
|
|
3698
|
+
.lg\:us-gy-6 {
|
|
2926
3699
|
row-gap: 1.5rem;
|
|
2927
3700
|
}
|
|
2928
|
-
.lg\:us-
|
|
3701
|
+
.lg\:us-gy-7 {
|
|
2929
3702
|
row-gap: 1.75rem;
|
|
2930
3703
|
}
|
|
2931
|
-
.lg\:us-
|
|
3704
|
+
.lg\:us-gy-8 {
|
|
2932
3705
|
row-gap: 2rem;
|
|
2933
3706
|
}
|
|
3707
|
+
.lg\:us-cols-1 {
|
|
3708
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3709
|
+
}
|
|
3710
|
+
.lg\:us-cols-2 {
|
|
3711
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3712
|
+
}
|
|
3713
|
+
.lg\:us-cols-3 {
|
|
3714
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3715
|
+
}
|
|
3716
|
+
.lg\:us-cols-4 {
|
|
3717
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3718
|
+
}
|
|
3719
|
+
.lg\:us-cols-5 {
|
|
3720
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
3721
|
+
}
|
|
3722
|
+
.lg\:us-cols-6 {
|
|
3723
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
3724
|
+
}
|
|
3725
|
+
.lg\:us-cols-7 {
|
|
3726
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
3727
|
+
}
|
|
3728
|
+
.lg\:us-cols-8 {
|
|
3729
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
3730
|
+
}
|
|
3731
|
+
.lg\:us-cols-9 {
|
|
3732
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
3733
|
+
}
|
|
3734
|
+
.lg\:us-cols-10 {
|
|
3735
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
3736
|
+
}
|
|
3737
|
+
.lg\:us-cols-11 {
|
|
3738
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
3739
|
+
}
|
|
3740
|
+
.lg\:us-cols-12 {
|
|
3741
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
3742
|
+
}
|
|
3743
|
+
.lg\:us-col-1 {
|
|
3744
|
+
grid-column: span 1/span 1;
|
|
3745
|
+
}
|
|
3746
|
+
.lg\:us-col-2 {
|
|
3747
|
+
grid-column: span 2/span 2;
|
|
3748
|
+
}
|
|
3749
|
+
.lg\:us-col-3 {
|
|
3750
|
+
grid-column: span 3/span 3;
|
|
3751
|
+
}
|
|
3752
|
+
.lg\:us-col-4 {
|
|
3753
|
+
grid-column: span 4/span 4;
|
|
3754
|
+
}
|
|
3755
|
+
.lg\:us-col-5 {
|
|
3756
|
+
grid-column: span 5/span 5;
|
|
3757
|
+
}
|
|
3758
|
+
.lg\:us-col-6 {
|
|
3759
|
+
grid-column: span 6/span 6;
|
|
3760
|
+
}
|
|
3761
|
+
.lg\:us-col-7 {
|
|
3762
|
+
grid-column: span 7/span 7;
|
|
3763
|
+
}
|
|
3764
|
+
.lg\:us-col-8 {
|
|
3765
|
+
grid-column: span 8/span 8;
|
|
3766
|
+
}
|
|
3767
|
+
.lg\:us-col-9 {
|
|
3768
|
+
grid-column: span 9/span 9;
|
|
3769
|
+
}
|
|
3770
|
+
.lg\:us-col-10 {
|
|
3771
|
+
grid-column: span 10/span 10;
|
|
3772
|
+
}
|
|
3773
|
+
.lg\:us-col-11 {
|
|
3774
|
+
grid-column: span 11/span 11;
|
|
3775
|
+
}
|
|
3776
|
+
.lg\:us-col-12 {
|
|
3777
|
+
grid-column: span 12/span 12;
|
|
3778
|
+
}
|
|
3779
|
+
.lg\:us-col-s-1 {
|
|
3780
|
+
grid-column-start: 1;
|
|
3781
|
+
}
|
|
3782
|
+
.lg\:us-col-s-2 {
|
|
3783
|
+
grid-column-start: 2;
|
|
3784
|
+
}
|
|
3785
|
+
.lg\:us-col-s-3 {
|
|
3786
|
+
grid-column-start: 3;
|
|
3787
|
+
}
|
|
3788
|
+
.lg\:us-col-s-4 {
|
|
3789
|
+
grid-column-start: 4;
|
|
3790
|
+
}
|
|
3791
|
+
.lg\:us-col-s-5 {
|
|
3792
|
+
grid-column-start: 5;
|
|
3793
|
+
}
|
|
3794
|
+
.lg\:us-col-s-6 {
|
|
3795
|
+
grid-column-start: 6;
|
|
3796
|
+
}
|
|
3797
|
+
.lg\:us-col-s-7 {
|
|
3798
|
+
grid-column-start: 7;
|
|
3799
|
+
}
|
|
3800
|
+
.lg\:us-col-s-8 {
|
|
3801
|
+
grid-column-start: 8;
|
|
3802
|
+
}
|
|
3803
|
+
.lg\:us-col-s-9 {
|
|
3804
|
+
grid-column-start: 9;
|
|
3805
|
+
}
|
|
3806
|
+
.lg\:us-col-s-10 {
|
|
3807
|
+
grid-column-start: 10;
|
|
3808
|
+
}
|
|
3809
|
+
.lg\:us-col-s-11 {
|
|
3810
|
+
grid-column-start: 11;
|
|
3811
|
+
}
|
|
3812
|
+
.lg\:us-col-s-12 {
|
|
3813
|
+
grid-column-start: 12;
|
|
3814
|
+
}
|
|
3815
|
+
.lg\:us-col-e-1 {
|
|
3816
|
+
grid-column: 1;
|
|
3817
|
+
}
|
|
3818
|
+
.lg\:us-col-e-2 {
|
|
3819
|
+
grid-column: 2;
|
|
3820
|
+
}
|
|
3821
|
+
.lg\:us-col-e-3 {
|
|
3822
|
+
grid-column: 3;
|
|
3823
|
+
}
|
|
3824
|
+
.lg\:us-col-e-4 {
|
|
3825
|
+
grid-column: 4;
|
|
3826
|
+
}
|
|
3827
|
+
.lg\:us-col-e-5 {
|
|
3828
|
+
grid-column: 5;
|
|
3829
|
+
}
|
|
3830
|
+
.lg\:us-col-e-6 {
|
|
3831
|
+
grid-column: 6;
|
|
3832
|
+
}
|
|
3833
|
+
.lg\:us-col-e-7 {
|
|
3834
|
+
grid-column: 7;
|
|
3835
|
+
}
|
|
3836
|
+
.lg\:us-col-e-8 {
|
|
3837
|
+
grid-column: 8;
|
|
3838
|
+
}
|
|
3839
|
+
.lg\:us-col-e-9 {
|
|
3840
|
+
grid-column: 9;
|
|
3841
|
+
}
|
|
3842
|
+
.lg\:us-col-e-10 {
|
|
3843
|
+
grid-column: 10;
|
|
3844
|
+
}
|
|
3845
|
+
.lg\:us-col-e-11 {
|
|
3846
|
+
grid-column: 11;
|
|
3847
|
+
}
|
|
3848
|
+
.lg\:us-col-e-12 {
|
|
3849
|
+
grid-column: 12;
|
|
3850
|
+
}
|
|
2934
3851
|
}
|
|
2935
|
-
@media screen and (min-width:
|
|
3852
|
+
@media screen and (min-width: 1280px) {
|
|
2936
3853
|
.xl\:us-h-full {
|
|
2937
3854
|
height: 100%;
|
|
2938
3855
|
}
|
|
@@ -3029,87 +3946,258 @@
|
|
|
3029
3946
|
.xl\:us-items-baseline {
|
|
3030
3947
|
align-items: baseline;
|
|
3031
3948
|
}
|
|
3032
|
-
.xl\:us-
|
|
3949
|
+
.xl\:us-fs-xs {
|
|
3950
|
+
font-size: var(--us-fs-xs);
|
|
3951
|
+
}
|
|
3952
|
+
.xl\:us-fs-sm {
|
|
3953
|
+
font-size: var(--us-fs-sm);
|
|
3954
|
+
}
|
|
3955
|
+
.xl\:us-fs-md {
|
|
3956
|
+
font-size: var(--us-fs-md);
|
|
3957
|
+
}
|
|
3958
|
+
.xl\:us-fs-lg {
|
|
3959
|
+
font-size: var(--us-fs-lg);
|
|
3960
|
+
}
|
|
3961
|
+
.xl\:us-fs-xl {
|
|
3962
|
+
font-size: var(--us-fs-xl);
|
|
3963
|
+
}
|
|
3964
|
+
.xl\:us-fs-2xl {
|
|
3965
|
+
font-size: var(--us-fs-2xl);
|
|
3966
|
+
}
|
|
3967
|
+
.xl\:us-fs-3xl {
|
|
3968
|
+
font-size: var(--us-fs-3xl);
|
|
3969
|
+
}
|
|
3970
|
+
.xl\:us-fs-4xl {
|
|
3971
|
+
font-size: var(--us-fs-4xl);
|
|
3972
|
+
}
|
|
3973
|
+
.xl\:us-fs-5xl {
|
|
3974
|
+
font-size: var(--us-fs-5xl);
|
|
3975
|
+
}
|
|
3976
|
+
.xl\:us-g-0 {
|
|
3033
3977
|
gap: 0;
|
|
3034
3978
|
}
|
|
3035
|
-
.xl\:us-
|
|
3979
|
+
.xl\:us-g-1 {
|
|
3036
3980
|
gap: 0.25rem;
|
|
3037
3981
|
}
|
|
3038
|
-
.xl\:us-
|
|
3982
|
+
.xl\:us-g-2 {
|
|
3039
3983
|
gap: 0.5rem;
|
|
3040
3984
|
}
|
|
3041
|
-
.xl\:us-
|
|
3985
|
+
.xl\:us-g-3 {
|
|
3042
3986
|
gap: 0.75rem;
|
|
3043
3987
|
}
|
|
3044
|
-
.xl\:us-
|
|
3988
|
+
.xl\:us-g-4 {
|
|
3045
3989
|
gap: 1rem;
|
|
3046
3990
|
}
|
|
3047
|
-
.xl\:us-
|
|
3991
|
+
.xl\:us-g-5 {
|
|
3048
3992
|
gap: 1.25rem;
|
|
3049
3993
|
}
|
|
3050
|
-
.xl\:us-
|
|
3994
|
+
.xl\:us-g-6 {
|
|
3051
3995
|
gap: 1.5rem;
|
|
3052
3996
|
}
|
|
3053
|
-
.xl\:us-
|
|
3997
|
+
.xl\:us-g-7 {
|
|
3054
3998
|
gap: 1.75rem;
|
|
3055
3999
|
}
|
|
3056
|
-
.xl\:us-
|
|
4000
|
+
.xl\:us-g-8 {
|
|
3057
4001
|
gap: 2rem;
|
|
3058
4002
|
}
|
|
3059
|
-
.xl\:us-
|
|
4003
|
+
.xl\:us-gx-0 {
|
|
3060
4004
|
column-gap: 0;
|
|
3061
4005
|
}
|
|
3062
|
-
.xl\:us-
|
|
4006
|
+
.xl\:us-gx-1 {
|
|
3063
4007
|
column-gap: 0.25rem;
|
|
3064
4008
|
}
|
|
3065
|
-
.xl\:us-
|
|
4009
|
+
.xl\:us-gx-2 {
|
|
3066
4010
|
column-gap: 0.5rem;
|
|
3067
4011
|
}
|
|
3068
|
-
.xl\:us-
|
|
4012
|
+
.xl\:us-gx-3 {
|
|
3069
4013
|
column-gap: 0.75rem;
|
|
3070
4014
|
}
|
|
3071
|
-
.xl\:us-
|
|
4015
|
+
.xl\:us-gx-4 {
|
|
3072
4016
|
column-gap: 1rem;
|
|
3073
4017
|
}
|
|
3074
|
-
.xl\:us-
|
|
4018
|
+
.xl\:us-gx-5 {
|
|
3075
4019
|
column-gap: 1.25rem;
|
|
3076
4020
|
}
|
|
3077
|
-
.xl\:us-
|
|
4021
|
+
.xl\:us-gx-6 {
|
|
3078
4022
|
column-gap: 1.5rem;
|
|
3079
4023
|
}
|
|
3080
|
-
.xl\:us-
|
|
4024
|
+
.xl\:us-gx-7 {
|
|
3081
4025
|
column-gap: 1.75rem;
|
|
3082
4026
|
}
|
|
3083
|
-
.xl\:us-
|
|
4027
|
+
.xl\:us-gx-8 {
|
|
3084
4028
|
column-gap: 2rem;
|
|
3085
4029
|
}
|
|
3086
|
-
.xl\:us-
|
|
4030
|
+
.xl\:us-gy-0 {
|
|
3087
4031
|
row-gap: 0;
|
|
3088
4032
|
}
|
|
3089
|
-
.xl\:us-
|
|
4033
|
+
.xl\:us-gy-1 {
|
|
3090
4034
|
row-gap: 0.25rem;
|
|
3091
4035
|
}
|
|
3092
|
-
.xl\:us-
|
|
4036
|
+
.xl\:us-gy-2 {
|
|
3093
4037
|
row-gap: 0.5rem;
|
|
3094
4038
|
}
|
|
3095
|
-
.xl\:us-
|
|
4039
|
+
.xl\:us-gy-3 {
|
|
3096
4040
|
row-gap: 0.75rem;
|
|
3097
4041
|
}
|
|
3098
|
-
.xl\:us-
|
|
4042
|
+
.xl\:us-gy-4 {
|
|
3099
4043
|
row-gap: 1rem;
|
|
3100
4044
|
}
|
|
3101
|
-
.xl\:us-
|
|
4045
|
+
.xl\:us-gy-5 {
|
|
3102
4046
|
row-gap: 1.25rem;
|
|
3103
4047
|
}
|
|
3104
|
-
.xl\:us-
|
|
4048
|
+
.xl\:us-gy-6 {
|
|
3105
4049
|
row-gap: 1.5rem;
|
|
3106
4050
|
}
|
|
3107
|
-
.xl\:us-
|
|
4051
|
+
.xl\:us-gy-7 {
|
|
3108
4052
|
row-gap: 1.75rem;
|
|
3109
4053
|
}
|
|
3110
|
-
.xl\:us-
|
|
4054
|
+
.xl\:us-gy-8 {
|
|
3111
4055
|
row-gap: 2rem;
|
|
3112
4056
|
}
|
|
4057
|
+
.xl\:us-cols-1 {
|
|
4058
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
4059
|
+
}
|
|
4060
|
+
.xl\:us-cols-2 {
|
|
4061
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4062
|
+
}
|
|
4063
|
+
.xl\:us-cols-3 {
|
|
4064
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
4065
|
+
}
|
|
4066
|
+
.xl\:us-cols-4 {
|
|
4067
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4068
|
+
}
|
|
4069
|
+
.xl\:us-cols-5 {
|
|
4070
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
4071
|
+
}
|
|
4072
|
+
.xl\:us-cols-6 {
|
|
4073
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
4074
|
+
}
|
|
4075
|
+
.xl\:us-cols-7 {
|
|
4076
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
4077
|
+
}
|
|
4078
|
+
.xl\:us-cols-8 {
|
|
4079
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
4080
|
+
}
|
|
4081
|
+
.xl\:us-cols-9 {
|
|
4082
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
4083
|
+
}
|
|
4084
|
+
.xl\:us-cols-10 {
|
|
4085
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
4086
|
+
}
|
|
4087
|
+
.xl\:us-cols-11 {
|
|
4088
|
+
grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
4089
|
+
}
|
|
4090
|
+
.xl\:us-cols-12 {
|
|
4091
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
4092
|
+
}
|
|
4093
|
+
.xl\:us-col-1 {
|
|
4094
|
+
grid-column: span 1/span 1;
|
|
4095
|
+
}
|
|
4096
|
+
.xl\:us-col-2 {
|
|
4097
|
+
grid-column: span 2/span 2;
|
|
4098
|
+
}
|
|
4099
|
+
.xl\:us-col-3 {
|
|
4100
|
+
grid-column: span 3/span 3;
|
|
4101
|
+
}
|
|
4102
|
+
.xl\:us-col-4 {
|
|
4103
|
+
grid-column: span 4/span 4;
|
|
4104
|
+
}
|
|
4105
|
+
.xl\:us-col-5 {
|
|
4106
|
+
grid-column: span 5/span 5;
|
|
4107
|
+
}
|
|
4108
|
+
.xl\:us-col-6 {
|
|
4109
|
+
grid-column: span 6/span 6;
|
|
4110
|
+
}
|
|
4111
|
+
.xl\:us-col-7 {
|
|
4112
|
+
grid-column: span 7/span 7;
|
|
4113
|
+
}
|
|
4114
|
+
.xl\:us-col-8 {
|
|
4115
|
+
grid-column: span 8/span 8;
|
|
4116
|
+
}
|
|
4117
|
+
.xl\:us-col-9 {
|
|
4118
|
+
grid-column: span 9/span 9;
|
|
4119
|
+
}
|
|
4120
|
+
.xl\:us-col-10 {
|
|
4121
|
+
grid-column: span 10/span 10;
|
|
4122
|
+
}
|
|
4123
|
+
.xl\:us-col-11 {
|
|
4124
|
+
grid-column: span 11/span 11;
|
|
4125
|
+
}
|
|
4126
|
+
.xl\:us-col-12 {
|
|
4127
|
+
grid-column: span 12/span 12;
|
|
4128
|
+
}
|
|
4129
|
+
.xl\:us-col-s-1 {
|
|
4130
|
+
grid-column-start: 1;
|
|
4131
|
+
}
|
|
4132
|
+
.xl\:us-col-s-2 {
|
|
4133
|
+
grid-column-start: 2;
|
|
4134
|
+
}
|
|
4135
|
+
.xl\:us-col-s-3 {
|
|
4136
|
+
grid-column-start: 3;
|
|
4137
|
+
}
|
|
4138
|
+
.xl\:us-col-s-4 {
|
|
4139
|
+
grid-column-start: 4;
|
|
4140
|
+
}
|
|
4141
|
+
.xl\:us-col-s-5 {
|
|
4142
|
+
grid-column-start: 5;
|
|
4143
|
+
}
|
|
4144
|
+
.xl\:us-col-s-6 {
|
|
4145
|
+
grid-column-start: 6;
|
|
4146
|
+
}
|
|
4147
|
+
.xl\:us-col-s-7 {
|
|
4148
|
+
grid-column-start: 7;
|
|
4149
|
+
}
|
|
4150
|
+
.xl\:us-col-s-8 {
|
|
4151
|
+
grid-column-start: 8;
|
|
4152
|
+
}
|
|
4153
|
+
.xl\:us-col-s-9 {
|
|
4154
|
+
grid-column-start: 9;
|
|
4155
|
+
}
|
|
4156
|
+
.xl\:us-col-s-10 {
|
|
4157
|
+
grid-column-start: 10;
|
|
4158
|
+
}
|
|
4159
|
+
.xl\:us-col-s-11 {
|
|
4160
|
+
grid-column-start: 11;
|
|
4161
|
+
}
|
|
4162
|
+
.xl\:us-col-s-12 {
|
|
4163
|
+
grid-column-start: 12;
|
|
4164
|
+
}
|
|
4165
|
+
.xl\:us-col-e-1 {
|
|
4166
|
+
grid-column: 1;
|
|
4167
|
+
}
|
|
4168
|
+
.xl\:us-col-e-2 {
|
|
4169
|
+
grid-column: 2;
|
|
4170
|
+
}
|
|
4171
|
+
.xl\:us-col-e-3 {
|
|
4172
|
+
grid-column: 3;
|
|
4173
|
+
}
|
|
4174
|
+
.xl\:us-col-e-4 {
|
|
4175
|
+
grid-column: 4;
|
|
4176
|
+
}
|
|
4177
|
+
.xl\:us-col-e-5 {
|
|
4178
|
+
grid-column: 5;
|
|
4179
|
+
}
|
|
4180
|
+
.xl\:us-col-e-6 {
|
|
4181
|
+
grid-column: 6;
|
|
4182
|
+
}
|
|
4183
|
+
.xl\:us-col-e-7 {
|
|
4184
|
+
grid-column: 7;
|
|
4185
|
+
}
|
|
4186
|
+
.xl\:us-col-e-8 {
|
|
4187
|
+
grid-column: 8;
|
|
4188
|
+
}
|
|
4189
|
+
.xl\:us-col-e-9 {
|
|
4190
|
+
grid-column: 9;
|
|
4191
|
+
}
|
|
4192
|
+
.xl\:us-col-e-10 {
|
|
4193
|
+
grid-column: 10;
|
|
4194
|
+
}
|
|
4195
|
+
.xl\:us-col-e-11 {
|
|
4196
|
+
grid-column: 11;
|
|
4197
|
+
}
|
|
4198
|
+
.xl\:us-col-e-12 {
|
|
4199
|
+
grid-column: 12;
|
|
4200
|
+
}
|
|
3113
4201
|
}
|
|
3114
4202
|
.us-clamp-1 {
|
|
3115
4203
|
overflow: hidden;
|
|
@@ -3339,6 +4427,7 @@
|
|
|
3339
4427
|
border-color: var(--us-outline-border-color);
|
|
3340
4428
|
opacity: var(--us-outline-opacity);
|
|
3341
4429
|
pointer-events: none;
|
|
4430
|
+
z-index: var(--us-outline-z-index);
|
|
3342
4431
|
}
|
|
3343
4432
|
|
|
3344
4433
|
:not([hidden]):hover > .us-outline {
|
|
@@ -3382,6 +4471,10 @@
|
|
|
3382
4471
|
border-bottom: var(--us-outline-border-width) solid var(--us-outline-border-color);
|
|
3383
4472
|
}
|
|
3384
4473
|
|
|
4474
|
+
.us-grid {
|
|
4475
|
+
display: grid;
|
|
4476
|
+
}
|
|
4477
|
+
|
|
3385
4478
|
/* Estilos CSS aquí */
|
|
3386
4479
|
.slider-container {
|
|
3387
4480
|
width: 300px;
|