-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.css
More file actions
927 lines (820 loc) · 72.1 KB
/
grid.css
File metadata and controls
927 lines (820 loc) · 72.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
/*!
CSS Grid
https://github.com/caitken-com/css-grid
License MIT 2024
*/
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
[data-layout~=container] { width: 100%; margin: 0 auto; display: block; max-width: 1440px; }
[data-layout~=float-center] { margin-left: auto; margin-right: auto; display: block; float: none; }
[data-layout~=float-left] { float: left; }
[data-layout~=float-right] { float: right; }
[data-layout~=clear-fix]::after { content: ''; display: table; clear: both; }
[data-layout~=text-left] { text-align: left !important; }
[data-layout~=text-right] { text-align: right !important; }
[data-layout~=text-center] { text-align: center !important; }
[data-layout~=grid-cols] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout~=cols-top] { align-items: start; }
[data-layout~=cols-middle] { align-items: center; }
[data-layout~=cols-bottom] { align-items: end; }
[data-layout~=cols-gap-0] { column-gap: 0; }
[data-layout~=cols-gap-1] { column-gap: 1rem; }
[data-layout~=cols-gap-2] { column-gap: 2rem; }
[data-layout~=cols-gap-3] { column-gap: 3rem; }
[data-layout~=cols-gap-4] { column-gap: 4rem; }
[data-layout~=cols-gap-5] { column-gap: 5rem; }
[data-layout~=rows-gap-0] { row-gap: 0; }
[data-layout~=rows-gap-1] { row-gap: 1rem; }
[data-layout~=rows-gap-2] { row-gap: 2rem; }
[data-layout~=rows-gap-3] { row-gap: 3rem; }
[data-layout~=rows-gap-4] { row-gap: 4rem; }
[data-layout~=rows-gap-5] { row-gap: 5rem; }
[data-layout~=first] { order: -1; }
[data-layout~=last] { order: 12; }
[data-layout~=hide] { display: none !important; }
[data-layout~=show] { display: initial !important; }
[data-layout~=grid-cols-1] { display: grid !important; grid-template-columns: repeat(1, 1fr); }
[data-layout~=grid-cols-2] { display: grid !important; grid-template-columns: repeat(2, 1fr); }
[data-layout~=grid-cols-3] { display: grid !important; grid-template-columns: repeat(3, 1fr); }
[data-layout~=grid-cols-4] { display: grid !important; grid-template-columns: repeat(4, 1fr); }
[data-layout~=grid-cols-5] { display: grid !important; grid-template-columns: repeat(5, 1fr); }
[data-layout~=grid-cols-6] { display: grid !important; grid-template-columns: repeat(6, 1fr); }
[data-layout~=grid-cols-7] { display: grid !important; grid-template-columns: repeat(7, 1fr); }
[data-layout~=grid-cols-8] { display: grid !important; grid-template-columns: repeat(8, 1fr); }
[data-layout~=grid-cols-9] { display: grid !important; grid-template-columns: repeat(9, 1fr); }
[data-layout~=grid-cols-10] { display: grid !important; grid-template-columns: repeat(10, 1fr); }
[data-layout~=grid-cols-11] { display: grid !important; grid-template-columns: repeat(11, 1fr); }
[data-layout~=grid-cols-12] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-1] { display: grid !important; grid-template-rows: repeat(1, 1fr); }
[data-layout~=grid-rows-2] { display: grid !important; grid-template-rows: repeat(2, 1fr); }
[data-layout~=grid-rows-3] { display: grid !important; grid-template-rows: repeat(3, 1fr); }
[data-layout~=grid-rows-4] { display: grid !important; grid-template-rows: repeat(4, 1fr); }
[data-layout~=grid-rows-5] { display: grid !important; grid-template-rows: repeat(5, 1fr); }
[data-layout~=grid-rows-6] { display: grid !important; grid-template-rows: repeat(6, 1fr); }
[data-layout~=grid-rows-7] { display: grid !important; grid-template-rows: repeat(7, 1fr); }
[data-layout~=grid-rows-8] { display: grid !important; grid-template-rows: repeat(8, 1fr); }
[data-layout~=grid-rows-9] { display: grid !important; grid-template-rows: repeat(9, 1fr); }
[data-layout~=grid-rows-10] { display: grid !important; grid-template-rows: repeat(10, 1fr); }
[data-layout~=grid-rows-11] { display: grid !important; grid-template-rows: repeat(11, 1fr); }
[data-layout~=grid-rows-12] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout*=grid-cols] [data-layout^=cols-1-], [data-layout*=grid-cols] [data-layout^=cols-2-], [data-layout*=grid-cols] [data-layout^=cols-3-], [data-layout*=grid-cols] [data-layout^=cols-4-], [data-layout*=grid-cols] [data-layout^=cols-5-], [data-layout*=grid-cols] [data-layout^=cols-6-],
[data-layout*=grid-cols] [data-layout^=cols-7-], [data-layout*=grid-cols] [data-layout^=cols-8-], [data-layout*=grid-cols] [data-layout^=cols-9-], [data-layout*=grid-cols] [data-layout^=cols-10-], [data-layout*=grid-cols] [data-layout^=cols-11-], [data-layout*=grid-cols] [data-layout^=cols-12-] { grid-column: span 12; }
[data-layout*=grid-rows] [data-layout^=rows-1-], [data-layout*=grid-rows] [data-layout^=rows-2-], [data-layout*=grid-rows] [data-layout^=rows-3-], [data-layout*=grid-rows] [data-layout^=rows-4-], [data-layout*=grid-rows] [data-layout^=rows-5-], [data-layout*=grid-rows] [data-layout^=rows-6-],
[data-layout*=grid-rows] [data-layout^=rows-7-], [data-layout*=grid-rows] [data-layout^=rows-8-], [data-layout*=grid-rows] [data-layout^=rows-9-], [data-layout*=grid-rows] [data-layout^=rows-10-], [data-layout*=grid-rows] [data-layout^=rows-11-], [data-layout*=grid-rows] [data-layout^=rows-12-] { grid-row: span 12; }
[data-layout*=grid-cols] [data-layout~=cols-1] { grid-column: span 1 / 1 span; }
[data-layout*=grid-cols] [data-layout~=cols-2] { grid-column: span 2 / 2 span; }
[data-layout*=grid-cols] [data-layout~=cols-3] { grid-column: span 3 / 3 span; }
[data-layout*=grid-cols] [data-layout~=cols-4] { grid-column: span 4 / 4 span; }
[data-layout*=grid-cols] [data-layout~=cols-5] { grid-column: span 5 / 5 span; }
[data-layout*=grid-cols] [data-layout~=cols-6] { grid-column: span 6 / 6 span; }
[data-layout*=grid-cols] [data-layout~=cols-7] { grid-column: span 7 / 7 span; }
[data-layout*=grid-cols] [data-layout~=cols-8] { grid-column: span 8 / 8 span; }
[data-layout*=grid-cols] [data-layout~=cols-9] { grid-column: span 9 / 9 span; }
[data-layout*=grid-cols] [data-layout~=cols-10] { grid-column: span 10 / 10 span; }
[data-layout*=grid-cols] [data-layout~=cols-11] { grid-column: span 11 / 11 span; }
[data-layout*=grid-cols] [data-layout~=cols-12] { grid-column: span 12 / 12 span; }
[data-layout*=grid-rows] [data-layout~=rows-1] { grid-row: span 1 / 1 span; }
[data-layout*=grid-rows] [data-layout~=rows-2] { grid-row: span 2 / 2 span; }
[data-layout*=grid-rows] [data-layout~=rows-3] { grid-row: span 3 / 3 span; }
[data-layout*=grid-rows] [data-layout~=rows-4] { grid-row: span 4 / 4 span; }
[data-layout*=grid-rows] [data-layout~=rows-5] { grid-row: span 5 / 5 span; }
[data-layout*=grid-rows] [data-layout~=rows-6] { grid-row: span 6 / 6 span; }
[data-layout*=grid-rows] [data-layout~=rows-7] { grid-row: span 7 / 7 span; }
[data-layout*=grid-rows] [data-layout~=rows-8] { grid-row: span 8 / 8 span; }
[data-layout*=grid-rows] [data-layout~=rows-9] { grid-row: span 9 / 9 span; }
[data-layout*=grid-rows] [data-layout~=rows-10] { grid-row: span 10 / 10 span; }
[data-layout*=grid-rows] [data-layout~=rows-11] { grid-row: span 11 / 11 span; }
[data-layout*=grid-rows] [data-layout~=rows-12] { grid-row: span 12 / 12 span; }
[data-layout*=grid-cols] [data-layout~=cols-offset-1] { grid-column-start: 1; }
[data-layout*=grid-cols] [data-layout~=cols-offset-2] { grid-column-start: 2; }
[data-layout*=grid-cols] [data-layout~=cols-offset-3] { grid-column-start: 3; }
[data-layout*=grid-cols] [data-layout~=cols-offset-4] { grid-column-start: 4; }
[data-layout*=grid-cols] [data-layout~=cols-offset-5] { grid-column-start: 5; }
[data-layout*=grid-cols] [data-layout~=cols-offset-6] { grid-column-start: 6; }
[data-layout*=grid-cols] [data-layout~=cols-offset-7] { grid-column-start: 7; }
[data-layout*=grid-cols] [data-layout~=cols-offset-8] { grid-column-start: 8; }
[data-layout*=grid-cols] [data-layout~=cols-offset-9] { grid-column-start: 9; }
[data-layout*=grid-cols] [data-layout~=cols-offset-10] { grid-column-start: 10; }
[data-layout*=grid-cols] [data-layout~=cols-offset-11] { grid-column-start: 11; }
[data-layout*=grid-cols] [data-layout~=cols-offset-12] { grid-column-start: 12; }
[data-layout*=grid-rows] [data-layout~=rows-offset-1] { grid-row-start: 1; }
[data-layout*=grid-rows] [data-layout~=rows-offset-2] { grid-row-start: 2; }
[data-layout*=grid-rows] [data-layout~=rows-offset-3] { grid-row-start: 3; }
[data-layout*=grid-rows] [data-layout~=rows-offset-4] { grid-row-start: 4; }
[data-layout*=grid-rows] [data-layout~=rows-offset-5] { grid-row-start: 5; }
[data-layout*=grid-rows] [data-layout~=rows-offset-6] { grid-row-start: 6; }
[data-layout*=grid-rows] [data-layout~=rows-offset-7] { grid-row-start: 7; }
[data-layout*=grid-rows] [data-layout~=rows-offset-8] { grid-row-start: 8; }
[data-layout*=grid-rows] [data-layout~=rows-offset-9] { grid-row-start: 9; }
[data-layout*=grid-rows] [data-layout~=rows-offset-10] { grid-row-start: 10; }
[data-layout*=grid-rows] [data-layout~=rows-offset-11] { grid-row-start: 11; }
[data-layout*=grid-rows] [data-layout~=rows-offset-12] { grid-row-start: 12; }
[data-layout~=flex-cols] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; }
[data-layout*=flex-cols-] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; }
[data-layout~=flex-cols-stretch] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-cols-around] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-cols-between] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-cols-center] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: center; }
[data-layout~=flex-cols-evenly] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-cols-start] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: start; }
[data-layout~=flex-cols-end] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: end; }
[data-layout~=flex-rows] { display: flex !important; flex: 0 1 auto; flex-direction: column; flex-grow: 1; }
[data-layout*=flex-rows-] { display: flex !important; flex: 0 1 auto; flex-direction: column; flex-grow: 1; }
[data-layout~=flex-rows-stretch] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-rows-around] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-rows-between] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-rows-center] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: center; }
[data-layout~=flex-rows-evenly] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-rows-start] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: start; }
[data-layout~=flex-rows-end] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: end; }
[data-layout~=flex-cols-1] > * { flex-basis: 100%; max-width: 100%; }
[data-layout~=flex-cols-2] > * { flex-basis: 50%; max-width: 50%; }
[data-layout~=flex-cols-3] > * { flex-basis: 33.33333333%; max-width: 33.33333333%; }
[data-layout~=flex-cols-4] > * { flex-basis: 25%; max-width: 25%; }
[data-layout~=flex-cols-5] > * { flex-basis: 20%; max-width: 20%; }
[data-layout~=flex-cols-6] > * { flex-basis: 16.6666666%; max-width: 16.6666666%; }
[data-layout~=flex-cols-7] > * { flex-basis: 14.2857142%; max-width: 14.2857142%; }
[data-layout~=flex-cols-8] > * { flex-basis: 12.5%; max-width: 12.5%; }
[data-layout~=flex-cols-9] > * { flex-basis: 11.1111111%; max-width: 11.1111111%; }
[data-layout~=flex-cols-10] > * { flex-basis: 10%; max-width: 10%; }
[data-layout~=flex-cols-11] > * { flex-basis: 9.09090909%; max-width: 9.09090909%; }
[data-layout~=flex-cols-12] > * { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout~=flex-cols-stretch] > * { flex-grow: 1; }
[data-layout~=flex-rows-stretch] > * { flex-grow: 1; }
[data-layout~=flex-rows-1] > * { flex-basis: 100%; max-height: 100%; }
[data-layout~=flex-rows-2] > * { flex-basis: 50%; max-height: 50%; }
[data-layout~=flex-rows-3] > * { flex-basis: 33.33333333%; max-height: 33.33333333%; }
[data-layout~=flex-rows-4] > * { flex-basis: 25%; max-height: 25%; }
[data-layout~=flex-rows-5] > * { flex-basis: 20%; max-height: 20%; }
[data-layout~=flex-rows-6] > * { flex-basis: 16.6666666%; max-height: 16.6666666%; }
[data-layout~=flex-rows-7] > * { flex-basis: 14.2857142%; max-height: 14.2857142%; }2
[data-layout~=flex-rows-8] > * { flex-basis: 12.5%; max-height: 12.5%; }
[data-layout~=flex-rows-9] > * { flex-basis: 11.1111111%; max-height: 11.1111111%; }
[data-layout~=flex-rows-10] > * { flex-basis: 10%; max-height: 10%; }
[data-layout~=flex-rows-11] > * { flex-basis: 9.09090909%; max-height: 9.09090909%; }
[data-layout~=flex-rows-12] > * { flex-basis: 8.33333333%; max-height: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-fit] { flex-basis: auto; max-width: none; }
[data-layout*=flex-cols] [data-layout~=cols-fill] { flex: 1 1 0%; flex-basis: 0; max-width: none; }
[data-layout*=flex-rows] [data-layout~=rows-fit] { flex-basis: auto; max-height: none; }
[data-layout*=flex-rows] [data-layout~=rows-fill] { flex: 1 1 0%; flex-basis: 0; max-height: none; }
[data-layout*=flex-cols] [data-layout~=cols-1] { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-2] { flex-basis: 16.6666666%; max-width: 16.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-3] { flex-basis: 24.9999999%; max-width: 24.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-4] { flex-basis: 33.3333333%; max-width: 33.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-5] { flex-basis: 41.6666666%; max-width: 41.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-6] { flex-basis: 49.9999999%; max-width: 49.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-7] { flex-basis: 58.3333333%; max-width: 58.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-8] { flex-basis: 66.6666666%; max-width: 66.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-9] { flex-basis: 74.9%; max-width: 74.9%; }
[data-layout*=flex-cols] [data-layout~=cols-10] { flex-basis: 83.333333%; max-width: 83.333333%; }
[data-layout*=flex-cols] [data-layout~=cols-11] { flex-basis: 91.6666666%; max-width: 91.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-12] { flex-basis: 100%; max-width: 100%; }
[data-layout*=flex-rows] [data-layout~=rows-1] { flex-basis: 8.33333333%; max-height: 8.33333333%; }
[data-layout*=flex-rows] [data-layout~=rows-2] { flex-basis: 16.6666666%; max-height: 16.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-3] { flex-basis: 24.9999999%; max-height: 24.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-4] { flex-basis: 33.3333333%; max-height: 33.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-5] { flex-basis: 41.6666666%; max-height: 41.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-6] { flex-basis: 49.9999999%; max-height: 49.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-7] { flex-basis: 58.3333333%; max-height: 58.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-8] { flex-basis: 66.6666666%; max-height: 66.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-9] { flex-basis: 74.9%; max-height: 74.9%; }
[data-layout*=flex-rows] [data-layout~=rows-10] { flex-basis: 83.333333%; max-height: 83.333333%; }
[data-layout*=flex-rows] [data-layout~=rows-11] { flex-basis: 91.6666666%; max-height: 91.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-12] { flex-basis: 100%; max-height: 100%; }
@media screen and (min-width: 48em)
{
[data-layout~=grid-cols-sm] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-sm] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout~=cols-top-sm] { align-items: start; }
[data-layout~=cols-middle-sm] { align-items: center; }
[data-layout~=cols-bottom-sm] { align-items: end; }
[data-layout~=cols-gap-0-sm] { column-gap: 0; }
[data-layout~=cols-gap-1-sm] { column-gap: 1rem; }
[data-layout~=cols-gap-2-sm] { column-gap: 2rem; }
[data-layout~=cols-gap-3-sm] { column-gap: 3rem; }
[data-layout~=cols-gap-4-sm] { column-gap: 4rem; }
[data-layout~=cols-gap-5-sm] { column-gap: 5rem; }
[data-layout~=rows-gap-0-sm] { row-gap: 0; }
[data-layout~=rows-gap-1-sm] { row-gap: 1rem; }
[data-layout~=rows-gap-2-sm] { row-gap: 2rem; }
[data-layout~=rows-gap-3-sm] { row-gap: 3rem; }
[data-layout~=rows-gap-4-sm] { row-gap: 4rem; }
[data-layout~=rows-gap-5-sm] { row-gap: 5rem; }
[data-layout~=first-sm] { order: -1; }
[data-layout~=last-sm] { order: 12; }
[data-layout~=hide-sm] { display: none !important; }
[data-layout~=show-sm] { display: initial !important; }
[data-layout~=float-center-sm] { margin-left: auto; margin-right: auto; display: block; float: none; }
[data-layout~=float-left-sm] { float: left; }
[data-layout~=float-right-sm] { float: right; }
[data-layout~=clear-fix-sm]::after { content: ''; display: table; clear: both; }
[data-layout~=text-left-sm] { text-align: left !important; }
[data-layout~=text-right-sm] { text-align: right !important; }
[data-layout~=text-center-sm] { text-align: center !important; }
[data-layout~=grid-cols-1-sm] { display: grid !important; grid-template-columns: repeat(1, 1fr); }
[data-layout~=grid-cols-2-sm] { display: grid !important; grid-template-columns: repeat(2, 1fr); }
[data-layout~=grid-cols-3-sm] { display: grid !important; grid-template-columns: repeat(3, 1fr); }
[data-layout~=grid-cols-4-sm] { display: grid !important; grid-template-columns: repeat(4, 1fr); }
[data-layout~=grid-cols-5-sm] { display: grid !important; grid-template-columns: repeat(5, 1fr); }
[data-layout~=grid-cols-6-sm] { display: grid !important; grid-template-columns: repeat(6, 1fr); }
[data-layout~=grid-cols-7-sm] { display: grid !important; grid-template-columns: repeat(7, 1fr); }
[data-layout~=grid-cols-8-sm] { display: grid !important; grid-template-columns: repeat(8, 1fr); }
[data-layout~=grid-cols-9-sm] { display: grid !important; grid-template-columns: repeat(9, 1fr); }
[data-layout~=grid-cols-10-sm] { display: grid !important; grid-template-columns: repeat(10, 1fr); }
[data-layout~=grid-cols-11-sm] { display: grid !important; grid-template-columns: repeat(11, 1fr); }
[data-layout~=grid-cols-12-sm] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-1-sm] { display: grid !important; grid-template-rows: repeat(1, 1fr); }
[data-layout~=grid-rows-2-sm] { display: grid !important; grid-template-rows: repeat(2, 1fr); }
[data-layout~=grid-rows-3-sm] { display: grid !important; grid-template-rows: repeat(3, 1fr); }
[data-layout~=grid-rows-4-sm] { display: grid !important; grid-template-rows: repeat(4, 1fr); }
[data-layout~=grid-rows-5-sm] { display: grid !important; grid-template-rows: repeat(5, 1fr); }
[data-layout~=grid-rows-6-sm] { display: grid !important; grid-template-rows: repeat(6, 1fr); }
[data-layout~=grid-rows-7-sm] { display: grid !important; grid-template-rows: repeat(7, 1fr); }
[data-layout~=grid-rows-8-sm] { display: grid !important; grid-template-rows: repeat(8, 1fr); }
[data-layout~=grid-rows-9-sm] { display: grid !important; grid-template-rows: repeat(9, 1fr); }
[data-layout~=grid-rows-10-sm] { display: grid !important; grid-template-rows: repeat(10, 1fr); }
[data-layout~=grid-rows-11-sm] { display: grid !important; grid-template-rows: repeat(11, 1fr); }
[data-layout~=grid-rows-12-sm] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout*=grid-cols] [data-layout~=cols-1-sm] { grid-column: span 1 / 1 span; }
[data-layout*=grid-cols] [data-layout~=cols-2-sm] { grid-column: span 2 / 2 span; }
[data-layout*=grid-cols] [data-layout~=cols-3-sm] { grid-column: span 3 / 3 span; }
[data-layout*=grid-cols] [data-layout~=cols-4-sm] { grid-column: span 4 / 4 span; }
[data-layout*=grid-cols] [data-layout~=cols-5-sm] { grid-column: span 5 / 5 span; }
[data-layout*=grid-cols] [data-layout~=cols-6-sm] { grid-column: span 6 / 6 span; }
[data-layout*=grid-cols] [data-layout~=cols-7-sm] { grid-column: span 7 / 7 span; }
[data-layout*=grid-cols] [data-layout~=cols-8-sm] { grid-column: span 8 / 8 span; }
[data-layout*=grid-cols] [data-layout~=cols-9-sm] { grid-column: span 9 / 9 span; }
[data-layout*=grid-cols] [data-layout~=cols-10-sm] { grid-column: span 10 / 10 span; }
[data-layout*=grid-cols] [data-layout~=cols-11-sm] { grid-column: span 11 / 11 span; }
[data-layout*=grid-cols] [data-layout~=cols-12-sm] { grid-column: span 12 / 12 span; }
[data-layout*=grid-rows] [data-layout~=rows-1-sm] { grid-row: span 1 / 1 span; }
[data-layout*=grid-rows] [data-layout~=rows-2-sm] { grid-row: span 2 / 2 span; }
[data-layout*=grid-rows] [data-layout~=rows-3-sm] { grid-row: span 3 / 3 span; }
[data-layout*=grid-rows] [data-layout~=rows-4-sm] { grid-row: span 4 / 4 span; }
[data-layout*=grid-rows] [data-layout~=rows-5-sm] { grid-row: span 5 / 5 span; }
[data-layout*=grid-rows] [data-layout~=rows-6-sm] { grid-row: span 6 / 6 span; }
[data-layout*=grid-rows] [data-layout~=rows-7-sm] { grid-row: span 7 / 7 span; }
[data-layout*=grid-rows] [data-layout~=rows-8-sm] { grid-row: span 8 / 8 span; }
[data-layout*=grid-rows] [data-layout~=rows-9-sm] { grid-row: span 9 / 9 span; }
[data-layout*=grid-rows] [data-layout~=rows-10-sm] { grid-row: span 10 / 10 span; }
[data-layout*=grid-rows] [data-layout~=rows-11-sm] { grid-row: span 11 / 11 span; }
[data-layout*=grid-rows] [data-layout~=rows-12-sm] { grid-row: span 12 / 12 span; }
[data-layout*=grid-cols] [data-layout~=cols-offset-1-sm] { grid-column-start: 1; }
[data-layout*=grid-cols] [data-layout~=cols-offset-2-sm] { grid-column-start: 2; }
[data-layout*=grid-cols] [data-layout~=cols-offset-3-sm] { grid-column-start: 3; }
[data-layout*=grid-cols] [data-layout~=cols-offset-4-sm] { grid-column-start: 4; }
[data-layout*=grid-cols] [data-layout~=cols-offset-5-sm] { grid-column-start: 5; }
[data-layout*=grid-cols] [data-layout~=cols-offset-6-sm] { grid-column-start: 6; }
[data-layout*=grid-cols] [data-layout~=cols-offset-7-sm] { grid-column-start: 7; }
[data-layout*=grid-cols] [data-layout~=cols-offset-8-sm] { grid-column-start: 8; }
[data-layout*=grid-cols] [data-layout~=cols-offset-9-sm] { grid-column-start: 9; }
[data-layout*=grid-cols] [data-layout~=cols-offset-10-sm] { grid-column-start: 10; }
[data-layout*=grid-cols] [data-layout~=cols-offset-11-sm] { grid-column-start: 11; }
[data-layout*=grid-cols] [data-layout~=cols-offset-12-sm] { grid-column-start: 12; }
[data-layout*=grid-rows] [data-layout~=rows-offset-1-sm] { grid-row-start: 1; }
[data-layout*=grid-rows] [data-layout~=rows-offset-2-sm] { grid-row-start: 2; }
[data-layout*=grid-rows] [data-layout~=rows-offset-3-sm] { grid-row-start: 3; }
[data-layout*=grid-rows] [data-layout~=rows-offset-4-sm] { grid-row-start: 4; }
[data-layout*=grid-rows] [data-layout~=rows-offset-5-sm] { grid-row-start: 5; }
[data-layout*=grid-rows] [data-layout~=rows-offset-6-sm] { grid-row-start: 6; }
[data-layout*=grid-rows] [data-layout~=rows-offset-7-sm] { grid-row-start: 7; }
[data-layout*=grid-rows] [data-layout~=rows-offset-8-sm] { grid-row-start: 8; }
[data-layout*=grid-rows] [data-layout~=rows-offset-9-sm] { grid-row-start: 9; }
[data-layout*=grid-rows] [data-layout~=rows-offset-10-sm] { grid-row-start: 10; }
[data-layout*=grid-rows] [data-layout~=rows-offset-11-sm] { grid-row-start: 11; }
[data-layout*=grid-rows] [data-layout~=rows-offset-12-sm] { grid-row-start: 12; }
[data-layout~=flex-cols-1-sm] > * { flex-basis: 0; max-width: 100%; }
[data-layout~=flex-cols-2-sm] > * { flex-basis: 50%; max-width: 50%; }
[data-layout~=flex-cols-3-sm] > * { flex-basis: 33.33333333%; max-width: 33.33333333%; }
[data-layout~=flex-cols-4-sm] > * { flex-basis: 25%; max-width: 25%; }
[data-layout~=flex-cols-5-sm] > * { flex-basis: 20%; max-width: 20%; }
[data-layout~=flex-cols-6-sm] > * { flex-basis: 16.66666667%; max-width: 16.66666667%; }
[data-layout~=flex-cols-7-sm] > * { flex-basis: 14.28571428%; max-width: 14.28571428%; }
[data-layout~=flex-cols-8-sm] > * { flex-basis: 12.5%; max-width: 12.5%; }
[data-layout~=flex-cols-9-sm] > * { flex-basis: 11.11111111%; max-width: 11.11111111%; }
[data-layout~=flex-cols-10-sm] > * { flex-basis: 10%; max-width: 10%; }
[data-layout~=flex-cols-11-sm] > * { flex-basis: 9.09090909%; max-width: 9.09090909%; }
[data-layout~=flex-cols-12-sm] > * { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout~=flex-cols-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; }
[data-layout~=flex-cols-stretch-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-cols-around-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-cols-between-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-cols-center-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: center; }
[data-layout~=flex-cols-evenly-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-cols-start-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: start; }
[data-layout~=flex-cols-end-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: end; }
[data-layout~=flex-rows-sm] { display: flex !important; flex: 0 1 auto; flex-direction: column; flex-grow: 1; }
[data-layout~=flex-rows-stretch-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-rows-around-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-rows-between-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-rows-center-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: center; }
[data-layout~=flex-rows-evenly-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-rows-start-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: start; }
[data-layout~=flex-rows-end-sm] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: end; }
[data-layout*=flex-cols] [data-layout~=cols-fill-sm] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-cols] [data-layout~=cols-fit-sm] { flex-basis: auto; }
[data-layout*=flex-rows] [data-layout~=rows-fill-sm] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-rows] [data-layout~=rows-fit-sm] { flex-basis: auto; }
[data-layout*=flex-cols] [data-layout~=cols-1-sm] { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-2-sm] { flex-basis: 16.6666666%; max-width: 16.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-3-sm] { flex-basis: 24.9999999%; max-width: 24.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-4-sm] { flex-basis: 33.3333333%; max-width: 33.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-5-sm] { flex-basis: 41.6666666%; max-width: 41.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-6-sm] { flex-basis: 49.9999999%; max-width: 49.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-7-sm] { flex-basis: 58.3333333%; max-width: 58.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-8-sm] { flex-basis: 66.6666666%; max-width: 66.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-9-sm] { flex-basis: 74.9%; max-width: 74.9%; }
[data-layout*=flex-cols] [data-layout~=cols-10-sm] { flex-basis: 83.333333%; max-width: 83.333333%; }
[data-layout*=flex-cols] [data-layout~=cols-11-sm] { flex-basis: 91.6666666%; max-width: 91.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-12-sm] { flex-basis: 100%; max-width: 100%; }
[data-layout*=flex-rows] [data-layout~=rows-1-sm] { flex-basis: 8.33333333%; max-height: 8.33333333%; }
[data-layout*=flex-rows] [data-layout~=rows-2-sm] { flex-basis: 16.6666666%; max-height: 16.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-3-sm] { flex-basis: 24.9999999%; max-height: 24.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-4-sm] { flex-basis: 33.3333333%; max-height: 33.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-5-sm] { flex-basis: 41.6666666%; max-height: 41.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-6-sm] { flex-basis: 49.9999999%; max-height: 49.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-7-sm] { flex-basis: 58.3333333%; max-height: 58.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-8-sm] { flex-basis: 66.6666666%; max-height: 66.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-9-sm] { flex-basis: 74.9%; max-height: 74.9%; }
[data-layout*=flex-rows] [data-layout~=rows-10-sm] { flex-basis: 83.333333%; max-height: 83.333333%; }
[data-layout*=flex-rows] [data-layout~=rows-11-sm] { flex-basis: 91.6666666%; max-height: 91.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-12-sm] { flex-basis: 100%; max-height: 100%; }
}
@media screen and (min-width: 64em)
{
[data-layout~=grid-cols-md] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-md] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout~=cols-top-md] { align-items: start; }
[data-layout~=cols-middle-md] { align-items: center; }
[data-layout~=cols-bottom-md] { align-items: end; }
[data-layout~=cols-gap-0-md] { column-gap: 0; }
[data-layout~=cols-gap-1-md] { column-gap: 1rem; }
[data-layout~=cols-gap-2-md] { column-gap: 2rem; }
[data-layout~=cols-gap-3-md] { column-gap: 3rem; }
[data-layout~=cols-gap-4-md] { column-gap: 4rem; }
[data-layout~=cols-gap-5-md] { column-gap: 5rem; }
[data-layout~=rows-gap-0-md] { row-gap: 0; }
[data-layout~=rows-gap-1-md] { row-gap: 1rem; }
[data-layout~=rows-gap-2-md] { row-gap: 2rem; }
[data-layout~=rows-gap-3-md] { row-gap: 3rem; }
[data-layout~=rows-gap-4-md] { row-gap: 4rem; }
[data-layout~=rows-gap-5-md] { row-gap: 5rem; }
[data-layout~=first-md] { order: -1; }
[data-layout~=last-md] { order: 12; }
[data-layout~=hide-md] { display: none !important; }
[data-layout~=show-md] { display: initial !important; }
[data-layout~=float-center-md] { margin-left: auto; margin-right: auto; display: block; float: none; }
[data-layout~=float-left-md] { float: left; }
[data-layout~=float-right-md] { float: right; }
[data-layout~=clear-fix-md]::after { content: ''; display: table; clear: both; }
[data-layout~=text-left-md] { text-align: left !important; }
[data-layout~=text-right-md] { text-align: right !important; }
[data-layout~=text-center-md] { text-align: center !important; }
[data-layout~=grid-cols-1-md] { display: grid !important; grid-template-columns: repeat(1, 1fr); }
[data-layout~=grid-cols-2-md] { display: grid !important; grid-template-columns: repeat(2, 1fr); }
[data-layout~=grid-cols-3-md] { display: grid !important; grid-template-columns: repeat(3, 1fr); }
[data-layout~=grid-cols-4-md] { display: grid !important; grid-template-columns: repeat(4, 1fr); }
[data-layout~=grid-cols-5-md] { display: grid !important; grid-template-columns: repeat(5, 1fr); }
[data-layout~=grid-cols-6-md] { display: grid !important; grid-template-columns: repeat(6, 1fr); }
[data-layout~=grid-cols-7-md] { display: grid !important; grid-template-columns: repeat(7, 1fr); }
[data-layout~=grid-cols-8-md] { display: grid !important; grid-template-columns: repeat(8, 1fr); }
[data-layout~=grid-cols-9-md] { display: grid !important; grid-template-columns: repeat(9, 1fr); }
[data-layout~=grid-cols-10-md] { display: grid !important; grid-template-columns: repeat(10, 1fr); }
[data-layout~=grid-cols-11-md] { display: grid !important; grid-template-columns: repeat(11, 1fr); }
[data-layout~=grid-cols-12-md] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-1-md] { display: grid !important; grid-template-rows: repeat(1, 1fr); }
[data-layout~=grid-rows-2-md] { display: grid !important; grid-template-rows: repeat(2, 1fr); }
[data-layout~=grid-rows-3-md] { display: grid !important; grid-template-rows: repeat(3, 1fr); }
[data-layout~=grid-rows-4-md] { display: grid !important; grid-template-rows: repeat(4, 1fr); }
[data-layout~=grid-rows-5-md] { display: grid !important; grid-template-rows: repeat(5, 1fr); }
[data-layout~=grid-rows-6-md] { display: grid !important; grid-template-rows: repeat(6, 1fr); }
[data-layout~=grid-rows-7-md] { display: grid !important; grid-template-rows: repeat(7, 1fr); }
[data-layout~=grid-rows-8-md] { display: grid !important; grid-template-rows: repeat(8, 1fr); }
[data-layout~=grid-rows-9-md] { display: grid !important; grid-template-rows: repeat(9, 1fr); }
[data-layout~=grid-rows-10-md] { display: grid !important; grid-template-rows: repeat(10, 1fr); }
[data-layout~=grid-rows-11-md] { display: grid !important; grid-template-rows: repeat(11, 1fr); }
[data-layout~=grid-rows-12-md] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout*=grid-cols] [data-layout~=cols-1-md] { grid-column: span 1 / 1 span; }
[data-layout*=grid-cols] [data-layout~=cols-2-md] { grid-column: span 2 / 2 span; }
[data-layout*=grid-cols] [data-layout~=cols-3-md] { grid-column: span 3 / 3 span; }
[data-layout*=grid-cols] [data-layout~=cols-4-md] { grid-column: span 4 / 4 span; }
[data-layout*=grid-cols] [data-layout~=cols-5-md] { grid-column: span 5 / 5 span; }
[data-layout*=grid-cols] [data-layout~=cols-6-md] { grid-column: span 6 / 6 span; }
[data-layout*=grid-cols] [data-layout~=cols-7-md] { grid-column: span 7 / 7 span; }
[data-layout*=grid-cols] [data-layout~=cols-8-md] { grid-column: span 8 / 8 span; }
[data-layout*=grid-cols] [data-layout~=cols-9-md] { grid-column: span 9 / 9 span; }
[data-layout*=grid-cols] [data-layout~=cols-10-md] { grid-column: span 10 / 10 span; }
[data-layout*=grid-cols] [data-layout~=cols-11-md] { grid-column: span 11 / 11 span; }
[data-layout*=grid-cols] [data-layout~=cols-12-md] { grid-column: span 12 / 12 span; }
[data-layout*=grid-rows] [data-layout~=rows-1-md] { grid-row: span 1 / 1 span; }
[data-layout*=grid-rows] [data-layout~=rows-2-md] { grid-row: span 2 / 2 span; }
[data-layout*=grid-rows] [data-layout~=rows-3-md] { grid-row: span 3 / 3 span; }
[data-layout*=grid-rows] [data-layout~=rows-4-md] { grid-row: span 4 / 4 span; }
[data-layout*=grid-rows] [data-layout~=rows-5-md] { grid-row: span 5 / 5 span; }
[data-layout*=grid-rows] [data-layout~=rows-6-md] { grid-row: span 6 / 6 span; }
[data-layout*=grid-rows] [data-layout~=rows-7-md] { grid-row: span 7 / 7 span; }
[data-layout*=grid-rows] [data-layout~=rows-8-md] { grid-row: span 8 / 8 span; }
[data-layout*=grid-rows] [data-layout~=rows-9-md] { grid-row: span 9 / 9 span; }
[data-layout*=grid-rows] [data-layout~=rows-10-md] { grid-row: span 10 / 10 span; }
[data-layout*=grid-rows] [data-layout~=rows-11-md] { grid-row: span 11 / 11 span; }
[data-layout*=grid-rows] [data-layout~=rows-12-md] { grid-row: span 12 / 12 span; }
[data-layout*=grid-cols] [data-layout~=cols-offset-1-md] { grid-column-start: 1; }
[data-layout*=grid-cols] [data-layout~=cols-offset-2-md] { grid-column-start: 2; }
[data-layout*=grid-cols] [data-layout~=cols-offset-3-md] { grid-column-start: 3; }
[data-layout*=grid-cols] [data-layout~=cols-offset-4-md] { grid-column-start: 4; }
[data-layout*=grid-cols] [data-layout~=cols-offset-5-md] { grid-column-start: 5; }
[data-layout*=grid-cols] [data-layout~=cols-offset-6-md] { grid-column-start: 6; }
[data-layout*=grid-cols] [data-layout~=cols-offset-7-md] { grid-column-start: 7; }
[data-layout*=grid-cols] [data-layout~=cols-offset-8-md] { grid-column-start: 8; }
[data-layout*=grid-cols] [data-layout~=cols-offset-9-md] { grid-column-start: 9; }
[data-layout*=grid-cols] [data-layout~=cols-offset-10-md] { grid-column-start: 10; }
[data-layout*=grid-cols] [data-layout~=cols-offset-11-md] { grid-column-start: 11; }
[data-layout*=grid-cols] [data-layout~=cols-offset-12-md] { grid-column-start: 12; }
[data-layout*=grid-rows] [data-layout~=rows-offset-1-md] { grid-row-start: 1; }
[data-layout*=grid-rows] [data-layout~=rows-offset-2-md] { grid-row-start: 2; }
[data-layout*=grid-rows] [data-layout~=rows-offset-3-md] { grid-row-start: 3; }
[data-layout*=grid-rows] [data-layout~=rows-offset-4-md] { grid-row-start: 4; }
[data-layout*=grid-rows] [data-layout~=rows-offset-5-md] { grid-row-start: 5; }
[data-layout*=grid-rows] [data-layout~=rows-offset-6-md] { grid-row-start: 6; }
[data-layout*=grid-rows] [data-layout~=rows-offset-7-md] { grid-row-start: 7; }
[data-layout*=grid-rows] [data-layout~=rows-offset-8-md] { grid-row-start: 8; }
[data-layout*=grid-rows] [data-layout~=rows-offset-9-md] { grid-row-start: 9; }
[data-layout*=grid-rows] [data-layout~=rows-offset-10-md] { grid-row-start: 10; }
[data-layout*=grid-rows] [data-layout~=rows-offset-11-md] { grid-row-start: 11; }
[data-layout*=grid-rows] [data-layout~=rows-offset-12-md] { grid-row-start: 12; }
[data-layout~=flex-cols-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; }
[data-layout~=flex-cols-stretch-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-cols-around-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-cols-between-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-cols-center-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: center; }
[data-layout~=flex-cols-evenly-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-cols-start-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: start; }
[data-layout~=flex-cols-end-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: end; }
[data-layout~=flex-rows-md] { display: flex !important; flex: 0 1 auto; flex-direction: column; flex-grow: 1; }
[data-layout~=flex-rows-stretch-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-rows-around-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-rows-between-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-rows-center-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: center; }
[data-layout~=flex-rows-evenly-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-rows-start-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: start; }
[data-layout~=flex-rows-end-md] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: end; }
[data-layout~=flex-cols-1-md] > * { flex-basis: 0; max-width: 100%; }
[data-layout~=flex-cols-2-md] > * { flex-basis: 50%; max-width: 50%; }
[data-layout~=flex-cols-3-md] > * { flex-basis: 33.33333333%; max-width: 33.33333333%; }
[data-layout~=flex-cols-4-md] > * { flex-basis: 25%; max-width: 25%; }
[data-layout~=flex-cols-5-md] > * { flex-basis: 20%; max-width: 20%; }
[data-layout~=flex-cols-6-md] > * { flex-basis: 16.66666667%; max-width: 16.66666667%; }
[data-layout~=flex-cols-7-md] > * { flex-basis: 14.28571428%; max-width: 14.28571428%; }
[data-layout~=flex-cols-8-md] > * { flex-basis: 12.5%; max-width: 12.5%; }
[data-layout~=flex-cols-9-md] > * { flex-basis: 11.11111111%; max-width: 11.11111111%; }
[data-layout~=flex-cols-10-md] > * { flex-basis: 10%; max-width: 10%; }
[data-layout~=flex-cols-11-md] > * { flex-basis: 9.09090909%; max-width: 9.09090909%; }
[data-layout~=flex-cols-12-md] > * { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-fill-md] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-cols] [data-layout~=cols-fit-md] { flex-basis: auto; }
[data-layout*=flex-rows] [data-layout~=rows-fill-md] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-rows] [data-layout~=rows-fit-md] { flex-basis: auto; }
[data-layout*=flex-cols] [data-layout~=cols-1-md] { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-2-md] { flex-basis: 16.6666666%; max-width: 16.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-3-md] { flex-basis: 24.9999999%; max-width: 24.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-4-md] { flex-basis: 33.3333333%; max-width: 33.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-5-md] { flex-basis: 41.6666666%; max-width: 41.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-6-md] { flex-basis: 49.9999999%; max-width: 49.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-7-md] { flex-basis: 58.3333333%; max-width: 58.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-8-md] { flex-basis: 66.6666666%; max-width: 66.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-9-md] { flex-basis: 74.9%; max-width: 74.9%; }
[data-layout*=flex-cols] [data-layout~=cols-10-md] { flex-basis: 83.333333%; max-width: 83.333333%; }
[data-layout*=flex-cols] [data-layout~=cols-11-md] { flex-basis: 91.6666666%; max-width: 91.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-12-md] { flex-basis: 100%; max-width: 100%; }
[data-layout*=flex-rows] [data-layout~=rows-1-md] { flex-basis: 8.33333333%; max-height: 8.33333333%; }
[data-layout*=flex-rows] [data-layout~=rows-2-md] { flex-basis: 16.6666666%; max-height: 16.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-3-md] { flex-basis: 24.9999999%; max-height: 24.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-4-md] { flex-basis: 33.3333333%; max-height: 33.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-5-md] { flex-basis: 41.6666666%; max-height: 41.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-6-md] { flex-basis: 49.9999999%; max-height: 49.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-7-md] { flex-basis: 58.3333333%; max-height: 58.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-8-md] { flex-basis: 66.6666666%; max-height: 66.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-9-md] { flex-basis: 74.9%; max-height: 74.9%; }
[data-layout*=flex-rows] [data-layout~=rows-10-md] { flex-basis: 83.333333%; max-height: 83.333333%; }
[data-layout*=flex-rows] [data-layout~=rows-11-md] { flex-basis: 91.6666666%; max-height: 91.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-12-md] { flex-basis: 100%; max-height: 100%; }
}
@media screen and (min-width: 75em)
{
[data-layout~=grid-cols-lg] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-lg] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout~=cols-top-lg] { align-items: start; }
[data-layout~=cols-middle-lg] { align-items: center; }
[data-layout~=cols-bottom-lg] { align-items: end; }
[data-layout~=cols-gap-0-lg] { column-gap: 0; }
[data-layout~=cols-gap-1-lg] { column-gap: 1rem; }
[data-layout~=cols-gap-2-lg] { column-gap: 2rem; }
[data-layout~=cols-gap-3-lg] { column-gap: 3rem; }
[data-layout~=cols-gap-4-lg] { column-gap: 4rem; }
[data-layout~=cols-gap-5-lg] { column-gap: 5rem; }
[data-layout~=rows-gap-0-lg] { row-gap: 0; }
[data-layout~=rows-gap-1-lg] { row-gap: 1rem; }
[data-layout~=rows-gap-2-lg] { row-gap: 2rem; }
[data-layout~=rows-gap-3-lg] { row-gap: 3rem; }
[data-layout~=rows-gap-4-lg] { row-gap: 4rem; }
[data-layout~=rows-gap-5-lg] { row-gap: 5rem; }
[data-layout~=first-lg] { order: -1; }
[data-layout~=last-lg] { order: 12; }
[data-layout~=hide-lg] { display: none !important; }
[data-layout~=show-lg] { display: initial !important; }
[data-layout~=float-center-lg] { margin-left: auto; margin-right: auto; display: block; float: none; }
[data-layout~=float-left-lg] { float: left; }
[data-layout~=float-right-lg] { float: right; }
[data-layout~=clear-fix-lg]::after { content: ''; display: table; clear: both; }
[data-layout~=text-left-lg] { text-align: left !important; }
[data-layout~=text-right-lg] { text-align: right !important; }
[data-layout~=text-center-lg] { text-align: center !important; }
[data-layout~=grid-cols-1-lg] { display: grid !important; grid-template-columns: repeat(1, 1fr); }
[data-layout~=grid-cols-2-lg] { display: grid !important; grid-template-columns: repeat(2, 1fr); }
[data-layout~=grid-cols-3-lg] { display: grid !important; grid-template-columns: repeat(3, 1fr); }
[data-layout~=grid-cols-4-lg] { display: grid !important; grid-template-columns: repeat(4, 1fr); }
[data-layout~=grid-cols-5-lg] { display: grid !important; grid-template-columns: repeat(5, 1fr); }
[data-layout~=grid-cols-6-lg] { display: grid !important; grid-template-columns: repeat(6, 1fr); }
[data-layout~=grid-cols-7-lg] { display: grid !important; grid-template-columns: repeat(7, 1fr); }
[data-layout~=grid-cols-8-lg] { display: grid !important; grid-template-columns: repeat(8, 1fr); }
[data-layout~=grid-cols-9-lg] { display: grid !important; grid-template-columns: repeat(9, 1fr); }
[data-layout~=grid-cols-10-lg] { display: grid !important; grid-template-columns: repeat(10, 1fr); }
[data-layout~=grid-cols-11-lg] { display: grid !important; grid-template-columns: repeat(11, 1fr); }
[data-layout~=grid-cols-12-lg] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-1-lg] { display: grid !important; grid-template-rows: repeat(1, 1fr); }
[data-layout~=grid-rows-2-lg] { display: grid !important; grid-template-rows: repeat(2, 1fr); }
[data-layout~=grid-rows-3-lg] { display: grid !important; grid-template-rows: repeat(3, 1fr); }
[data-layout~=grid-rows-4-lg] { display: grid !important; grid-template-rows: repeat(4, 1fr); }
[data-layout~=grid-rows-5-lg] { display: grid !important; grid-template-rows: repeat(5, 1fr); }
[data-layout~=grid-rows-6-lg] { display: grid !important; grid-template-rows: repeat(6, 1fr); }
[data-layout~=grid-rows-7-lg] { display: grid !important; grid-template-rows: repeat(7, 1fr); }
[data-layout~=grid-rows-8-lg] { display: grid !important; grid-template-rows: repeat(8, 1fr); }
[data-layout~=grid-rows-9-lg] { display: grid !important; grid-template-rows: repeat(9, 1fr); }
[data-layout~=grid-rows-10-lg] { display: grid !important; grid-template-rows: repeat(10, 1fr); }
[data-layout~=grid-rows-11-lg] { display: grid !important; grid-template-rows: repeat(11, 1fr); }
[data-layout~=grid-rows-12-lg] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout*=grid-cols] [data-layout~=cols-1-lg] { grid-column: span 1 / 1 span; }
[data-layout*=grid-cols] [data-layout~=cols-2-lg] { grid-column: span 2 / 2 span; }
[data-layout*=grid-cols] [data-layout~=cols-3-lg] { grid-column: span 3 / 3 span; }
[data-layout*=grid-cols] [data-layout~=cols-4-lg] { grid-column: span 4 / 4 span; }
[data-layout*=grid-cols] [data-layout~=cols-5-lg] { grid-column: span 5 / 5 span; }
[data-layout*=grid-cols] [data-layout~=cols-6-lg] { grid-column: span 6 / 6 span; }
[data-layout*=grid-cols] [data-layout~=cols-7-lg] { grid-column: span 7 / 7 span; }
[data-layout*=grid-cols] [data-layout~=cols-8-lg] { grid-column: span 8 / 8 span; }
[data-layout*=grid-cols] [data-layout~=cols-9-lg] { grid-column: span 9 / 9 span; }
[data-layout*=grid-cols] [data-layout~=cols-10-lg] { grid-column: span 10 / 10 span; }
[data-layout*=grid-cols] [data-layout~=cols-11-lg] { grid-column: span 11 / 11 span; }
[data-layout*=grid-cols] [data-layout~=cols-12-lg] { grid-column: span 12 / 12 span; }
[data-layout*=grid-rows] [data-layout~=rows-1-lg] { grid-row: span 1 / 1 span; }
[data-layout*=grid-rows] [data-layout~=rows-2-lg] { grid-row: span 2 / 2 span; }
[data-layout*=grid-rows] [data-layout~=rows-3-lg] { grid-row: span 3 / 3 span; }
[data-layout*=grid-rows] [data-layout~=rows-4-lg] { grid-row: span 4 / 4 span; }
[data-layout*=grid-rows] [data-layout~=rows-5-lg] { grid-row: span 5 / 5 span; }
[data-layout*=grid-rows] [data-layout~=rows-6-lg] { grid-row: span 6 / 6 span; }
[data-layout*=grid-rows] [data-layout~=rows-7-lg] { grid-row: span 7 / 7 span; }
[data-layout*=grid-rows] [data-layout~=rows-8-lg] { grid-row: span 8 / 8 span; }
[data-layout*=grid-rows] [data-layout~=rows-9-lg] { grid-row: span 9 / 9 span; }
[data-layout*=grid-rows] [data-layout~=rows-10-lg] { grid-row: span 10 / 10 span; }
[data-layout*=grid-rows] [data-layout~=rows-11-lg] { grid-row: span 11 / 11 span; }
[data-layout*=grid-rows] [data-layout~=rows-12-lg] { grid-row: span 12 / 12 span; }
[data-layout*=grid-cols] [data-layout~=cols-offset-1-lg] { grid-column-start: 1; }
[data-layout*=grid-cols] [data-layout~=cols-offset-2-lg] { grid-column-start: 2; }
[data-layout*=grid-cols] [data-layout~=cols-offset-3-lg] { grid-column-start: 3; }
[data-layout*=grid-cols] [data-layout~=cols-offset-4-lg] { grid-column-start: 4; }
[data-layout*=grid-cols] [data-layout~=cols-offset-5-lg] { grid-column-start: 5; }
[data-layout*=grid-cols] [data-layout~=cols-offset-6-lg] { grid-column-start: 6; }
[data-layout*=grid-cols] [data-layout~=cols-offset-7-lg] { grid-column-start: 7; }
[data-layout*=grid-cols] [data-layout~=cols-offset-8-lg] { grid-column-start: 8; }
[data-layout*=grid-cols] [data-layout~=cols-offset-9-lg] { grid-column-start: 9; }
[data-layout*=grid-cols] [data-layout~=cols-offset-10-lg] { grid-column-start: 10; }
[data-layout*=grid-cols] [data-layout~=cols-offset-11-lg] { grid-column-start: 11; }
[data-layout*=grid-cols] [data-layout~=cols-offset-12-lg] { grid-column-start: 12; }
[data-layout*=grid-rows] [data-layout~=rows-offset-1-lg] { grid-row-start: 1; }
[data-layout*=grid-rows] [data-layout~=rows-offset-2-lg] { grid-row-start: 2; }
[data-layout*=grid-rows] [data-layout~=rows-offset-3-lg] { grid-row-start: 3; }
[data-layout*=grid-rows] [data-layout~=rows-offset-4-lg] { grid-row-start: 4; }
[data-layout*=grid-rows] [data-layout~=rows-offset-5-lg] { grid-row-start: 5; }
[data-layout*=grid-rows] [data-layout~=rows-offset-6-lg] { grid-row-start: 6; }
[data-layout*=grid-rows] [data-layout~=rows-offset-7-lg] { grid-row-start: 7; }
[data-layout*=grid-rows] [data-layout~=rows-offset-8-lg] { grid-row-start: 8; }
[data-layout*=grid-rows] [data-layout~=rows-offset-9-lg] { grid-row-start: 9; }
[data-layout*=grid-rows] [data-layout~=rows-offset-10-lg] { grid-row-start: 10; }
[data-layout*=grid-rows] [data-layout~=rows-offset-11-lg] { grid-row-start: 11; }
[data-layout*=grid-rows] [data-layout~=rows-offset-12-lg] { grid-row-start: 12; }
[data-layout~=flex-cols-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; }
[data-layout~=flex-cols-stretch-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-cols-around-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-cols-between-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-cols-center-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: center; }
[data-layout~=flex-cols-evenly-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-cols-start-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: start; }
[data-layout~=flex-cols-end-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: end; }
[data-layout~=flex-rows-lg] { display: flex !important; flex: 0 1 auto; flex-direction: column; flex-grow: 1; }
[data-layout~=flex-rows-stretch-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-rows-around-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-rows-between-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-rows-center-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: center; }
[data-layout~=flex-rows-evenly-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-rows-start-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: start; }
[data-layout~=flex-rows-end-lg] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: end; }
[data-layout~=flex-cols-1-lg] > * { flex-basis: 0; max-width: 100%; }
[data-layout~=flex-cols-2-lg] > * { flex-basis: 50%; max-width: 50%; }
[data-layout~=flex-cols-3-lg] > * { flex-basis: 33.33333333%; max-width: 33.33333333%; }
[data-layout~=flex-cols-4-lg] > * { flex-basis: 25%; max-width: 25%; }
[data-layout~=flex-cols-5-lg] > * { flex-basis: 20%; max-width: 20%; }
[data-layout~=flex-cols-6-lg] > * { flex-basis: 16.66666667%; max-width: 16.66666667%; }
[data-layout~=flex-cols-7-lg] > * { flex-basis: 14.28571428%; max-width: 14.28571428%; }
[data-layout~=flex-cols-8-lg] > * { flex-basis: 12.5%; max-width: 12.5%; }
[data-layout~=flex-cols-9-lg] > * { flex-basis: 11.11111111%; max-width: 11.11111111%; }
[data-layout~=flex-cols-10-lg] > * { flex-basis: 10%; max-width: 10%; }
[data-layout~=flex-cols-11-lg] > * { flex-basis: 9.09090909%; max-width: 9.09090909%; }
[data-layout~=flex-cols-12-lg] > * { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-fill-lg] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-cols] [data-layout~=cols-fit-lg] { flex-basis: auto; }
[data-layout*=flex-rows] [data-layout~=rows-fill-lg] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-rows] [data-layout~=rows-fit-lg] { flex-basis: auto; }
[data-layout*=flex-cols] [data-layout~=cols-1-lg] { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-2-lg] { flex-basis: 16.6666666%; max-width: 16.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-3-lg] { flex-basis: 24.9999999%; max-width: 24.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-4-lg] { flex-basis: 33.3333333%; max-width: 33.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-5-lg] { flex-basis: 41.6666666%; max-width: 41.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-6-lg] { flex-basis: 49.9999999%; max-width: 49.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-7-lg] { flex-basis: 58.3333333%; max-width: 58.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-8-lg] { flex-basis: 66.6666666%; max-width: 66.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-9-lg] { flex-basis: 74.9%; max-width: 74.9%; }
[data-layout*=flex-cols] [data-layout~=cols-10-lg] { flex-basis: 83.333333%; max-width: 83.333333%; }
[data-layout*=flex-cols] [data-layout~=cols-11-lg] { flex-basis: 91.6666666%; max-width: 91.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-12-lg] { flex-basis: 100%; max-width: 100%; }
[data-layout*=flex-rows] [data-layout~=rows-1-lg] { flex-basis: 8.33333333%; max-height: 8.33333333%; }
[data-layout*=flex-rows] [data-layout~=rows-2-lg] { flex-basis: 16.6666666%; max-height: 16.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-3-lg] { flex-basis: 24.9999999%; max-height: 24.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-4-lg] { flex-basis: 33.3333333%; max-height: 33.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-5-lg] { flex-basis: 41.6666666%; max-height: 41.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-6-lg] { flex-basis: 49.9999999%; max-height: 49.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-7-lg] { flex-basis: 58.3333333%; max-height: 58.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-8-lg] { flex-basis: 66.6666666%; max-height: 66.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-9-lg] { flex-basis: 74.9%; max-height: 74.9%; }
[data-layout*=flex-rows] [data-layout~=rows-10-lg] { flex-basis: 83.333333%; max-height: 83.333333%; }
[data-layout*=flex-rows] [data-layout~=rows-11-lg] { flex-basis: 91.6666666%; max-height: 91.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-12-lg] { flex-basis: 100%; max-height: 100%; }
}
@media screen and (min-width: 86em)
{
[data-layout~=grid-cols-xl] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-xl] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout~=cols-top-xl] { align-items: start; }
[data-layout~=cols-middle-xl] { align-items: center; }
[data-layout~=cols-bottom-xl] { align-items: end; }
[data-layout~=cols-gap-0-xl] { column-gap: 0; }
[data-layout~=cols-gap-1-xl] { column-gap: 1rem; }
[data-layout~=cols-gap-2-xl] { column-gap: 2rem; }
[data-layout~=cols-gap-3-xl] { column-gap: 3rem; }
[data-layout~=cols-gap-4-xl] { column-gap: 4rem; }
[data-layout~=cols-gap-5-xl] { column-gap: 5rem; }
[data-layout~=rows-gap-0-xl] { row-gap: 0; }
[data-layout~=rows-gap-1-xl] { row-gap: 1rem; }
[data-layout~=rows-gap-2-xl] { row-gap: 2rem; }
[data-layout~=rows-gap-3-xl] { row-gap: 3rem; }
[data-layout~=rows-gap-4-xl] { row-gap: 4rem; }
[data-layout~=rows-gap-5-xl] { row-gap: 5rem; }
[data-layout~=first-xl] { order: -1; }
[data-layout~=last-xl] { order: 12; }
[data-layout~=hide-xl] { display: none !important; }
[data-layout~=show-xl] { display: initial !important; }
[data-layout~=float-center-xl] { margin-left: auto; margin-right: auto; display: block; float: none; }
[data-layout~=float-left-xl] { float: left; }
[data-layout~=float-right-xl] { float: right; }
[data-layout~=clear-fix-xl]::after { content: ''; display: table; clear: both; }
[data-layout~=text-left-xl] { text-align: left !important; }
[data-layout~=text-right-xl] { text-align: right !important; }
[data-layout~=text-center-xl] { text-align: center !important; }
[data-layout~=grid-cols-1-xl] { display: grid !important; grid-template-columns: repeat(1, 1fr); }
[data-layout~=grid-cols-2-xl] { display: grid !important; grid-template-columns: repeat(2, 1fr); }
[data-layout~=grid-cols-3-xl] { display: grid !important; grid-template-columns: repeat(3, 1fr); }
[data-layout~=grid-cols-4-xl] { display: grid !important; grid-template-columns: repeat(4, 1fr); }
[data-layout~=grid-cols-5-xl] { display: grid !important; grid-template-columns: repeat(5, 1fr); }
[data-layout~=grid-cols-6-xl] { display: grid !important; grid-template-columns: repeat(6, 1fr); }
[data-layout~=grid-cols-7-xl] { display: grid !important; grid-template-columns: repeat(7, 1fr); }
[data-layout~=grid-cols-8-xl] { display: grid !important; grid-template-columns: repeat(8, 1fr); }
[data-layout~=grid-cols-9-xl] { display: grid !important; grid-template-columns: repeat(9, 1fr); }
[data-layout~=grid-cols-10-xl] { display: grid !important; grid-template-columns: repeat(10, 1fr); }
[data-layout~=grid-cols-11-xl] { display: grid !important; grid-template-columns: repeat(11, 1fr); }
[data-layout~=grid-cols-12-xl] { display: grid !important; grid-template-columns: repeat(12, 1fr); }
[data-layout~=grid-rows-1-xl] { display: grid !important; grid-template-rows: repeat(1, 1fr); }
[data-layout~=grid-rows-2-xl] { display: grid !important; grid-template-rows: repeat(2, 1fr); }
[data-layout~=grid-rows-3-xl] { display: grid !important; grid-template-rows: repeat(3, 1fr); }
[data-layout~=grid-rows-4-xl] { display: grid !important; grid-template-rows: repeat(4, 1fr); }
[data-layout~=grid-rows-5-xl] { display: grid !important; grid-template-rows: repeat(5, 1fr); }
[data-layout~=grid-rows-6-xl] { display: grid !important; grid-template-rows: repeat(6, 1fr); }
[data-layout~=grid-rows-7-xl] { display: grid !important; grid-template-rows: repeat(7, 1fr); }
[data-layout~=grid-rows-8-xl] { display: grid !important; grid-template-rows: repeat(8, 1fr); }
[data-layout~=grid-rows-9-xl] { display: grid !important; grid-template-rows: repeat(9, 1fr); }
[data-layout~=grid-rows-10-xl] { display: grid !important; grid-template-rows: repeat(10, 1fr); }
[data-layout~=grid-rows-11-xl] { display: grid !important; grid-template-rows: repeat(11, 1fr); }
[data-layout~=grid-rows-12-xl] { display: grid !important; grid-template-rows: repeat(12, 1fr); }
[data-layout*=grid-cols] [data-layout~=cols-1-xl] { grid-column: span 1 / 1 span; }
[data-layout*=grid-cols] [data-layout~=cols-2-xl] { grid-column: span 2 / 2 span; }
[data-layout*=grid-cols] [data-layout~=cols-3-xl] { grid-column: span 3 / 3 span; }
[data-layout*=grid-cols] [data-layout~=cols-4-xl] { grid-column: span 4 / 4 span; }
[data-layout*=grid-cols] [data-layout~=cols-5-xl] { grid-column: span 5 / 5 span; }
[data-layout*=grid-cols] [data-layout~=cols-6-xl] { grid-column: span 6 / 6 span; }
[data-layout*=grid-cols] [data-layout~=cols-7-xl] { grid-column: span 7 / 7 span; }
[data-layout*=grid-cols] [data-layout~=cols-8-xl] { grid-column: span 8 / 8 span; }
[data-layout*=grid-cols] [data-layout~=cols-9-xl] { grid-column: span 9 / 9 span; }
[data-layout*=grid-cols] [data-layout~=cols-10-xl] { grid-column: span 10 / 10 span; }
[data-layout*=grid-cols] [data-layout~=cols-11-xl] { grid-column: span 11 / 11 span; }
[data-layout*=grid-cols] [data-layout~=cols-12-xl] { grid-column: span 12 / 12 span; }
[data-layout*=grid-rows] [data-layout~=rows-1-xl] { grid-row: span 1 / 1 span; }
[data-layout*=grid-rows] [data-layout~=rows-2-xl] { grid-row: span 2 / 2 span; }
[data-layout*=grid-rows] [data-layout~=rows-3-xl] { grid-row: span 3 / 3 span; }
[data-layout*=grid-rows] [data-layout~=rows-4-xl] { grid-row: span 4 / 4 span; }
[data-layout*=grid-rows] [data-layout~=rows-5-xl] { grid-row: span 5 / 5 span; }
[data-layout*=grid-rows] [data-layout~=rows-6-xl] { grid-row: span 6 / 6 span; }
[data-layout*=grid-rows] [data-layout~=rows-7-xl] { grid-row: span 7 / 7 span; }
[data-layout*=grid-rows] [data-layout~=rows-8-xl] { grid-row: span 8 / 8 span; }
[data-layout*=grid-rows] [data-layout~=rows-9-xl] { grid-row: span 9 / 9 span; }
[data-layout*=grid-rows] [data-layout~=rows-10-xl] { grid-row: span 10 / 10 span; }
[data-layout*=grid-rows] [data-layout~=rows-11-xl] { grid-row: span 11 / 11 span; }
[data-layout*=grid-rows] [data-layout~=rows-12-xl] { grid-row: span 12 / 12 span; }
[data-layout*=grid-cols] [data-layout~=cols-offset-1-xl] { grid-column-start: 1; }
[data-layout*=grid-cols] [data-layout~=cols-offset-2-xl] { grid-column-start: 2; }
[data-layout*=grid-cols] [data-layout~=cols-offset-3-xl] { grid-column-start: 3; }
[data-layout*=grid-cols] [data-layout~=cols-offset-4-xl] { grid-column-start: 4; }
[data-layout*=grid-cols] [data-layout~=cols-offset-5-xl] { grid-column-start: 5; }
[data-layout*=grid-cols] [data-layout~=cols-offset-6-xl] { grid-column-start: 6; }
[data-layout*=grid-cols] [data-layout~=cols-offset-7-xl] { grid-column-start: 7; }
[data-layout*=grid-cols] [data-layout~=cols-offset-8-xl] { grid-column-start: 8; }
[data-layout*=grid-cols] [data-layout~=cols-offset-9-xl] { grid-column-start: 9; }
[data-layout*=grid-cols] [data-layout~=cols-offset-10-xl] { grid-column-start: 10; }
[data-layout*=grid-cols] [data-layout~=cols-offset-11-xl] { grid-column-start: 11; }
[data-layout*=grid-cols] [data-layout~=cols-offset-12-xl] { grid-column-start: 12; }
[data-layout*=grid-rows] [data-layout~=rows-offset-1-xl] { grid-row-start: 1; }
[data-layout*=grid-rows] [data-layout~=rows-offset-2-xl] { grid-row-start: 2; }
[data-layout*=grid-rows] [data-layout~=rows-offset-3-xl] { grid-row-start: 3; }
[data-layout*=grid-rows] [data-layout~=rows-offset-4-xl] { grid-row-start: 4; }
[data-layout*=grid-rows] [data-layout~=rows-offset-5-xl] { grid-row-start: 5; }
[data-layout*=grid-rows] [data-layout~=rows-offset-6-xl] { grid-row-start: 6; }
[data-layout*=grid-rows] [data-layout~=rows-offset-7-xl] { grid-row-start: 7; }
[data-layout*=grid-rows] [data-layout~=rows-offset-8-xl] { grid-row-start: 8; }
[data-layout*=grid-rows] [data-layout~=rows-offset-9-xl] { grid-row-start: 9; }
[data-layout*=grid-rows] [data-layout~=rows-offset-10-xl] { grid-row-start: 10; }
[data-layout*=grid-rows] [data-layout~=rows-offset-11-xl] { grid-row-start: 11; }
[data-layout*=grid-rows] [data-layout~=rows-offset-12-xl] { grid-row-start: 12; }
[data-layout~=flex-cols-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; }
[data-layout~=flex-cols-stretch-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-cols-around-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-cols-between-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-cols-center-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: center; }
[data-layout~=flex-cols-evenly-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-cols-start-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: start; }
[data-layout~=flex-cols-end-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: row; flex-grow: 1; justify-content: end; }
[data-layout~=flex-rows-xl] { display: flex !important; flex: 0 1 auto; flex-direction: column; flex-grow: 1; }
[data-layout~=flex-rows-stretch-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; flex-basis: auto; }
[data-layout~=flex-rows-around-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-around; }
[data-layout~=flex-rows-between-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-between; }
[data-layout~=flex-rows-center-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: center; }
[data-layout~=flex-rows-evenly-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: space-evenly; }
[data-layout~=flex-rows-start-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: start; }
[data-layout~=flex-rows-end-xl] { display: flex !important; flex-wrap: wrap; flex: 0 1 auto; flex-direction: column; flex-grow: 1; justify-content: end; }
[data-layout~=flex-cols-1-xl] > * { flex-basis: 0; max-width: 100%; }
[data-layout~=flex-cols-2-xl] > * { flex-basis: 50%; max-width: 50%; }
[data-layout~=flex-cols-3-xl] > * { flex-basis: 33.33333333%; max-width: 33.33333333%; }
[data-layout~=flex-cols-4-xl] > * { flex-basis: 25%; max-width: 25%; }
[data-layout~=flex-cols-5-xl] > * { flex-basis: 20%; max-width: 20%; }
[data-layout~=flex-cols-6-xl] > * { flex-basis: 16.66666667%; max-width: 16.66666667%; }
[data-layout~=flex-cols-7-xl] > * { flex-basis: 14.28571428%; max-width: 14.28571428%; }
[data-layout~=flex-cols-8-xl] > * { flex-basis: 12.5%; max-width: 12.5%; }
[data-layout~=flex-cols-9-xl] > * { flex-basis: 11.11111111%; max-width: 11.11111111%; }
[data-layout~=flex-cols-10-xl] > * { flex-basis: 10%; max-width: 10%; }
[data-layout~=flex-cols-11-xl] > * { flex-basis: 9.09090909%; max-width: 9.09090909%; }
[data-layout~=flex-cols-12-xl] > * { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-fill-lx] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-cols] [data-layout~=cols-fit-lx] { flex-basis: auto; }
[data-layout*=flex-rows] [data-layout~=rows-fill-lx] { flex: 1 1 0%; flex-basis: 0; }
[data-layout*=flex-rows] [data-layout~=rows-fit-lx] { flex-basis: auto; }
[data-layout*=flex-cols] [data-layout~=cols-1-xl] { flex-basis: 8.33333333%; max-width: 8.33333333%; }
[data-layout*=flex-cols] [data-layout~=cols-2-xl] { flex-basis: 16.6666666%; max-width: 16.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-3-xl] { flex-basis: 24.9999999%; max-width: 24.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-4-xl] { flex-basis: 33.3333333%; max-width: 33.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-5-xl] { flex-basis: 41.6666666%; max-width: 41.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-6-xl] { flex-basis: 49.9999999%; max-width: 49.9999999%; }
[data-layout*=flex-cols] [data-layout~=cols-7-xl] { flex-basis: 58.3333333%; max-width: 58.3333333%; }
[data-layout*=flex-cols] [data-layout~=cols-8-xl] { flex-basis: 66.6666666%; max-width: 66.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-9-xl] { flex-basis: 74.9%; max-width: 74.9%; }
[data-layout*=flex-cols] [data-layout~=cols-10-xl] { flex-basis: 83.333333%; max-width: 83.333333%; }
[data-layout*=flex-cols] [data-layout~=cols-11-xl] { flex-basis: 91.6666666%; max-width: 91.6666666%; }
[data-layout*=flex-cols] [data-layout~=cols-12-xl] { flex-basis: 100%; max-width: 100%; }
[data-layout*=flex-rows] [data-layout~=rows-1-xl] { flex-basis: 8.33333333%; max-height: 8.33333333%; }
[data-layout*=flex-rows] [data-layout~=rows-2-xl] { flex-basis: 16.6666666%; max-height: 16.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-3-xl] { flex-basis: 24.9999999%; max-height: 24.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-4-xl] { flex-basis: 33.3333333%; max-height: 33.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-5-xl] { flex-basis: 41.6666666%; max-height: 41.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-6-xl] { flex-basis: 49.9999999%; max-height: 49.9999999%; }
[data-layout*=flex-rows] [data-layout~=rows-7-xl] { flex-basis: 58.3333333%; max-height: 58.3333333%; }
[data-layout*=flex-rows] [data-layout~=rows-8-xl] { flex-basis: 66.6666666%; max-height: 66.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-9-xl] { flex-basis: 74.9%; max-height: 74.9%; }
[data-layout*=flex-rows] [data-layout~=rows-10-xl] { flex-basis: 83.333333%; max-height: 83.333333%; }
[data-layout*=flex-rows] [data-layout~=rows-11-xl] { flex-basis: 91.6666666%; max-height: 91.6666666%; }
[data-layout*=flex-rows] [data-layout~=rows-12-xl] { flex-basis: 100%; max-height: 100%; }
}