@unifiedsoftware/styles 2.0.0-alpha.2 → 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 +290 -110
- package/css/fci.min.css +1 -1
- package/css/styles.css +1284 -194
- 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 +9 -10
- package/scss/components/_descriptions.scss +17 -6
- package/scss/themes/fci/_tokens.scss +18 -5
- package/scss/themes/fci/components/_accordion.scss +81 -131
- package/scss/themes/fci/components/_button.scss +61 -28
- package/scss/themes/fci/components/_card.scss +3 -3
- 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,56 +1704,66 @@
|
|
|
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
|
-
.us-
|
|
1737
|
-
|
|
1728
|
+
.us-card-header--underlined:last-child {
|
|
1729
|
+
margin-bottom: 0;
|
|
1738
1730
|
}
|
|
1739
|
-
.us-
|
|
1731
|
+
.us-card-header--underlined:last-child::after {
|
|
1740
1732
|
border-bottom: none;
|
|
1741
1733
|
}
|
|
1742
|
-
.us-
|
|
1743
|
-
padding-top: 0;
|
|
1744
|
-
}
|
|
1745
|
-
.us-card__content > .us-card-footer:not(.us-card-footer-underlined):last-child::after {
|
|
1734
|
+
.us-card-footer--underlined:last-child::before {
|
|
1746
1735
|
border-top: none;
|
|
1747
1736
|
}
|
|
1748
1737
|
|
|
1749
|
-
.us-
|
|
1750
|
-
|
|
1751
|
-
|
|
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);
|
|
1752
1750
|
overflow: hidden;
|
|
1753
1751
|
text-overflow: ellipsis;
|
|
1754
1752
|
white-space: nowrap;
|
|
1755
1753
|
display: block;
|
|
1756
1754
|
}
|
|
1757
|
-
.us-
|
|
1758
|
-
font-size: 14px;
|
|
1759
|
-
font-weight: 500;
|
|
1755
|
+
.us-description__content {
|
|
1760
1756
|
overflow: hidden;
|
|
1761
1757
|
text-overflow: ellipsis;
|
|
1762
1758
|
white-space: nowrap;
|
|
1763
1759
|
display: block;
|
|
1764
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
|
+
}
|
|
1765
1767
|
|
|
1766
1768
|
.us-result {
|
|
1767
1769
|
flex-grow: 1;
|
|
@@ -2111,114 +2113,342 @@
|
|
|
2111
2113
|
align-items: baseline;
|
|
2112
2114
|
}
|
|
2113
2115
|
|
|
2114
|
-
.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 {
|
|
2115
2153
|
gap: 0;
|
|
2116
2154
|
}
|
|
2117
2155
|
|
|
2118
|
-
.us-
|
|
2156
|
+
.us-g-1 {
|
|
2119
2157
|
gap: 0.25rem;
|
|
2120
2158
|
}
|
|
2121
2159
|
|
|
2122
|
-
.us-
|
|
2160
|
+
.us-g-2 {
|
|
2123
2161
|
gap: 0.5rem;
|
|
2124
2162
|
}
|
|
2125
2163
|
|
|
2126
|
-
.us-
|
|
2164
|
+
.us-g-3 {
|
|
2127
2165
|
gap: 0.75rem;
|
|
2128
2166
|
}
|
|
2129
2167
|
|
|
2130
|
-
.us-
|
|
2168
|
+
.us-g-4 {
|
|
2131
2169
|
gap: 1rem;
|
|
2132
2170
|
}
|
|
2133
2171
|
|
|
2134
|
-
.us-
|
|
2172
|
+
.us-g-5 {
|
|
2135
2173
|
gap: 1.25rem;
|
|
2136
2174
|
}
|
|
2137
2175
|
|
|
2138
|
-
.us-
|
|
2176
|
+
.us-g-6 {
|
|
2139
2177
|
gap: 1.5rem;
|
|
2140
2178
|
}
|
|
2141
2179
|
|
|
2142
|
-
.us-
|
|
2180
|
+
.us-g-7 {
|
|
2143
2181
|
gap: 1.75rem;
|
|
2144
2182
|
}
|
|
2145
2183
|
|
|
2146
|
-
.us-
|
|
2184
|
+
.us-g-8 {
|
|
2147
2185
|
gap: 2rem;
|
|
2148
2186
|
}
|
|
2149
2187
|
|
|
2150
|
-
.us-
|
|
2188
|
+
.us-gx-0 {
|
|
2151
2189
|
column-gap: 0;
|
|
2152
2190
|
}
|
|
2153
2191
|
|
|
2154
|
-
.us-
|
|
2192
|
+
.us-gx-1 {
|
|
2155
2193
|
column-gap: 0.25rem;
|
|
2156
2194
|
}
|
|
2157
2195
|
|
|
2158
|
-
.us-
|
|
2196
|
+
.us-gx-2 {
|
|
2159
2197
|
column-gap: 0.5rem;
|
|
2160
2198
|
}
|
|
2161
2199
|
|
|
2162
|
-
.us-
|
|
2200
|
+
.us-gx-3 {
|
|
2163
2201
|
column-gap: 0.75rem;
|
|
2164
2202
|
}
|
|
2165
2203
|
|
|
2166
|
-
.us-
|
|
2204
|
+
.us-gx-4 {
|
|
2167
2205
|
column-gap: 1rem;
|
|
2168
2206
|
}
|
|
2169
2207
|
|
|
2170
|
-
.us-
|
|
2208
|
+
.us-gx-5 {
|
|
2171
2209
|
column-gap: 1.25rem;
|
|
2172
2210
|
}
|
|
2173
2211
|
|
|
2174
|
-
.us-
|
|
2212
|
+
.us-gx-6 {
|
|
2175
2213
|
column-gap: 1.5rem;
|
|
2176
2214
|
}
|
|
2177
2215
|
|
|
2178
|
-
.us-
|
|
2216
|
+
.us-gx-7 {
|
|
2179
2217
|
column-gap: 1.75rem;
|
|
2180
2218
|
}
|
|
2181
2219
|
|
|
2182
|
-
.us-
|
|
2220
|
+
.us-gx-8 {
|
|
2183
2221
|
column-gap: 2rem;
|
|
2184
2222
|
}
|
|
2185
2223
|
|
|
2186
|
-
.us-
|
|
2224
|
+
.us-gy-0 {
|
|
2187
2225
|
row-gap: 0;
|
|
2188
2226
|
}
|
|
2189
2227
|
|
|
2190
|
-
.us-
|
|
2228
|
+
.us-gy-1 {
|
|
2191
2229
|
row-gap: 0.25rem;
|
|
2192
2230
|
}
|
|
2193
2231
|
|
|
2194
|
-
.us-
|
|
2232
|
+
.us-gy-2 {
|
|
2195
2233
|
row-gap: 0.5rem;
|
|
2196
2234
|
}
|
|
2197
2235
|
|
|
2198
|
-
.us-
|
|
2236
|
+
.us-gy-3 {
|
|
2199
2237
|
row-gap: 0.75rem;
|
|
2200
2238
|
}
|
|
2201
2239
|
|
|
2202
|
-
.us-
|
|
2240
|
+
.us-gy-4 {
|
|
2203
2241
|
row-gap: 1rem;
|
|
2204
2242
|
}
|
|
2205
2243
|
|
|
2206
|
-
.us-
|
|
2244
|
+
.us-gy-5 {
|
|
2207
2245
|
row-gap: 1.25rem;
|
|
2208
2246
|
}
|
|
2209
2247
|
|
|
2210
|
-
.us-
|
|
2248
|
+
.us-gy-6 {
|
|
2211
2249
|
row-gap: 1.5rem;
|
|
2212
2250
|
}
|
|
2213
2251
|
|
|
2214
|
-
.us-
|
|
2252
|
+
.us-gy-7 {
|
|
2215
2253
|
row-gap: 1.75rem;
|
|
2216
2254
|
}
|
|
2217
2255
|
|
|
2218
|
-
.us-
|
|
2256
|
+
.us-gy-8 {
|
|
2219
2257
|
row-gap: 2rem;
|
|
2220
2258
|
}
|
|
2221
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
|
+
|
|
2222
2452
|
@media screen and (min-width: 0px) {
|
|
2223
2453
|
.xs\:us-h-full {
|
|
2224
2454
|
height: 100%;
|
|
@@ -2316,89 +2546,260 @@
|
|
|
2316
2546
|
.xs\:us-items-baseline {
|
|
2317
2547
|
align-items: baseline;
|
|
2318
2548
|
}
|
|
2319
|
-
.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 {
|
|
2320
2577
|
gap: 0;
|
|
2321
2578
|
}
|
|
2322
|
-
.xs\:us-
|
|
2579
|
+
.xs\:us-g-1 {
|
|
2323
2580
|
gap: 0.25rem;
|
|
2324
2581
|
}
|
|
2325
|
-
.xs\:us-
|
|
2582
|
+
.xs\:us-g-2 {
|
|
2326
2583
|
gap: 0.5rem;
|
|
2327
2584
|
}
|
|
2328
|
-
.xs\:us-
|
|
2585
|
+
.xs\:us-g-3 {
|
|
2329
2586
|
gap: 0.75rem;
|
|
2330
2587
|
}
|
|
2331
|
-
.xs\:us-
|
|
2588
|
+
.xs\:us-g-4 {
|
|
2332
2589
|
gap: 1rem;
|
|
2333
2590
|
}
|
|
2334
|
-
.xs\:us-
|
|
2591
|
+
.xs\:us-g-5 {
|
|
2335
2592
|
gap: 1.25rem;
|
|
2336
2593
|
}
|
|
2337
|
-
.xs\:us-
|
|
2594
|
+
.xs\:us-g-6 {
|
|
2338
2595
|
gap: 1.5rem;
|
|
2339
2596
|
}
|
|
2340
|
-
.xs\:us-
|
|
2597
|
+
.xs\:us-g-7 {
|
|
2341
2598
|
gap: 1.75rem;
|
|
2342
2599
|
}
|
|
2343
|
-
.xs\:us-
|
|
2600
|
+
.xs\:us-g-8 {
|
|
2344
2601
|
gap: 2rem;
|
|
2345
2602
|
}
|
|
2346
|
-
.xs\:us-
|
|
2603
|
+
.xs\:us-gx-0 {
|
|
2347
2604
|
column-gap: 0;
|
|
2348
2605
|
}
|
|
2349
|
-
.xs\:us-
|
|
2606
|
+
.xs\:us-gx-1 {
|
|
2350
2607
|
column-gap: 0.25rem;
|
|
2351
2608
|
}
|
|
2352
|
-
.xs\:us-
|
|
2609
|
+
.xs\:us-gx-2 {
|
|
2353
2610
|
column-gap: 0.5rem;
|
|
2354
2611
|
}
|
|
2355
|
-
.xs\:us-
|
|
2612
|
+
.xs\:us-gx-3 {
|
|
2356
2613
|
column-gap: 0.75rem;
|
|
2357
2614
|
}
|
|
2358
|
-
.xs\:us-
|
|
2615
|
+
.xs\:us-gx-4 {
|
|
2359
2616
|
column-gap: 1rem;
|
|
2360
2617
|
}
|
|
2361
|
-
.xs\:us-
|
|
2618
|
+
.xs\:us-gx-5 {
|
|
2362
2619
|
column-gap: 1.25rem;
|
|
2363
2620
|
}
|
|
2364
|
-
.xs\:us-
|
|
2621
|
+
.xs\:us-gx-6 {
|
|
2365
2622
|
column-gap: 1.5rem;
|
|
2366
2623
|
}
|
|
2367
|
-
.xs\:us-
|
|
2624
|
+
.xs\:us-gx-7 {
|
|
2368
2625
|
column-gap: 1.75rem;
|
|
2369
2626
|
}
|
|
2370
|
-
.xs\:us-
|
|
2627
|
+
.xs\:us-gx-8 {
|
|
2371
2628
|
column-gap: 2rem;
|
|
2372
2629
|
}
|
|
2373
|
-
.xs\:us-
|
|
2630
|
+
.xs\:us-gy-0 {
|
|
2374
2631
|
row-gap: 0;
|
|
2375
2632
|
}
|
|
2376
|
-
.xs\:us-
|
|
2633
|
+
.xs\:us-gy-1 {
|
|
2377
2634
|
row-gap: 0.25rem;
|
|
2378
2635
|
}
|
|
2379
|
-
.xs\:us-
|
|
2636
|
+
.xs\:us-gy-2 {
|
|
2380
2637
|
row-gap: 0.5rem;
|
|
2381
2638
|
}
|
|
2382
|
-
.xs\:us-
|
|
2639
|
+
.xs\:us-gy-3 {
|
|
2383
2640
|
row-gap: 0.75rem;
|
|
2384
2641
|
}
|
|
2385
|
-
.xs\:us-
|
|
2642
|
+
.xs\:us-gy-4 {
|
|
2386
2643
|
row-gap: 1rem;
|
|
2387
2644
|
}
|
|
2388
|
-
.xs\:us-
|
|
2645
|
+
.xs\:us-gy-5 {
|
|
2389
2646
|
row-gap: 1.25rem;
|
|
2390
2647
|
}
|
|
2391
|
-
.xs\:us-
|
|
2648
|
+
.xs\:us-gy-6 {
|
|
2392
2649
|
row-gap: 1.5rem;
|
|
2393
2650
|
}
|
|
2394
|
-
.xs\:us-
|
|
2651
|
+
.xs\:us-gy-7 {
|
|
2395
2652
|
row-gap: 1.75rem;
|
|
2396
2653
|
}
|
|
2397
|
-
.xs\:us-
|
|
2654
|
+
.xs\:us-gy-8 {
|
|
2398
2655
|
row-gap: 2rem;
|
|
2399
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
|
+
}
|
|
2400
2801
|
}
|
|
2401
|
-
@media screen and (min-width:
|
|
2802
|
+
@media screen and (min-width: 640px) {
|
|
2402
2803
|
.sm\:us-h-full {
|
|
2403
2804
|
height: 100%;
|
|
2404
2805
|
}
|
|
@@ -2495,87 +2896,258 @@
|
|
|
2495
2896
|
.sm\:us-items-baseline {
|
|
2496
2897
|
align-items: baseline;
|
|
2497
2898
|
}
|
|
2498
|
-
.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 {
|
|
2499
2927
|
gap: 0;
|
|
2500
2928
|
}
|
|
2501
|
-
.sm\:us-
|
|
2929
|
+
.sm\:us-g-1 {
|
|
2502
2930
|
gap: 0.25rem;
|
|
2503
2931
|
}
|
|
2504
|
-
.sm\:us-
|
|
2932
|
+
.sm\:us-g-2 {
|
|
2505
2933
|
gap: 0.5rem;
|
|
2506
2934
|
}
|
|
2507
|
-
.sm\:us-
|
|
2935
|
+
.sm\:us-g-3 {
|
|
2508
2936
|
gap: 0.75rem;
|
|
2509
2937
|
}
|
|
2510
|
-
.sm\:us-
|
|
2938
|
+
.sm\:us-g-4 {
|
|
2511
2939
|
gap: 1rem;
|
|
2512
2940
|
}
|
|
2513
|
-
.sm\:us-
|
|
2941
|
+
.sm\:us-g-5 {
|
|
2514
2942
|
gap: 1.25rem;
|
|
2515
2943
|
}
|
|
2516
|
-
.sm\:us-
|
|
2944
|
+
.sm\:us-g-6 {
|
|
2517
2945
|
gap: 1.5rem;
|
|
2518
2946
|
}
|
|
2519
|
-
.sm\:us-
|
|
2947
|
+
.sm\:us-g-7 {
|
|
2520
2948
|
gap: 1.75rem;
|
|
2521
2949
|
}
|
|
2522
|
-
.sm\:us-
|
|
2950
|
+
.sm\:us-g-8 {
|
|
2523
2951
|
gap: 2rem;
|
|
2524
2952
|
}
|
|
2525
|
-
.sm\:us-
|
|
2953
|
+
.sm\:us-gx-0 {
|
|
2526
2954
|
column-gap: 0;
|
|
2527
2955
|
}
|
|
2528
|
-
.sm\:us-
|
|
2956
|
+
.sm\:us-gx-1 {
|
|
2529
2957
|
column-gap: 0.25rem;
|
|
2530
2958
|
}
|
|
2531
|
-
.sm\:us-
|
|
2959
|
+
.sm\:us-gx-2 {
|
|
2532
2960
|
column-gap: 0.5rem;
|
|
2533
2961
|
}
|
|
2534
|
-
.sm\:us-
|
|
2962
|
+
.sm\:us-gx-3 {
|
|
2535
2963
|
column-gap: 0.75rem;
|
|
2536
2964
|
}
|
|
2537
|
-
.sm\:us-
|
|
2965
|
+
.sm\:us-gx-4 {
|
|
2538
2966
|
column-gap: 1rem;
|
|
2539
2967
|
}
|
|
2540
|
-
.sm\:us-
|
|
2968
|
+
.sm\:us-gx-5 {
|
|
2541
2969
|
column-gap: 1.25rem;
|
|
2542
2970
|
}
|
|
2543
|
-
.sm\:us-
|
|
2971
|
+
.sm\:us-gx-6 {
|
|
2544
2972
|
column-gap: 1.5rem;
|
|
2545
2973
|
}
|
|
2546
|
-
.sm\:us-
|
|
2974
|
+
.sm\:us-gx-7 {
|
|
2547
2975
|
column-gap: 1.75rem;
|
|
2548
2976
|
}
|
|
2549
|
-
.sm\:us-
|
|
2977
|
+
.sm\:us-gx-8 {
|
|
2550
2978
|
column-gap: 2rem;
|
|
2551
2979
|
}
|
|
2552
|
-
.sm\:us-
|
|
2980
|
+
.sm\:us-gy-0 {
|
|
2553
2981
|
row-gap: 0;
|
|
2554
2982
|
}
|
|
2555
|
-
.sm\:us-
|
|
2983
|
+
.sm\:us-gy-1 {
|
|
2556
2984
|
row-gap: 0.25rem;
|
|
2557
2985
|
}
|
|
2558
|
-
.sm\:us-
|
|
2986
|
+
.sm\:us-gy-2 {
|
|
2559
2987
|
row-gap: 0.5rem;
|
|
2560
2988
|
}
|
|
2561
|
-
.sm\:us-
|
|
2989
|
+
.sm\:us-gy-3 {
|
|
2562
2990
|
row-gap: 0.75rem;
|
|
2563
2991
|
}
|
|
2564
|
-
.sm\:us-
|
|
2992
|
+
.sm\:us-gy-4 {
|
|
2565
2993
|
row-gap: 1rem;
|
|
2566
2994
|
}
|
|
2567
|
-
.sm\:us-
|
|
2995
|
+
.sm\:us-gy-5 {
|
|
2568
2996
|
row-gap: 1.25rem;
|
|
2569
2997
|
}
|
|
2570
|
-
.sm\:us-
|
|
2998
|
+
.sm\:us-gy-6 {
|
|
2571
2999
|
row-gap: 1.5rem;
|
|
2572
3000
|
}
|
|
2573
|
-
.sm\:us-
|
|
3001
|
+
.sm\:us-gy-7 {
|
|
2574
3002
|
row-gap: 1.75rem;
|
|
2575
3003
|
}
|
|
2576
|
-
.sm\:us-
|
|
3004
|
+
.sm\:us-gy-8 {
|
|
2577
3005
|
row-gap: 2rem;
|
|
2578
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
|
+
}
|
|
2579
3151
|
}
|
|
2580
3152
|
@media screen and (min-width: 960px) {
|
|
2581
3153
|
.md\:us-h-full {
|
|
@@ -2674,89 +3246,260 @@
|
|
|
2674
3246
|
.md\:us-items-baseline {
|
|
2675
3247
|
align-items: baseline;
|
|
2676
3248
|
}
|
|
2677
|
-
.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 {
|
|
2678
3277
|
gap: 0;
|
|
2679
3278
|
}
|
|
2680
|
-
.md\:us-
|
|
3279
|
+
.md\:us-g-1 {
|
|
2681
3280
|
gap: 0.25rem;
|
|
2682
3281
|
}
|
|
2683
|
-
.md\:us-
|
|
3282
|
+
.md\:us-g-2 {
|
|
2684
3283
|
gap: 0.5rem;
|
|
2685
3284
|
}
|
|
2686
|
-
.md\:us-
|
|
3285
|
+
.md\:us-g-3 {
|
|
2687
3286
|
gap: 0.75rem;
|
|
2688
3287
|
}
|
|
2689
|
-
.md\:us-
|
|
3288
|
+
.md\:us-g-4 {
|
|
2690
3289
|
gap: 1rem;
|
|
2691
3290
|
}
|
|
2692
|
-
.md\:us-
|
|
3291
|
+
.md\:us-g-5 {
|
|
2693
3292
|
gap: 1.25rem;
|
|
2694
3293
|
}
|
|
2695
|
-
.md\:us-
|
|
3294
|
+
.md\:us-g-6 {
|
|
2696
3295
|
gap: 1.5rem;
|
|
2697
3296
|
}
|
|
2698
|
-
.md\:us-
|
|
3297
|
+
.md\:us-g-7 {
|
|
2699
3298
|
gap: 1.75rem;
|
|
2700
3299
|
}
|
|
2701
|
-
.md\:us-
|
|
3300
|
+
.md\:us-g-8 {
|
|
2702
3301
|
gap: 2rem;
|
|
2703
3302
|
}
|
|
2704
|
-
.md\:us-
|
|
3303
|
+
.md\:us-gx-0 {
|
|
2705
3304
|
column-gap: 0;
|
|
2706
3305
|
}
|
|
2707
|
-
.md\:us-
|
|
3306
|
+
.md\:us-gx-1 {
|
|
2708
3307
|
column-gap: 0.25rem;
|
|
2709
3308
|
}
|
|
2710
|
-
.md\:us-
|
|
3309
|
+
.md\:us-gx-2 {
|
|
2711
3310
|
column-gap: 0.5rem;
|
|
2712
3311
|
}
|
|
2713
|
-
.md\:us-
|
|
3312
|
+
.md\:us-gx-3 {
|
|
2714
3313
|
column-gap: 0.75rem;
|
|
2715
3314
|
}
|
|
2716
|
-
.md\:us-
|
|
3315
|
+
.md\:us-gx-4 {
|
|
2717
3316
|
column-gap: 1rem;
|
|
2718
3317
|
}
|
|
2719
|
-
.md\:us-
|
|
3318
|
+
.md\:us-gx-5 {
|
|
2720
3319
|
column-gap: 1.25rem;
|
|
2721
3320
|
}
|
|
2722
|
-
.md\:us-
|
|
3321
|
+
.md\:us-gx-6 {
|
|
2723
3322
|
column-gap: 1.5rem;
|
|
2724
3323
|
}
|
|
2725
|
-
.md\:us-
|
|
3324
|
+
.md\:us-gx-7 {
|
|
2726
3325
|
column-gap: 1.75rem;
|
|
2727
3326
|
}
|
|
2728
|
-
.md\:us-
|
|
3327
|
+
.md\:us-gx-8 {
|
|
2729
3328
|
column-gap: 2rem;
|
|
2730
3329
|
}
|
|
2731
|
-
.md\:us-
|
|
3330
|
+
.md\:us-gy-0 {
|
|
2732
3331
|
row-gap: 0;
|
|
2733
3332
|
}
|
|
2734
|
-
.md\:us-
|
|
3333
|
+
.md\:us-gy-1 {
|
|
2735
3334
|
row-gap: 0.25rem;
|
|
2736
3335
|
}
|
|
2737
|
-
.md\:us-
|
|
3336
|
+
.md\:us-gy-2 {
|
|
2738
3337
|
row-gap: 0.5rem;
|
|
2739
3338
|
}
|
|
2740
|
-
.md\:us-
|
|
3339
|
+
.md\:us-gy-3 {
|
|
2741
3340
|
row-gap: 0.75rem;
|
|
2742
3341
|
}
|
|
2743
|
-
.md\:us-
|
|
3342
|
+
.md\:us-gy-4 {
|
|
2744
3343
|
row-gap: 1rem;
|
|
2745
3344
|
}
|
|
2746
|
-
.md\:us-
|
|
3345
|
+
.md\:us-gy-5 {
|
|
2747
3346
|
row-gap: 1.25rem;
|
|
2748
3347
|
}
|
|
2749
|
-
.md\:us-
|
|
3348
|
+
.md\:us-gy-6 {
|
|
2750
3349
|
row-gap: 1.5rem;
|
|
2751
3350
|
}
|
|
2752
|
-
.md\:us-
|
|
3351
|
+
.md\:us-gy-7 {
|
|
2753
3352
|
row-gap: 1.75rem;
|
|
2754
3353
|
}
|
|
2755
|
-
.md\:us-
|
|
3354
|
+
.md\:us-gy-8 {
|
|
2756
3355
|
row-gap: 2rem;
|
|
2757
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
|
+
}
|
|
2758
3501
|
}
|
|
2759
|
-
@media screen and (min-width:
|
|
3502
|
+
@media screen and (min-width: 1024px) {
|
|
2760
3503
|
.lg\:us-h-full {
|
|
2761
3504
|
height: 100%;
|
|
2762
3505
|
}
|
|
@@ -2853,89 +3596,260 @@
|
|
|
2853
3596
|
.lg\:us-items-baseline {
|
|
2854
3597
|
align-items: baseline;
|
|
2855
3598
|
}
|
|
2856
|
-
.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 {
|
|
2857
3627
|
gap: 0;
|
|
2858
3628
|
}
|
|
2859
|
-
.lg\:us-
|
|
3629
|
+
.lg\:us-g-1 {
|
|
2860
3630
|
gap: 0.25rem;
|
|
2861
3631
|
}
|
|
2862
|
-
.lg\:us-
|
|
3632
|
+
.lg\:us-g-2 {
|
|
2863
3633
|
gap: 0.5rem;
|
|
2864
3634
|
}
|
|
2865
|
-
.lg\:us-
|
|
3635
|
+
.lg\:us-g-3 {
|
|
2866
3636
|
gap: 0.75rem;
|
|
2867
3637
|
}
|
|
2868
|
-
.lg\:us-
|
|
3638
|
+
.lg\:us-g-4 {
|
|
2869
3639
|
gap: 1rem;
|
|
2870
3640
|
}
|
|
2871
|
-
.lg\:us-
|
|
3641
|
+
.lg\:us-g-5 {
|
|
2872
3642
|
gap: 1.25rem;
|
|
2873
3643
|
}
|
|
2874
|
-
.lg\:us-
|
|
3644
|
+
.lg\:us-g-6 {
|
|
2875
3645
|
gap: 1.5rem;
|
|
2876
3646
|
}
|
|
2877
|
-
.lg\:us-
|
|
3647
|
+
.lg\:us-g-7 {
|
|
2878
3648
|
gap: 1.75rem;
|
|
2879
3649
|
}
|
|
2880
|
-
.lg\:us-
|
|
3650
|
+
.lg\:us-g-8 {
|
|
2881
3651
|
gap: 2rem;
|
|
2882
3652
|
}
|
|
2883
|
-
.lg\:us-
|
|
3653
|
+
.lg\:us-gx-0 {
|
|
2884
3654
|
column-gap: 0;
|
|
2885
3655
|
}
|
|
2886
|
-
.lg\:us-
|
|
3656
|
+
.lg\:us-gx-1 {
|
|
2887
3657
|
column-gap: 0.25rem;
|
|
2888
3658
|
}
|
|
2889
|
-
.lg\:us-
|
|
3659
|
+
.lg\:us-gx-2 {
|
|
2890
3660
|
column-gap: 0.5rem;
|
|
2891
3661
|
}
|
|
2892
|
-
.lg\:us-
|
|
3662
|
+
.lg\:us-gx-3 {
|
|
2893
3663
|
column-gap: 0.75rem;
|
|
2894
3664
|
}
|
|
2895
|
-
.lg\:us-
|
|
3665
|
+
.lg\:us-gx-4 {
|
|
2896
3666
|
column-gap: 1rem;
|
|
2897
3667
|
}
|
|
2898
|
-
.lg\:us-
|
|
3668
|
+
.lg\:us-gx-5 {
|
|
2899
3669
|
column-gap: 1.25rem;
|
|
2900
3670
|
}
|
|
2901
|
-
.lg\:us-
|
|
3671
|
+
.lg\:us-gx-6 {
|
|
2902
3672
|
column-gap: 1.5rem;
|
|
2903
3673
|
}
|
|
2904
|
-
.lg\:us-
|
|
3674
|
+
.lg\:us-gx-7 {
|
|
2905
3675
|
column-gap: 1.75rem;
|
|
2906
3676
|
}
|
|
2907
|
-
.lg\:us-
|
|
3677
|
+
.lg\:us-gx-8 {
|
|
2908
3678
|
column-gap: 2rem;
|
|
2909
3679
|
}
|
|
2910
|
-
.lg\:us-
|
|
3680
|
+
.lg\:us-gy-0 {
|
|
2911
3681
|
row-gap: 0;
|
|
2912
3682
|
}
|
|
2913
|
-
.lg\:us-
|
|
3683
|
+
.lg\:us-gy-1 {
|
|
2914
3684
|
row-gap: 0.25rem;
|
|
2915
3685
|
}
|
|
2916
|
-
.lg\:us-
|
|
3686
|
+
.lg\:us-gy-2 {
|
|
2917
3687
|
row-gap: 0.5rem;
|
|
2918
3688
|
}
|
|
2919
|
-
.lg\:us-
|
|
3689
|
+
.lg\:us-gy-3 {
|
|
2920
3690
|
row-gap: 0.75rem;
|
|
2921
3691
|
}
|
|
2922
|
-
.lg\:us-
|
|
3692
|
+
.lg\:us-gy-4 {
|
|
2923
3693
|
row-gap: 1rem;
|
|
2924
3694
|
}
|
|
2925
|
-
.lg\:us-
|
|
3695
|
+
.lg\:us-gy-5 {
|
|
2926
3696
|
row-gap: 1.25rem;
|
|
2927
3697
|
}
|
|
2928
|
-
.lg\:us-
|
|
3698
|
+
.lg\:us-gy-6 {
|
|
2929
3699
|
row-gap: 1.5rem;
|
|
2930
3700
|
}
|
|
2931
|
-
.lg\:us-
|
|
3701
|
+
.lg\:us-gy-7 {
|
|
2932
3702
|
row-gap: 1.75rem;
|
|
2933
3703
|
}
|
|
2934
|
-
.lg\:us-
|
|
3704
|
+
.lg\:us-gy-8 {
|
|
2935
3705
|
row-gap: 2rem;
|
|
2936
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
|
+
}
|
|
2937
3851
|
}
|
|
2938
|
-
@media screen and (min-width:
|
|
3852
|
+
@media screen and (min-width: 1280px) {
|
|
2939
3853
|
.xl\:us-h-full {
|
|
2940
3854
|
height: 100%;
|
|
2941
3855
|
}
|
|
@@ -3032,87 +3946,258 @@
|
|
|
3032
3946
|
.xl\:us-items-baseline {
|
|
3033
3947
|
align-items: baseline;
|
|
3034
3948
|
}
|
|
3035
|
-
.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 {
|
|
3036
3977
|
gap: 0;
|
|
3037
3978
|
}
|
|
3038
|
-
.xl\:us-
|
|
3979
|
+
.xl\:us-g-1 {
|
|
3039
3980
|
gap: 0.25rem;
|
|
3040
3981
|
}
|
|
3041
|
-
.xl\:us-
|
|
3982
|
+
.xl\:us-g-2 {
|
|
3042
3983
|
gap: 0.5rem;
|
|
3043
3984
|
}
|
|
3044
|
-
.xl\:us-
|
|
3985
|
+
.xl\:us-g-3 {
|
|
3045
3986
|
gap: 0.75rem;
|
|
3046
3987
|
}
|
|
3047
|
-
.xl\:us-
|
|
3988
|
+
.xl\:us-g-4 {
|
|
3048
3989
|
gap: 1rem;
|
|
3049
3990
|
}
|
|
3050
|
-
.xl\:us-
|
|
3991
|
+
.xl\:us-g-5 {
|
|
3051
3992
|
gap: 1.25rem;
|
|
3052
3993
|
}
|
|
3053
|
-
.xl\:us-
|
|
3994
|
+
.xl\:us-g-6 {
|
|
3054
3995
|
gap: 1.5rem;
|
|
3055
3996
|
}
|
|
3056
|
-
.xl\:us-
|
|
3997
|
+
.xl\:us-g-7 {
|
|
3057
3998
|
gap: 1.75rem;
|
|
3058
3999
|
}
|
|
3059
|
-
.xl\:us-
|
|
4000
|
+
.xl\:us-g-8 {
|
|
3060
4001
|
gap: 2rem;
|
|
3061
4002
|
}
|
|
3062
|
-
.xl\:us-
|
|
4003
|
+
.xl\:us-gx-0 {
|
|
3063
4004
|
column-gap: 0;
|
|
3064
4005
|
}
|
|
3065
|
-
.xl\:us-
|
|
4006
|
+
.xl\:us-gx-1 {
|
|
3066
4007
|
column-gap: 0.25rem;
|
|
3067
4008
|
}
|
|
3068
|
-
.xl\:us-
|
|
4009
|
+
.xl\:us-gx-2 {
|
|
3069
4010
|
column-gap: 0.5rem;
|
|
3070
4011
|
}
|
|
3071
|
-
.xl\:us-
|
|
4012
|
+
.xl\:us-gx-3 {
|
|
3072
4013
|
column-gap: 0.75rem;
|
|
3073
4014
|
}
|
|
3074
|
-
.xl\:us-
|
|
4015
|
+
.xl\:us-gx-4 {
|
|
3075
4016
|
column-gap: 1rem;
|
|
3076
4017
|
}
|
|
3077
|
-
.xl\:us-
|
|
4018
|
+
.xl\:us-gx-5 {
|
|
3078
4019
|
column-gap: 1.25rem;
|
|
3079
4020
|
}
|
|
3080
|
-
.xl\:us-
|
|
4021
|
+
.xl\:us-gx-6 {
|
|
3081
4022
|
column-gap: 1.5rem;
|
|
3082
4023
|
}
|
|
3083
|
-
.xl\:us-
|
|
4024
|
+
.xl\:us-gx-7 {
|
|
3084
4025
|
column-gap: 1.75rem;
|
|
3085
4026
|
}
|
|
3086
|
-
.xl\:us-
|
|
4027
|
+
.xl\:us-gx-8 {
|
|
3087
4028
|
column-gap: 2rem;
|
|
3088
4029
|
}
|
|
3089
|
-
.xl\:us-
|
|
4030
|
+
.xl\:us-gy-0 {
|
|
3090
4031
|
row-gap: 0;
|
|
3091
4032
|
}
|
|
3092
|
-
.xl\:us-
|
|
4033
|
+
.xl\:us-gy-1 {
|
|
3093
4034
|
row-gap: 0.25rem;
|
|
3094
4035
|
}
|
|
3095
|
-
.xl\:us-
|
|
4036
|
+
.xl\:us-gy-2 {
|
|
3096
4037
|
row-gap: 0.5rem;
|
|
3097
4038
|
}
|
|
3098
|
-
.xl\:us-
|
|
4039
|
+
.xl\:us-gy-3 {
|
|
3099
4040
|
row-gap: 0.75rem;
|
|
3100
4041
|
}
|
|
3101
|
-
.xl\:us-
|
|
4042
|
+
.xl\:us-gy-4 {
|
|
3102
4043
|
row-gap: 1rem;
|
|
3103
4044
|
}
|
|
3104
|
-
.xl\:us-
|
|
4045
|
+
.xl\:us-gy-5 {
|
|
3105
4046
|
row-gap: 1.25rem;
|
|
3106
4047
|
}
|
|
3107
|
-
.xl\:us-
|
|
4048
|
+
.xl\:us-gy-6 {
|
|
3108
4049
|
row-gap: 1.5rem;
|
|
3109
4050
|
}
|
|
3110
|
-
.xl\:us-
|
|
4051
|
+
.xl\:us-gy-7 {
|
|
3111
4052
|
row-gap: 1.75rem;
|
|
3112
4053
|
}
|
|
3113
|
-
.xl\:us-
|
|
4054
|
+
.xl\:us-gy-8 {
|
|
3114
4055
|
row-gap: 2rem;
|
|
3115
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
|
+
}
|
|
3116
4201
|
}
|
|
3117
4202
|
.us-clamp-1 {
|
|
3118
4203
|
overflow: hidden;
|
|
@@ -3342,6 +4427,7 @@
|
|
|
3342
4427
|
border-color: var(--us-outline-border-color);
|
|
3343
4428
|
opacity: var(--us-outline-opacity);
|
|
3344
4429
|
pointer-events: none;
|
|
4430
|
+
z-index: var(--us-outline-z-index);
|
|
3345
4431
|
}
|
|
3346
4432
|
|
|
3347
4433
|
:not([hidden]):hover > .us-outline {
|
|
@@ -3385,6 +4471,10 @@
|
|
|
3385
4471
|
border-bottom: var(--us-outline-border-width) solid var(--us-outline-border-color);
|
|
3386
4472
|
}
|
|
3387
4473
|
|
|
4474
|
+
.us-grid {
|
|
4475
|
+
display: grid;
|
|
4476
|
+
}
|
|
4477
|
+
|
|
3388
4478
|
/* Estilos CSS aquí */
|
|
3389
4479
|
.slider-container {
|
|
3390
4480
|
width: 300px;
|