@zhang_jifan/fanui 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/ACCESSIBILITY.md +61 -0
  2. package/CHANGELOG.md +112 -0
  3. package/COMMERCIAL-LICENSE.md +71 -0
  4. package/DESIGN-SYSTEM.md +294 -0
  5. package/LICENSE +661 -0
  6. package/README.md +348 -0
  7. package/USAGE.md +1926 -0
  8. package/_index.scss +20 -0
  9. package/dist/fanui.cjs +15 -0
  10. package/dist/fanui.css +28209 -0
  11. package/dist/fanui.d.ts +353 -0
  12. package/dist/fanui.esm.js +71 -0
  13. package/dist/fanui.js +4782 -0
  14. package/dist/fanui.min.css +1 -0
  15. package/dist/fanui.mjs +71 -0
  16. package/dist/modules/fanui-advanced.css +830 -0
  17. package/dist/modules/fanui-advanced.min.css +129 -0
  18. package/dist/modules/fanui-alert.css +575 -0
  19. package/dist/modules/fanui-alert.min.css +122 -0
  20. package/dist/modules/fanui-badge.css +426 -0
  21. package/dist/modules/fanui-badge.min.css +77 -0
  22. package/dist/modules/fanui-base.css +1394 -0
  23. package/dist/modules/fanui-base.min.css +236 -0
  24. package/dist/modules/fanui-blog.css +762 -0
  25. package/dist/modules/fanui-blog.min.css +108 -0
  26. package/dist/modules/fanui-button.css +526 -0
  27. package/dist/modules/fanui-button.min.css +56 -0
  28. package/dist/modules/fanui-card.css +291 -0
  29. package/dist/modules/fanui-card.min.css +52 -0
  30. package/dist/modules/fanui-choice.css +539 -0
  31. package/dist/modules/fanui-choice.min.css +83 -0
  32. package/dist/modules/fanui-dashboard.css +1057 -0
  33. package/dist/modules/fanui-dashboard.min.css +160 -0
  34. package/dist/modules/fanui-data.css +687 -0
  35. package/dist/modules/fanui-data.min.css +125 -0
  36. package/dist/modules/fanui-feedback.css +432 -0
  37. package/dist/modules/fanui-feedback.min.css +79 -0
  38. package/dist/modules/fanui-form.css +779 -0
  39. package/dist/modules/fanui-form.min.css +123 -0
  40. package/dist/modules/fanui-glass.css +497 -0
  41. package/dist/modules/fanui-glass.min.css +46 -0
  42. package/dist/modules/fanui-input-plus.css +799 -0
  43. package/dist/modules/fanui-input-plus.min.css +124 -0
  44. package/dist/modules/fanui-interactive.css +960 -0
  45. package/dist/modules/fanui-interactive.min.css +138 -0
  46. package/dist/modules/fanui-layout.css +4399 -0
  47. package/dist/modules/fanui-layout.min.css +1172 -0
  48. package/dist/modules/fanui-marketing.css +1125 -0
  49. package/dist/modules/fanui-marketing.min.css +144 -0
  50. package/dist/modules/fanui-nav.css +458 -0
  51. package/dist/modules/fanui-nav.min.css +76 -0
  52. package/dist/modules/fanui-overlay.css +547 -0
  53. package/dist/modules/fanui-overlay.min.css +91 -0
  54. package/dist/modules/fanui-table.css +290 -0
  55. package/dist/modules/fanui-table.min.css +62 -0
  56. package/dist/modules/fanui-tabs.css +333 -0
  57. package/dist/modules/fanui-tabs.min.css +58 -0
  58. package/dist/modules/fanui-themes.css +2728 -0
  59. package/dist/modules/fanui-themes.min.css +40 -0
  60. package/dist/modules/fanui-tokens.css +587 -0
  61. package/dist/modules/fanui-tokens.min.css +3 -0
  62. package/dist/modules/fanui-utilities.css +6557 -0
  63. package/dist/modules/fanui-utilities.min.css +1762 -0
  64. package/dist/modules/sizes.json +103 -0
  65. package/docs/MIGRATION-v2.md +179 -0
  66. package/examples/01-script-tag.html +149 -0
  67. package/examples/02-react/README.md +39 -0
  68. package/examples/02-react/index.html +12 -0
  69. package/examples/02-react/package.json +20 -0
  70. package/examples/02-react/src/App.jsx +108 -0
  71. package/examples/02-react/src/main.jsx +13 -0
  72. package/examples/02-react/src/useFanUI.js +87 -0
  73. package/examples/02-react/vite.config.js +6 -0
  74. package/examples/03-vue3/README.md +67 -0
  75. package/examples/03-vue3/index.html +12 -0
  76. package/examples/03-vue3/package.json +19 -0
  77. package/examples/03-vue3/src/App.vue +93 -0
  78. package/examples/03-vue3/src/main.js +8 -0
  79. package/examples/03-vue3/src/useFanUI.js +85 -0
  80. package/examples/03-vue3/vite.config.js +6 -0
  81. package/examples/04-vue2-cdn.html +93 -0
  82. package/examples/README.md +34 -0
  83. package/package.json +127 -0
  84. package/src/_functions.scss +319 -0
  85. package/src/_mixins.scss +1202 -0
  86. package/src/_tokens.scss +180 -0
  87. package/src/_variables.scss +491 -0
  88. package/src/base/_animations.scss +210 -0
  89. package/src/base/_reset.scss +359 -0
  90. package/src/base/_rtl.scss +133 -0
  91. package/src/base/_typography.scss +353 -0
  92. package/src/components/_advanced.scss +763 -0
  93. package/src/components/_alert.scss +322 -0
  94. package/src/components/_badge.scss +279 -0
  95. package/src/components/_blog.scss +693 -0
  96. package/src/components/_button.scss +351 -0
  97. package/src/components/_capabilities.scss +463 -0
  98. package/src/components/_card.scss +281 -0
  99. package/src/components/_choice.scss +444 -0
  100. package/src/components/_dashboard.scss +950 -0
  101. package/src/components/_data.scss +618 -0
  102. package/src/components/_feedback.scss +403 -0
  103. package/src/components/_form.scss +408 -0
  104. package/src/components/_glass.scss +374 -0
  105. package/src/components/_input-plus.scss +730 -0
  106. package/src/components/_interactive.scss +885 -0
  107. package/src/components/_marketing.scss +982 -0
  108. package/src/components/_nav.scss +480 -0
  109. package/src/components/_overlay.scss +517 -0
  110. package/src/components/_table.scss +276 -0
  111. package/src/components/_tabs.scss +338 -0
  112. package/src/fanui.d.ts +353 -0
  113. package/src/fanui.js +4782 -0
  114. package/src/fanui.scss +79 -0
  115. package/src/glass/_switches.scss +36 -0
  116. package/src/glass/_tokens.scss +259 -0
  117. package/src/layout/_container.scss +111 -0
  118. package/src/layout/_flex.scss +164 -0
  119. package/src/layout/_grid.scss +180 -0
  120. package/src/themes/_accents.scss +201 -0
  121. package/src/themes/_palettes.scss +180 -0
  122. package/src/utilities/_borders.scss +104 -0
  123. package/src/utilities/_display.scss +145 -0
  124. package/src/utilities/_effects.scss +210 -0
  125. package/src/utilities/_sizing.scss +123 -0
  126. package/src/utilities/_spacing.scss +118 -0
  127. package/src/utilities/_texture.scss +323 -0
