@lobergdesign/dot-grid 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/grid.css CHANGED
@@ -21,14 +21,8 @@
21
21
  --grid-bp-lg: 1024px;
22
22
  --grid-bp-xl: 1280px;
23
23
  --grid-bp-xxl: 1536px;
24
- --grid-wrap-max-width: 180rem;
25
- --grid-wrap-width: 90vw;
26
- --grid-gap-none: 0;
27
- --grid-gap-xs: 0.5rem;
28
- --grid-gap-sm: 1rem;
29
- --grid-gap-md: clamp(1rem, 2vw, 2rem);
30
- --grid-gap-lg: 3rem;
31
- --grid-gap-xl: 4rem;
24
+ --grid-w-max-width: 180rem;
25
+ --grid-w-width: 90vw;
32
26
  }
33
27
 
34
28
  /*!
@@ -48,12 +42,12 @@
48
42
  */
49
43
  @layer grid.base, grid.utilities, grid.responsive, grid.fluid;
50
44
  @layer grid.base {
51
- .wrap {
52
- width: var(--grid-wrap-width, 90vw);
53
- max-width: var(--grid-wrap-max-width, 180rem);
45
+ .grid-w {
46
+ width: var(--grid-w-width, 90vw);
47
+ max-width: var(--grid-w-max-width, 180rem);
54
48
  margin-inline: auto;
55
49
  }
56
- .row {
50
+ .grid-r {
57
51
  display: grid;
58
52
  grid-template-columns: repeat(var(--grid-columns, 12), 1fr);
59
53
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
@@ -61,98 +55,98 @@
61
55
  container-type: inline-size;
62
56
  container-name: grid;
63
57
  }
64
- .row > * {
58
+ .grid-r > * {
65
59
  grid-column-end: span var(--grid-columns, 12);
66
60
  }
67
- .col {
61
+ .grid-c {
68
62
  grid-column-end: span var(--grid-columns, 12);
69
63
  }
70
- .col-1 {
64
+ .grid-c-1 {
71
65
  grid-column-end: span 1;
72
66
  }
73
- .col-2 {
67
+ .grid-c-2 {
74
68
  grid-column-end: span 2;
75
69
  }
76
- .col-3 {
70
+ .grid-c-3 {
77
71
  grid-column-end: span 3;
78
72
  }
79
- .col-4 {
73
+ .grid-c-4 {
80
74
  grid-column-end: span 4;
81
75
  }
82
- .col-5 {
76
+ .grid-c-5 {
83
77
  grid-column-end: span 5;
84
78
  }
85
- .col-6 {
79
+ .grid-c-6 {
86
80
  grid-column-end: span 6;
87
81
  }
88
- .col-7 {
82
+ .grid-c-7 {
89
83
  grid-column-end: span 7;
90
84
  }
91
- .col-8 {
85
+ .grid-c-8 {
92
86
  grid-column-end: span 8;
93
87
  }
94
- .col-9 {
88
+ .grid-c-9 {
95
89
  grid-column-end: span 9;
96
90
  }
97
- .col-10 {
91
+ .grid-c-10 {
98
92
  grid-column-end: span 10;
99
93
  }
100
- .col-11 {
94
+ .grid-c-11 {
101
95
  grid-column-end: span 11;
102
96
  }
103
- .col-12 {
97
+ .grid-c-12 {
104
98
  grid-column-end: span 12;
105
99
  }
106
- .col-start-1 {
100
+ .grid-c-start-1 {
107
101
  grid-column-start: 1;
108
102
  }
109
- .col-start-2 {
103
+ .grid-c-start-2 {
110
104
  grid-column-start: 2;
111
105
  }
112
- .col-start-3 {
106
+ .grid-c-start-3 {
113
107
  grid-column-start: 3;
114
108
  }
115
- .col-start-4 {
109
+ .grid-c-start-4 {
116
110
  grid-column-start: 4;
117
111
  }
118
- .col-start-5 {
112
+ .grid-c-start-5 {
119
113
  grid-column-start: 5;
120
114
  }
121
- .col-start-6 {
115
+ .grid-c-start-6 {
122
116
  grid-column-start: 6;
123
117
  }
124
- .col-start-7 {
118
+ .grid-c-start-7 {
125
119
  grid-column-start: 7;
126
120
  }
127
- .col-start-8 {
121
+ .grid-c-start-8 {
128
122
  grid-column-start: 8;
129
123
  }
130
- .col-start-9 {
124
+ .grid-c-start-9 {
131
125
  grid-column-start: 9;
132
126
  }
133
- .col-start-10 {
127
+ .grid-c-start-10 {
134
128
  grid-column-start: 10;
135
129
  }
136
- .col-start-11 {
130
+ .grid-c-start-11 {
137
131
  grid-column-start: 11;
138
132
  }
139
- .col-start-12 {
133
+ .grid-c-start-12 {
140
134
  grid-column-start: 12;
141
135
  }
142
- .row-subgrid {
136
+ .grid-r-subgrid {
143
137
  display: grid;
144
138
  grid-template-columns: subgrid;
145
139
  grid-column: 1/-1;
146
140
  }
147
- .row-subgrid:not([style*=gap]) {
141
+ .grid-r-subgrid:not([style*=gap]) {
148
142
  gap: inherit;
149
143
  }
150
- .col-subgrid {
144
+ .grid-c-subgrid {
151
145
  display: grid;
152
146
  grid-template-rows: subgrid;
153
147
  grid-row: 1/-1;
154
148
  }
155
- .row .row {
149
+ .grid-r .grid-r {
156
150
  grid-column: 1/-1;
157
151
  padding-block-end: 0;
158
152
  }
@@ -173,33 +167,8 @@
173
167
  * https://github.com/lobergdesign/dot-grid
174
168
  */
175
169
  @layer grid.utilities {
176
- .gap-none,
177
170
  .no-gap {
178
- gap: var(--grid-gap-none, 0) !important;
179
- }
180
- .gap-xs {
181
- gap: var(--grid-gap-xs, 0.5rem) !important;
182
- }
183
- .gap-sm {
184
- gap: var(--grid-gap-sm, 1rem) !important;
185
- }
186
- .gap,
187
- .gap-md {
188
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
189
- }
190
- .gap-lg {
191
- gap: var(--grid-gap-lg, 3rem) !important;
192
- }
193
- .gap-xl {
194
- gap: var(--grid-gap-xl, 4rem) !important;
195
- }
196
- .gap-b-none,
197
- .no-gap-b {
198
- row-gap: 0 !important;
199
- }
200
- .gap-sides-none,
201
- .no-gap-sides {
202
- column-gap: 0 !important;
171
+ gap: 0;
203
172
  }
204
173
  .place-t-l {
205
174
  display: grid;
@@ -273,44 +242,20 @@
273
242
  display: flex;
274
243
  justify-content: space-evenly;
275
244
  }
276
- .aspect-square {
277
- aspect-ratio: 1/1;
278
- }
279
- .aspect-video {
280
- aspect-ratio: 16/9;
281
- }
282
- .aspect-4-3 {
283
- aspect-ratio: 4/3;
284
- }
285
- .aspect-21-9 {
286
- aspect-ratio: 21/9;
287
- }
288
- .aspect-auto {
289
- aspect-ratio: auto;
290
- }
291
- .col-min {
245
+ .grid-c-min {
292
246
  width: min-content;
293
247
  grid-column: auto;
294
248
  }
295
- .col-max {
249
+ .grid-c-max {
296
250
  width: max-content;
297
251
  grid-column: auto;
298
252
  }
299
- .col-fit {
253
+ .grid-c-fit {
300
254
  width: fit-content;
301
255
  grid-column: auto;
302
256
  }
303
257
  .hidden {
304
- display: none !important;
305
- }
306
- .order-first {
307
- order: -1;
308
- }
309
- .order-last {
310
- order: 999;
311
- }
312
- .order-none {
313
- order: 0;
258
+ display: none;
314
259
  }
315
260
  }
316
261
  /*!
@@ -330,953 +275,863 @@
330
275
  */
331
276
  @layer grid.responsive {
332
277
  @container grid (min-width: 640px) {
333
- .col-sm-1 {
278
+ .grid-c-sm-1 {
334
279
  grid-column-end: span 1;
335
280
  }
336
- .col-sm-2 {
281
+ .grid-c-sm-2 {
337
282
  grid-column-end: span 2;
338
283
  }
339
- .col-sm-3 {
284
+ .grid-c-sm-3 {
340
285
  grid-column-end: span 3;
341
286
  }
342
- .col-sm-4 {
287
+ .grid-c-sm-4 {
343
288
  grid-column-end: span 4;
344
289
  }
345
- .col-sm-5 {
290
+ .grid-c-sm-5 {
346
291
  grid-column-end: span 5;
347
292
  }
348
- .col-sm-6 {
293
+ .grid-c-sm-6 {
349
294
  grid-column-end: span 6;
350
295
  }
351
- .col-sm-7 {
296
+ .grid-c-sm-7 {
352
297
  grid-column-end: span 7;
353
298
  }
354
- .col-sm-8 {
299
+ .grid-c-sm-8 {
355
300
  grid-column-end: span 8;
356
301
  }
357
- .col-sm-9 {
302
+ .grid-c-sm-9 {
358
303
  grid-column-end: span 9;
359
304
  }
360
- .col-sm-10 {
305
+ .grid-c-sm-10 {
361
306
  grid-column-end: span 10;
362
307
  }
363
- .col-sm-11 {
308
+ .grid-c-sm-11 {
364
309
  grid-column-end: span 11;
365
310
  }
366
- .col-sm-12 {
311
+ .grid-c-sm-12 {
367
312
  grid-column-end: span 12;
368
313
  }
369
- .col-start-sm-1 {
314
+ .grid-c-start-sm-1 {
370
315
  grid-column-start: 1;
371
316
  }
372
- .col-start-sm-2 {
317
+ .grid-c-start-sm-2 {
373
318
  grid-column-start: 2;
374
319
  }
375
- .col-start-sm-3 {
320
+ .grid-c-start-sm-3 {
376
321
  grid-column-start: 3;
377
322
  }
378
- .col-start-sm-4 {
323
+ .grid-c-start-sm-4 {
379
324
  grid-column-start: 4;
380
325
  }
381
- .col-start-sm-5 {
326
+ .grid-c-start-sm-5 {
382
327
  grid-column-start: 5;
383
328
  }
384
- .col-start-sm-6 {
329
+ .grid-c-start-sm-6 {
385
330
  grid-column-start: 6;
386
331
  }
387
- .col-start-sm-7 {
332
+ .grid-c-start-sm-7 {
388
333
  grid-column-start: 7;
389
334
  }
390
- .col-start-sm-8 {
335
+ .grid-c-start-sm-8 {
391
336
  grid-column-start: 8;
392
337
  }
393
- .col-start-sm-9 {
338
+ .grid-c-start-sm-9 {
394
339
  grid-column-start: 9;
395
340
  }
396
- .col-start-sm-10 {
341
+ .grid-c-start-sm-10 {
397
342
  grid-column-start: 10;
398
343
  }
399
- .col-start-sm-11 {
344
+ .grid-c-start-sm-11 {
400
345
  grid-column-start: 11;
401
346
  }
402
- .col-start-sm-12 {
347
+ .grid-c-start-sm-12 {
403
348
  grid-column-start: 12;
404
349
  }
405
- .gap-sm-none {
406
- gap: 0 !important;
407
- }
408
- .gap-sm-xs {
409
- gap: var(--grid-gap-xs, 0.5rem) !important;
410
- }
411
- .gap-sm-sm {
412
- gap: var(--grid-gap-sm, 1rem) !important;
413
- }
414
- .gap-sm-md {
415
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
416
- }
417
- .gap-sm-lg {
418
- gap: var(--grid-gap-lg, 3rem) !important;
419
- }
420
- .gap-sm-xl {
421
- gap: var(--grid-gap-xl, 4rem) !important;
422
- }
423
350
  .hidden-sm {
424
- display: none !important;
351
+ display: none;
425
352
  }
426
353
  .block-sm {
427
- display: block !important;
354
+ display: block;
428
355
  }
429
356
  .grid-sm {
430
- display: grid !important;
357
+ display: grid;
431
358
  }
432
359
  .flex-sm {
433
- display: flex !important;
360
+ display: flex;
434
361
  }
435
362
  }
436
363
  @container grid (min-width: 768px) {
437
- .col-md-1 {
364
+ .grid-c-md-1 {
438
365
  grid-column-end: span 1;
439
366
  }
440
- .col-md-2 {
367
+ .grid-c-md-2 {
441
368
  grid-column-end: span 2;
442
369
  }
443
- .col-md-3 {
370
+ .grid-c-md-3 {
444
371
  grid-column-end: span 3;
445
372
  }
446
- .col-md-4 {
373
+ .grid-c-md-4 {
447
374
  grid-column-end: span 4;
448
375
  }
449
- .col-md-5 {
376
+ .grid-c-md-5 {
450
377
  grid-column-end: span 5;
451
378
  }
452
- .col-md-6 {
379
+ .grid-c-md-6 {
453
380
  grid-column-end: span 6;
454
381
  }
455
- .col-md-7 {
382
+ .grid-c-md-7 {
456
383
  grid-column-end: span 7;
457
384
  }
458
- .col-md-8 {
385
+ .grid-c-md-8 {
459
386
  grid-column-end: span 8;
460
387
  }
461
- .col-md-9 {
388
+ .grid-c-md-9 {
462
389
  grid-column-end: span 9;
463
390
  }
464
- .col-md-10 {
391
+ .grid-c-md-10 {
465
392
  grid-column-end: span 10;
466
393
  }
467
- .col-md-11 {
394
+ .grid-c-md-11 {
468
395
  grid-column-end: span 11;
469
396
  }
470
- .col-md-12 {
397
+ .grid-c-md-12 {
471
398
  grid-column-end: span 12;
472
399
  }
473
- .col-start-md-1 {
400
+ .grid-c-start-md-1 {
474
401
  grid-column-start: 1;
475
402
  }
476
- .col-start-md-2 {
403
+ .grid-c-start-md-2 {
477
404
  grid-column-start: 2;
478
405
  }
479
- .col-start-md-3 {
406
+ .grid-c-start-md-3 {
480
407
  grid-column-start: 3;
481
408
  }
482
- .col-start-md-4 {
409
+ .grid-c-start-md-4 {
483
410
  grid-column-start: 4;
484
411
  }
485
- .col-start-md-5 {
412
+ .grid-c-start-md-5 {
486
413
  grid-column-start: 5;
487
414
  }
488
- .col-start-md-6 {
415
+ .grid-c-start-md-6 {
489
416
  grid-column-start: 6;
490
417
  }
491
- .col-start-md-7 {
418
+ .grid-c-start-md-7 {
492
419
  grid-column-start: 7;
493
420
  }
494
- .col-start-md-8 {
421
+ .grid-c-start-md-8 {
495
422
  grid-column-start: 8;
496
423
  }
497
- .col-start-md-9 {
424
+ .grid-c-start-md-9 {
498
425
  grid-column-start: 9;
499
426
  }
500
- .col-start-md-10 {
427
+ .grid-c-start-md-10 {
501
428
  grid-column-start: 10;
502
429
  }
503
- .col-start-md-11 {
430
+ .grid-c-start-md-11 {
504
431
  grid-column-start: 11;
505
432
  }
506
- .col-start-md-12 {
433
+ .grid-c-start-md-12 {
507
434
  grid-column-start: 12;
508
435
  }
509
- .gap-md-none {
510
- gap: 0 !important;
511
- }
512
- .gap-md-xs {
513
- gap: var(--grid-gap-xs, 0.5rem) !important;
514
- }
515
- .gap-md-sm {
516
- gap: var(--grid-gap-sm, 1rem) !important;
517
- }
518
- .gap-md-md {
519
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
520
- }
521
- .gap-md-lg {
522
- gap: var(--grid-gap-lg, 3rem) !important;
523
- }
524
- .gap-md-xl {
525
- gap: var(--grid-gap-xl, 4rem) !important;
526
- }
527
436
  .hidden-md {
528
- display: none !important;
437
+ display: none;
529
438
  }
530
439
  .block-md {
531
- display: block !important;
440
+ display: block;
532
441
  }
533
442
  .grid-md {
534
- display: grid !important;
443
+ display: grid;
535
444
  }
536
445
  .flex-md {
537
- display: flex !important;
446
+ display: flex;
538
447
  }
539
448
  }
540
449
  @container grid (min-width: 1024px) {
541
- .col-lg-1 {
450
+ .grid-c-lg-1 {
542
451
  grid-column-end: span 1;
543
452
  }
544
- .col-lg-2 {
453
+ .grid-c-lg-2 {
545
454
  grid-column-end: span 2;
546
455
  }
547
- .col-lg-3 {
456
+ .grid-c-lg-3 {
548
457
  grid-column-end: span 3;
549
458
  }
550
- .col-lg-4 {
459
+ .grid-c-lg-4 {
551
460
  grid-column-end: span 4;
552
461
  }
553
- .col-lg-5 {
462
+ .grid-c-lg-5 {
554
463
  grid-column-end: span 5;
555
464
  }
556
- .col-lg-6 {
465
+ .grid-c-lg-6 {
557
466
  grid-column-end: span 6;
558
467
  }
559
- .col-lg-7 {
468
+ .grid-c-lg-7 {
560
469
  grid-column-end: span 7;
561
470
  }
562
- .col-lg-8 {
471
+ .grid-c-lg-8 {
563
472
  grid-column-end: span 8;
564
473
  }
565
- .col-lg-9 {
474
+ .grid-c-lg-9 {
566
475
  grid-column-end: span 9;
567
476
  }
568
- .col-lg-10 {
477
+ .grid-c-lg-10 {
569
478
  grid-column-end: span 10;
570
479
  }
571
- .col-lg-11 {
480
+ .grid-c-lg-11 {
572
481
  grid-column-end: span 11;
573
482
  }
574
- .col-lg-12 {
483
+ .grid-c-lg-12 {
575
484
  grid-column-end: span 12;
576
485
  }
577
- .col-start-lg-1 {
486
+ .grid-c-start-lg-1 {
578
487
  grid-column-start: 1;
579
488
  }
580
- .col-start-lg-2 {
489
+ .grid-c-start-lg-2 {
581
490
  grid-column-start: 2;
582
491
  }
583
- .col-start-lg-3 {
492
+ .grid-c-start-lg-3 {
584
493
  grid-column-start: 3;
585
494
  }
586
- .col-start-lg-4 {
495
+ .grid-c-start-lg-4 {
587
496
  grid-column-start: 4;
588
497
  }
589
- .col-start-lg-5 {
498
+ .grid-c-start-lg-5 {
590
499
  grid-column-start: 5;
591
500
  }
592
- .col-start-lg-6 {
501
+ .grid-c-start-lg-6 {
593
502
  grid-column-start: 6;
594
503
  }
595
- .col-start-lg-7 {
504
+ .grid-c-start-lg-7 {
596
505
  grid-column-start: 7;
597
506
  }
598
- .col-start-lg-8 {
507
+ .grid-c-start-lg-8 {
599
508
  grid-column-start: 8;
600
509
  }
601
- .col-start-lg-9 {
510
+ .grid-c-start-lg-9 {
602
511
  grid-column-start: 9;
603
512
  }
604
- .col-start-lg-10 {
513
+ .grid-c-start-lg-10 {
605
514
  grid-column-start: 10;
606
515
  }
607
- .col-start-lg-11 {
516
+ .grid-c-start-lg-11 {
608
517
  grid-column-start: 11;
609
518
  }
610
- .col-start-lg-12 {
519
+ .grid-c-start-lg-12 {
611
520
  grid-column-start: 12;
612
521
  }
613
- .gap-lg-none {
614
- gap: 0 !important;
615
- }
616
- .gap-lg-xs {
617
- gap: var(--grid-gap-xs, 0.5rem) !important;
618
- }
619
- .gap-lg-sm {
620
- gap: var(--grid-gap-sm, 1rem) !important;
621
- }
622
- .gap-lg-md {
623
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
624
- }
625
- .gap-lg-lg {
626
- gap: var(--grid-gap-lg, 3rem) !important;
627
- }
628
- .gap-lg-xl {
629
- gap: var(--grid-gap-xl, 4rem) !important;
630
- }
631
522
  .hidden-lg {
632
- display: none !important;
523
+ display: none;
633
524
  }
634
525
  .block-lg {
635
- display: block !important;
526
+ display: block;
636
527
  }
637
528
  .grid-lg {
638
- display: grid !important;
529
+ display: grid;
639
530
  }
640
531
  .flex-lg {
641
- display: flex !important;
532
+ display: flex;
642
533
  }
643
534
  }
644
535
  @container grid (min-width: 1280px) {
645
- .col-xl-1 {
536
+ .grid-c-xl-1 {
646
537
  grid-column-end: span 1;
647
538
  }
648
- .col-xl-2 {
539
+ .grid-c-xl-2 {
649
540
  grid-column-end: span 2;
650
541
  }
651
- .col-xl-3 {
542
+ .grid-c-xl-3 {
652
543
  grid-column-end: span 3;
653
544
  }
654
- .col-xl-4 {
545
+ .grid-c-xl-4 {
655
546
  grid-column-end: span 4;
656
547
  }
657
- .col-xl-5 {
548
+ .grid-c-xl-5 {
658
549
  grid-column-end: span 5;
659
550
  }
660
- .col-xl-6 {
551
+ .grid-c-xl-6 {
661
552
  grid-column-end: span 6;
662
553
  }
663
- .col-xl-7 {
554
+ .grid-c-xl-7 {
664
555
  grid-column-end: span 7;
665
556
  }
666
- .col-xl-8 {
557
+ .grid-c-xl-8 {
667
558
  grid-column-end: span 8;
668
559
  }
669
- .col-xl-9 {
560
+ .grid-c-xl-9 {
670
561
  grid-column-end: span 9;
671
562
  }
672
- .col-xl-10 {
563
+ .grid-c-xl-10 {
673
564
  grid-column-end: span 10;
674
565
  }
675
- .col-xl-11 {
566
+ .grid-c-xl-11 {
676
567
  grid-column-end: span 11;
677
568
  }
678
- .col-xl-12 {
569
+ .grid-c-xl-12 {
679
570
  grid-column-end: span 12;
680
571
  }
681
- .col-start-xl-1 {
572
+ .grid-c-start-xl-1 {
682
573
  grid-column-start: 1;
683
574
  }
684
- .col-start-xl-2 {
575
+ .grid-c-start-xl-2 {
685
576
  grid-column-start: 2;
686
577
  }
687
- .col-start-xl-3 {
578
+ .grid-c-start-xl-3 {
688
579
  grid-column-start: 3;
689
580
  }
690
- .col-start-xl-4 {
581
+ .grid-c-start-xl-4 {
691
582
  grid-column-start: 4;
692
583
  }
693
- .col-start-xl-5 {
584
+ .grid-c-start-xl-5 {
694
585
  grid-column-start: 5;
695
586
  }
696
- .col-start-xl-6 {
587
+ .grid-c-start-xl-6 {
697
588
  grid-column-start: 6;
698
589
  }
699
- .col-start-xl-7 {
590
+ .grid-c-start-xl-7 {
700
591
  grid-column-start: 7;
701
592
  }
702
- .col-start-xl-8 {
593
+ .grid-c-start-xl-8 {
703
594
  grid-column-start: 8;
704
595
  }
705
- .col-start-xl-9 {
596
+ .grid-c-start-xl-9 {
706
597
  grid-column-start: 9;
707
598
  }
708
- .col-start-xl-10 {
599
+ .grid-c-start-xl-10 {
709
600
  grid-column-start: 10;
710
601
  }
711
- .col-start-xl-11 {
602
+ .grid-c-start-xl-11 {
712
603
  grid-column-start: 11;
713
604
  }
714
- .col-start-xl-12 {
605
+ .grid-c-start-xl-12 {
715
606
  grid-column-start: 12;
716
607
  }
717
- .gap-xl-none {
718
- gap: 0 !important;
719
- }
720
- .gap-xl-xs {
721
- gap: var(--grid-gap-xs, 0.5rem) !important;
722
- }
723
- .gap-xl-sm {
724
- gap: var(--grid-gap-sm, 1rem) !important;
725
- }
726
- .gap-xl-md {
727
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
728
- }
729
- .gap-xl-lg {
730
- gap: var(--grid-gap-lg, 3rem) !important;
731
- }
732
- .gap-xl-xl {
733
- gap: var(--grid-gap-xl, 4rem) !important;
734
- }
735
608
  .hidden-xl {
736
- display: none !important;
609
+ display: none;
737
610
  }
738
611
  .block-xl {
739
- display: block !important;
612
+ display: block;
740
613
  }
741
614
  .grid-xl {
742
- display: grid !important;
615
+ display: grid;
743
616
  }
744
617
  .flex-xl {
745
- display: flex !important;
618
+ display: flex;
746
619
  }
747
620
  }
748
621
  @container grid (min-width: 1536px) {
749
- .col-xxl-1 {
622
+ .grid-c-xxl-1 {
750
623
  grid-column-end: span 1;
751
624
  }
752
- .col-xxl-2 {
625
+ .grid-c-xxl-2 {
753
626
  grid-column-end: span 2;
754
627
  }
755
- .col-xxl-3 {
628
+ .grid-c-xxl-3 {
756
629
  grid-column-end: span 3;
757
630
  }
758
- .col-xxl-4 {
631
+ .grid-c-xxl-4 {
759
632
  grid-column-end: span 4;
760
633
  }
761
- .col-xxl-5 {
634
+ .grid-c-xxl-5 {
762
635
  grid-column-end: span 5;
763
636
  }
764
- .col-xxl-6 {
637
+ .grid-c-xxl-6 {
765
638
  grid-column-end: span 6;
766
639
  }
767
- .col-xxl-7 {
640
+ .grid-c-xxl-7 {
768
641
  grid-column-end: span 7;
769
642
  }
770
- .col-xxl-8 {
643
+ .grid-c-xxl-8 {
771
644
  grid-column-end: span 8;
772
645
  }
773
- .col-xxl-9 {
646
+ .grid-c-xxl-9 {
774
647
  grid-column-end: span 9;
775
648
  }
776
- .col-xxl-10 {
649
+ .grid-c-xxl-10 {
777
650
  grid-column-end: span 10;
778
651
  }
779
- .col-xxl-11 {
652
+ .grid-c-xxl-11 {
780
653
  grid-column-end: span 11;
781
654
  }
782
- .col-xxl-12 {
655
+ .grid-c-xxl-12 {
783
656
  grid-column-end: span 12;
784
657
  }
785
- .col-start-xxl-1 {
658
+ .grid-c-start-xxl-1 {
786
659
  grid-column-start: 1;
787
660
  }
788
- .col-start-xxl-2 {
661
+ .grid-c-start-xxl-2 {
789
662
  grid-column-start: 2;
790
663
  }
791
- .col-start-xxl-3 {
664
+ .grid-c-start-xxl-3 {
792
665
  grid-column-start: 3;
793
666
  }
794
- .col-start-xxl-4 {
667
+ .grid-c-start-xxl-4 {
795
668
  grid-column-start: 4;
796
669
  }
797
- .col-start-xxl-5 {
670
+ .grid-c-start-xxl-5 {
798
671
  grid-column-start: 5;
799
672
  }
800
- .col-start-xxl-6 {
673
+ .grid-c-start-xxl-6 {
801
674
  grid-column-start: 6;
802
675
  }
803
- .col-start-xxl-7 {
676
+ .grid-c-start-xxl-7 {
804
677
  grid-column-start: 7;
805
678
  }
806
- .col-start-xxl-8 {
679
+ .grid-c-start-xxl-8 {
807
680
  grid-column-start: 8;
808
681
  }
809
- .col-start-xxl-9 {
682
+ .grid-c-start-xxl-9 {
810
683
  grid-column-start: 9;
811
684
  }
812
- .col-start-xxl-10 {
685
+ .grid-c-start-xxl-10 {
813
686
  grid-column-start: 10;
814
687
  }
815
- .col-start-xxl-11 {
688
+ .grid-c-start-xxl-11 {
816
689
  grid-column-start: 11;
817
690
  }
818
- .col-start-xxl-12 {
691
+ .grid-c-start-xxl-12 {
819
692
  grid-column-start: 12;
820
693
  }
821
- .gap-xxl-none {
822
- gap: 0 !important;
823
- }
824
- .gap-xxl-xs {
825
- gap: var(--grid-gap-xs, 0.5rem) !important;
826
- }
827
- .gap-xxl-sm {
828
- gap: var(--grid-gap-sm, 1rem) !important;
829
- }
830
- .gap-xxl-md {
831
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
832
- }
833
- .gap-xxl-lg {
834
- gap: var(--grid-gap-lg, 3rem) !important;
835
- }
836
- .gap-xxl-xl {
837
- gap: var(--grid-gap-xl, 4rem) !important;
838
- }
839
694
  .hidden-xxl {
840
- display: none !important;
695
+ display: none;
841
696
  }
842
697
  .block-xxl {
843
- display: block !important;
698
+ display: block;
844
699
  }
845
700
  .grid-xxl {
846
- display: grid !important;
701
+ display: grid;
847
702
  }
848
703
  .flex-xxl {
849
- display: flex !important;
704
+ display: flex;
850
705
  }
851
706
  }
852
707
  @media (min-width: 640px) {
853
- .col-vp-sm-1 {
708
+ .grid-c-vp-sm-1 {
854
709
  grid-column-end: span 1;
855
710
  }
856
- .col-vp-sm-2 {
711
+ .grid-c-vp-sm-2 {
857
712
  grid-column-end: span 2;
858
713
  }
859
- .col-vp-sm-3 {
714
+ .grid-c-vp-sm-3 {
860
715
  grid-column-end: span 3;
861
716
  }
862
- .col-vp-sm-4 {
717
+ .grid-c-vp-sm-4 {
863
718
  grid-column-end: span 4;
864
719
  }
865
- .col-vp-sm-5 {
720
+ .grid-c-vp-sm-5 {
866
721
  grid-column-end: span 5;
867
722
  }
868
- .col-vp-sm-6 {
723
+ .grid-c-vp-sm-6 {
869
724
  grid-column-end: span 6;
870
725
  }
871
- .col-vp-sm-7 {
726
+ .grid-c-vp-sm-7 {
872
727
  grid-column-end: span 7;
873
728
  }
874
- .col-vp-sm-8 {
729
+ .grid-c-vp-sm-8 {
875
730
  grid-column-end: span 8;
876
731
  }
877
- .col-vp-sm-9 {
732
+ .grid-c-vp-sm-9 {
878
733
  grid-column-end: span 9;
879
734
  }
880
- .col-vp-sm-10 {
735
+ .grid-c-vp-sm-10 {
881
736
  grid-column-end: span 10;
882
737
  }
883
- .col-vp-sm-11 {
738
+ .grid-c-vp-sm-11 {
884
739
  grid-column-end: span 11;
885
740
  }
886
- .col-vp-sm-12 {
741
+ .grid-c-vp-sm-12 {
887
742
  grid-column-end: span 12;
888
743
  }
889
- .col-start-vp-sm-1 {
744
+ .grid-c-start-vp-sm-1 {
890
745
  grid-column-start: 1;
891
746
  }
892
- .col-start-vp-sm-2 {
747
+ .grid-c-start-vp-sm-2 {
893
748
  grid-column-start: 2;
894
749
  }
895
- .col-start-vp-sm-3 {
750
+ .grid-c-start-vp-sm-3 {
896
751
  grid-column-start: 3;
897
752
  }
898
- .col-start-vp-sm-4 {
753
+ .grid-c-start-vp-sm-4 {
899
754
  grid-column-start: 4;
900
755
  }
901
- .col-start-vp-sm-5 {
756
+ .grid-c-start-vp-sm-5 {
902
757
  grid-column-start: 5;
903
758
  }
904
- .col-start-vp-sm-6 {
759
+ .grid-c-start-vp-sm-6 {
905
760
  grid-column-start: 6;
906
761
  }
907
- .col-start-vp-sm-7 {
762
+ .grid-c-start-vp-sm-7 {
908
763
  grid-column-start: 7;
909
764
  }
910
- .col-start-vp-sm-8 {
765
+ .grid-c-start-vp-sm-8 {
911
766
  grid-column-start: 8;
912
767
  }
913
- .col-start-vp-sm-9 {
768
+ .grid-c-start-vp-sm-9 {
914
769
  grid-column-start: 9;
915
770
  }
916
- .col-start-vp-sm-10 {
771
+ .grid-c-start-vp-sm-10 {
917
772
  grid-column-start: 10;
918
773
  }
919
- .col-start-vp-sm-11 {
774
+ .grid-c-start-vp-sm-11 {
920
775
  grid-column-start: 11;
921
776
  }
922
- .col-start-vp-sm-12 {
777
+ .grid-c-start-vp-sm-12 {
923
778
  grid-column-start: 12;
924
779
  }
925
780
  .hidden-vp-sm {
926
- display: none !important;
781
+ display: none;
927
782
  }
928
783
  .block-vp-sm {
929
- display: block !important;
784
+ display: block;
930
785
  }
931
786
  .grid-vp-sm {
932
- display: grid !important;
787
+ display: grid;
933
788
  }
934
789
  .flex-vp-sm {
935
- display: flex !important;
790
+ display: flex;
936
791
  }
937
792
  }
938
793
  @media (min-width: 768px) {
939
- .col-vp-md-1 {
794
+ .grid-c-vp-md-1 {
940
795
  grid-column-end: span 1;
941
796
  }
942
- .col-vp-md-2 {
797
+ .grid-c-vp-md-2 {
943
798
  grid-column-end: span 2;
944
799
  }
945
- .col-vp-md-3 {
800
+ .grid-c-vp-md-3 {
946
801
  grid-column-end: span 3;
947
802
  }
948
- .col-vp-md-4 {
803
+ .grid-c-vp-md-4 {
949
804
  grid-column-end: span 4;
950
805
  }
951
- .col-vp-md-5 {
806
+ .grid-c-vp-md-5 {
952
807
  grid-column-end: span 5;
953
808
  }
954
- .col-vp-md-6 {
809
+ .grid-c-vp-md-6 {
955
810
  grid-column-end: span 6;
956
811
  }
957
- .col-vp-md-7 {
812
+ .grid-c-vp-md-7 {
958
813
  grid-column-end: span 7;
959
814
  }
960
- .col-vp-md-8 {
815
+ .grid-c-vp-md-8 {
961
816
  grid-column-end: span 8;
962
817
  }
963
- .col-vp-md-9 {
818
+ .grid-c-vp-md-9 {
964
819
  grid-column-end: span 9;
965
820
  }
966
- .col-vp-md-10 {
821
+ .grid-c-vp-md-10 {
967
822
  grid-column-end: span 10;
968
823
  }
969
- .col-vp-md-11 {
824
+ .grid-c-vp-md-11 {
970
825
  grid-column-end: span 11;
971
826
  }
972
- .col-vp-md-12 {
827
+ .grid-c-vp-md-12 {
973
828
  grid-column-end: span 12;
974
829
  }
975
- .col-start-vp-md-1 {
830
+ .grid-c-start-vp-md-1 {
976
831
  grid-column-start: 1;
977
832
  }
978
- .col-start-vp-md-2 {
833
+ .grid-c-start-vp-md-2 {
979
834
  grid-column-start: 2;
980
835
  }
981
- .col-start-vp-md-3 {
836
+ .grid-c-start-vp-md-3 {
982
837
  grid-column-start: 3;
983
838
  }
984
- .col-start-vp-md-4 {
839
+ .grid-c-start-vp-md-4 {
985
840
  grid-column-start: 4;
986
841
  }
987
- .col-start-vp-md-5 {
842
+ .grid-c-start-vp-md-5 {
988
843
  grid-column-start: 5;
989
844
  }
990
- .col-start-vp-md-6 {
845
+ .grid-c-start-vp-md-6 {
991
846
  grid-column-start: 6;
992
847
  }
993
- .col-start-vp-md-7 {
848
+ .grid-c-start-vp-md-7 {
994
849
  grid-column-start: 7;
995
850
  }
996
- .col-start-vp-md-8 {
851
+ .grid-c-start-vp-md-8 {
997
852
  grid-column-start: 8;
998
853
  }
999
- .col-start-vp-md-9 {
854
+ .grid-c-start-vp-md-9 {
1000
855
  grid-column-start: 9;
1001
856
  }
1002
- .col-start-vp-md-10 {
857
+ .grid-c-start-vp-md-10 {
1003
858
  grid-column-start: 10;
1004
859
  }
1005
- .col-start-vp-md-11 {
860
+ .grid-c-start-vp-md-11 {
1006
861
  grid-column-start: 11;
1007
862
  }
1008
- .col-start-vp-md-12 {
863
+ .grid-c-start-vp-md-12 {
1009
864
  grid-column-start: 12;
1010
865
  }
1011
866
  .hidden-vp-md {
1012
- display: none !important;
867
+ display: none;
1013
868
  }
1014
869
  .block-vp-md {
1015
- display: block !important;
870
+ display: block;
1016
871
  }
1017
872
  .grid-vp-md {
1018
- display: grid !important;
873
+ display: grid;
1019
874
  }
1020
875
  .flex-vp-md {
1021
- display: flex !important;
876
+ display: flex;
1022
877
  }
1023
878
  }
1024
879
  @media (min-width: 1024px) {
1025
- .col-vp-lg-1 {
880
+ .grid-c-vp-lg-1 {
1026
881
  grid-column-end: span 1;
1027
882
  }
1028
- .col-vp-lg-2 {
883
+ .grid-c-vp-lg-2 {
1029
884
  grid-column-end: span 2;
1030
885
  }
1031
- .col-vp-lg-3 {
886
+ .grid-c-vp-lg-3 {
1032
887
  grid-column-end: span 3;
1033
888
  }
1034
- .col-vp-lg-4 {
889
+ .grid-c-vp-lg-4 {
1035
890
  grid-column-end: span 4;
1036
891
  }
1037
- .col-vp-lg-5 {
892
+ .grid-c-vp-lg-5 {
1038
893
  grid-column-end: span 5;
1039
894
  }
1040
- .col-vp-lg-6 {
895
+ .grid-c-vp-lg-6 {
1041
896
  grid-column-end: span 6;
1042
897
  }
1043
- .col-vp-lg-7 {
898
+ .grid-c-vp-lg-7 {
1044
899
  grid-column-end: span 7;
1045
900
  }
1046
- .col-vp-lg-8 {
901
+ .grid-c-vp-lg-8 {
1047
902
  grid-column-end: span 8;
1048
903
  }
1049
- .col-vp-lg-9 {
904
+ .grid-c-vp-lg-9 {
1050
905
  grid-column-end: span 9;
1051
906
  }
1052
- .col-vp-lg-10 {
907
+ .grid-c-vp-lg-10 {
1053
908
  grid-column-end: span 10;
1054
909
  }
1055
- .col-vp-lg-11 {
910
+ .grid-c-vp-lg-11 {
1056
911
  grid-column-end: span 11;
1057
912
  }
1058
- .col-vp-lg-12 {
913
+ .grid-c-vp-lg-12 {
1059
914
  grid-column-end: span 12;
1060
915
  }
1061
- .col-start-vp-lg-1 {
916
+ .grid-c-start-vp-lg-1 {
1062
917
  grid-column-start: 1;
1063
918
  }
1064
- .col-start-vp-lg-2 {
919
+ .grid-c-start-vp-lg-2 {
1065
920
  grid-column-start: 2;
1066
921
  }
1067
- .col-start-vp-lg-3 {
922
+ .grid-c-start-vp-lg-3 {
1068
923
  grid-column-start: 3;
1069
924
  }
1070
- .col-start-vp-lg-4 {
925
+ .grid-c-start-vp-lg-4 {
1071
926
  grid-column-start: 4;
1072
927
  }
1073
- .col-start-vp-lg-5 {
928
+ .grid-c-start-vp-lg-5 {
1074
929
  grid-column-start: 5;
1075
930
  }
1076
- .col-start-vp-lg-6 {
931
+ .grid-c-start-vp-lg-6 {
1077
932
  grid-column-start: 6;
1078
933
  }
1079
- .col-start-vp-lg-7 {
934
+ .grid-c-start-vp-lg-7 {
1080
935
  grid-column-start: 7;
1081
936
  }
1082
- .col-start-vp-lg-8 {
937
+ .grid-c-start-vp-lg-8 {
1083
938
  grid-column-start: 8;
1084
939
  }
1085
- .col-start-vp-lg-9 {
940
+ .grid-c-start-vp-lg-9 {
1086
941
  grid-column-start: 9;
1087
942
  }
1088
- .col-start-vp-lg-10 {
943
+ .grid-c-start-vp-lg-10 {
1089
944
  grid-column-start: 10;
1090
945
  }
1091
- .col-start-vp-lg-11 {
946
+ .grid-c-start-vp-lg-11 {
1092
947
  grid-column-start: 11;
1093
948
  }
1094
- .col-start-vp-lg-12 {
949
+ .grid-c-start-vp-lg-12 {
1095
950
  grid-column-start: 12;
1096
951
  }
1097
952
  .hidden-vp-lg {
1098
- display: none !important;
953
+ display: none;
1099
954
  }
1100
955
  .block-vp-lg {
1101
- display: block !important;
956
+ display: block;
1102
957
  }
1103
958
  .grid-vp-lg {
1104
- display: grid !important;
959
+ display: grid;
1105
960
  }
1106
961
  .flex-vp-lg {
1107
- display: flex !important;
962
+ display: flex;
1108
963
  }
1109
964
  }
1110
965
  @media (min-width: 1280px) {
1111
- .col-vp-xl-1 {
966
+ .grid-c-vp-xl-1 {
1112
967
  grid-column-end: span 1;
1113
968
  }
1114
- .col-vp-xl-2 {
969
+ .grid-c-vp-xl-2 {
1115
970
  grid-column-end: span 2;
1116
971
  }
1117
- .col-vp-xl-3 {
972
+ .grid-c-vp-xl-3 {
1118
973
  grid-column-end: span 3;
1119
974
  }
1120
- .col-vp-xl-4 {
975
+ .grid-c-vp-xl-4 {
1121
976
  grid-column-end: span 4;
1122
977
  }
1123
- .col-vp-xl-5 {
978
+ .grid-c-vp-xl-5 {
1124
979
  grid-column-end: span 5;
1125
980
  }
1126
- .col-vp-xl-6 {
981
+ .grid-c-vp-xl-6 {
1127
982
  grid-column-end: span 6;
1128
983
  }
1129
- .col-vp-xl-7 {
984
+ .grid-c-vp-xl-7 {
1130
985
  grid-column-end: span 7;
1131
986
  }
1132
- .col-vp-xl-8 {
987
+ .grid-c-vp-xl-8 {
1133
988
  grid-column-end: span 8;
1134
989
  }
1135
- .col-vp-xl-9 {
990
+ .grid-c-vp-xl-9 {
1136
991
  grid-column-end: span 9;
1137
992
  }
1138
- .col-vp-xl-10 {
993
+ .grid-c-vp-xl-10 {
1139
994
  grid-column-end: span 10;
1140
995
  }
1141
- .col-vp-xl-11 {
996
+ .grid-c-vp-xl-11 {
1142
997
  grid-column-end: span 11;
1143
998
  }
1144
- .col-vp-xl-12 {
999
+ .grid-c-vp-xl-12 {
1145
1000
  grid-column-end: span 12;
1146
1001
  }
1147
- .col-start-vp-xl-1 {
1002
+ .grid-c-start-vp-xl-1 {
1148
1003
  grid-column-start: 1;
1149
1004
  }
1150
- .col-start-vp-xl-2 {
1005
+ .grid-c-start-vp-xl-2 {
1151
1006
  grid-column-start: 2;
1152
1007
  }
1153
- .col-start-vp-xl-3 {
1008
+ .grid-c-start-vp-xl-3 {
1154
1009
  grid-column-start: 3;
1155
1010
  }
1156
- .col-start-vp-xl-4 {
1011
+ .grid-c-start-vp-xl-4 {
1157
1012
  grid-column-start: 4;
1158
1013
  }
1159
- .col-start-vp-xl-5 {
1014
+ .grid-c-start-vp-xl-5 {
1160
1015
  grid-column-start: 5;
1161
1016
  }
1162
- .col-start-vp-xl-6 {
1017
+ .grid-c-start-vp-xl-6 {
1163
1018
  grid-column-start: 6;
1164
1019
  }
1165
- .col-start-vp-xl-7 {
1020
+ .grid-c-start-vp-xl-7 {
1166
1021
  grid-column-start: 7;
1167
1022
  }
1168
- .col-start-vp-xl-8 {
1023
+ .grid-c-start-vp-xl-8 {
1169
1024
  grid-column-start: 8;
1170
1025
  }
1171
- .col-start-vp-xl-9 {
1026
+ .grid-c-start-vp-xl-9 {
1172
1027
  grid-column-start: 9;
1173
1028
  }
1174
- .col-start-vp-xl-10 {
1029
+ .grid-c-start-vp-xl-10 {
1175
1030
  grid-column-start: 10;
1176
1031
  }
1177
- .col-start-vp-xl-11 {
1032
+ .grid-c-start-vp-xl-11 {
1178
1033
  grid-column-start: 11;
1179
1034
  }
1180
- .col-start-vp-xl-12 {
1035
+ .grid-c-start-vp-xl-12 {
1181
1036
  grid-column-start: 12;
1182
1037
  }
1183
1038
  .hidden-vp-xl {
1184
- display: none !important;
1039
+ display: none;
1185
1040
  }
1186
1041
  .block-vp-xl {
1187
- display: block !important;
1042
+ display: block;
1188
1043
  }
1189
1044
  .grid-vp-xl {
1190
- display: grid !important;
1045
+ display: grid;
1191
1046
  }
1192
1047
  .flex-vp-xl {
1193
- display: flex !important;
1048
+ display: flex;
1194
1049
  }
1195
1050
  }
1196
1051
  @media (min-width: 1536px) {
1197
- .col-vp-xxl-1 {
1052
+ .grid-c-vp-xxl-1 {
1198
1053
  grid-column-end: span 1;
1199
1054
  }
1200
- .col-vp-xxl-2 {
1055
+ .grid-c-vp-xxl-2 {
1201
1056
  grid-column-end: span 2;
1202
1057
  }
1203
- .col-vp-xxl-3 {
1058
+ .grid-c-vp-xxl-3 {
1204
1059
  grid-column-end: span 3;
1205
1060
  }
1206
- .col-vp-xxl-4 {
1061
+ .grid-c-vp-xxl-4 {
1207
1062
  grid-column-end: span 4;
1208
1063
  }
1209
- .col-vp-xxl-5 {
1064
+ .grid-c-vp-xxl-5 {
1210
1065
  grid-column-end: span 5;
1211
1066
  }
1212
- .col-vp-xxl-6 {
1067
+ .grid-c-vp-xxl-6 {
1213
1068
  grid-column-end: span 6;
1214
1069
  }
1215
- .col-vp-xxl-7 {
1070
+ .grid-c-vp-xxl-7 {
1216
1071
  grid-column-end: span 7;
1217
1072
  }
1218
- .col-vp-xxl-8 {
1073
+ .grid-c-vp-xxl-8 {
1219
1074
  grid-column-end: span 8;
1220
1075
  }
1221
- .col-vp-xxl-9 {
1076
+ .grid-c-vp-xxl-9 {
1222
1077
  grid-column-end: span 9;
1223
1078
  }
1224
- .col-vp-xxl-10 {
1079
+ .grid-c-vp-xxl-10 {
1225
1080
  grid-column-end: span 10;
1226
1081
  }
1227
- .col-vp-xxl-11 {
1082
+ .grid-c-vp-xxl-11 {
1228
1083
  grid-column-end: span 11;
1229
1084
  }
1230
- .col-vp-xxl-12 {
1085
+ .grid-c-vp-xxl-12 {
1231
1086
  grid-column-end: span 12;
1232
1087
  }
1233
- .col-start-vp-xxl-1 {
1088
+ .grid-c-start-vp-xxl-1 {
1234
1089
  grid-column-start: 1;
1235
1090
  }
1236
- .col-start-vp-xxl-2 {
1091
+ .grid-c-start-vp-xxl-2 {
1237
1092
  grid-column-start: 2;
1238
1093
  }
1239
- .col-start-vp-xxl-3 {
1094
+ .grid-c-start-vp-xxl-3 {
1240
1095
  grid-column-start: 3;
1241
1096
  }
1242
- .col-start-vp-xxl-4 {
1097
+ .grid-c-start-vp-xxl-4 {
1243
1098
  grid-column-start: 4;
1244
1099
  }
1245
- .col-start-vp-xxl-5 {
1100
+ .grid-c-start-vp-xxl-5 {
1246
1101
  grid-column-start: 5;
1247
1102
  }
1248
- .col-start-vp-xxl-6 {
1103
+ .grid-c-start-vp-xxl-6 {
1249
1104
  grid-column-start: 6;
1250
1105
  }
1251
- .col-start-vp-xxl-7 {
1106
+ .grid-c-start-vp-xxl-7 {
1252
1107
  grid-column-start: 7;
1253
1108
  }
1254
- .col-start-vp-xxl-8 {
1109
+ .grid-c-start-vp-xxl-8 {
1255
1110
  grid-column-start: 8;
1256
1111
  }
1257
- .col-start-vp-xxl-9 {
1112
+ .grid-c-start-vp-xxl-9 {
1258
1113
  grid-column-start: 9;
1259
1114
  }
1260
- .col-start-vp-xxl-10 {
1115
+ .grid-c-start-vp-xxl-10 {
1261
1116
  grid-column-start: 10;
1262
1117
  }
1263
- .col-start-vp-xxl-11 {
1118
+ .grid-c-start-vp-xxl-11 {
1264
1119
  grid-column-start: 11;
1265
1120
  }
1266
- .col-start-vp-xxl-12 {
1121
+ .grid-c-start-vp-xxl-12 {
1267
1122
  grid-column-start: 12;
1268
1123
  }
1269
1124
  .hidden-vp-xxl {
1270
- display: none !important;
1125
+ display: none;
1271
1126
  }
1272
1127
  .block-vp-xxl {
1273
- display: block !important;
1128
+ display: block;
1274
1129
  }
1275
1130
  .grid-vp-xxl {
1276
- display: grid !important;
1131
+ display: grid;
1277
1132
  }
1278
1133
  .flex-vp-xxl {
1279
- display: flex !important;
1134
+ display: flex;
1280
1135
  }
1281
1136
  }
1282
1137
  }
@@ -1306,52 +1161,52 @@
1306
1161
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-auto-min, 250px), 100%), 1fr));
1307
1162
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1308
1163
  }
1309
- .col-auto {
1164
+ .grid-c-auto {
1310
1165
  grid-column: auto;
1311
1166
  width: auto;
1312
1167
  }
1313
- .col-fluid {
1314
- min-width: var(--col-min-width, 200px);
1315
- flex: 1 1 var(--col-min-width, 200px);
1168
+ .grid-c-fluid {
1169
+ min-width: var(--grid-c-min-width, 200px);
1170
+ flex: 1 1 var(--grid-c-min-width, 200px);
1316
1171
  }
1317
- .row-fluid-2 {
1172
+ .grid-r-fluid-2 {
1318
1173
  display: grid;
1319
1174
  grid-template-columns: repeat(auto-fit, minmax(min(50% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) / 2, 100%), 1fr));
1320
1175
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1321
1176
  }
1322
- .row-fluid-3 {
1177
+ .grid-r-fluid-3 {
1323
1178
  display: grid;
1324
1179
  grid-template-columns: repeat(auto-fit, minmax(min(33.333% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) * 2 / 3, 100%), 1fr));
1325
1180
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1326
1181
  }
1327
- .row-fluid-4 {
1182
+ .grid-r-fluid-4 {
1328
1183
  display: grid;
1329
1184
  grid-template-columns: repeat(auto-fit, minmax(min(25% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) * 3 / 4, 100%), 1fr));
1330
1185
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1331
1186
  }
1332
- .row-ram {
1187
+ .grid-r-ram {
1333
1188
  display: grid;
1334
1189
  grid-template-columns: repeat(auto-fit, minmax(var(--col-min, 250px), 1fr));
1335
1190
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1336
1191
  }
1337
- .row-ram > * {
1338
- grid-column: auto !important;
1192
+ .grid-r-ram > * {
1193
+ grid-column: auto;
1339
1194
  }
1340
- .row-intrinsic {
1195
+ .grid-r-intrinsic {
1341
1196
  display: grid;
1342
1197
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
1343
1198
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1344
1199
  }
1345
- .row-even {
1200
+ .grid-r-even {
1346
1201
  display: grid;
1347
1202
  grid-auto-columns: 1fr;
1348
1203
  grid-auto-flow: column;
1349
1204
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1350
1205
  }
1351
- .row-dense {
1206
+ .grid-r-dense {
1352
1207
  grid-auto-flow: dense;
1353
1208
  }
1354
- .row-flexible {
1209
+ .grid-r-flexible {
1355
1210
  display: grid;
1356
1211
  grid-template-columns: repeat(auto-fit, minmax(clamp(var(--col-min, 200px), (100% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) * (var(--col-count, 3) - 1)) / var(--col-count, 3), 1fr), 1fr));
1357
1212
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
@@ -1360,16 +1215,16 @@
1360
1215
  /*
1361
1216
 
1362
1217
  BASIC GRID:
1363
- <div class="wrap">
1364
- <div class="row">
1365
- <div class="col-12 col-md-6 col-lg-4">Column</div>
1366
- <div class="col-12 col-md-6 col-lg-4">Column</div>
1367
- <div class="col-12 col-md-6 col-lg-4">Column</div>
1218
+ <div class="grid-w">
1219
+ <div class="grid-r">
1220
+ <div class="grid-c-12 grid-c-md-6 grid-c-lg-4">Column</div>
1221
+ <div class="grid-c-12 grid-c-md-6 grid-c-lg-4">Column</div>
1222
+ <div class="grid-c-12 grid-c-md-6 grid-c-lg-4">Column</div>
1368
1223
  </div>
1369
1224
  </div>
1370
1225
 
1371
1226
  FLUID GRID (auto-responsive):
1372
- <div class="wrap">
1227
+ <div class="grid-w">
1373
1228
  <div class="grid-auto-fit">
1374
1229
  <div>Card 1</div>
1375
1230
  <div>Card 2</div>
@@ -1378,23 +1233,23 @@ FLUID GRID (auto-responsive):
1378
1233
  </div>
1379
1234
 
1380
1235
  SUBGRID:
1381
- <div class="row">
1382
- <div class="col-12 row-subgrid">
1383
- <div class="col-4">Nested 1</div>
1384
- <div class="col-4">Nested 2</div>
1385
- <div class="col-4">Nested 3</div>
1236
+ <div class="grid-r">
1237
+ <div class="grid-c-12 grid-r-subgrid">
1238
+ <div class="grid-c-4">Nested 1</div>
1239
+ <div class="grid-c-4">Nested 2</div>
1240
+ <div class="grid-c-4">Nested 3</div>
1386
1241
  </div>
1387
1242
  </div>
1388
1243
 
1389
- CUSTOM GAP:
1390
- <div class="row gap-lg">
1391
- <div class="col-6">Large gap</div>
1392
- <div class="col-6">Large gap</div>
1244
+ NO GAP:
1245
+ <div class="grid-r no-gap">
1246
+ <div class="grid-c-6">No gap</div>
1247
+ <div class="grid-c-6">No gap</div>
1393
1248
  </div>
1394
1249
 
1395
1250
  PLACEMENT:
1396
- <div class="row">
1397
- <div class="col-6 place-c-c">Centered content</div>
1251
+ <div class="grid-r">
1252
+ <div class="grid-c-6 place-c-c">Centered content</div>
1398
1253
  </div>
1399
1254
 
1400
1255
  */