@@ -0,0 +1,4399 @@
1
+ /* fanUI v2.1.0 · module: layout(独立产物,自带令牌) */
2
+ .fanui-container {
3
+ width: 100%;
4
+ padding-inline-end: 16px;
5
+ padding-inline-start: 16px;
6
+ margin-inline-end: auto;
7
+ margin-inline-start: auto;
8
+ box-sizing: border-box;
9
+ }
10
+ @media (min-width: 576px) {
11
+ .fanui-container {
12
+ max-width: 540px;
13
+ }
14
+ }
15
+ @media (min-width: 768px) {
16
+ .fanui-container {
17
+ max-width: 720px;
18
+ }
19
+ }
20
+ @media (min-width: 992px) {
21
+ .fanui-container {
22
+ max-width: 960px;
23
+ }
24
+ }
25
+ @media (min-width: 1200px) {
26
+ .fanui-container {
27
+ max-width: 1140px;
28
+ }
29
+ }
30
+ @media (min-width: 1400px) {
31
+ .fanui-container {
32
+ max-width: 1320px;
33
+ }
34
+ }
35
+
36
+ .fanui-container-fluid {
37
+ width: 100%;
38
+ padding-inline-end: 16px;
39
+ padding-inline-start: 16px;
40
+ margin-inline-end: auto;
41
+ margin-inline-start: auto;
42
+ box-sizing: border-box;
43
+ }
44
+
45
+ .fanui-container-full {
46
+ width: 100%;
47
+ margin-inline-end: auto;
48
+ margin-inline-start: auto;
49
+ }
50
+
51
+ .fanui-container-sm {
52
+ width: 100%;
53
+ padding-inline-end: 16px;
54
+ padding-inline-start: 16px;
55
+ margin-inline-end: auto;
56
+ margin-inline-start: auto;
57
+ box-sizing: border-box;
58
+ }
59
+ @media (min-width: 576px) {
60
+ .fanui-container-sm {
61
+ max-width: 540px;
62
+ }
63
+ }
64
+
65
+ .fanui-container-md {
66
+ width: 100%;
67
+ padding-inline-end: 16px;
68
+ padding-inline-start: 16px;
69
+ margin-inline-end: auto;
70
+ margin-inline-start: auto;
71
+ box-sizing: border-box;
72
+ }
73
+ @media (min-width: 768px) {
74
+ .fanui-container-md {
75
+ max-width: 720px;
76
+ }
77
+ }
78
+
79
+ .fanui-container-lg {
80
+ width: 100%;
81
+ padding-inline-end: 16px;
82
+ padding-inline-start: 16px;
83
+ margin-inline-end: auto;
84
+ margin-inline-start: auto;
85
+ box-sizing: border-box;
86
+ }
87
+ @media (min-width: 992px) {
88
+ .fanui-container-lg {
89
+ max-width: 960px;
90
+ }
91
+ }
92
+
93
+ .fanui-container-xl {
94
+ width: 100%;
95
+ padding-inline-end: 16px;
96
+ padding-inline-start: 16px;
97
+ margin-inline-end: auto;
98
+ margin-inline-start: auto;
99
+ box-sizing: border-box;
100
+ }
101
+ @media (min-width: 1200px) {
102
+ .fanui-container-xl {
103
+ max-width: 1140px;
104
+ }
105
+ }
106
+
107
+ .fanui-container-xxl {
108
+ width: 100%;
109
+ padding-inline-end: 16px;
110
+ padding-inline-start: 16px;
111
+ margin-inline-end: auto;
112
+ margin-inline-start: auto;
113
+ box-sizing: border-box;
114
+ }
115
+ @media (min-width: 1400px) {
116
+ .fanui-container-xxl {
117
+ max-width: 1320px;
118
+ }
119
+ }
120
+
121
+ .fanui-layout {
122
+ display: flex;
123
+ flex-direction: column;
124
+ min-height: 100vh;
125
+ }
126
+ .fanui-layout__header {
127
+ flex: 0 0 auto;
128
+ z-index: var(--fanui-z-sticky, 1020);
129
+ }
130
+ .fanui-layout__body {
131
+ flex: 1 1 auto;
132
+ display: flex;
133
+ min-height: 0;
134
+ }
135
+ .fanui-layout__aside {
136
+ flex: 0 0 auto;
137
+ width: var(--fanui-layout-aside-width, 240px);
138
+ overflow-y: auto;
139
+ }
140
+ .fanui-layout__main {
141
+ flex: 1 1 auto;
142
+ min-width: 0;
143
+ overflow-x: hidden;
144
+ }
145
+ .fanui-layout__footer {
146
+ flex: 0 0 auto;
147
+ }
148
+ .fanui-layout--aside-end .fanui-layout__aside {
149
+ order: 2;
150
+ }
151
+ .fanui-layout--aside-end .fanui-layout__main {
152
+ order: 1;
153
+ }
154
+ @media (max-width: 767.95px) {
155
+ .fanui-layout__aside {
156
+ width: 100%;
157
+ max-width: none;
158
+ }
159
+ .fanui-layout--responsive .fanui-layout__body {
160
+ flex-direction: column;
161
+ }
162
+ }
163
+
164
+ .fanui-main {
165
+ flex: 1 1 auto;
166
+ min-width: 0;
167
+ }
168
+
169
+ .fanui-aside {
170
+ flex: 0 0 auto;
171
+ }
172
+
173
+ .fanui-section {
174
+ padding-block: var(--fanui-space-8);
175
+ }
176
+
177
+ .fanui-sticky-top {
178
+ position: sticky;
179
+ top: 0;
180
+ z-index: var(--fanui-z-sticky, 1020);
181
+ }
182
+
183
+ .fanui-sticky-bottom {
184
+ position: sticky;
185
+ bottom: 0;
186
+ z-index: var(--fanui-z-sticky, 1020);
187
+ }
188
+
189
+ .fanui-row {
190
+ --fanui-gutter-x: 24px;
191
+ --fanui-gutter-y: 0;
192
+ display: flex;
193
+ flex-wrap: wrap;
194
+ margin-top: 0;
195
+ margin-inline-end: -12px;
196
+ margin-inline-start: -12px;
197
+ }
198
+ .fanui-row > * {
199
+ box-sizing: border-box;
200
+ flex-shrink: 0;
201
+ width: 100%;
202
+ max-width: 100%;
203
+ padding-inline-end: calc(var(--fanui-gutter-x, 24px) * 0.5);
204
+ padding-inline-start: calc(var(--fanui-gutter-x, 24px) * 0.5);
205
+ margin-top: var(--fanui-gutter-y, 0);
206
+ }
207
+
208
+ .fanui-row--no-gutters {
209
+ --fanui-gutter-x: 0;
210
+ --fanui-gutter-y: 0;
211
+ }
212
+
213
+ .fanui-row--inline {
214
+ display: inline-flex;
215
+ }
216
+
217
+ .fanui-col {
218
+ flex: 1 0 0%;
219
+ min-width: 0;
220
+ }
221
+
222
+ .fanui-col-auto {
223
+ flex: 0 0 auto;
224
+ width: auto;
225
+ }
226
+
227
+ .fanui-col-1 {
228
+ flex: 0 0 auto;
229
+ width: 8.3333333333%;
230
+ max-width: 100%;
231
+ }
232
+
233
+ .fanui-col-2 {
234
+ flex: 0 0 auto;
235
+ width: 16.6666666667%;
236
+ max-width: 100%;
237
+ }
238
+
239
+ .fanui-col-3 {
240
+ flex: 0 0 auto;
241
+ width: 25%;
242
+ max-width: 100%;
243
+ }
244
+
245
+ .fanui-col-4 {
246
+ flex: 0 0 auto;
247
+ width: 33.3333333333%;
248
+ max-width: 100%;
249
+ }
250
+
251
+ .fanui-col-5 {
252
+ flex: 0 0 auto;
253
+ width: 41.6666666667%;
254
+ max-width: 100%;
255
+ }
256
+
257
+ .fanui-col-6 {
258
+ flex: 0 0 auto;
259
+ width: 50%;
260
+ max-width: 100%;
261
+ }
262
+
263
+ .fanui-col-7 {
264
+ flex: 0 0 auto;
265
+ width: 58.3333333333%;
266
+ max-width: 100%;
267
+ }
268
+
269
+ .fanui-col-8 {
270
+ flex: 0 0 auto;
271
+ width: 66.6666666667%;
272
+ max-width: 100%;
273
+ }
274
+
275
+ .fanui-col-9 {
276
+ flex: 0 0 auto;
277
+ width: 75%;
278
+ max-width: 100%;
279
+ }
280
+
281
+ .fanui-col-10 {
282
+ flex: 0 0 auto;
283
+ width: 83.3333333333%;
284
+ max-width: 100%;
285
+ }
286
+
287
+ .fanui-col-11 {
288
+ flex: 0 0 auto;
289
+ width: 91.6666666667%;
290
+ max-width: 100%;
291
+ }
292
+
293
+ .fanui-col-12 {
294
+ flex: 0 0 auto;
295
+ width: 100%;
296
+ max-width: 100%;
297
+ }
298
+
299
+ .fanui-col-12 {
300
+ flex: 0 0 auto;
301
+ width: 100%;
302
+ }
303
+
304
+ .fanui-col {
305
+ flex: 1 0 0%;
306
+ min-width: 0;
307
+ }
308
+
309
+ .fanui-col-auto {
310
+ flex: 0 0 auto;
311
+ width: auto;
312
+ max-width: 100%;
313
+ }
314
+
315
+ .fanui-col-1 {
316
+ flex: 0 0 auto;
317
+ width: 8.3333333333%;
318
+ max-width: 100%;
319
+ }
320
+
321
+ .fanui-col-2 {
322
+ flex: 0 0 auto;
323
+ width: 16.6666666667%;
324
+ max-width: 100%;
325
+ }
326
+
327
+ .fanui-col-3 {
328
+ flex: 0 0 auto;
329
+ width: 25%;
330
+ max-width: 100%;
331
+ }
332
+
333
+ .fanui-col-4 {
334
+ flex: 0 0 auto;
335
+ width: 33.3333333333%;
336
+ max-width: 100%;
337
+ }
338
+
339
+ .fanui-col-5 {
340
+ flex: 0 0 auto;
341
+ width: 41.6666666667%;
342
+ max-width: 100%;
343
+ }
344
+
345
+ .fanui-col-6 {
346
+ flex: 0 0 auto;
347
+ width: 50%;
348
+ max-width: 100%;
349
+ }
350
+
351
+ .fanui-col-7 {
352
+ flex: 0 0 auto;
353
+ width: 58.3333333333%;
354
+ max-width: 100%;
355
+ }
356
+
357
+ .fanui-col-8 {
358
+ flex: 0 0 auto;
359
+ width: 66.6666666667%;
360
+ max-width: 100%;
361
+ }
362
+
363
+ .fanui-col-9 {
364
+ flex: 0 0 auto;
365
+ width: 75%;
366
+ max-width: 100%;
367
+ }
368
+
369
+ .fanui-col-10 {
370
+ flex: 0 0 auto;
371
+ width: 83.3333333333%;
372
+ max-width: 100%;
373
+ }
374
+
375
+ .fanui-col-11 {
376
+ flex: 0 0 auto;
377
+ width: 91.6666666667%;
378
+ max-width: 100%;
379
+ }
380
+
381
+ .fanui-col-12 {
382
+ flex: 0 0 auto;
383
+ width: 100%;
384
+ max-width: 100%;
385
+ }
386
+
387
+ .fanui-offset-0 {
388
+ margin-inline-start: 0;
389
+ }
390
+
391
+ .fanui-offset-1 {
392
+ margin-inline-start: 8.3333333333%;
393
+ }
394
+
395
+ .fanui-offset-2 {
396
+ margin-inline-start: 16.6666666667%;
397
+ }
398
+
399
+ .fanui-offset-3 {
400
+ margin-inline-start: 25%;
401
+ }
402
+
403
+ .fanui-offset-4 {
404
+ margin-inline-start: 33.3333333333%;
405
+ }
406
+
407
+ .fanui-offset-5 {
408
+ margin-inline-start: 41.6666666667%;
409
+ }
410
+
411
+ .fanui-offset-6 {
412
+ margin-inline-start: 50%;
413
+ }
414
+
415
+ .fanui-offset-7 {
416
+ margin-inline-start: 58.3333333333%;
417
+ }
418
+
419
+ .fanui-offset-8 {
420
+ margin-inline-start: 66.6666666667%;
421
+ }
422
+
423
+ .fanui-offset-9 {
424
+ margin-inline-start: 75%;
425
+ }
426
+
427
+ .fanui-offset-10 {
428
+ margin-inline-start: 83.3333333333%;
429
+ }
430
+
431
+ .fanui-offset-11 {
432
+ margin-inline-start: 91.6666666667%;
433
+ }
434
+
435
+ .fanui-order-0 {
436
+ order: 0;
437
+ }
438
+
439
+ .fanui-order-1 {
440
+ order: 1;
441
+ }
442
+
443
+ .fanui-order-2 {
444
+ order: 2;
445
+ }
446
+
447
+ .fanui-order-3 {
448
+ order: 3;
449
+ }
450
+
451
+ .fanui-order-4 {
452
+ order: 4;
453
+ }
454
+
455
+ .fanui-order-5 {
456
+ order: 5;
457
+ }
458
+
459
+ .fanui-order-6 {
460
+ order: 6;
461
+ }
462
+
463
+ .fanui-order-7 {
464
+ order: 7;
465
+ }
466
+
467
+ .fanui-order-8 {
468
+ order: 8;
469
+ }
470
+
471
+ .fanui-order-9 {
472
+ order: 9;
473
+ }
474
+
475
+ .fanui-order-10 {
476
+ order: 10;
477
+ }
478
+
479
+ .fanui-order-11 {
480
+ order: 11;
481
+ }
482
+
483
+ .fanui-order-12 {
484
+ order: 12;
485
+ }
486
+
487
+ .fanui-order-first {
488
+ order: -1;
489
+ }
490
+
491
+ .fanui-order-last {
492
+ order: 13;
493
+ }
494
+
495
+ @media (min-width: 576px) {
496
+ .fanui-col-sm {
497
+ flex: 1 0 0%;
498
+ min-width: 0;
499
+ }
500
+ .fanui-col-sm-auto {
501
+ flex: 0 0 auto;
502
+ width: auto;
503
+ max-width: 100%;
504
+ }
505
+ .fanui-col-sm-1 {
506
+ flex: 0 0 auto;
507
+ width: 8.3333333333%;
508
+ max-width: 100%;
509
+ }
510
+ .fanui-col-sm-2 {
511
+ flex: 0 0 auto;
512
+ width: 16.6666666667%;
513
+ max-width: 100%;
514
+ }
515
+ .fanui-col-sm-3 {
516
+ flex: 0 0 auto;
517
+ width: 25%;
518
+ max-width: 100%;
519
+ }
520
+ .fanui-col-sm-4 {
521
+ flex: 0 0 auto;
522
+ width: 33.3333333333%;
523
+ max-width: 100%;
524
+ }
525
+ .fanui-col-sm-5 {
526
+ flex: 0 0 auto;
527
+ width: 41.6666666667%;
528
+ max-width: 100%;
529
+ }
530
+ .fanui-col-sm-6 {
531
+ flex: 0 0 auto;
532
+ width: 50%;
533
+ max-width: 100%;
534
+ }
535
+ .fanui-col-sm-7 {
536
+ flex: 0 0 auto;
537
+ width: 58.3333333333%;
538
+ max-width: 100%;
539
+ }
540
+ .fanui-col-sm-8 {
541
+ flex: 0 0 auto;
542
+ width: 66.6666666667%;
543
+ max-width: 100%;
544
+ }
545
+ .fanui-col-sm-9 {
546
+ flex: 0 0 auto;
547
+ width: 75%;
548
+ max-width: 100%;
549
+ }
550
+ .fanui-col-sm-10 {
551
+ flex: 0 0 auto;
552
+ width: 83.3333333333%;
553
+ max-width: 100%;
554
+ }
555
+ .fanui-col-sm-11 {
556
+ flex: 0 0 auto;
557
+ width: 91.6666666667%;
558
+ max-width: 100%;
559
+ }
560
+ .fanui-col-sm-12 {
561
+ flex: 0 0 auto;
562
+ width: 100%;
563
+ max-width: 100%;
564
+ }
565
+ .fanui-offset-sm-0 {
566
+ margin-inline-start: 0;
567
+ }
568
+ .fanui-offset-sm-1 {
569
+ margin-inline-start: 8.3333333333%;
570
+ }
571
+ .fanui-offset-sm-2 {
572
+ margin-inline-start: 16.6666666667%;
573
+ }
574
+ .fanui-offset-sm-3 {
575
+ margin-inline-start: 25%;
576
+ }
577
+ .fanui-offset-sm-4 {
578
+ margin-inline-start: 33.3333333333%;
579
+ }
580
+ .fanui-offset-sm-5 {
581
+ margin-inline-start: 41.6666666667%;
582
+ }
583
+ .fanui-offset-sm-6 {
584
+ margin-inline-start: 50%;
585
+ }
586
+ .fanui-offset-sm-7 {
587
+ margin-inline-start: 58.3333333333%;
588
+ }
589
+ .fanui-offset-sm-8 {
590
+ margin-inline-start: 66.6666666667%;
591
+ }
592
+ .fanui-offset-sm-9 {
593
+ margin-inline-start: 75%;
594
+ }
595
+ .fanui-offset-sm-10 {
596
+ margin-inline-start: 83.3333333333%;
597
+ }
598
+ .fanui-offset-sm-11 {
599
+ margin-inline-start: 91.6666666667%;
600
+ }
601
+ .fanui-order-sm-0 {
602
+ order: 0;
603
+ }
604
+ .fanui-order-sm-1 {
605
+ order: 1;
606
+ }
607
+ .fanui-order-sm-2 {
608
+ order: 2;
609
+ }
610
+ .fanui-order-sm-3 {
611
+ order: 3;
612
+ }
613
+ .fanui-order-sm-4 {
614
+ order: 4;
615
+ }
616
+ .fanui-order-sm-5 {
617
+ order: 5;
618
+ }
619
+ .fanui-order-sm-6 {
620
+ order: 6;
621
+ }
622
+ .fanui-order-sm-7 {
623
+ order: 7;
624
+ }
625
+ .fanui-order-sm-8 {
626
+ order: 8;
627
+ }
628
+ .fanui-order-sm-9 {
629
+ order: 9;
630
+ }
631
+ .fanui-order-sm-10 {
632
+ order: 10;
633
+ }
634
+ .fanui-order-sm-11 {
635
+ order: 11;
636
+ }
637
+ .fanui-order-sm-12 {
638
+ order: 12;
639
+ }
640
+ .fanui-order-sm-first {
641
+ order: -1;
642
+ }
643
+ .fanui-order-sm-last {
644
+ order: 13;
645
+ }
646
+ }
647
+ @media (min-width: 768px) {
648
+ .fanui-col-md {
649
+ flex: 1 0 0%;
650
+ min-width: 0;
651
+ }
652
+ .fanui-col-md-auto {
653
+ flex: 0 0 auto;
654
+ width: auto;
655
+ max-width: 100%;
656
+ }
657
+ .fanui-col-md-1 {
658
+ flex: 0 0 auto;
659
+ width: 8.3333333333%;
660
+ max-width: 100%;
661
+ }
662
+ .fanui-col-md-2 {
663
+ flex: 0 0 auto;
664
+ width: 16.6666666667%;
665
+ max-width: 100%;
666
+ }
667
+ .fanui-col-md-3 {
668
+ flex: 0 0 auto;
669
+ width: 25%;
670
+ max-width: 100%;
671
+ }
672
+ .fanui-col-md-4 {
673
+ flex: 0 0 auto;
674
+ width: 33.3333333333%;
675
+ max-width: 100%;
676
+ }
677
+ .fanui-col-md-5 {
678
+ flex: 0 0 auto;
679
+ width: 41.6666666667%;
680
+ max-width: 100%;
681
+ }
682
+ .fanui-col-md-6 {
683
+ flex: 0 0 auto;
684
+ width: 50%;
685
+ max-width: 100%;
686
+ }
687
+ .fanui-col-md-7 {
688
+ flex: 0 0 auto;
689
+ width: 58.3333333333%;
690
+ max-width: 100%;
691
+ }
692
+ .fanui-col-md-8 {
693
+ flex: 0 0 auto;
694
+ width: 66.6666666667%;
695
+ max-width: 100%;
696
+ }
697
+ .fanui-col-md-9 {
698
+ flex: 0 0 auto;
699
+ width: 75%;
700
+ max-width: 100%;
701
+ }
702
+ .fanui-col-md-10 {
703
+ flex: 0 0 auto;
704
+ width: 83.3333333333%;
705
+ max-width: 100%;
706
+ }
707
+ .fanui-col-md-11 {
708
+ flex: 0 0 auto;
709
+ width: 91.6666666667%;
710
+ max-width: 100%;
711
+ }
712
+ .fanui-col-md-12 {
713
+ flex: 0 0 auto;
714
+ width: 100%;
715
+ max-width: 100%;
716
+ }
717
+ .fanui-offset-md-0 {
718
+ margin-inline-start: 0;
719
+ }
720
+ .fanui-offset-md-1 {
721
+ margin-inline-start: 8.3333333333%;
722
+ }
723
+ .fanui-offset-md-2 {
724
+ margin-inline-start: 16.6666666667%;
725
+ }
726
+ .fanui-offset-md-3 {
727
+ margin-inline-start: 25%;
728
+ }
729
+ .fanui-offset-md-4 {
730
+ margin-inline-start: 33.3333333333%;
731
+ }
732
+ .fanui-offset-md-5 {
733
+ margin-inline-start: 41.6666666667%;
734
+ }
735
+ .fanui-offset-md-6 {
736
+ margin-inline-start: 50%;
737
+ }
738
+ .fanui-offset-md-7 {
739
+ margin-inline-start: 58.3333333333%;
740
+ }
741
+ .fanui-offset-md-8 {
742
+ margin-inline-start: 66.6666666667%;
743
+ }
744
+ .fanui-offset-md-9 {
745
+ margin-inline-start: 75%;
746
+ }
747
+ .fanui-offset-md-10 {
748
+ margin-inline-start: 83.3333333333%;
749
+ }
750
+ .fanui-offset-md-11 {
751
+ margin-inline-start: 91.6666666667%;
752
+ }
753
+ .fanui-order-md-0 {
754
+ order: 0;
755
+ }
756
+ .fanui-order-md-1 {
757
+ order: 1;
758
+ }
759
+ .fanui-order-md-2 {
760
+ order: 2;
761
+ }
762
+ .fanui-order-md-3 {
763
+ order: 3;
764
+ }
765
+ .fanui-order-md-4 {
766
+ order: 4;
767
+ }
768
+ .fanui-order-md-5 {
769
+ order: 5;
770
+ }
771
+ .fanui-order-md-6 {
772
+ order: 6;
773
+ }
774
+ .fanui-order-md-7 {
775
+ order: 7;
776
+ }
777
+ .fanui-order-md-8 {
778
+ order: 8;
779
+ }
780
+ .fanui-order-md-9 {
781
+ order: 9;
782
+ }
783
+ .fanui-order-md-10 {
784
+ order: 10;
785
+ }
786
+ .fanui-order-md-11 {
787
+ order: 11;
788
+ }
789
+ .fanui-order-md-12 {
790
+ order: 12;
791
+ }
792
+ .fanui-order-md-first {
793
+ order: -1;
794
+ }
795
+ .fanui-order-md-last {
796
+ order: 13;
797
+ }
798
+ }
799
+ @media (min-width: 992px) {
800
+ .fanui-col-lg {
801
+ flex: 1 0 0%;
802
+ min-width: 0;
803
+ }
804
+ .fanui-col-lg-auto {
805
+ flex: 0 0 auto;
806
+ width: auto;
807
+ max-width: 100%;
808
+ }
809
+ .fanui-col-lg-1 {
810
+ flex: 0 0 auto;
811
+ width: 8.3333333333%;
812
+ max-width: 100%;
813
+ }
814
+ .fanui-col-lg-2 {
815
+ flex: 0 0 auto;
816
+ width: 16.6666666667%;
817
+ max-width: 100%;
818
+ }
819
+ .fanui-col-lg-3 {
820
+ flex: 0 0 auto;
821
+ width: 25%;
822
+ max-width: 100%;
823
+ }
824
+ .fanui-col-lg-4 {
825
+ flex: 0 0 auto;
826
+ width: 33.3333333333%;
827
+ max-width: 100%;
828
+ }
829
+ .fanui-col-lg-5 {
830
+ flex: 0 0 auto;
831
+ width: 41.6666666667%;
832
+ max-width: 100%;
833
+ }
834
+ .fanui-col-lg-6 {
835
+ flex: 0 0 auto;
836
+ width: 50%;
837
+ max-width: 100%;
838
+ }
839
+ .fanui-col-lg-7 {
840
+ flex: 0 0 auto;
841
+ width: 58.3333333333%;
842
+ max-width: 100%;
843
+ }
844
+ .fanui-col-lg-8 {
845
+ flex: 0 0 auto;
846
+ width: 66.6666666667%;
847
+ max-width: 100%;
848
+ }
849
+ .fanui-col-lg-9 {
850
+ flex: 0 0 auto;
851
+ width: 75%;
852
+ max-width: 100%;
853
+ }
854
+ .fanui-col-lg-10 {
855
+ flex: 0 0 auto;
856
+ width: 83.3333333333%;
857
+ max-width: 100%;
858
+ }
859
+ .fanui-col-lg-11 {
860
+ flex: 0 0 auto;
861
+ width: 91.6666666667%;
862
+ max-width: 100%;
863
+ }
864
+ .fanui-col-lg-12 {
865
+ flex: 0 0 auto;
866
+ width: 100%;
867
+ max-width: 100%;
868
+ }
869
+ .fanui-offset-lg-0 {
870
+ margin-inline-start: 0;
871
+ }
872
+ .fanui-offset-lg-1 {
873
+ margin-inline-start: 8.3333333333%;
874
+ }
875
+ .fanui-offset-lg-2 {
876
+ margin-inline-start: 16.6666666667%;
877
+ }
878
+ .fanui-offset-lg-3 {
879
+ margin-inline-start: 25%;
880
+ }
881
+ .fanui-offset-lg-4 {
882
+ margin-inline-start: 33.3333333333%;
883
+ }
884
+ .fanui-offset-lg-5 {
885
+ margin-inline-start: 41.6666666667%;
886
+ }
887
+ .fanui-offset-lg-6 {
888
+ margin-inline-start: 50%;
889
+ }
890
+ .fanui-offset-lg-7 {
891
+ margin-inline-start: 58.3333333333%;
892
+ }
893
+ .fanui-offset-lg-8 {
894
+ margin-inline-start: 66.6666666667%;
895
+ }
896
+ .fanui-offset-lg-9 {
897
+ margin-inline-start: 75%;
898
+ }
899
+ .fanui-offset-lg-10 {
900
+ margin-inline-start: 83.3333333333%;
901
+ }
902
+ .fanui-offset-lg-11 {
903
+ margin-inline-start: 91.6666666667%;
904
+ }
905
+ .fanui-order-lg-0 {
906
+ order: 0;
907
+ }
908
+ .fanui-order-lg-1 {
909
+ order: 1;
910
+ }
911
+ .fanui-order-lg-2 {
912
+ order: 2;
913
+ }
914
+ .fanui-order-lg-3 {
915
+ order: 3;
916
+ }
917
+ .fanui-order-lg-4 {
918
+ order: 4;
919
+ }
920
+ .fanui-order-lg-5 {
921
+ order: 5;
922
+ }
923
+ .fanui-order-lg-6 {
924
+ order: 6;
925
+ }
926
+ .fanui-order-lg-7 {
927
+ order: 7;
928
+ }
929
+ .fanui-order-lg-8 {
930
+ order: 8;
931
+ }
932
+ .fanui-order-lg-9 {
933
+ order: 9;
934
+ }
935
+ .fanui-order-lg-10 {
936
+ order: 10;
937
+ }
938
+ .fanui-order-lg-11 {
939
+ order: 11;
940
+ }
941
+ .fanui-order-lg-12 {
942
+ order: 12;
943
+ }
944
+ .fanui-order-lg-first {
945
+ order: -1;
946
+ }
947
+ .fanui-order-lg-last {
948
+ order: 13;
949
+ }
950
+ }
951
+ @media (min-width: 1200px) {
952
+ .fanui-col-xl {
953
+ flex: 1 0 0%;
954
+ min-width: 0;
955
+ }
956
+ .fanui-col-xl-auto {
957
+ flex: 0 0 auto;
958
+ width: auto;
959
+ max-width: 100%;
960
+ }
961
+ .fanui-col-xl-1 {
962
+ flex: 0 0 auto;
963
+ width: 8.3333333333%;
964
+ max-width: 100%;
965
+ }
966
+ .fanui-col-xl-2 {
967
+ flex: 0 0 auto;
968
+ width: 16.6666666667%;
969
+ max-width: 100%;
970
+ }
971
+ .fanui-col-xl-3 {
972
+ flex: 0 0 auto;
973
+ width: 25%;
974
+ max-width: 100%;
975
+ }
976
+ .fanui-col-xl-4 {
977
+ flex: 0 0 auto;
978
+ width: 33.3333333333%;
979
+ max-width: 100%;
980
+ }
981
+ .fanui-col-xl-5 {
982
+ flex: 0 0 auto;
983
+ width: 41.6666666667%;
984
+ max-width: 100%;
985
+ }
986
+ .fanui-col-xl-6 {
987
+ flex: 0 0 auto;
988
+ width: 50%;
989
+ max-width: 100%;
990
+ }
991
+ .fanui-col-xl-7 {
992
+ flex: 0 0 auto;
993
+ width: 58.3333333333%;
994
+ max-width: 100%;
995
+ }
996
+ .fanui-col-xl-8 {
997
+ flex: 0 0 auto;
998
+ width: 66.6666666667%;
999
+ max-width: 100%;
1000
+ }
1001
+ .fanui-col-xl-9 {
1002
+ flex: 0 0 auto;
1003
+ width: 75%;
1004
+ max-width: 100%;
1005
+ }
1006
+ .fanui-col-xl-10 {
1007
+ flex: 0 0 auto;
1008
+ width: 83.3333333333%;
1009
+ max-width: 100%;
1010
+ }
1011
+ .fanui-col-xl-11 {
1012
+ flex: 0 0 auto;
1013
+ width: 91.6666666667%;
1014
+ max-width: 100%;
1015
+ }
1016
+ .fanui-col-xl-12 {
1017
+ flex: 0 0 auto;
1018
+ width: 100%;
1019
+ max-width: 100%;
1020
+ }
1021
+ .fanui-offset-xl-0 {
1022
+ margin-inline-start: 0;
1023
+ }
1024
+ .fanui-offset-xl-1 {
1025
+ margin-inline-start: 8.3333333333%;
1026
+ }
1027
+ .fanui-offset-xl-2 {
1028
+ margin-inline-start: 16.6666666667%;
1029
+ }
1030
+ .fanui-offset-xl-3 {
1031
+ margin-inline-start: 25%;
1032
+ }
1033
+ .fanui-offset-xl-4 {
1034
+ margin-inline-start: 33.3333333333%;
1035
+ }
1036
+ .fanui-offset-xl-5 {
1037
+ margin-inline-start: 41.6666666667%;
1038
+ }
1039
+ .fanui-offset-xl-6 {
1040
+ margin-inline-start: 50%;
1041
+ }
1042
+ .fanui-offset-xl-7 {
1043
+ margin-inline-start: 58.3333333333%;
1044
+ }
1045
+ .fanui-offset-xl-8 {
1046
+ margin-inline-start: 66.6666666667%;
1047
+ }
1048
+ .fanui-offset-xl-9 {
1049
+ margin-inline-start: 75%;
1050
+ }
1051
+ .fanui-offset-xl-10 {
1052
+ margin-inline-start: 83.3333333333%;
1053
+ }
1054
+ .fanui-offset-xl-11 {
1055
+ margin-inline-start: 91.6666666667%;
1056
+ }
1057
+ .fanui-order-xl-0 {
1058
+ order: 0;
1059
+ }
1060
+ .fanui-order-xl-1 {
1061
+ order: 1;
1062
+ }
1063
+ .fanui-order-xl-2 {
1064
+ order: 2;
1065
+ }
1066
+ .fanui-order-xl-3 {
1067
+ order: 3;
1068
+ }
1069
+ .fanui-order-xl-4 {
1070
+ order: 4;
1071
+ }
1072
+ .fanui-order-xl-5 {
1073
+ order: 5;
1074
+ }
1075
+ .fanui-order-xl-6 {
1076
+ order: 6;
1077
+ }
1078
+ .fanui-order-xl-7 {
1079
+ order: 7;
1080
+ }
1081
+ .fanui-order-xl-8 {
1082
+ order: 8;
1083
+ }
1084
+ .fanui-order-xl-9 {
1085
+ order: 9;
1086
+ }
1087
+ .fanui-order-xl-10 {
1088
+ order: 10;
1089
+ }
1090
+ .fanui-order-xl-11 {
1091
+ order: 11;
1092
+ }
1093
+ .fanui-order-xl-12 {
1094
+ order: 12;
1095
+ }
1096
+ .fanui-order-xl-first {
1097
+ order: -1;
1098
+ }
1099
+ .fanui-order-xl-last {
1100
+ order: 13;
1101
+ }
1102
+ }
1103
+ @media (min-width: 1400px) {
1104
+ .fanui-col-xxl {
1105
+ flex: 1 0 0%;
1106
+ min-width: 0;
1107
+ }
1108
+ .fanui-col-xxl-auto {
1109
+ flex: 0 0 auto;
1110
+ width: auto;
1111
+ max-width: 100%;
1112
+ }
1113
+ .fanui-col-xxl-1 {
1114
+ flex: 0 0 auto;
1115
+ width: 8.3333333333%;
1116
+ max-width: 100%;
1117
+ }
1118
+ .fanui-col-xxl-2 {
1119
+ flex: 0 0 auto;
1120
+ width: 16.6666666667%;
1121
+ max-width: 100%;
1122
+ }
1123
+ .fanui-col-xxl-3 {
1124
+ flex: 0 0 auto;
1125
+ width: 25%;
1126
+ max-width: 100%;
1127
+ }
1128
+ .fanui-col-xxl-4 {
1129
+ flex: 0 0 auto;
1130
+ width: 33.3333333333%;
1131
+ max-width: 100%;
1132
+ }
1133
+ .fanui-col-xxl-5 {
1134
+ flex: 0 0 auto;
1135
+ width: 41.6666666667%;
1136
+ max-width: 100%;
1137
+ }
1138
+ .fanui-col-xxl-6 {
1139
+ flex: 0 0 auto;
1140
+ width: 50%;
1141
+ max-width: 100%;
1142
+ }
1143
+ .fanui-col-xxl-7 {
1144
+ flex: 0 0 auto;
1145
+ width: 58.3333333333%;
1146
+ max-width: 100%;
1147
+ }
1148
+ .fanui-col-xxl-8 {
1149
+ flex: 0 0 auto;
1150
+ width: 66.6666666667%;
1151
+ max-width: 100%;
1152
+ }
1153
+ .fanui-col-xxl-9 {
1154
+ flex: 0 0 auto;
1155
+ width: 75%;
1156
+ max-width: 100%;
1157
+ }
1158
+ .fanui-col-xxl-10 {
1159
+ flex: 0 0 auto;
1160
+ width: 83.3333333333%;
1161
+ max-width: 100%;
1162
+ }
1163
+ .fanui-col-xxl-11 {
1164
+ flex: 0 0 auto;
1165
+ width: 91.6666666667%;
1166
+ max-width: 100%;
1167
+ }
1168
+ .fanui-col-xxl-12 {
1169
+ flex: 0 0 auto;
1170
+ width: 100%;
1171
+ max-width: 100%;
1172
+ }
1173
+ .fanui-offset-xxl-0 {
1174
+ margin-inline-start: 0;
1175
+ }
1176
+ .fanui-offset-xxl-1 {
1177
+ margin-inline-start: 8.3333333333%;
1178
+ }
1179
+ .fanui-offset-xxl-2 {
1180
+ margin-inline-start: 16.6666666667%;
1181
+ }
1182
+ .fanui-offset-xxl-3 {
1183
+ margin-inline-start: 25%;
1184
+ }
1185
+ .fanui-offset-xxl-4 {
1186
+ margin-inline-start: 33.3333333333%;
1187
+ }
1188
+ .fanui-offset-xxl-5 {
1189
+ margin-inline-start: 41.6666666667%;
1190
+ }
1191
+ .fanui-offset-xxl-6 {
1192
+ margin-inline-start: 50%;
1193
+ }
1194
+ .fanui-offset-xxl-7 {
1195
+ margin-inline-start: 58.3333333333%;
1196
+ }
1197
+ .fanui-offset-xxl-8 {
1198
+ margin-inline-start: 66.6666666667%;
1199
+ }
1200
+ .fanui-offset-xxl-9 {
1201
+ margin-inline-start: 75%;
1202
+ }
1203
+ .fanui-offset-xxl-10 {
1204
+ margin-inline-start: 83.3333333333%;
1205
+ }
1206
+ .fanui-offset-xxl-11 {
1207
+ margin-inline-start: 91.6666666667%;
1208
+ }
1209
+ .fanui-order-xxl-0 {
1210
+ order: 0;
1211
+ }
1212
+ .fanui-order-xxl-1 {
1213
+ order: 1;
1214
+ }
1215
+ .fanui-order-xxl-2 {
1216
+ order: 2;
1217
+ }
1218
+ .fanui-order-xxl-3 {
1219
+ order: 3;
1220
+ }
1221
+ .fanui-order-xxl-4 {
1222
+ order: 4;
1223
+ }
1224
+ .fanui-order-xxl-5 {
1225
+ order: 5;
1226
+ }
1227
+ .fanui-order-xxl-6 {
1228
+ order: 6;
1229
+ }
1230
+ .fanui-order-xxl-7 {
1231
+ order: 7;
1232
+ }
1233
+ .fanui-order-xxl-8 {
1234
+ order: 8;
1235
+ }
1236
+ .fanui-order-xxl-9 {
1237
+ order: 9;
1238
+ }
1239
+ .fanui-order-xxl-10 {
1240
+ order: 10;
1241
+ }
1242
+ .fanui-order-xxl-11 {
1243
+ order: 11;
1244
+ }
1245
+ .fanui-order-xxl-12 {
1246
+ order: 12;
1247
+ }
1248
+ .fanui-order-xxl-first {
1249
+ order: -1;
1250
+ }
1251
+ .fanui-order-xxl-last {
1252
+ order: 13;
1253
+ }
1254
+ }
1255
+ .fanui-g0 {
1256
+ --fanui-gutter-x: 0;
1257
+ --fanui-gutter-y: 0;
1258
+ }
1259
+
1260
+ .fanui-gx0 {
1261
+ --fanui-gutter-x: 0;
1262
+ }
1263
+
1264
+ .fanui-gy0 {
1265
+ --fanui-gutter-y: 0;
1266
+ }
1267
+
1268
+ .fanui-g1 {
1269
+ --fanui-gutter-x: 4px;
1270
+ --fanui-gutter-y: 4px;
1271
+ }
1272
+
1273
+ .fanui-gx1 {
1274
+ --fanui-gutter-x: 4px;
1275
+ }
1276
+
1277
+ .fanui-gy1 {
1278
+ --fanui-gutter-y: 4px;
1279
+ }
1280
+
1281
+ .fanui-g2 {
1282
+ --fanui-gutter-x: 8px;
1283
+ --fanui-gutter-y: 8px;
1284
+ }
1285
+
1286
+ .fanui-gx2 {
1287
+ --fanui-gutter-x: 8px;
1288
+ }
1289
+
1290
+ .fanui-gy2 {
1291
+ --fanui-gutter-y: 8px;
1292
+ }
1293
+
1294
+ .fanui-g3 {
1295
+ --fanui-gutter-x: 12px;
1296
+ --fanui-gutter-y: 12px;
1297
+ }
1298
+
1299
+ .fanui-gx3 {
1300
+ --fanui-gutter-x: 12px;
1301
+ }
1302
+
1303
+ .fanui-gy3 {
1304
+ --fanui-gutter-y: 12px;
1305
+ }
1306
+
1307
+ .fanui-g4 {
1308
+ --fanui-gutter-x: 16px;
1309
+ --fanui-gutter-y: 16px;
1310
+ }
1311
+
1312
+ .fanui-gx4 {
1313
+ --fanui-gutter-x: 16px;
1314
+ }
1315
+
1316
+ .fanui-gy4 {
1317
+ --fanui-gutter-y: 16px;
1318
+ }
1319
+
1320
+ .fanui-g5 {
1321
+ --fanui-gutter-x: 20px;
1322
+ --fanui-gutter-y: 20px;
1323
+ }
1324
+
1325
+ .fanui-gx5 {
1326
+ --fanui-gutter-x: 20px;
1327
+ }
1328
+
1329
+ .fanui-gy5 {
1330
+ --fanui-gutter-y: 20px;
1331
+ }
1332
+
1333
+ .fanui-g6 {
1334
+ --fanui-gutter-x: 24px;
1335
+ --fanui-gutter-y: 24px;
1336
+ }
1337
+
1338
+ .fanui-gx6 {
1339
+ --fanui-gutter-x: 24px;
1340
+ }
1341
+
1342
+ .fanui-gy6 {
1343
+ --fanui-gutter-y: 24px;
1344
+ }
1345
+
1346
+ .fanui-g8 {
1347
+ --fanui-gutter-x: 32px;
1348
+ --fanui-gutter-y: 32px;
1349
+ }
1350
+
1351
+ .fanui-gx8 {
1352
+ --fanui-gutter-x: 32px;
1353
+ }
1354
+
1355
+ .fanui-gy8 {
1356
+ --fanui-gutter-y: 32px;
1357
+ }
1358
+
1359
+ .fanui-g10 {
1360
+ --fanui-gutter-x: 40px;
1361
+ --fanui-gutter-y: 40px;
1362
+ }
1363
+
1364
+ .fanui-gx10 {
1365
+ --fanui-gutter-x: 40px;
1366
+ }
1367
+
1368
+ .fanui-gy10 {
1369
+ --fanui-gutter-y: 40px;
1370
+ }
1371
+
1372
+ .fanui-g-0 {
1373
+ --fanui-gutter-x: 0;
1374
+ --fanui-gutter-y: 0;
1375
+ }
1376
+
1377
+ .fanui-gx-0 {
1378
+ --fanui-gutter-x: 0;
1379
+ }
1380
+
1381
+ .fanui-gy-0 {
1382
+ --fanui-gutter-y: 0;
1383
+ }
1384
+
1385
+ .fanui-g-1 {
1386
+ --fanui-gutter-x: 4px;
1387
+ --fanui-gutter-y: 4px;
1388
+ }
1389
+
1390
+ .fanui-gx-1 {
1391
+ --fanui-gutter-x: 4px;
1392
+ }
1393
+
1394
+ .fanui-gy-1 {
1395
+ --fanui-gutter-y: 4px;
1396
+ }
1397
+
1398
+ .fanui-g-2 {
1399
+ --fanui-gutter-x: 8px;
1400
+ --fanui-gutter-y: 8px;
1401
+ }
1402
+
1403
+ .fanui-gx-2 {
1404
+ --fanui-gutter-x: 8px;
1405
+ }
1406
+
1407
+ .fanui-gy-2 {
1408
+ --fanui-gutter-y: 8px;
1409
+ }
1410
+
1411
+ .fanui-g-3 {
1412
+ --fanui-gutter-x: 12px;
1413
+ --fanui-gutter-y: 12px;
1414
+ }
1415
+
1416
+ .fanui-gx-3 {
1417
+ --fanui-gutter-x: 12px;
1418
+ }
1419
+
1420
+ .fanui-gy-3 {
1421
+ --fanui-gutter-y: 12px;
1422
+ }
1423
+
1424
+ .fanui-g-4 {
1425
+ --fanui-gutter-x: 16px;
1426
+ --fanui-gutter-y: 16px;
1427
+ }
1428
+
1429
+ .fanui-gx-4 {
1430
+ --fanui-gutter-x: 16px;
1431
+ }
1432
+
1433
+ .fanui-gy-4 {
1434
+ --fanui-gutter-y: 16px;
1435
+ }
1436
+
1437
+ .fanui-g-5 {
1438
+ --fanui-gutter-x: 20px;
1439
+ --fanui-gutter-y: 20px;
1440
+ }
1441
+
1442
+ .fanui-gx-5 {
1443
+ --fanui-gutter-x: 20px;
1444
+ }
1445
+
1446
+ .fanui-gy-5 {
1447
+ --fanui-gutter-y: 20px;
1448
+ }
1449
+
1450
+ .fanui-g-6 {
1451
+ --fanui-gutter-x: 24px;
1452
+ --fanui-gutter-y: 24px;
1453
+ }
1454
+
1455
+ .fanui-gx-6 {
1456
+ --fanui-gutter-x: 24px;
1457
+ }
1458
+
1459
+ .fanui-gy-6 {
1460
+ --fanui-gutter-y: 24px;
1461
+ }
1462
+
1463
+ .fanui-g-8 {
1464
+ --fanui-gutter-x: 32px;
1465
+ --fanui-gutter-y: 32px;
1466
+ }
1467
+
1468
+ .fanui-gx-8 {
1469
+ --fanui-gutter-x: 32px;
1470
+ }
1471
+
1472
+ .fanui-gy-8 {
1473
+ --fanui-gutter-y: 32px;
1474
+ }
1475
+
1476
+ .fanui-g-10 {
1477
+ --fanui-gutter-x: 40px;
1478
+ --fanui-gutter-y: 40px;
1479
+ }
1480
+
1481
+ .fanui-gx-10 {
1482
+ --fanui-gutter-x: 40px;
1483
+ }
1484
+
1485
+ .fanui-gy-10 {
1486
+ --fanui-gutter-y: 40px;
1487
+ }
1488
+
1489
+ @media (min-width: 576px) {
1490
+ .fanui-g-sm-0 {
1491
+ --fanui-gutter-x: 0;
1492
+ --fanui-gutter-y: 0;
1493
+ }
1494
+ .fanui-gx-sm-0 {
1495
+ --fanui-gutter-x: 0;
1496
+ }
1497
+ .fanui-gy-sm-0 {
1498
+ --fanui-gutter-y: 0;
1499
+ }
1500
+ .fanui-g-sm-1 {
1501
+ --fanui-gutter-x: 4px;
1502
+ --fanui-gutter-y: 4px;
1503
+ }
1504
+ .fanui-gx-sm-1 {
1505
+ --fanui-gutter-x: 4px;
1506
+ }
1507
+ .fanui-gy-sm-1 {
1508
+ --fanui-gutter-y: 4px;
1509
+ }
1510
+ .fanui-g-sm-2 {
1511
+ --fanui-gutter-x: 8px;
1512
+ --fanui-gutter-y: 8px;
1513
+ }
1514
+ .fanui-gx-sm-2 {
1515
+ --fanui-gutter-x: 8px;
1516
+ }
1517
+ .fanui-gy-sm-2 {
1518
+ --fanui-gutter-y: 8px;
1519
+ }
1520
+ .fanui-g-sm-3 {
1521
+ --fanui-gutter-x: 12px;
1522
+ --fanui-gutter-y: 12px;
1523
+ }
1524
+ .fanui-gx-sm-3 {
1525
+ --fanui-gutter-x: 12px;
1526
+ }
1527
+ .fanui-gy-sm-3 {
1528
+ --fanui-gutter-y: 12px;
1529
+ }
1530
+ .fanui-g-sm-4 {
1531
+ --fanui-gutter-x: 16px;
1532
+ --fanui-gutter-y: 16px;
1533
+ }
1534
+ .fanui-gx-sm-4 {
1535
+ --fanui-gutter-x: 16px;
1536
+ }
1537
+ .fanui-gy-sm-4 {
1538
+ --fanui-gutter-y: 16px;
1539
+ }
1540
+ .fanui-g-sm-5 {
1541
+ --fanui-gutter-x: 20px;
1542
+ --fanui-gutter-y: 20px;
1543
+ }
1544
+ .fanui-gx-sm-5 {
1545
+ --fanui-gutter-x: 20px;
1546
+ }
1547
+ .fanui-gy-sm-5 {
1548
+ --fanui-gutter-y: 20px;
1549
+ }
1550
+ .fanui-g-sm-6 {
1551
+ --fanui-gutter-x: 24px;
1552
+ --fanui-gutter-y: 24px;
1553
+ }
1554
+ .fanui-gx-sm-6 {
1555
+ --fanui-gutter-x: 24px;
1556
+ }
1557
+ .fanui-gy-sm-6 {
1558
+ --fanui-gutter-y: 24px;
1559
+ }
1560
+ .fanui-g-sm-8 {
1561
+ --fanui-gutter-x: 32px;
1562
+ --fanui-gutter-y: 32px;
1563
+ }
1564
+ .fanui-gx-sm-8 {
1565
+ --fanui-gutter-x: 32px;
1566
+ }
1567
+ .fanui-gy-sm-8 {
1568
+ --fanui-gutter-y: 32px;
1569
+ }
1570
+ .fanui-g-sm-10 {
1571
+ --fanui-gutter-x: 40px;
1572
+ --fanui-gutter-y: 40px;
1573
+ }
1574
+ .fanui-gx-sm-10 {
1575
+ --fanui-gutter-x: 40px;
1576
+ }
1577
+ .fanui-gy-sm-10 {
1578
+ --fanui-gutter-y: 40px;
1579
+ }
1580
+ }
1581
+ @media (min-width: 768px) {
1582
+ .fanui-g-md-0 {
1583
+ --fanui-gutter-x: 0;
1584
+ --fanui-gutter-y: 0;
1585
+ }
1586
+ .fanui-gx-md-0 {
1587
+ --fanui-gutter-x: 0;
1588
+ }
1589
+ .fanui-gy-md-0 {
1590
+ --fanui-gutter-y: 0;
1591
+ }
1592
+ .fanui-g-md-1 {
1593
+ --fanui-gutter-x: 4px;
1594
+ --fanui-gutter-y: 4px;
1595
+ }
1596
+ .fanui-gx-md-1 {
1597
+ --fanui-gutter-x: 4px;
1598
+ }
1599
+ .fanui-gy-md-1 {
1600
+ --fanui-gutter-y: 4px;
1601
+ }
1602
+ .fanui-g-md-2 {
1603
+ --fanui-gutter-x: 8px;
1604
+ --fanui-gutter-y: 8px;
1605
+ }
1606
+ .fanui-gx-md-2 {
1607
+ --fanui-gutter-x: 8px;
1608
+ }
1609
+ .fanui-gy-md-2 {
1610
+ --fanui-gutter-y: 8px;
1611
+ }
1612
+ .fanui-g-md-3 {
1613
+ --fanui-gutter-x: 12px;
1614
+ --fanui-gutter-y: 12px;
1615
+ }
1616
+ .fanui-gx-md-3 {
1617
+ --fanui-gutter-x: 12px;
1618
+ }
1619
+ .fanui-gy-md-3 {
1620
+ --fanui-gutter-y: 12px;
1621
+ }
1622
+ .fanui-g-md-4 {
1623
+ --fanui-gutter-x: 16px;
1624
+ --fanui-gutter-y: 16px;
1625
+ }
1626
+ .fanui-gx-md-4 {
1627
+ --fanui-gutter-x: 16px;
1628
+ }
1629
+ .fanui-gy-md-4 {
1630
+ --fanui-gutter-y: 16px;
1631
+ }
1632
+ .fanui-g-md-5 {
1633
+ --fanui-gutter-x: 20px;
1634
+ --fanui-gutter-y: 20px;
1635
+ }
1636
+ .fanui-gx-md-5 {
1637
+ --fanui-gutter-x: 20px;
1638
+ }
1639
+ .fanui-gy-md-5 {
1640
+ --fanui-gutter-y: 20px;
1641
+ }
1642
+ .fanui-g-md-6 {
1643
+ --fanui-gutter-x: 24px;
1644
+ --fanui-gutter-y: 24px;
1645
+ }
1646
+ .fanui-gx-md-6 {
1647
+ --fanui-gutter-x: 24px;
1648
+ }
1649
+ .fanui-gy-md-6 {
1650
+ --fanui-gutter-y: 24px;
1651
+ }
1652
+ .fanui-g-md-8 {
1653
+ --fanui-gutter-x: 32px;
1654
+ --fanui-gutter-y: 32px;
1655
+ }
1656
+ .fanui-gx-md-8 {
1657
+ --fanui-gutter-x: 32px;
1658
+ }
1659
+ .fanui-gy-md-8 {
1660
+ --fanui-gutter-y: 32px;
1661
+ }
1662
+ .fanui-g-md-10 {
1663
+ --fanui-gutter-x: 40px;
1664
+ --fanui-gutter-y: 40px;
1665
+ }
1666
+ .fanui-gx-md-10 {
1667
+ --fanui-gutter-x: 40px;
1668
+ }
1669
+ .fanui-gy-md-10 {
1670
+ --fanui-gutter-y: 40px;
1671
+ }
1672
+ }
1673
+ @media (min-width: 992px) {
1674
+ .fanui-g-lg-0 {
1675
+ --fanui-gutter-x: 0;
1676
+ --fanui-gutter-y: 0;
1677
+ }
1678
+ .fanui-gx-lg-0 {
1679
+ --fanui-gutter-x: 0;
1680
+ }
1681
+ .fanui-gy-lg-0 {
1682
+ --fanui-gutter-y: 0;
1683
+ }
1684
+ .fanui-g-lg-1 {
1685
+ --fanui-gutter-x: 4px;
1686
+ --fanui-gutter-y: 4px;
1687
+ }
1688
+ .fanui-gx-lg-1 {
1689
+ --fanui-gutter-x: 4px;
1690
+ }
1691
+ .fanui-gy-lg-1 {
1692
+ --fanui-gutter-y: 4px;
1693
+ }
1694
+ .fanui-g-lg-2 {
1695
+ --fanui-gutter-x: 8px;
1696
+ --fanui-gutter-y: 8px;
1697
+ }
1698
+ .fanui-gx-lg-2 {
1699
+ --fanui-gutter-x: 8px;
1700
+ }
1701
+ .fanui-gy-lg-2 {
1702
+ --fanui-gutter-y: 8px;
1703
+ }
1704
+ .fanui-g-lg-3 {
1705
+ --fanui-gutter-x: 12px;
1706
+ --fanui-gutter-y: 12px;
1707
+ }
1708
+ .fanui-gx-lg-3 {
1709
+ --fanui-gutter-x: 12px;
1710
+ }
1711
+ .fanui-gy-lg-3 {
1712
+ --fanui-gutter-y: 12px;
1713
+ }
1714
+ .fanui-g-lg-4 {
1715
+ --fanui-gutter-x: 16px;
1716
+ --fanui-gutter-y: 16px;
1717
+ }
1718
+ .fanui-gx-lg-4 {
1719
+ --fanui-gutter-x: 16px;
1720
+ }
1721
+ .fanui-gy-lg-4 {
1722
+ --fanui-gutter-y: 16px;
1723
+ }
1724
+ .fanui-g-lg-5 {
1725
+ --fanui-gutter-x: 20px;
1726
+ --fanui-gutter-y: 20px;
1727
+ }
1728
+ .fanui-gx-lg-5 {
1729
+ --fanui-gutter-x: 20px;
1730
+ }
1731
+ .fanui-gy-lg-5 {
1732
+ --fanui-gutter-y: 20px;
1733
+ }
1734
+ .fanui-g-lg-6 {
1735
+ --fanui-gutter-x: 24px;
1736
+ --fanui-gutter-y: 24px;
1737
+ }
1738
+ .fanui-gx-lg-6 {
1739
+ --fanui-gutter-x: 24px;
1740
+ }
1741
+ .fanui-gy-lg-6 {
1742
+ --fanui-gutter-y: 24px;
1743
+ }
1744
+ .fanui-g-lg-8 {
1745
+ --fanui-gutter-x: 32px;
1746
+ --fanui-gutter-y: 32px;
1747
+ }
1748
+ .fanui-gx-lg-8 {
1749
+ --fanui-gutter-x: 32px;
1750
+ }
1751
+ .fanui-gy-lg-8 {
1752
+ --fanui-gutter-y: 32px;
1753
+ }
1754
+ .fanui-g-lg-10 {
1755
+ --fanui-gutter-x: 40px;
1756
+ --fanui-gutter-y: 40px;
1757
+ }
1758
+ .fanui-gx-lg-10 {
1759
+ --fanui-gutter-x: 40px;
1760
+ }
1761
+ .fanui-gy-lg-10 {
1762
+ --fanui-gutter-y: 40px;
1763
+ }
1764
+ }
1765
+ @media (min-width: 1200px) {
1766
+ .fanui-g-xl-0 {
1767
+ --fanui-gutter-x: 0;
1768
+ --fanui-gutter-y: 0;
1769
+ }
1770
+ .fanui-gx-xl-0 {
1771
+ --fanui-gutter-x: 0;
1772
+ }
1773
+ .fanui-gy-xl-0 {
1774
+ --fanui-gutter-y: 0;
1775
+ }
1776
+ .fanui-g-xl-1 {
1777
+ --fanui-gutter-x: 4px;
1778
+ --fanui-gutter-y: 4px;
1779
+ }
1780
+ .fanui-gx-xl-1 {
1781
+ --fanui-gutter-x: 4px;
1782
+ }
1783
+ .fanui-gy-xl-1 {
1784
+ --fanui-gutter-y: 4px;
1785
+ }
1786
+ .fanui-g-xl-2 {
1787
+ --fanui-gutter-x: 8px;
1788
+ --fanui-gutter-y: 8px;
1789
+ }
1790
+ .fanui-gx-xl-2 {
1791
+ --fanui-gutter-x: 8px;
1792
+ }
1793
+ .fanui-gy-xl-2 {
1794
+ --fanui-gutter-y: 8px;
1795
+ }
1796
+ .fanui-g-xl-3 {
1797
+ --fanui-gutter-x: 12px;
1798
+ --fanui-gutter-y: 12px;
1799
+ }
1800
+ .fanui-gx-xl-3 {
1801
+ --fanui-gutter-x: 12px;
1802
+ }
1803
+ .fanui-gy-xl-3 {
1804
+ --fanui-gutter-y: 12px;
1805
+ }
1806
+ .fanui-g-xl-4 {
1807
+ --fanui-gutter-x: 16px;
1808
+ --fanui-gutter-y: 16px;
1809
+ }
1810
+ .fanui-gx-xl-4 {
1811
+ --fanui-gutter-x: 16px;
1812
+ }
1813
+ .fanui-gy-xl-4 {
1814
+ --fanui-gutter-y: 16px;
1815
+ }
1816
+ .fanui-g-xl-5 {
1817
+ --fanui-gutter-x: 20px;
1818
+ --fanui-gutter-y: 20px;
1819
+ }
1820
+ .fanui-gx-xl-5 {
1821
+ --fanui-gutter-x: 20px;
1822
+ }
1823
+ .fanui-gy-xl-5 {
1824
+ --fanui-gutter-y: 20px;
1825
+ }
1826
+ .fanui-g-xl-6 {
1827
+ --fanui-gutter-x: 24px;
1828
+ --fanui-gutter-y: 24px;
1829
+ }
1830
+ .fanui-gx-xl-6 {
1831
+ --fanui-gutter-x: 24px;
1832
+ }
1833
+ .fanui-gy-xl-6 {
1834
+ --fanui-gutter-y: 24px;
1835
+ }
1836
+ .fanui-g-xl-8 {
1837
+ --fanui-gutter-x: 32px;
1838
+ --fanui-gutter-y: 32px;
1839
+ }
1840
+ .fanui-gx-xl-8 {
1841
+ --fanui-gutter-x: 32px;
1842
+ }
1843
+ .fanui-gy-xl-8 {
1844
+ --fanui-gutter-y: 32px;
1845
+ }
1846
+ .fanui-g-xl-10 {
1847
+ --fanui-gutter-x: 40px;
1848
+ --fanui-gutter-y: 40px;
1849
+ }
1850
+ .fanui-gx-xl-10 {
1851
+ --fanui-gutter-x: 40px;
1852
+ }
1853
+ .fanui-gy-xl-10 {
1854
+ --fanui-gutter-y: 40px;
1855
+ }
1856
+ }
1857
+ @media (min-width: 1400px) {
1858
+ .fanui-g-xxl-0 {
1859
+ --fanui-gutter-x: 0;
1860
+ --fanui-gutter-y: 0;
1861
+ }
1862
+ .fanui-gx-xxl-0 {
1863
+ --fanui-gutter-x: 0;
1864
+ }
1865
+ .fanui-gy-xxl-0 {
1866
+ --fanui-gutter-y: 0;
1867
+ }
1868
+ .fanui-g-xxl-1 {
1869
+ --fanui-gutter-x: 4px;
1870
+ --fanui-gutter-y: 4px;
1871
+ }
1872
+ .fanui-gx-xxl-1 {
1873
+ --fanui-gutter-x: 4px;
1874
+ }
1875
+ .fanui-gy-xxl-1 {
1876
+ --fanui-gutter-y: 4px;
1877
+ }
1878
+ .fanui-g-xxl-2 {
1879
+ --fanui-gutter-x: 8px;
1880
+ --fanui-gutter-y: 8px;
1881
+ }
1882
+ .fanui-gx-xxl-2 {
1883
+ --fanui-gutter-x: 8px;
1884
+ }
1885
+ .fanui-gy-xxl-2 {
1886
+ --fanui-gutter-y: 8px;
1887
+ }
1888
+ .fanui-g-xxl-3 {
1889
+ --fanui-gutter-x: 12px;
1890
+ --fanui-gutter-y: 12px;
1891
+ }
1892
+ .fanui-gx-xxl-3 {
1893
+ --fanui-gutter-x: 12px;
1894
+ }
1895
+ .fanui-gy-xxl-3 {
1896
+ --fanui-gutter-y: 12px;
1897
+ }
1898
+ .fanui-g-xxl-4 {
1899
+ --fanui-gutter-x: 16px;
1900
+ --fanui-gutter-y: 16px;
1901
+ }
1902
+ .fanui-gx-xxl-4 {
1903
+ --fanui-gutter-x: 16px;
1904
+ }
1905
+ .fanui-gy-xxl-4 {
1906
+ --fanui-gutter-y: 16px;
1907
+ }
1908
+ .fanui-g-xxl-5 {
1909
+ --fanui-gutter-x: 20px;
1910
+ --fanui-gutter-y: 20px;
1911
+ }
1912
+ .fanui-gx-xxl-5 {
1913
+ --fanui-gutter-x: 20px;
1914
+ }
1915
+ .fanui-gy-xxl-5 {
1916
+ --fanui-gutter-y: 20px;
1917
+ }
1918
+ .fanui-g-xxl-6 {
1919
+ --fanui-gutter-x: 24px;
1920
+ --fanui-gutter-y: 24px;
1921
+ }
1922
+ .fanui-gx-xxl-6 {
1923
+ --fanui-gutter-x: 24px;
1924
+ }
1925
+ .fanui-gy-xxl-6 {
1926
+ --fanui-gutter-y: 24px;
1927
+ }
1928
+ .fanui-g-xxl-8 {
1929
+ --fanui-gutter-x: 32px;
1930
+ --fanui-gutter-y: 32px;
1931
+ }
1932
+ .fanui-gx-xxl-8 {
1933
+ --fanui-gutter-x: 32px;
1934
+ }
1935
+ .fanui-gy-xxl-8 {
1936
+ --fanui-gutter-y: 32px;
1937
+ }
1938
+ .fanui-g-xxl-10 {
1939
+ --fanui-gutter-x: 40px;
1940
+ --fanui-gutter-y: 40px;
1941
+ }
1942
+ .fanui-gx-xxl-10 {
1943
+ --fanui-gutter-x: 40px;
1944
+ }
1945
+ .fanui-gy-xxl-10 {
1946
+ --fanui-gutter-y: 40px;
1947
+ }
1948
+ }
1949
+ .fanui-grid {
1950
+ display: grid;
1951
+ gap: var(--fanui-space-4);
1952
+ }
1953
+
1954
+ .fanui-grid-cols-1 {
1955
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1956
+ }
1957
+
1958
+ .fanui-grid-cols-2 {
1959
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1960
+ }
1961
+
1962
+ .fanui-grid-cols-3 {
1963
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1964
+ }
1965
+
1966
+ .fanui-grid-cols-4 {
1967
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1968
+ }
1969
+
1970
+ .fanui-grid-cols-5 {
1971
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1972
+ }
1973
+
1974
+ .fanui-grid-cols-6 {
1975
+ grid-template-columns: repeat(6, minmax(0, 1fr));
1976
+ }
1977
+
1978
+ .fanui-grid-cols-7 {
1979
+ grid-template-columns: repeat(7, minmax(0, 1fr));
1980
+ }
1981
+
1982
+ .fanui-grid-cols-8 {
1983
+ grid-template-columns: repeat(8, minmax(0, 1fr));
1984
+ }
1985
+
1986
+ .fanui-grid-cols-9 {
1987
+ grid-template-columns: repeat(9, minmax(0, 1fr));
1988
+ }
1989
+
1990
+ .fanui-grid-cols-10 {
1991
+ grid-template-columns: repeat(10, minmax(0, 1fr));
1992
+ }
1993
+
1994
+ .fanui-grid-cols-11 {
1995
+ grid-template-columns: repeat(11, minmax(0, 1fr));
1996
+ }
1997
+
1998
+ .fanui-grid-cols-12 {
1999
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2000
+ }
2001
+
2002
+ .fanui-grid-auto-xs {
2003
+ display: grid;
2004
+ grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
2005
+ gap: 16px;
2006
+ }
2007
+
2008
+ .fanui-grid-auto-sm {
2009
+ display: grid;
2010
+ grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
2011
+ gap: 16px;
2012
+ }
2013
+
2014
+ .fanui-grid-auto-md {
2015
+ display: grid;
2016
+ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
2017
+ gap: 16px;
2018
+ }
2019
+
2020
+ .fanui-grid-auto-lg {
2021
+ display: grid;
2022
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
2023
+ gap: 16px;
2024
+ }
2025
+
2026
+ .fanui-grid-auto-xl {
2027
+ display: grid;
2028
+ grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
2029
+ gap: 16px;
2030
+ }
2031
+
2032
+ .fanui-grid-cols-1 {
2033
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2034
+ }
2035
+
2036
+ .fanui-grid-cols-2 {
2037
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2038
+ }
2039
+
2040
+ .fanui-grid-cols-3 {
2041
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2042
+ }
2043
+
2044
+ .fanui-grid-cols-4 {
2045
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2046
+ }
2047
+
2048
+ .fanui-grid-cols-5 {
2049
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2050
+ }
2051
+
2052
+ .fanui-grid-cols-6 {
2053
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2054
+ }
2055
+
2056
+ .fanui-grid-cols-7 {
2057
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2058
+ }
2059
+
2060
+ .fanui-grid-cols-8 {
2061
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2062
+ }
2063
+
2064
+ .fanui-grid-cols-9 {
2065
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2066
+ }
2067
+
2068
+ .fanui-grid-cols-10 {
2069
+ grid-template-columns: repeat(10, minmax(0, 1fr));
2070
+ }
2071
+
2072
+ .fanui-grid-cols-11 {
2073
+ grid-template-columns: repeat(11, minmax(0, 1fr));
2074
+ }
2075
+
2076
+ .fanui-grid-cols-12 {
2077
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2078
+ }
2079
+
2080
+ .fanui-grid-span-full {
2081
+ grid-column: 1/-1;
2082
+ }
2083
+
2084
+ .fanui-grid-span-1 {
2085
+ grid-column: span 1/span 1;
2086
+ }
2087
+
2088
+ .fanui-grid-rows-1 {
2089
+ grid-row: span 1/span 1;
2090
+ }
2091
+
2092
+ .fanui-grid-span-2 {
2093
+ grid-column: span 2/span 2;
2094
+ }
2095
+
2096
+ .fanui-grid-rows-2 {
2097
+ grid-row: span 2/span 2;
2098
+ }
2099
+
2100
+ .fanui-grid-span-3 {
2101
+ grid-column: span 3/span 3;
2102
+ }
2103
+
2104
+ .fanui-grid-rows-3 {
2105
+ grid-row: span 3/span 3;
2106
+ }
2107
+
2108
+ .fanui-grid-span-4 {
2109
+ grid-column: span 4/span 4;
2110
+ }
2111
+
2112
+ .fanui-grid-rows-4 {
2113
+ grid-row: span 4/span 4;
2114
+ }
2115
+
2116
+ .fanui-grid-span-5 {
2117
+ grid-column: span 5/span 5;
2118
+ }
2119
+
2120
+ .fanui-grid-rows-5 {
2121
+ grid-row: span 5/span 5;
2122
+ }
2123
+
2124
+ .fanui-grid-span-6 {
2125
+ grid-column: span 6/span 6;
2126
+ }
2127
+
2128
+ .fanui-grid-rows-6 {
2129
+ grid-row: span 6/span 6;
2130
+ }
2131
+
2132
+ .fanui-grid-span-7 {
2133
+ grid-column: span 7/span 7;
2134
+ }
2135
+
2136
+ .fanui-grid-rows-7 {
2137
+ grid-row: span 7/span 7;
2138
+ }
2139
+
2140
+ .fanui-grid-span-8 {
2141
+ grid-column: span 8/span 8;
2142
+ }
2143
+
2144
+ .fanui-grid-rows-8 {
2145
+ grid-row: span 8/span 8;
2146
+ }
2147
+
2148
+ .fanui-grid-span-9 {
2149
+ grid-column: span 9/span 9;
2150
+ }
2151
+
2152
+ .fanui-grid-rows-9 {
2153
+ grid-row: span 9/span 9;
2154
+ }
2155
+
2156
+ .fanui-grid-span-10 {
2157
+ grid-column: span 10/span 10;
2158
+ }
2159
+
2160
+ .fanui-grid-rows-10 {
2161
+ grid-row: span 10/span 10;
2162
+ }
2163
+
2164
+ .fanui-grid-span-11 {
2165
+ grid-column: span 11/span 11;
2166
+ }
2167
+
2168
+ .fanui-grid-rows-11 {
2169
+ grid-row: span 11/span 11;
2170
+ }
2171
+
2172
+ .fanui-grid-span-12 {
2173
+ grid-column: span 12/span 12;
2174
+ }
2175
+
2176
+ .fanui-grid-rows-12 {
2177
+ grid-row: span 12/span 12;
2178
+ }
2179
+
2180
+ @media (min-width: 576px) {
2181
+ .fanui-grid-cols-sm-1 {
2182
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2183
+ }
2184
+ .fanui-grid-cols-sm-2 {
2185
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2186
+ }
2187
+ .fanui-grid-cols-sm-3 {
2188
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2189
+ }
2190
+ .fanui-grid-cols-sm-4 {
2191
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2192
+ }
2193
+ .fanui-grid-cols-sm-5 {
2194
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2195
+ }
2196
+ .fanui-grid-cols-sm-6 {
2197
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2198
+ }
2199
+ .fanui-grid-cols-sm-7 {
2200
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2201
+ }
2202
+ .fanui-grid-cols-sm-8 {
2203
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2204
+ }
2205
+ .fanui-grid-cols-sm-9 {
2206
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2207
+ }
2208
+ .fanui-grid-cols-sm-10 {
2209
+ grid-template-columns: repeat(10, minmax(0, 1fr));
2210
+ }
2211
+ .fanui-grid-cols-sm-11 {
2212
+ grid-template-columns: repeat(11, minmax(0, 1fr));
2213
+ }
2214
+ .fanui-grid-cols-sm-12 {
2215
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2216
+ }
2217
+ .fanui-grid-span-sm-full {
2218
+ grid-column: 1/-1;
2219
+ }
2220
+ .fanui-grid-span-sm-1 {
2221
+ grid-column: span 1/span 1;
2222
+ }
2223
+ .fanui-grid-rows-sm-1 {
2224
+ grid-row: span 1/span 1;
2225
+ }
2226
+ .fanui-grid-span-sm-2 {
2227
+ grid-column: span 2/span 2;
2228
+ }
2229
+ .fanui-grid-rows-sm-2 {
2230
+ grid-row: span 2/span 2;
2231
+ }
2232
+ .fanui-grid-span-sm-3 {
2233
+ grid-column: span 3/span 3;
2234
+ }
2235
+ .fanui-grid-rows-sm-3 {
2236
+ grid-row: span 3/span 3;
2237
+ }
2238
+ .fanui-grid-span-sm-4 {
2239
+ grid-column: span 4/span 4;
2240
+ }
2241
+ .fanui-grid-rows-sm-4 {
2242
+ grid-row: span 4/span 4;
2243
+ }
2244
+ .fanui-grid-span-sm-5 {
2245
+ grid-column: span 5/span 5;
2246
+ }
2247
+ .fanui-grid-rows-sm-5 {
2248
+ grid-row: span 5/span 5;
2249
+ }
2250
+ .fanui-grid-span-sm-6 {
2251
+ grid-column: span 6/span 6;
2252
+ }
2253
+ .fanui-grid-rows-sm-6 {
2254
+ grid-row: span 6/span 6;
2255
+ }
2256
+ .fanui-grid-span-sm-7 {
2257
+ grid-column: span 7/span 7;
2258
+ }
2259
+ .fanui-grid-rows-sm-7 {
2260
+ grid-row: span 7/span 7;
2261
+ }
2262
+ .fanui-grid-span-sm-8 {
2263
+ grid-column: span 8/span 8;
2264
+ }
2265
+ .fanui-grid-rows-sm-8 {
2266
+ grid-row: span 8/span 8;
2267
+ }
2268
+ .fanui-grid-span-sm-9 {
2269
+ grid-column: span 9/span 9;
2270
+ }
2271
+ .fanui-grid-rows-sm-9 {
2272
+ grid-row: span 9/span 9;
2273
+ }
2274
+ .fanui-grid-span-sm-10 {
2275
+ grid-column: span 10/span 10;
2276
+ }
2277
+ .fanui-grid-rows-sm-10 {
2278
+ grid-row: span 10/span 10;
2279
+ }
2280
+ .fanui-grid-span-sm-11 {
2281
+ grid-column: span 11/span 11;
2282
+ }
2283
+ .fanui-grid-rows-sm-11 {
2284
+ grid-row: span 11/span 11;
2285
+ }
2286
+ .fanui-grid-span-sm-12 {
2287
+ grid-column: span 12/span 12;
2288
+ }
2289
+ .fanui-grid-rows-sm-12 {
2290
+ grid-row: span 12/span 12;
2291
+ }
2292
+ }
2293
+ @media (min-width: 768px) {
2294
+ .fanui-grid-cols-md-1 {
2295
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2296
+ }
2297
+ .fanui-grid-cols-md-2 {
2298
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2299
+ }
2300
+ .fanui-grid-cols-md-3 {
2301
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2302
+ }
2303
+ .fanui-grid-cols-md-4 {
2304
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2305
+ }
2306
+ .fanui-grid-cols-md-5 {
2307
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2308
+ }
2309
+ .fanui-grid-cols-md-6 {
2310
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2311
+ }
2312
+ .fanui-grid-cols-md-7 {
2313
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2314
+ }
2315
+ .fanui-grid-cols-md-8 {
2316
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2317
+ }
2318
+ .fanui-grid-cols-md-9 {
2319
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2320
+ }
2321
+ .fanui-grid-cols-md-10 {
2322
+ grid-template-columns: repeat(10, minmax(0, 1fr));
2323
+ }
2324
+ .fanui-grid-cols-md-11 {
2325
+ grid-template-columns: repeat(11, minmax(0, 1fr));
2326
+ }
2327
+ .fanui-grid-cols-md-12 {
2328
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2329
+ }
2330
+ .fanui-grid-span-md-full {
2331
+ grid-column: 1/-1;
2332
+ }
2333
+ .fanui-grid-span-md-1 {
2334
+ grid-column: span 1/span 1;
2335
+ }
2336
+ .fanui-grid-rows-md-1 {
2337
+ grid-row: span 1/span 1;
2338
+ }
2339
+ .fanui-grid-span-md-2 {
2340
+ grid-column: span 2/span 2;
2341
+ }
2342
+ .fanui-grid-rows-md-2 {
2343
+ grid-row: span 2/span 2;
2344
+ }
2345
+ .fanui-grid-span-md-3 {
2346
+ grid-column: span 3/span 3;
2347
+ }
2348
+ .fanui-grid-rows-md-3 {
2349
+ grid-row: span 3/span 3;
2350
+ }
2351
+ .fanui-grid-span-md-4 {
2352
+ grid-column: span 4/span 4;
2353
+ }
2354
+ .fanui-grid-rows-md-4 {
2355
+ grid-row: span 4/span 4;
2356
+ }
2357
+ .fanui-grid-span-md-5 {
2358
+ grid-column: span 5/span 5;
2359
+ }
2360
+ .fanui-grid-rows-md-5 {
2361
+ grid-row: span 5/span 5;
2362
+ }
2363
+ .fanui-grid-span-md-6 {
2364
+ grid-column: span 6/span 6;
2365
+ }
2366
+ .fanui-grid-rows-md-6 {
2367
+ grid-row: span 6/span 6;
2368
+ }
2369
+ .fanui-grid-span-md-7 {
2370
+ grid-column: span 7/span 7;
2371
+ }
2372
+ .fanui-grid-rows-md-7 {
2373
+ grid-row: span 7/span 7;
2374
+ }
2375
+ .fanui-grid-span-md-8 {
2376
+ grid-column: span 8/span 8;
2377
+ }
2378
+ .fanui-grid-rows-md-8 {
2379
+ grid-row: span 8/span 8;
2380
+ }
2381
+ .fanui-grid-span-md-9 {
2382
+ grid-column: span 9/span 9;
2383
+ }
2384
+ .fanui-grid-rows-md-9 {
2385
+ grid-row: span 9/span 9;
2386
+ }
2387
+ .fanui-grid-span-md-10 {
2388
+ grid-column: span 10/span 10;
2389
+ }
2390
+ .fanui-grid-rows-md-10 {
2391
+ grid-row: span 10/span 10;
2392
+ }
2393
+ .fanui-grid-span-md-11 {
2394
+ grid-column: span 11/span 11;
2395
+ }
2396
+ .fanui-grid-rows-md-11 {
2397
+ grid-row: span 11/span 11;
2398
+ }
2399
+ .fanui-grid-span-md-12 {
2400
+ grid-column: span 12/span 12;
2401
+ }
2402
+ .fanui-grid-rows-md-12 {
2403
+ grid-row: span 12/span 12;
2404
+ }
2405
+ }
2406
+ @media (min-width: 992px) {
2407
+ .fanui-grid-cols-lg-1 {
2408
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2409
+ }
2410
+ .fanui-grid-cols-lg-2 {
2411
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2412
+ }
2413
+ .fanui-grid-cols-lg-3 {
2414
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2415
+ }
2416
+ .fanui-grid-cols-lg-4 {
2417
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2418
+ }
2419
+ .fanui-grid-cols-lg-5 {
2420
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2421
+ }
2422
+ .fanui-grid-cols-lg-6 {
2423
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2424
+ }
2425
+ .fanui-grid-cols-lg-7 {
2426
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2427
+ }
2428
+ .fanui-grid-cols-lg-8 {
2429
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2430
+ }
2431
+ .fanui-grid-cols-lg-9 {
2432
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2433
+ }
2434
+ .fanui-grid-cols-lg-10 {
2435
+ grid-template-columns: repeat(10, minmax(0, 1fr));
2436
+ }
2437
+ .fanui-grid-cols-lg-11 {
2438
+ grid-template-columns: repeat(11, minmax(0, 1fr));
2439
+ }
2440
+ .fanui-grid-cols-lg-12 {
2441
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2442
+ }
2443
+ .fanui-grid-span-lg-full {
2444
+ grid-column: 1/-1;
2445
+ }
2446
+ .fanui-grid-span-lg-1 {
2447
+ grid-column: span 1/span 1;
2448
+ }
2449
+ .fanui-grid-rows-lg-1 {
2450
+ grid-row: span 1/span 1;
2451
+ }
2452
+ .fanui-grid-span-lg-2 {
2453
+ grid-column: span 2/span 2;
2454
+ }
2455
+ .fanui-grid-rows-lg-2 {
2456
+ grid-row: span 2/span 2;
2457
+ }
2458
+ .fanui-grid-span-lg-3 {
2459
+ grid-column: span 3/span 3;
2460
+ }
2461
+ .fanui-grid-rows-lg-3 {
2462
+ grid-row: span 3/span 3;
2463
+ }
2464
+ .fanui-grid-span-lg-4 {
2465
+ grid-column: span 4/span 4;
2466
+ }
2467
+ .fanui-grid-rows-lg-4 {
2468
+ grid-row: span 4/span 4;
2469
+ }
2470
+ .fanui-grid-span-lg-5 {
2471
+ grid-column: span 5/span 5;
2472
+ }
2473
+ .fanui-grid-rows-lg-5 {
2474
+ grid-row: span 5/span 5;
2475
+ }
2476
+ .fanui-grid-span-lg-6 {
2477
+ grid-column: span 6/span 6;
2478
+ }
2479
+ .fanui-grid-rows-lg-6 {
2480
+ grid-row: span 6/span 6;
2481
+ }
2482
+ .fanui-grid-span-lg-7 {
2483
+ grid-column: span 7/span 7;
2484
+ }
2485
+ .fanui-grid-rows-lg-7 {
2486
+ grid-row: span 7/span 7;
2487
+ }
2488
+ .fanui-grid-span-lg-8 {
2489
+ grid-column: span 8/span 8;
2490
+ }
2491
+ .fanui-grid-rows-lg-8 {
2492
+ grid-row: span 8/span 8;
2493
+ }
2494
+ .fanui-grid-span-lg-9 {
2495
+ grid-column: span 9/span 9;
2496
+ }
2497
+ .fanui-grid-rows-lg-9 {
2498
+ grid-row: span 9/span 9;
2499
+ }
2500
+ .fanui-grid-span-lg-10 {
2501
+ grid-column: span 10/span 10;
2502
+ }
2503
+ .fanui-grid-rows-lg-10 {
2504
+ grid-row: span 10/span 10;
2505
+ }
2506
+ .fanui-grid-span-lg-11 {
2507
+ grid-column: span 11/span 11;
2508
+ }
2509
+ .fanui-grid-rows-lg-11 {
2510
+ grid-row: span 11/span 11;
2511
+ }
2512
+ .fanui-grid-span-lg-12 {
2513
+ grid-column: span 12/span 12;
2514
+ }
2515
+ .fanui-grid-rows-lg-12 {
2516
+ grid-row: span 12/span 12;
2517
+ }
2518
+ }
2519
+ @media (min-width: 1200px) {
2520
+ .fanui-grid-cols-xl-1 {
2521
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2522
+ }
2523
+ .fanui-grid-cols-xl-2 {
2524
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2525
+ }
2526
+ .fanui-grid-cols-xl-3 {
2527
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2528
+ }
2529
+ .fanui-grid-cols-xl-4 {
2530
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2531
+ }
2532
+ .fanui-grid-cols-xl-5 {
2533
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2534
+ }
2535
+ .fanui-grid-cols-xl-6 {
2536
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2537
+ }
2538
+ .fanui-grid-cols-xl-7 {
2539
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2540
+ }
2541
+ .fanui-grid-cols-xl-8 {
2542
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2543
+ }
2544
+ .fanui-grid-cols-xl-9 {
2545
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2546
+ }
2547
+ .fanui-grid-cols-xl-10 {
2548
+ grid-template-columns: repeat(10, minmax(0, 1fr));
2549
+ }
2550
+ .fanui-grid-cols-xl-11 {
2551
+ grid-template-columns: repeat(11, minmax(0, 1fr));
2552
+ }
2553
+ .fanui-grid-cols-xl-12 {
2554
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2555
+ }
2556
+ .fanui-grid-span-xl-full {
2557
+ grid-column: 1/-1;
2558
+ }
2559
+ .fanui-grid-span-xl-1 {
2560
+ grid-column: span 1/span 1;
2561
+ }
2562
+ .fanui-grid-rows-xl-1 {
2563
+ grid-row: span 1/span 1;
2564
+ }
2565
+ .fanui-grid-span-xl-2 {
2566
+ grid-column: span 2/span 2;
2567
+ }
2568
+ .fanui-grid-rows-xl-2 {
2569
+ grid-row: span 2/span 2;
2570
+ }
2571
+ .fanui-grid-span-xl-3 {
2572
+ grid-column: span 3/span 3;
2573
+ }
2574
+ .fanui-grid-rows-xl-3 {
2575
+ grid-row: span 3/span 3;
2576
+ }
2577
+ .fanui-grid-span-xl-4 {
2578
+ grid-column: span 4/span 4;
2579
+ }
2580
+ .fanui-grid-rows-xl-4 {
2581
+ grid-row: span 4/span 4;
2582
+ }
2583
+ .fanui-grid-span-xl-5 {
2584
+ grid-column: span 5/span 5;
2585
+ }
2586
+ .fanui-grid-rows-xl-5 {
2587
+ grid-row: span 5/span 5;
2588
+ }
2589
+ .fanui-grid-span-xl-6 {
2590
+ grid-column: span 6/span 6;
2591
+ }
2592
+ .fanui-grid-rows-xl-6 {
2593
+ grid-row: span 6/span 6;
2594
+ }
2595
+ .fanui-grid-span-xl-7 {
2596
+ grid-column: span 7/span 7;
2597
+ }
2598
+ .fanui-grid-rows-xl-7 {
2599
+ grid-row: span 7/span 7;
2600
+ }
2601
+ .fanui-grid-span-xl-8 {
2602
+ grid-column: span 8/span 8;
2603
+ }
2604
+ .fanui-grid-rows-xl-8 {
2605
+ grid-row: span 8/span 8;
2606
+ }
2607
+ .fanui-grid-span-xl-9 {
2608
+ grid-column: span 9/span 9;
2609
+ }
2610
+ .fanui-grid-rows-xl-9 {
2611
+ grid-row: span 9/span 9;
2612
+ }
2613
+ .fanui-grid-span-xl-10 {
2614
+ grid-column: span 10/span 10;
2615
+ }
2616
+ .fanui-grid-rows-xl-10 {
2617
+ grid-row: span 10/span 10;
2618
+ }
2619
+ .fanui-grid-span-xl-11 {
2620
+ grid-column: span 11/span 11;
2621
+ }
2622
+ .fanui-grid-rows-xl-11 {
2623
+ grid-row: span 11/span 11;
2624
+ }
2625
+ .fanui-grid-span-xl-12 {
2626
+ grid-column: span 12/span 12;
2627
+ }
2628
+ .fanui-grid-rows-xl-12 {
2629
+ grid-row: span 12/span 12;
2630
+ }
2631
+ }
2632
+ @media (min-width: 1400px) {
2633
+ .fanui-grid-cols-xxl-1 {
2634
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2635
+ }
2636
+ .fanui-grid-cols-xxl-2 {
2637
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2638
+ }
2639
+ .fanui-grid-cols-xxl-3 {
2640
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2641
+ }
2642
+ .fanui-grid-cols-xxl-4 {
2643
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2644
+ }
2645
+ .fanui-grid-cols-xxl-5 {
2646
+ grid-template-columns: repeat(5, minmax(0, 1fr));
2647
+ }
2648
+ .fanui-grid-cols-xxl-6 {
2649
+ grid-template-columns: repeat(6, minmax(0, 1fr));
2650
+ }
2651
+ .fanui-grid-cols-xxl-7 {
2652
+ grid-template-columns: repeat(7, minmax(0, 1fr));
2653
+ }
2654
+ .fanui-grid-cols-xxl-8 {
2655
+ grid-template-columns: repeat(8, minmax(0, 1fr));
2656
+ }
2657
+ .fanui-grid-cols-xxl-9 {
2658
+ grid-template-columns: repeat(9, minmax(0, 1fr));
2659
+ }
2660
+ .fanui-grid-cols-xxl-10 {
2661
+ grid-template-columns: repeat(10, minmax(0, 1fr));
2662
+ }
2663
+ .fanui-grid-cols-xxl-11 {
2664
+ grid-template-columns: repeat(11, minmax(0, 1fr));
2665
+ }
2666
+ .fanui-grid-cols-xxl-12 {
2667
+ grid-template-columns: repeat(12, minmax(0, 1fr));
2668
+ }
2669
+ .fanui-grid-span-xxl-full {
2670
+ grid-column: 1/-1;
2671
+ }
2672
+ .fanui-grid-span-xxl-1 {
2673
+ grid-column: span 1/span 1;
2674
+ }
2675
+ .fanui-grid-rows-xxl-1 {
2676
+ grid-row: span 1/span 1;
2677
+ }
2678
+ .fanui-grid-span-xxl-2 {
2679
+ grid-column: span 2/span 2;
2680
+ }
2681
+ .fanui-grid-rows-xxl-2 {
2682
+ grid-row: span 2/span 2;
2683
+ }
2684
+ .fanui-grid-span-xxl-3 {
2685
+ grid-column: span 3/span 3;
2686
+ }
2687
+ .fanui-grid-rows-xxl-3 {
2688
+ grid-row: span 3/span 3;
2689
+ }
2690
+ .fanui-grid-span-xxl-4 {
2691
+ grid-column: span 4/span 4;
2692
+ }
2693
+ .fanui-grid-rows-xxl-4 {
2694
+ grid-row: span 4/span 4;
2695
+ }
2696
+ .fanui-grid-span-xxl-5 {
2697
+ grid-column: span 5/span 5;
2698
+ }
2699
+ .fanui-grid-rows-xxl-5 {
2700
+ grid-row: span 5/span 5;
2701
+ }
2702
+ .fanui-grid-span-xxl-6 {
2703
+ grid-column: span 6/span 6;
2704
+ }
2705
+ .fanui-grid-rows-xxl-6 {
2706
+ grid-row: span 6/span 6;
2707
+ }
2708
+ .fanui-grid-span-xxl-7 {
2709
+ grid-column: span 7/span 7;
2710
+ }
2711
+ .fanui-grid-rows-xxl-7 {
2712
+ grid-row: span 7/span 7;
2713
+ }
2714
+ .fanui-grid-span-xxl-8 {
2715
+ grid-column: span 8/span 8;
2716
+ }
2717
+ .fanui-grid-rows-xxl-8 {
2718
+ grid-row: span 8/span 8;
2719
+ }
2720
+ .fanui-grid-span-xxl-9 {
2721
+ grid-column: span 9/span 9;
2722
+ }
2723
+ .fanui-grid-rows-xxl-9 {
2724
+ grid-row: span 9/span 9;
2725
+ }
2726
+ .fanui-grid-span-xxl-10 {
2727
+ grid-column: span 10/span 10;
2728
+ }
2729
+ .fanui-grid-rows-xxl-10 {
2730
+ grid-row: span 10/span 10;
2731
+ }
2732
+ .fanui-grid-span-xxl-11 {
2733
+ grid-column: span 11/span 11;
2734
+ }
2735
+ .fanui-grid-rows-xxl-11 {
2736
+ grid-row: span 11/span 11;
2737
+ }
2738
+ .fanui-grid-span-xxl-12 {
2739
+ grid-column: span 12/span 12;
2740
+ }
2741
+ .fanui-grid-rows-xxl-12 {
2742
+ grid-row: span 12/span 12;
2743
+ }
2744
+ }
2745
+ .fanui-d-none {
2746
+ display: none;
2747
+ }
2748
+
2749
+ .fanui-d-block {
2750
+ display: block;
2751
+ }
2752
+
2753
+ .fanui-d-inline {
2754
+ display: inline;
2755
+ }
2756
+
2757
+ .fanui-d-inline-block {
2758
+ display: inline-block;
2759
+ }
2760
+
2761
+ .fanui-d-flex {
2762
+ display: flex;
2763
+ }
2764
+
2765
+ .fanui-d-inline-flex {
2766
+ display: inline-flex;
2767
+ }
2768
+
2769
+ .fanui-d-grid {
2770
+ display: grid;
2771
+ }
2772
+
2773
+ .fanui-d-inline-grid {
2774
+ display: inline-grid;
2775
+ }
2776
+
2777
+ .fanui-d-contents {
2778
+ display: contents;
2779
+ }
2780
+
2781
+ .fanui-d-flow-root {
2782
+ display: flow-root;
2783
+ }
2784
+
2785
+ .fanui-flex-row {
2786
+ flex-direction: row;
2787
+ }
2788
+
2789
+ .fanui-flex-row-reverse {
2790
+ flex-direction: row-reverse;
2791
+ }
2792
+
2793
+ .fanui-flex-col {
2794
+ flex-direction: column;
2795
+ }
2796
+
2797
+ .fanui-flex-col-reverse {
2798
+ flex-direction: column-reverse;
2799
+ }
2800
+
2801
+ .fanui-flex-wrap {
2802
+ flex-wrap: wrap;
2803
+ }
2804
+
2805
+ .fanui-flex-wrap-reverse {
2806
+ flex-wrap: wrap-reverse;
2807
+ }
2808
+
2809
+ .fanui-flex-nowrap {
2810
+ flex-wrap: nowrap;
2811
+ }
2812
+
2813
+ .fanui-justify-start {
2814
+ justify-content: flex-start;
2815
+ }
2816
+
2817
+ .fanui-justify-end {
2818
+ justify-content: flex-end;
2819
+ }
2820
+
2821
+ .fanui-justify-center {
2822
+ justify-content: center;
2823
+ }
2824
+
2825
+ .fanui-justify-between {
2826
+ justify-content: space-between;
2827
+ }
2828
+
2829
+ .fanui-justify-around {
2830
+ justify-content: space-around;
2831
+ }
2832
+
2833
+ .fanui-justify-evenly {
2834
+ justify-content: space-evenly;
2835
+ }
2836
+
2837
+ .fanui-justify-stretch {
2838
+ justify-content: stretch;
2839
+ }
2840
+
2841
+ .fanui-items-start {
2842
+ align-items: flex-start;
2843
+ }
2844
+
2845
+ .fanui-content-start {
2846
+ align-content: flex-start;
2847
+ }
2848
+
2849
+ .fanui-self-start {
2850
+ align-self: flex-start;
2851
+ }
2852
+
2853
+ .fanui-items-end {
2854
+ align-items: flex-end;
2855
+ }
2856
+
2857
+ .fanui-content-end {
2858
+ align-content: flex-end;
2859
+ }
2860
+
2861
+ .fanui-self-end {
2862
+ align-self: flex-end;
2863
+ }
2864
+
2865
+ .fanui-items-center {
2866
+ align-items: center;
2867
+ }
2868
+
2869
+ .fanui-content-center {
2870
+ align-content: center;
2871
+ }
2872
+
2873
+ .fanui-self-center {
2874
+ align-self: center;
2875
+ }
2876
+
2877
+ .fanui-items-baseline {
2878
+ align-items: baseline;
2879
+ }
2880
+
2881
+ .fanui-content-baseline {
2882
+ align-content: baseline;
2883
+ }
2884
+
2885
+ .fanui-self-baseline {
2886
+ align-self: baseline;
2887
+ }
2888
+
2889
+ .fanui-items-stretch {
2890
+ align-items: stretch;
2891
+ }
2892
+
2893
+ .fanui-content-stretch {
2894
+ align-content: stretch;
2895
+ }
2896
+
2897
+ .fanui-self-stretch {
2898
+ align-self: stretch;
2899
+ }
2900
+
2901
+ .fanui-place-center {
2902
+ place-items: center;
2903
+ }
2904
+
2905
+ .fanui-place-start {
2906
+ place-items: start;
2907
+ }
2908
+
2909
+ .fanui-place-end {
2910
+ place-items: end;
2911
+ }
2912
+
2913
+ .fanui-flex-1 {
2914
+ flex: 1 1 0%;
2915
+ }
2916
+
2917
+ .fanui-flex-auto {
2918
+ flex: 1 1 auto;
2919
+ }
2920
+
2921
+ .fanui-flex-initial {
2922
+ flex: 0 1 auto;
2923
+ }
2924
+
2925
+ .fanui-flex-none {
2926
+ flex: none;
2927
+ }
2928
+
2929
+ .fanui-grow {
2930
+ flex-grow: 1;
2931
+ }
2932
+
2933
+ .fanui-grow-0 {
2934
+ flex-grow: 0;
2935
+ }
2936
+
2937
+ .fanui-shrink {
2938
+ flex-shrink: 1;
2939
+ }
2940
+
2941
+ .fanui-shrink-0 {
2942
+ flex-shrink: 0;
2943
+ }
2944
+
2945
+ .fanui-basis-auto {
2946
+ flex-basis: auto;
2947
+ }
2948
+
2949
+ .fanui-basis-0 {
2950
+ flex-basis: 0%;
2951
+ }
2952
+
2953
+ .fanui-basis-full {
2954
+ flex-basis: 100%;
2955
+ }
2956
+
2957
+ .fanui-basis-1-2 {
2958
+ flex-basis: 50%;
2959
+ }
2960
+
2961
+ .fanui-basis-1-3 {
2962
+ flex-basis: 33.333333%;
2963
+ }
2964
+
2965
+ .fanui-basis-2-3 {
2966
+ flex-basis: 66.666667%;
2967
+ }
2968
+
2969
+ .fanui-basis-1-4 {
2970
+ flex-basis: 25%;
2971
+ }
2972
+
2973
+ .fanui-basis-3-4 {
2974
+ flex-basis: 75%;
2975
+ }
2976
+
2977
+ .fanui-order-0 {
2978
+ order: 0;
2979
+ }
2980
+
2981
+ .fanui-order-1 {
2982
+ order: 1;
2983
+ }
2984
+
2985
+ .fanui-order-2 {
2986
+ order: 2;
2987
+ }
2988
+
2989
+ .fanui-order-3 {
2990
+ order: 3;
2991
+ }
2992
+
2993
+ .fanui-order-4 {
2994
+ order: 4;
2995
+ }
2996
+
2997
+ .fanui-order-5 {
2998
+ order: 5;
2999
+ }
3000
+
3001
+ .fanui-order-6 {
3002
+ order: 6;
3003
+ }
3004
+
3005
+ .fanui-order-7 {
3006
+ order: 7;
3007
+ }
3008
+
3009
+ .fanui-order-8 {
3010
+ order: 8;
3011
+ }
3012
+
3013
+ .fanui-order-9 {
3014
+ order: 9;
3015
+ }
3016
+
3017
+ .fanui-order-10 {
3018
+ order: 10;
3019
+ }
3020
+
3021
+ .fanui-order-11 {
3022
+ order: 11;
3023
+ }
3024
+
3025
+ .fanui-order-12 {
3026
+ order: 12;
3027
+ }
3028
+
3029
+ .fanui-order-first {
3030
+ order: -9999;
3031
+ }
3032
+
3033
+ .fanui-order-last {
3034
+ order: 9999;
3035
+ }
3036
+
3037
+ .fanui-gap-0 {
3038
+ gap: 0;
3039
+ }
3040
+
3041
+ .fanui-gap-x-0 {
3042
+ column-gap: 0;
3043
+ }
3044
+
3045
+ .fanui-gap-y-0 {
3046
+ row-gap: 0;
3047
+ }
3048
+
3049
+ .fanui-gap-1 {
3050
+ gap: 4px;
3051
+ }
3052
+
3053
+ .fanui-gap-x-1 {
3054
+ column-gap: 4px;
3055
+ }
3056
+
3057
+ .fanui-gap-y-1 {
3058
+ row-gap: 4px;
3059
+ }
3060
+
3061
+ .fanui-gap-2 {
3062
+ gap: 8px;
3063
+ }
3064
+
3065
+ .fanui-gap-x-2 {
3066
+ column-gap: 8px;
3067
+ }
3068
+
3069
+ .fanui-gap-y-2 {
3070
+ row-gap: 8px;
3071
+ }
3072
+
3073
+ .fanui-gap-3 {
3074
+ gap: 12px;
3075
+ }
3076
+
3077
+ .fanui-gap-x-3 {
3078
+ column-gap: 12px;
3079
+ }
3080
+
3081
+ .fanui-gap-y-3 {
3082
+ row-gap: 12px;
3083
+ }
3084
+
3085
+ .fanui-gap-4 {
3086
+ gap: 16px;
3087
+ }
3088
+
3089
+ .fanui-gap-x-4 {
3090
+ column-gap: 16px;
3091
+ }
3092
+
3093
+ .fanui-gap-y-4 {
3094
+ row-gap: 16px;
3095
+ }
3096
+
3097
+ .fanui-gap-5 {
3098
+ gap: 20px;
3099
+ }
3100
+
3101
+ .fanui-gap-x-5 {
3102
+ column-gap: 20px;
3103
+ }
3104
+
3105
+ .fanui-gap-y-5 {
3106
+ row-gap: 20px;
3107
+ }
3108
+
3109
+ .fanui-gap-6 {
3110
+ gap: 24px;
3111
+ }
3112
+
3113
+ .fanui-gap-x-6 {
3114
+ column-gap: 24px;
3115
+ }
3116
+
3117
+ .fanui-gap-y-6 {
3118
+ row-gap: 24px;
3119
+ }
3120
+
3121
+ .fanui-gap-8 {
3122
+ gap: 32px;
3123
+ }
3124
+
3125
+ .fanui-gap-x-8 {
3126
+ column-gap: 32px;
3127
+ }
3128
+
3129
+ .fanui-gap-y-8 {
3130
+ row-gap: 32px;
3131
+ }
3132
+
3133
+ .fanui-gap-10 {
3134
+ gap: 40px;
3135
+ }
3136
+
3137
+ .fanui-gap-x-10 {
3138
+ column-gap: 40px;
3139
+ }
3140
+
3141
+ .fanui-gap-y-10 {
3142
+ row-gap: 40px;
3143
+ }
3144
+
3145
+ .fanui-gap-12 {
3146
+ gap: 48px;
3147
+ }
3148
+
3149
+ .fanui-gap-x-12 {
3150
+ column-gap: 48px;
3151
+ }
3152
+
3153
+ .fanui-gap-y-12 {
3154
+ row-gap: 48px;
3155
+ }
3156
+
3157
+ .fanui-gap-16 {
3158
+ gap: 64px;
3159
+ }
3160
+
3161
+ .fanui-gap-x-16 {
3162
+ column-gap: 64px;
3163
+ }
3164
+
3165
+ .fanui-gap-y-16 {
3166
+ row-gap: 64px;
3167
+ }
3168
+
3169
+ .fanui-gap-20 {
3170
+ gap: 80px;
3171
+ }
3172
+
3173
+ .fanui-gap-x-20 {
3174
+ column-gap: 80px;
3175
+ }
3176
+
3177
+ .fanui-gap-y-20 {
3178
+ row-gap: 80px;
3179
+ }
3180
+
3181
+ .fanui-gap-24 {
3182
+ gap: 96px;
3183
+ }
3184
+
3185
+ .fanui-gap-x-24 {
3186
+ column-gap: 96px;
3187
+ }
3188
+
3189
+ .fanui-gap-y-24 {
3190
+ row-gap: 96px;
3191
+ }
3192
+
3193
+ .fanui-d-none {
3194
+ display: none;
3195
+ }
3196
+
3197
+ .fanui-d-block {
3198
+ display: block;
3199
+ }
3200
+
3201
+ .fanui-d-inline {
3202
+ display: inline;
3203
+ }
3204
+
3205
+ .fanui-d-inline-block {
3206
+ display: inline-block;
3207
+ }
3208
+
3209
+ .fanui-d-flex {
3210
+ display: flex;
3211
+ }
3212
+
3213
+ .fanui-d-inline-flex {
3214
+ display: inline-flex;
3215
+ }
3216
+
3217
+ .fanui-d-grid {
3218
+ display: grid;
3219
+ }
3220
+
3221
+ .fanui-d-inline-grid {
3222
+ display: inline-grid;
3223
+ }
3224
+
3225
+ .fanui-flex-row {
3226
+ flex-direction: row;
3227
+ }
3228
+
3229
+ .fanui-flex-col {
3230
+ flex-direction: column;
3231
+ }
3232
+
3233
+ .fanui-flex-row-reverse {
3234
+ flex-direction: row-reverse;
3235
+ }
3236
+
3237
+ .fanui-flex-col-reverse {
3238
+ flex-direction: column-reverse;
3239
+ }
3240
+
3241
+ .fanui-flex-wrap {
3242
+ flex-wrap: wrap;
3243
+ }
3244
+
3245
+ .fanui-flex-nowrap {
3246
+ flex-wrap: nowrap;
3247
+ }
3248
+
3249
+ .fanui-justify-start {
3250
+ justify-content: flex-start;
3251
+ }
3252
+
3253
+ .fanui-justify-end {
3254
+ justify-content: flex-end;
3255
+ }
3256
+
3257
+ .fanui-justify-center {
3258
+ justify-content: center;
3259
+ }
3260
+
3261
+ .fanui-justify-between {
3262
+ justify-content: space-between;
3263
+ }
3264
+
3265
+ .fanui-justify-around {
3266
+ justify-content: space-around;
3267
+ }
3268
+
3269
+ .fanui-justify-evenly {
3270
+ justify-content: space-evenly;
3271
+ }
3272
+
3273
+ .fanui-justify-stretch {
3274
+ justify-content: stretch;
3275
+ }
3276
+
3277
+ .fanui-items-start {
3278
+ align-items: flex-start;
3279
+ }
3280
+
3281
+ .fanui-self-start {
3282
+ align-self: flex-start;
3283
+ }
3284
+
3285
+ .fanui-items-end {
3286
+ align-items: flex-end;
3287
+ }
3288
+
3289
+ .fanui-self-end {
3290
+ align-self: flex-end;
3291
+ }
3292
+
3293
+ .fanui-items-center {
3294
+ align-items: center;
3295
+ }
3296
+
3297
+ .fanui-self-center {
3298
+ align-self: center;
3299
+ }
3300
+
3301
+ .fanui-items-baseline {
3302
+ align-items: baseline;
3303
+ }
3304
+
3305
+ .fanui-self-baseline {
3306
+ align-self: baseline;
3307
+ }
3308
+
3309
+ .fanui-items-stretch {
3310
+ align-items: stretch;
3311
+ }
3312
+
3313
+ .fanui-self-stretch {
3314
+ align-self: stretch;
3315
+ }
3316
+
3317
+ .fanui-gap-0 {
3318
+ gap: 0;
3319
+ }
3320
+
3321
+ .fanui-gap-1 {
3322
+ gap: 4px;
3323
+ }
3324
+
3325
+ .fanui-gap-2 {
3326
+ gap: 8px;
3327
+ }
3328
+
3329
+ .fanui-gap-3 {
3330
+ gap: 12px;
3331
+ }
3332
+
3333
+ .fanui-gap-4 {
3334
+ gap: 16px;
3335
+ }
3336
+
3337
+ .fanui-gap-5 {
3338
+ gap: 20px;
3339
+ }
3340
+
3341
+ .fanui-gap-6 {
3342
+ gap: 24px;
3343
+ }
3344
+
3345
+ .fanui-gap-8 {
3346
+ gap: 32px;
3347
+ }
3348
+
3349
+ .fanui-gap-10 {
3350
+ gap: 40px;
3351
+ }
3352
+
3353
+ .fanui-gap-12 {
3354
+ gap: 48px;
3355
+ }
3356
+
3357
+ .fanui-gap-16 {
3358
+ gap: 64px;
3359
+ }
3360
+
3361
+ .fanui-gap-20 {
3362
+ gap: 80px;
3363
+ }
3364
+
3365
+ .fanui-gap-24 {
3366
+ gap: 96px;
3367
+ }
3368
+
3369
+ .fanui-order-0 {
3370
+ order: 0;
3371
+ }
3372
+
3373
+ .fanui-order-1 {
3374
+ order: 1;
3375
+ }
3376
+
3377
+ .fanui-order-2 {
3378
+ order: 2;
3379
+ }
3380
+
3381
+ .fanui-order-3 {
3382
+ order: 3;
3383
+ }
3384
+
3385
+ .fanui-order-4 {
3386
+ order: 4;
3387
+ }
3388
+
3389
+ .fanui-order-5 {
3390
+ order: 5;
3391
+ }
3392
+
3393
+ .fanui-order-6 {
3394
+ order: 6;
3395
+ }
3396
+
3397
+ .fanui-order-7 {
3398
+ order: 7;
3399
+ }
3400
+
3401
+ .fanui-order-8 {
3402
+ order: 8;
3403
+ }
3404
+
3405
+ .fanui-order-9 {
3406
+ order: 9;
3407
+ }
3408
+
3409
+ .fanui-order-10 {
3410
+ order: 10;
3411
+ }
3412
+
3413
+ .fanui-order-11 {
3414
+ order: 11;
3415
+ }
3416
+
3417
+ .fanui-order-12 {
3418
+ order: 12;
3419
+ }
3420
+
3421
+ .fanui-order-first {
3422
+ order: -9999;
3423
+ }
3424
+
3425
+ .fanui-order-last {
3426
+ order: 9999;
3427
+ }
3428
+
3429
+ @media (min-width: 576px) {
3430
+ .fanui-d-sm-none {
3431
+ display: none;
3432
+ }
3433
+ .fanui-d-sm-block {
3434
+ display: block;
3435
+ }
3436
+ .fanui-d-sm-inline {
3437
+ display: inline;
3438
+ }
3439
+ .fanui-d-sm-inline-block {
3440
+ display: inline-block;
3441
+ }
3442
+ .fanui-d-sm-flex {
3443
+ display: flex;
3444
+ }
3445
+ .fanui-d-sm-inline-flex {
3446
+ display: inline-flex;
3447
+ }
3448
+ .fanui-d-sm-grid {
3449
+ display: grid;
3450
+ }
3451
+ .fanui-d-sm-inline-grid {
3452
+ display: inline-grid;
3453
+ }
3454
+ .fanui-flex-sm-row {
3455
+ flex-direction: row;
3456
+ }
3457
+ .fanui-flex-sm-col {
3458
+ flex-direction: column;
3459
+ }
3460
+ .fanui-flex-sm-row-reverse {
3461
+ flex-direction: row-reverse;
3462
+ }
3463
+ .fanui-flex-sm-col-reverse {
3464
+ flex-direction: column-reverse;
3465
+ }
3466
+ .fanui-flex-sm-wrap {
3467
+ flex-wrap: wrap;
3468
+ }
3469
+ .fanui-flex-sm-nowrap {
3470
+ flex-wrap: nowrap;
3471
+ }
3472
+ .fanui-justify-sm-start {
3473
+ justify-content: flex-start;
3474
+ }
3475
+ .fanui-justify-sm-end {
3476
+ justify-content: flex-end;
3477
+ }
3478
+ .fanui-justify-sm-center {
3479
+ justify-content: center;
3480
+ }
3481
+ .fanui-justify-sm-between {
3482
+ justify-content: space-between;
3483
+ }
3484
+ .fanui-justify-sm-around {
3485
+ justify-content: space-around;
3486
+ }
3487
+ .fanui-justify-sm-evenly {
3488
+ justify-content: space-evenly;
3489
+ }
3490
+ .fanui-justify-sm-stretch {
3491
+ justify-content: stretch;
3492
+ }
3493
+ .fanui-items-sm-start {
3494
+ align-items: flex-start;
3495
+ }
3496
+ .fanui-self-sm-start {
3497
+ align-self: flex-start;
3498
+ }
3499
+ .fanui-items-sm-end {
3500
+ align-items: flex-end;
3501
+ }
3502
+ .fanui-self-sm-end {
3503
+ align-self: flex-end;
3504
+ }
3505
+ .fanui-items-sm-center {
3506
+ align-items: center;
3507
+ }
3508
+ .fanui-self-sm-center {
3509
+ align-self: center;
3510
+ }
3511
+ .fanui-items-sm-baseline {
3512
+ align-items: baseline;
3513
+ }
3514
+ .fanui-self-sm-baseline {
3515
+ align-self: baseline;
3516
+ }
3517
+ .fanui-items-sm-stretch {
3518
+ align-items: stretch;
3519
+ }
3520
+ .fanui-self-sm-stretch {
3521
+ align-self: stretch;
3522
+ }
3523
+ .fanui-gap-sm-0 {
3524
+ gap: 0;
3525
+ }
3526
+ .fanui-gap-sm-1 {
3527
+ gap: 4px;
3528
+ }
3529
+ .fanui-gap-sm-2 {
3530
+ gap: 8px;
3531
+ }
3532
+ .fanui-gap-sm-3 {
3533
+ gap: 12px;
3534
+ }
3535
+ .fanui-gap-sm-4 {
3536
+ gap: 16px;
3537
+ }
3538
+ .fanui-gap-sm-5 {
3539
+ gap: 20px;
3540
+ }
3541
+ .fanui-gap-sm-6 {
3542
+ gap: 24px;
3543
+ }
3544
+ .fanui-gap-sm-8 {
3545
+ gap: 32px;
3546
+ }
3547
+ .fanui-gap-sm-10 {
3548
+ gap: 40px;
3549
+ }
3550
+ .fanui-gap-sm-12 {
3551
+ gap: 48px;
3552
+ }
3553
+ .fanui-gap-sm-16 {
3554
+ gap: 64px;
3555
+ }
3556
+ .fanui-gap-sm-20 {
3557
+ gap: 80px;
3558
+ }
3559
+ .fanui-gap-sm-24 {
3560
+ gap: 96px;
3561
+ }
3562
+ .fanui-order-sm-0 {
3563
+ order: 0;
3564
+ }
3565
+ .fanui-order-sm-1 {
3566
+ order: 1;
3567
+ }
3568
+ .fanui-order-sm-2 {
3569
+ order: 2;
3570
+ }
3571
+ .fanui-order-sm-3 {
3572
+ order: 3;
3573
+ }
3574
+ .fanui-order-sm-4 {
3575
+ order: 4;
3576
+ }
3577
+ .fanui-order-sm-5 {
3578
+ order: 5;
3579
+ }
3580
+ .fanui-order-sm-6 {
3581
+ order: 6;
3582
+ }
3583
+ .fanui-order-sm-7 {
3584
+ order: 7;
3585
+ }
3586
+ .fanui-order-sm-8 {
3587
+ order: 8;
3588
+ }
3589
+ .fanui-order-sm-9 {
3590
+ order: 9;
3591
+ }
3592
+ .fanui-order-sm-10 {
3593
+ order: 10;
3594
+ }
3595
+ .fanui-order-sm-11 {
3596
+ order: 11;
3597
+ }
3598
+ .fanui-order-sm-12 {
3599
+ order: 12;
3600
+ }
3601
+ .fanui-order-sm-first {
3602
+ order: -9999;
3603
+ }
3604
+ .fanui-order-sm-last {
3605
+ order: 9999;
3606
+ }
3607
+ }
3608
+ @media (min-width: 768px) {
3609
+ .fanui-d-md-none {
3610
+ display: none;
3611
+ }
3612
+ .fanui-d-md-block {
3613
+ display: block;
3614
+ }
3615
+ .fanui-d-md-inline {
3616
+ display: inline;
3617
+ }
3618
+ .fanui-d-md-inline-block {
3619
+ display: inline-block;
3620
+ }
3621
+ .fanui-d-md-flex {
3622
+ display: flex;
3623
+ }
3624
+ .fanui-d-md-inline-flex {
3625
+ display: inline-flex;
3626
+ }
3627
+ .fanui-d-md-grid {
3628
+ display: grid;
3629
+ }
3630
+ .fanui-d-md-inline-grid {
3631
+ display: inline-grid;
3632
+ }
3633
+ .fanui-flex-md-row {
3634
+ flex-direction: row;
3635
+ }
3636
+ .fanui-flex-md-col {
3637
+ flex-direction: column;
3638
+ }
3639
+ .fanui-flex-md-row-reverse {
3640
+ flex-direction: row-reverse;
3641
+ }
3642
+ .fanui-flex-md-col-reverse {
3643
+ flex-direction: column-reverse;
3644
+ }
3645
+ .fanui-flex-md-wrap {
3646
+ flex-wrap: wrap;
3647
+ }
3648
+ .fanui-flex-md-nowrap {
3649
+ flex-wrap: nowrap;
3650
+ }
3651
+ .fanui-justify-md-start {
3652
+ justify-content: flex-start;
3653
+ }
3654
+ .fanui-justify-md-end {
3655
+ justify-content: flex-end;
3656
+ }
3657
+ .fanui-justify-md-center {
3658
+ justify-content: center;
3659
+ }
3660
+ .fanui-justify-md-between {
3661
+ justify-content: space-between;
3662
+ }
3663
+ .fanui-justify-md-around {
3664
+ justify-content: space-around;
3665
+ }
3666
+ .fanui-justify-md-evenly {
3667
+ justify-content: space-evenly;
3668
+ }
3669
+ .fanui-justify-md-stretch {
3670
+ justify-content: stretch;
3671
+ }
3672
+ .fanui-items-md-start {
3673
+ align-items: flex-start;
3674
+ }
3675
+ .fanui-self-md-start {
3676
+ align-self: flex-start;
3677
+ }
3678
+ .fanui-items-md-end {
3679
+ align-items: flex-end;
3680
+ }
3681
+ .fanui-self-md-end {
3682
+ align-self: flex-end;
3683
+ }
3684
+ .fanui-items-md-center {
3685
+ align-items: center;
3686
+ }
3687
+ .fanui-self-md-center {
3688
+ align-self: center;
3689
+ }
3690
+ .fanui-items-md-baseline {
3691
+ align-items: baseline;
3692
+ }
3693
+ .fanui-self-md-baseline {
3694
+ align-self: baseline;
3695
+ }
3696
+ .fanui-items-md-stretch {
3697
+ align-items: stretch;
3698
+ }
3699
+ .fanui-self-md-stretch {
3700
+ align-self: stretch;
3701
+ }
3702
+ .fanui-gap-md-0 {
3703
+ gap: 0;
3704
+ }
3705
+ .fanui-gap-md-1 {
3706
+ gap: 4px;
3707
+ }
3708
+ .fanui-gap-md-2 {
3709
+ gap: 8px;
3710
+ }
3711
+ .fanui-gap-md-3 {
3712
+ gap: 12px;
3713
+ }
3714
+ .fanui-gap-md-4 {
3715
+ gap: 16px;
3716
+ }
3717
+ .fanui-gap-md-5 {
3718
+ gap: 20px;
3719
+ }
3720
+ .fanui-gap-md-6 {
3721
+ gap: 24px;
3722
+ }
3723
+ .fanui-gap-md-8 {
3724
+ gap: 32px;
3725
+ }
3726
+ .fanui-gap-md-10 {
3727
+ gap: 40px;
3728
+ }
3729
+ .fanui-gap-md-12 {
3730
+ gap: 48px;
3731
+ }
3732
+ .fanui-gap-md-16 {
3733
+ gap: 64px;
3734
+ }
3735
+ .fanui-gap-md-20 {
3736
+ gap: 80px;
3737
+ }
3738
+ .fanui-gap-md-24 {
3739
+ gap: 96px;
3740
+ }
3741
+ .fanui-order-md-0 {
3742
+ order: 0;
3743
+ }
3744
+ .fanui-order-md-1 {
3745
+ order: 1;
3746
+ }
3747
+ .fanui-order-md-2 {
3748
+ order: 2;
3749
+ }
3750
+ .fanui-order-md-3 {
3751
+ order: 3;
3752
+ }
3753
+ .fanui-order-md-4 {
3754
+ order: 4;
3755
+ }
3756
+ .fanui-order-md-5 {
3757
+ order: 5;
3758
+ }
3759
+ .fanui-order-md-6 {
3760
+ order: 6;
3761
+ }
3762
+ .fanui-order-md-7 {
3763
+ order: 7;
3764
+ }
3765
+ .fanui-order-md-8 {
3766
+ order: 8;
3767
+ }
3768
+ .fanui-order-md-9 {
3769
+ order: 9;
3770
+ }
3771
+ .fanui-order-md-10 {
3772
+ order: 10;
3773
+ }
3774
+ .fanui-order-md-11 {
3775
+ order: 11;
3776
+ }
3777
+ .fanui-order-md-12 {
3778
+ order: 12;
3779
+ }
3780
+ .fanui-order-md-first {
3781
+ order: -9999;
3782
+ }
3783
+ .fanui-order-md-last {
3784
+ order: 9999;
3785
+ }
3786
+ }
3787
+ @media (min-width: 992px) {
3788
+ .fanui-d-lg-none {
3789
+ display: none;
3790
+ }
3791
+ .fanui-d-lg-block {
3792
+ display: block;
3793
+ }
3794
+ .fanui-d-lg-inline {
3795
+ display: inline;
3796
+ }
3797
+ .fanui-d-lg-inline-block {
3798
+ display: inline-block;
3799
+ }
3800
+ .fanui-d-lg-flex {
3801
+ display: flex;
3802
+ }
3803
+ .fanui-d-lg-inline-flex {
3804
+ display: inline-flex;
3805
+ }
3806
+ .fanui-d-lg-grid {
3807
+ display: grid;
3808
+ }
3809
+ .fanui-d-lg-inline-grid {
3810
+ display: inline-grid;
3811
+ }
3812
+ .fanui-flex-lg-row {
3813
+ flex-direction: row;
3814
+ }
3815
+ .fanui-flex-lg-col {
3816
+ flex-direction: column;
3817
+ }
3818
+ .fanui-flex-lg-row-reverse {
3819
+ flex-direction: row-reverse;
3820
+ }
3821
+ .fanui-flex-lg-col-reverse {
3822
+ flex-direction: column-reverse;
3823
+ }
3824
+ .fanui-flex-lg-wrap {
3825
+ flex-wrap: wrap;
3826
+ }
3827
+ .fanui-flex-lg-nowrap {
3828
+ flex-wrap: nowrap;
3829
+ }
3830
+ .fanui-justify-lg-start {
3831
+ justify-content: flex-start;
3832
+ }
3833
+ .fanui-justify-lg-end {
3834
+ justify-content: flex-end;
3835
+ }
3836
+ .fanui-justify-lg-center {
3837
+ justify-content: center;
3838
+ }
3839
+ .fanui-justify-lg-between {
3840
+ justify-content: space-between;
3841
+ }
3842
+ .fanui-justify-lg-around {
3843
+ justify-content: space-around;
3844
+ }
3845
+ .fanui-justify-lg-evenly {
3846
+ justify-content: space-evenly;
3847
+ }
3848
+ .fanui-justify-lg-stretch {
3849
+ justify-content: stretch;
3850
+ }
3851
+ .fanui-items-lg-start {
3852
+ align-items: flex-start;
3853
+ }
3854
+ .fanui-self-lg-start {
3855
+ align-self: flex-start;
3856
+ }
3857
+ .fanui-items-lg-end {
3858
+ align-items: flex-end;
3859
+ }
3860
+ .fanui-self-lg-end {
3861
+ align-self: flex-end;
3862
+ }
3863
+ .fanui-items-lg-center {
3864
+ align-items: center;
3865
+ }
3866
+ .fanui-self-lg-center {
3867
+ align-self: center;
3868
+ }
3869
+ .fanui-items-lg-baseline {
3870
+ align-items: baseline;
3871
+ }
3872
+ .fanui-self-lg-baseline {
3873
+ align-self: baseline;
3874
+ }
3875
+ .fanui-items-lg-stretch {
3876
+ align-items: stretch;
3877
+ }
3878
+ .fanui-self-lg-stretch {
3879
+ align-self: stretch;
3880
+ }
3881
+ .fanui-gap-lg-0 {
3882
+ gap: 0;
3883
+ }
3884
+ .fanui-gap-lg-1 {
3885
+ gap: 4px;
3886
+ }
3887
+ .fanui-gap-lg-2 {
3888
+ gap: 8px;
3889
+ }
3890
+ .fanui-gap-lg-3 {
3891
+ gap: 12px;
3892
+ }
3893
+ .fanui-gap-lg-4 {
3894
+ gap: 16px;
3895
+ }
3896
+ .fanui-gap-lg-5 {
3897
+ gap: 20px;
3898
+ }
3899
+ .fanui-gap-lg-6 {
3900
+ gap: 24px;
3901
+ }
3902
+ .fanui-gap-lg-8 {
3903
+ gap: 32px;
3904
+ }
3905
+ .fanui-gap-lg-10 {
3906
+ gap: 40px;
3907
+ }
3908
+ .fanui-gap-lg-12 {
3909
+ gap: 48px;
3910
+ }
3911
+ .fanui-gap-lg-16 {
3912
+ gap: 64px;
3913
+ }
3914
+ .fanui-gap-lg-20 {
3915
+ gap: 80px;
3916
+ }
3917
+ .fanui-gap-lg-24 {
3918
+ gap: 96px;
3919
+ }
3920
+ .fanui-order-lg-0 {
3921
+ order: 0;
3922
+ }
3923
+ .fanui-order-lg-1 {
3924
+ order: 1;
3925
+ }
3926
+ .fanui-order-lg-2 {
3927
+ order: 2;
3928
+ }
3929
+ .fanui-order-lg-3 {
3930
+ order: 3;
3931
+ }
3932
+ .fanui-order-lg-4 {
3933
+ order: 4;
3934
+ }
3935
+ .fanui-order-lg-5 {
3936
+ order: 5;
3937
+ }
3938
+ .fanui-order-lg-6 {
3939
+ order: 6;
3940
+ }
3941
+ .fanui-order-lg-7 {
3942
+ order: 7;
3943
+ }
3944
+ .fanui-order-lg-8 {
3945
+ order: 8;
3946
+ }
3947
+ .fanui-order-lg-9 {
3948
+ order: 9;
3949
+ }
3950
+ .fanui-order-lg-10 {
3951
+ order: 10;
3952
+ }
3953
+ .fanui-order-lg-11 {
3954
+ order: 11;
3955
+ }
3956
+ .fanui-order-lg-12 {
3957
+ order: 12;
3958
+ }
3959
+ .fanui-order-lg-first {
3960
+ order: -9999;
3961
+ }
3962
+ .fanui-order-lg-last {
3963
+ order: 9999;
3964
+ }
3965
+ }
3966
+ @media (min-width: 1200px) {
3967
+ .fanui-d-xl-none {
3968
+ display: none;
3969
+ }
3970
+ .fanui-d-xl-block {
3971
+ display: block;
3972
+ }
3973
+ .fanui-d-xl-inline {
3974
+ display: inline;
3975
+ }
3976
+ .fanui-d-xl-inline-block {
3977
+ display: inline-block;
3978
+ }
3979
+ .fanui-d-xl-flex {
3980
+ display: flex;
3981
+ }
3982
+ .fanui-d-xl-inline-flex {
3983
+ display: inline-flex;
3984
+ }
3985
+ .fanui-d-xl-grid {
3986
+ display: grid;
3987
+ }
3988
+ .fanui-d-xl-inline-grid {
3989
+ display: inline-grid;
3990
+ }
3991
+ .fanui-flex-xl-row {
3992
+ flex-direction: row;
3993
+ }
3994
+ .fanui-flex-xl-col {
3995
+ flex-direction: column;
3996
+ }
3997
+ .fanui-flex-xl-row-reverse {
3998
+ flex-direction: row-reverse;
3999
+ }
4000
+ .fanui-flex-xl-col-reverse {
4001
+ flex-direction: column-reverse;
4002
+ }
4003
+ .fanui-flex-xl-wrap {
4004
+ flex-wrap: wrap;
4005
+ }
4006
+ .fanui-flex-xl-nowrap {
4007
+ flex-wrap: nowrap;
4008
+ }
4009
+ .fanui-justify-xl-start {
4010
+ justify-content: flex-start;
4011
+ }
4012
+ .fanui-justify-xl-end {
4013
+ justify-content: flex-end;
4014
+ }
4015
+ .fanui-justify-xl-center {
4016
+ justify-content: center;
4017
+ }
4018
+ .fanui-justify-xl-between {
4019
+ justify-content: space-between;
4020
+ }
4021
+ .fanui-justify-xl-around {
4022
+ justify-content: space-around;
4023
+ }
4024
+ .fanui-justify-xl-evenly {
4025
+ justify-content: space-evenly;
4026
+ }
4027
+ .fanui-justify-xl-stretch {
4028
+ justify-content: stretch;
4029
+ }
4030
+ .fanui-items-xl-start {
4031
+ align-items: flex-start;
4032
+ }
4033
+ .fanui-self-xl-start {
4034
+ align-self: flex-start;
4035
+ }
4036
+ .fanui-items-xl-end {
4037
+ align-items: flex-end;
4038
+ }
4039
+ .fanui-self-xl-end {
4040
+ align-self: flex-end;
4041
+ }
4042
+ .fanui-items-xl-center {
4043
+ align-items: center;
4044
+ }
4045
+ .fanui-self-xl-center {
4046
+ align-self: center;
4047
+ }
4048
+ .fanui-items-xl-baseline {
4049
+ align-items: baseline;
4050
+ }
4051
+ .fanui-self-xl-baseline {
4052
+ align-self: baseline;
4053
+ }
4054
+ .fanui-items-xl-stretch {
4055
+ align-items: stretch;
4056
+ }
4057
+ .fanui-self-xl-stretch {
4058
+ align-self: stretch;
4059
+ }
4060
+ .fanui-gap-xl-0 {
4061
+ gap: 0;
4062
+ }
4063
+ .fanui-gap-xl-1 {
4064
+ gap: 4px;
4065
+ }
4066
+ .fanui-gap-xl-2 {
4067
+ gap: 8px;
4068
+ }
4069
+ .fanui-gap-xl-3 {
4070
+ gap: 12px;
4071
+ }
4072
+ .fanui-gap-xl-4 {
4073
+ gap: 16px;
4074
+ }
4075
+ .fanui-gap-xl-5 {
4076
+ gap: 20px;
4077
+ }
4078
+ .fanui-gap-xl-6 {
4079
+ gap: 24px;
4080
+ }
4081
+ .fanui-gap-xl-8 {
4082
+ gap: 32px;
4083
+ }
4084
+ .fanui-gap-xl-10 {
4085
+ gap: 40px;
4086
+ }
4087
+ .fanui-gap-xl-12 {
4088
+ gap: 48px;
4089
+ }
4090
+ .fanui-gap-xl-16 {
4091
+ gap: 64px;
4092
+ }
4093
+ .fanui-gap-xl-20 {
4094
+ gap: 80px;
4095
+ }
4096
+ .fanui-gap-xl-24 {
4097
+ gap: 96px;
4098
+ }
4099
+ .fanui-order-xl-0 {
4100
+ order: 0;
4101
+ }
4102
+ .fanui-order-xl-1 {
4103
+ order: 1;
4104
+ }
4105
+ .fanui-order-xl-2 {
4106
+ order: 2;
4107
+ }
4108
+ .fanui-order-xl-3 {
4109
+ order: 3;
4110
+ }
4111
+ .fanui-order-xl-4 {
4112
+ order: 4;
4113
+ }
4114
+ .fanui-order-xl-5 {
4115
+ order: 5;
4116
+ }
4117
+ .fanui-order-xl-6 {
4118
+ order: 6;
4119
+ }
4120
+ .fanui-order-xl-7 {
4121
+ order: 7;
4122
+ }
4123
+ .fanui-order-xl-8 {
4124
+ order: 8;
4125
+ }
4126
+ .fanui-order-xl-9 {
4127
+ order: 9;
4128
+ }
4129
+ .fanui-order-xl-10 {
4130
+ order: 10;
4131
+ }
4132
+ .fanui-order-xl-11 {
4133
+ order: 11;
4134
+ }
4135
+ .fanui-order-xl-12 {
4136
+ order: 12;
4137
+ }
4138
+ .fanui-order-xl-first {
4139
+ order: -9999;
4140
+ }
4141
+ .fanui-order-xl-last {
4142
+ order: 9999;
4143
+ }
4144
+ }
4145
+ @media (min-width: 1400px) {
4146
+ .fanui-d-xxl-none {
4147
+ display: none;
4148
+ }
4149
+ .fanui-d-xxl-block {
4150
+ display: block;
4151
+ }
4152
+ .fanui-d-xxl-inline {
4153
+ display: inline;
4154
+ }
4155
+ .fanui-d-xxl-inline-block {
4156
+ display: inline-block;
4157
+ }
4158
+ .fanui-d-xxl-flex {
4159
+ display: flex;
4160
+ }
4161
+ .fanui-d-xxl-inline-flex {
4162
+ display: inline-flex;
4163
+ }
4164
+ .fanui-d-xxl-grid {
4165
+ display: grid;
4166
+ }
4167
+ .fanui-d-xxl-inline-grid {
4168
+ display: inline-grid;
4169
+ }
4170
+ .fanui-flex-xxl-row {
4171
+ flex-direction: row;
4172
+ }
4173
+ .fanui-flex-xxl-col {
4174
+ flex-direction: column;
4175
+ }
4176
+ .fanui-flex-xxl-row-reverse {
4177
+ flex-direction: row-reverse;
4178
+ }
4179
+ .fanui-flex-xxl-col-reverse {
4180
+ flex-direction: column-reverse;
4181
+ }
4182
+ .fanui-flex-xxl-wrap {
4183
+ flex-wrap: wrap;
4184
+ }
4185
+ .fanui-flex-xxl-nowrap {
4186
+ flex-wrap: nowrap;
4187
+ }
4188
+ .fanui-justify-xxl-start {
4189
+ justify-content: flex-start;
4190
+ }
4191
+ .fanui-justify-xxl-end {
4192
+ justify-content: flex-end;
4193
+ }
4194
+ .fanui-justify-xxl-center {
4195
+ justify-content: center;
4196
+ }
4197
+ .fanui-justify-xxl-between {
4198
+ justify-content: space-between;
4199
+ }
4200
+ .fanui-justify-xxl-around {
4201
+ justify-content: space-around;
4202
+ }
4203
+ .fanui-justify-xxl-evenly {
4204
+ justify-content: space-evenly;
4205
+ }
4206
+ .fanui-justify-xxl-stretch {
4207
+ justify-content: stretch;
4208
+ }
4209
+ .fanui-items-xxl-start {
4210
+ align-items: flex-start;
4211
+ }
4212
+ .fanui-self-xxl-start {
4213
+ align-self: flex-start;
4214
+ }
4215
+ .fanui-items-xxl-end {
4216
+ align-items: flex-end;
4217
+ }
4218
+ .fanui-self-xxl-end {
4219
+ align-self: flex-end;
4220
+ }
4221
+ .fanui-items-xxl-center {
4222
+ align-items: center;
4223
+ }
4224
+ .fanui-self-xxl-center {
4225
+ align-self: center;
4226
+ }
4227
+ .fanui-items-xxl-baseline {
4228
+ align-items: baseline;
4229
+ }
4230
+ .fanui-self-xxl-baseline {
4231
+ align-self: baseline;
4232
+ }
4233
+ .fanui-items-xxl-stretch {
4234
+ align-items: stretch;
4235
+ }
4236
+ .fanui-self-xxl-stretch {
4237
+ align-self: stretch;
4238
+ }
4239
+ .fanui-gap-xxl-0 {
4240
+ gap: 0;
4241
+ }
4242
+ .fanui-gap-xxl-1 {
4243
+ gap: 4px;
4244
+ }
4245
+ .fanui-gap-xxl-2 {
4246
+ gap: 8px;
4247
+ }
4248
+ .fanui-gap-xxl-3 {
4249
+ gap: 12px;
4250
+ }
4251
+ .fanui-gap-xxl-4 {
4252
+ gap: 16px;
4253
+ }
4254
+ .fanui-gap-xxl-5 {
4255
+ gap: 20px;
4256
+ }
4257
+ .fanui-gap-xxl-6 {
4258
+ gap: 24px;
4259
+ }
4260
+ .fanui-gap-xxl-8 {
4261
+ gap: 32px;
4262
+ }
4263
+ .fanui-gap-xxl-10 {
4264
+ gap: 40px;
4265
+ }
4266
+ .fanui-gap-xxl-12 {
4267
+ gap: 48px;
4268
+ }
4269
+ .fanui-gap-xxl-16 {
4270
+ gap: 64px;
4271
+ }
4272
+ .fanui-gap-xxl-20 {
4273
+ gap: 80px;
4274
+ }
4275
+ .fanui-gap-xxl-24 {
4276
+ gap: 96px;
4277
+ }
4278
+ .fanui-order-xxl-0 {
4279
+ order: 0;
4280
+ }
4281
+ .fanui-order-xxl-1 {
4282
+ order: 1;
4283
+ }
4284
+ .fanui-order-xxl-2 {
4285
+ order: 2;
4286
+ }
4287
+ .fanui-order-xxl-3 {
4288
+ order: 3;
4289
+ }
4290
+ .fanui-order-xxl-4 {
4291
+ order: 4;
4292
+ }
4293
+ .fanui-order-xxl-5 {
4294
+ order: 5;
4295
+ }
4296
+ .fanui-order-xxl-6 {
4297
+ order: 6;
4298
+ }
4299
+ .fanui-order-xxl-7 {
4300
+ order: 7;
4301
+ }
4302
+ .fanui-order-xxl-8 {
4303
+ order: 8;
4304
+ }
4305
+ .fanui-order-xxl-9 {
4306
+ order: 9;
4307
+ }
4308
+ .fanui-order-xxl-10 {
4309
+ order: 10;
4310
+ }
4311
+ .fanui-order-xxl-11 {
4312
+ order: 11;
4313
+ }
4314
+ .fanui-order-xxl-12 {
4315
+ order: 12;
4316
+ }
4317
+ .fanui-order-xxl-first {
4318
+ order: -9999;
4319
+ }
4320
+ .fanui-order-xxl-last {
4321
+ order: 9999;
4322
+ }
4323
+ }
4324
+ .fanui-center {
4325
+ display: flex;
4326
+ flex-direction: row;
4327
+ justify-content: center;
4328
+ align-items: center;
4329
+ flex-wrap: nowrap;
4330
+ }
4331
+
4332
+ .fanui-center-col {
4333
+ display: flex;
4334
+ flex-direction: column;
4335
+ justify-content: center;
4336
+ align-items: center;
4337
+ flex-wrap: nowrap;
4338
+ }
4339
+
4340
+ .fanui-between {
4341
+ display: flex;
4342
+ flex-direction: row;
4343
+ justify-content: space-between;
4344
+ align-items: center;
4345
+ flex-wrap: nowrap;
4346
+ }
4347
+
4348
+ .fanui-around {
4349
+ display: flex;
4350
+ flex-direction: row;
4351
+ justify-content: space-around;
4352
+ align-items: center;
4353
+ flex-wrap: nowrap;
4354
+ }
4355
+
4356
+ .fanui-start {
4357
+ display: flex;
4358
+ flex-direction: row;
4359
+ justify-content: flex-start;
4360
+ align-items: center;
4361
+ flex-wrap: nowrap;
4362
+ }
4363
+
4364
+ .fanui-end {
4365
+ display: flex;
4366
+ flex-direction: row;
4367
+ justify-content: flex-end;
4368
+ align-items: center;
4369
+ flex-wrap: nowrap;
4370
+ }
4371
+
4372
+ .fanui-stack {
4373
+ display: flex;
4374
+ flex-direction: column;
4375
+ justify-content: flex-start;
4376
+ align-items: stretch;
4377
+ flex-wrap: nowrap;
4378
+ }
4379
+
4380
+ .fanui-inline-row {
4381
+ display: inline-flex;
4382
+ flex-direction: row;
4383
+ justify-content: flex-start;
4384
+ align-items: center;
4385
+ flex-wrap: nowrap;
4386
+ }
4387
+
4388
+ .fanui-fill {
4389
+ flex: 1 1 0%;
4390
+ min-width: 0;
4391
+ }
4392
+
4393
+ .fanui-all-center {
4394
+ display: flex;
4395
+ flex-direction: row;
4396
+ justify-content: center;
4397
+ align-items: center;
4398
+ flex-wrap: nowrap;
4399
+ }