@nuvoui/core 1.3.0 → 1.3.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.
Files changed (33) hide show
  1. package/dist/nuvoui.css +230 -922
  2. package/dist/nuvoui.css.map +1 -1
  3. package/dist/nuvoui.min.css +1 -1
  4. package/dist/nuvoui.min.css.map +1 -1
  5. package/package.json +2 -2
  6. package/src/styles/abstracts/_config.scss +25 -2
  7. package/src/styles/abstracts/_functions.scss +16 -5
  8. package/src/styles/base/_base.scss +2 -2
  9. package/src/styles/base/_reset.scss +0 -2
  10. package/src/styles/build.scss +3 -0
  11. package/src/styles/layouts/_container.scss +8 -1
  12. package/src/styles/layouts/_flex.scss +125 -207
  13. package/src/styles/layouts/_grid.scss +16 -29
  14. package/src/styles/themes/_theme.scss +10 -10
  15. package/src/styles/utilities/_alignment.scss +2 -1
  16. package/src/styles/utilities/_animations.scss +20 -32
  17. package/src/styles/utilities/_backdrop-filters.scss +7 -11
  18. package/src/styles/utilities/_borders.scss +3 -5
  19. package/src/styles/utilities/_container-queries.scss +17 -21
  20. package/src/styles/utilities/_cursor.scss +2 -1
  21. package/src/styles/utilities/_display.scss +17 -37
  22. package/src/styles/utilities/_helpers.scss +1 -0
  23. package/src/styles/utilities/_media-queries.scss +3 -5
  24. package/src/styles/utilities/_opacity.scss +52 -67
  25. package/src/styles/utilities/_position.scss +104 -132
  26. package/src/styles/utilities/_shadows.scss +9 -14
  27. package/src/styles/utilities/_sizing.scss +1 -1
  28. package/src/styles/utilities/_spacing.scss +143 -205
  29. package/src/styles/utilities/_tooltips.scss +203 -200
  30. package/src/styles/utilities/_transforms.scss +9 -11
  31. package/src/styles/utilities/_transitions.scss +8 -10
  32. package/src/styles/utilities/_typography.scss +17 -22
  33. package/src/styles/utilities/_z-index.scss +12 -19
package/dist/nuvoui.css CHANGED
@@ -1,8 +1,3 @@
1
- /**
2
- * Ensures a value has a unit, adding $default-unit if none exists
3
- * @param {Number|String} $val - The value to check
4
- * @return {String} - The value with units
5
- */
6
1
  *,
7
2
  ::before,
8
3
  ::after,
@@ -30,8 +25,6 @@ dd {
30
25
  }
31
26
 
32
27
  html {
33
- -moz-text-size-adjust: none; /* stylelint-disable-line */
34
- -webkit-text-size-adjust: none; /* stylelint-disable-line */
35
28
  text-size-adjust: none;
36
29
  }
37
30
 
@@ -132,12 +125,6 @@ textarea:not([rows]) {
132
125
  scroll-behavior: auto !important;
133
126
  }
134
127
  }
135
- /* Import variables */
136
- /**
137
- * @description Media query mixins.
138
- * @param {string|number} $breakpoint - The breakpoint value.
139
- * @param {string} $type - The media query type (e.g. 'lg', 'md').
140
- */
141
128
  :root {
142
129
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
143
130
  }
@@ -160,7 +147,7 @@ h4,
160
147
  h5,
161
148
  h6 {
162
149
  margin-bottom: 0.5em;
163
- font-family: var(--font-family-heading);
150
+ font-family: var(--font-family-base);
164
151
  font-weight: 700;
165
152
  line-height: 1.2;
166
153
  }
@@ -375,211 +362,88 @@ code {
375
362
  padding-bottom: 1rem;
376
363
  }
377
364
 
378
- /**
379
- * @component Flex
380
- * @description Flexbox layout system for creating flexible page layouts
381
- *
382
- * @example
383
- * <div class="flex row between x-center">
384
- * <div class="w-6">Left column (6 units)</div>
385
- * <div class="w-6">Right column (6 units)</div>
386
- * </div>
387
- *
388
- * <div class="flex col@md row@lg">
389
- * <!-- Changes direction based on breakpoint -->
390
- * </div>
391
- *
392
- * @classes
393
- * Base:
394
- * - flex: Creates a flex container
395
- *
396
- * Direction:
397
- * - row: Sets flex-direction to row
398
- * - col: Sets flex-direction to column
399
- * - row-reverse: Reverses row direction
400
- * - col-reverse: Reverses column direction
401
- *
402
- * Alignment:
403
- * - start/end/center: Controls justify-content
404
- * - x-start/x-end/x-center: Controls align-items
405
- *
406
- * Child elements:
407
- * - w-{1-12}: Sets width based on column count
408
- * - grow: Allows item to grow
409
- * - shrink/no-shrink: Controls shrink behavior
410
- *
411
- * @responsive
412
- * All classes support responsive variants using @breakpoint suffix:
413
- * - row@md: Row direction on medium screens and up
414
- * - between@lg: Space-between on large screens
415
- *
416
- * @see grid
417
- */
418
- /**
419
- * @description Establishes a flex container.
420
- */
421
- /**
422
- * @description Establishes a flex-inline container.
423
- */
424
- /**
425
- * @description Sets flex-direction to row.
426
- * @dependencies flex | flex-inline
427
- */
428
- /**
429
- * @description Sets flex-direction to row-reverse.
430
- * @dependencies flex | flex-inline
431
- */
432
- /**
433
- * @description Sets flex-direction to column.
434
- * @dependencies flex | flex-inline
435
- */
436
- /**
437
- * @description Sets flex-direction to column-reverse.
438
- * @dependencies flex | flex-inline
439
- */
440
- /**
441
- * @description Sets flex-wrap to wrap.
442
- * @dependencies flex | flex-inline
443
- */
444
- /**
445
- * @description Sets flex-wrap to nowrap.
446
- * @dependencies flex | flex-inline
447
- */
448
- /**
449
- * @description Sets flex-wrap to wrap-reverse
450
- * @dependencies flex | flex-inline
451
- */
452
- /**
453
- * @description Sets justify-content to flex-start
454
- * @dependencies flex | flex-inline
455
- */
456
- /**
457
- * @description Sets justify-content to flex-end
458
- * @dependencies flex | flex-inline
459
- */
460
- /**
461
- * @description Sets justify-content to center
462
- * @dependencies flex | flex-inline
463
- */
464
- /**
465
- * @description Sets justify-content to stretch
466
- * @dependencies flex | flex-inline
467
- */
468
- /**
469
- * @description Sets justify-content to space-between
470
- * @dependencies flex | flex-inline
471
- */
472
- /**
473
- * @description Sets justify-content to space-around
474
- * @dependencies flex | flex-inline
475
- */
476
- /**
477
- * @description Sets justify-content to space-evenly
478
- * @dependencies flex | flex-inline
479
- */
480
- /**
481
- * @description Sets align-items to flex-start - aligns items to the start of the cross axis.
482
- * @dependencies flex | flex-inline
483
- */
484
- /**
485
- * @description Sets align-items to flex-end - aligns items to the end of the cross axis.
486
- * @dependencies flex | flex-inline
487
- */
488
- /**
489
- * @description Sets align-items to center - aligns items to the center of the cross axis.
490
- * @dependencies flex | flex-inline
491
- */
492
- /**
493
- * @description Sets align-items to stretch - aligns items to the stretch of the cross axis.
494
- * @dependencies flex | flex-inline
495
- */
496
- /**
497
- * @description Sets align-items to baseline - aligns items to the baseline of the cross axis.
498
- * @dependencies flex | flex-inline
499
- */
500
- /**
501
- * @description Sets align-content to flex-start - aligns content to the start of the cross axis.
502
- * @dependencies flex | flex-inline
503
- */
504
- /**
505
- * @description Sets align-content to flex-end - aligns content to the end of the cross axis.
506
- * @dependencies flex | flex-inline
507
- */
508
- /**
509
- * @description Sets align-content to center - aligns content to the center of the cross axis.
510
- * @dependencies flex | flex-inline
511
- */
512
- /**
513
- * @description Sets align-content to space-between - aligns content to the space between the cross axis.
514
- * @dependencies flex | flex-inline
515
- */
516
- /**
517
- * @description Sets align-content to space-around - aligns content to the space around the cross axis.
518
- * @dependencies flex | flex-inline
519
- */
520
- /**
521
- * @description Sets align-content to space-evenly - aligns content to the space evenly between the cross axis.
522
- * @dependencies flex | flex-inline
523
- */
524
- /**
525
- * @description Sets align-content to stretch - aligns content to the stretch of the cross axis.
526
- * @dependencies flex | flex-inline
527
- */
528
- /**
529
- * @description Sets align-self to auto
530
- * @dependencies flex | flex-inline
531
- */
532
- /**
533
- * @description Sets align-self to flex-start
534
- * @dependencies flex | flex-inline
535
- */
536
- /**
537
- * @description Sets align-self to flex-end
538
- * @dependencies flex | flex-inline
539
- */
540
- /**
541
- * @description Sets align-self to center
542
- * @dependencies flex | flex-inline
543
- */
544
- /**
545
- * @description Sets align-self to stretch
546
- * @dependencies flex | flex-inline
547
- */
548
- /**
549
- * @description Sets align-self to baseline
550
- * @dependencies flex | flex-inline
551
- */
552
- /**
553
- * @description Sets flex-shrink to 1 - allows the item to shrink.
554
- * @dependencies flex | flex-inline
555
- */
556
- /**
557
- * @description Sets flex-shrink to 0 - prevents the item from shrinking.
558
- * @dependencies flex | flex-inline
559
- */
560
- /**
561
- * @description Sets flex-shrink to 2 - allows the item to shrink twice as much as the other items.
562
- * @dependencies flex | flex-inline
563
- */
564
- /**
565
- * @description Sets flex to 0 0 100%
566
- */
567
- /**
568
- * @description Sets flex to 1 1 auto - allows the item to grow and shrink.
569
- */
570
- /**
571
- * @description Sets flex to 1 1 0% - allows the item to grow but not shrink.
572
- */
573
- /**
574
- * @description Sets flex to none - prevents the item from growing.
575
- */
576
- /**
577
- * @description Sets flex to 1 0 auto - allows the item to grow but not shrink.
578
- */
579
- /**
580
- * @description Sets how many columns this would take using percentage of VAR.$column-count.
581
- * @param {Number} $size - The number of columns to span.
582
- */
365
+ .container.flex {
366
+ display: flex;
367
+ width: 100%;
368
+ margin-left: auto;
369
+ margin-right: auto;
370
+ }
371
+ @media (min-width: 480px) {
372
+ .container.flex {
373
+ max-width: 380px;
374
+ }
375
+ }
376
+ @media (min-width: 640px) {
377
+ .container.flex {
378
+ max-width: 540px;
379
+ }
380
+ }
381
+ @media (min-width: 768px) {
382
+ .container.flex {
383
+ max-width: 668px;
384
+ }
385
+ }
386
+ @media (min-width: 1024px) {
387
+ .container.flex {
388
+ max-width: 924px;
389
+ }
390
+ }
391
+ @media (min-width: 1280px) {
392
+ .container.flex {
393
+ max-width: 1180px;
394
+ }
395
+ }
396
+ @media (min-width: 1536px) {
397
+ .container.flex {
398
+ max-width: 1436px;
399
+ }
400
+ }
401
+ .container.flex {
402
+ padding-top: 1rem;
403
+ padding-bottom: 1rem;
404
+ }
405
+
406
+ .container.grid {
407
+ display: grid;
408
+ width: 100%;
409
+ margin-left: auto;
410
+ margin-right: auto;
411
+ }
412
+ @media (min-width: 480px) {
413
+ .container.grid {
414
+ max-width: 380px;
415
+ }
416
+ }
417
+ @media (min-width: 640px) {
418
+ .container.grid {
419
+ max-width: 540px;
420
+ }
421
+ }
422
+ @media (min-width: 768px) {
423
+ .container.grid {
424
+ max-width: 668px;
425
+ }
426
+ }
427
+ @media (min-width: 1024px) {
428
+ .container.grid {
429
+ max-width: 924px;
430
+ }
431
+ }
432
+ @media (min-width: 1280px) {
433
+ .container.grid {
434
+ max-width: 1180px;
435
+ }
436
+ }
437
+ @media (min-width: 1536px) {
438
+ .container.grid {
439
+ max-width: 1436px;
440
+ }
441
+ }
442
+ .container.grid {
443
+ padding-top: 1rem;
444
+ padding-bottom: 1rem;
445
+ }
446
+
583
447
  .flex, .flex\@xs, .flex\@sm, .flex\@md, .flex\@lg, .flex\@xl, .flex\@2xl {
584
448
  display: flex;
585
449
  }
@@ -713,73 +577,73 @@ code {
713
577
  align-self: auto;
714
578
  }
715
579
  .flex > .fill-1, .flex\@xs > .fill-1, .flex\@sm > .fill-1, .flex\@md > .fill-1, .flex\@lg > .fill-1, .flex\@xl > .fill-1, .flex\@2xl > .fill-1 {
716
- flex: 0 0 8.3333333333%;
580
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
717
581
  }
718
582
  .flex > .order-1, .flex\@xs > .order-1, .flex\@sm > .order-1, .flex\@md > .order-1, .flex\@lg > .order-1, .flex\@xl > .order-1, .flex\@2xl > .order-1 {
719
583
  order: 1;
720
584
  }
721
585
  .flex > .fill-2, .flex\@xs > .fill-2, .flex\@sm > .fill-2, .flex\@md > .fill-2, .flex\@lg > .fill-2, .flex\@xl > .fill-2, .flex\@2xl > .fill-2 {
722
- flex: 0 0 16.6666666667%;
586
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
723
587
  }
724
588
  .flex > .order-2, .flex\@xs > .order-2, .flex\@sm > .order-2, .flex\@md > .order-2, .flex\@lg > .order-2, .flex\@xl > .order-2, .flex\@2xl > .order-2 {
725
589
  order: 2;
726
590
  }
727
591
  .flex > .fill-3, .flex\@xs > .fill-3, .flex\@sm > .fill-3, .flex\@md > .fill-3, .flex\@lg > .fill-3, .flex\@xl > .fill-3, .flex\@2xl > .fill-3 {
728
- flex: 0 0 25%;
592
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
729
593
  }
730
594
  .flex > .order-3, .flex\@xs > .order-3, .flex\@sm > .order-3, .flex\@md > .order-3, .flex\@lg > .order-3, .flex\@xl > .order-3, .flex\@2xl > .order-3 {
731
595
  order: 3;
732
596
  }
733
597
  .flex > .fill-4, .flex\@xs > .fill-4, .flex\@sm > .fill-4, .flex\@md > .fill-4, .flex\@lg > .fill-4, .flex\@xl > .fill-4, .flex\@2xl > .fill-4 {
734
- flex: 0 0 33.3333333333%;
598
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
735
599
  }
736
600
  .flex > .order-4, .flex\@xs > .order-4, .flex\@sm > .order-4, .flex\@md > .order-4, .flex\@lg > .order-4, .flex\@xl > .order-4, .flex\@2xl > .order-4 {
737
601
  order: 4;
738
602
  }
739
603
  .flex > .fill-5, .flex\@xs > .fill-5, .flex\@sm > .fill-5, .flex\@md > .fill-5, .flex\@lg > .fill-5, .flex\@xl > .fill-5, .flex\@2xl > .fill-5 {
740
- flex: 0 0 41.6666666667%;
604
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
741
605
  }
742
606
  .flex > .order-5, .flex\@xs > .order-5, .flex\@sm > .order-5, .flex\@md > .order-5, .flex\@lg > .order-5, .flex\@xl > .order-5, .flex\@2xl > .order-5 {
743
607
  order: 5;
744
608
  }
745
609
  .flex > .fill-6, .flex\@xs > .fill-6, .flex\@sm > .fill-6, .flex\@md > .fill-6, .flex\@lg > .fill-6, .flex\@xl > .fill-6, .flex\@2xl > .fill-6 {
746
- flex: 0 0 50%;
610
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
747
611
  }
748
612
  .flex > .order-6, .flex\@xs > .order-6, .flex\@sm > .order-6, .flex\@md > .order-6, .flex\@lg > .order-6, .flex\@xl > .order-6, .flex\@2xl > .order-6 {
749
613
  order: 6;
750
614
  }
751
615
  .flex > .fill-7, .flex\@xs > .fill-7, .flex\@sm > .fill-7, .flex\@md > .fill-7, .flex\@lg > .fill-7, .flex\@xl > .fill-7, .flex\@2xl > .fill-7 {
752
- flex: 0 0 58.3333333333%;
616
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
753
617
  }
754
618
  .flex > .order-7, .flex\@xs > .order-7, .flex\@sm > .order-7, .flex\@md > .order-7, .flex\@lg > .order-7, .flex\@xl > .order-7, .flex\@2xl > .order-7 {
755
619
  order: 7;
756
620
  }
757
621
  .flex > .fill-8, .flex\@xs > .fill-8, .flex\@sm > .fill-8, .flex\@md > .fill-8, .flex\@lg > .fill-8, .flex\@xl > .fill-8, .flex\@2xl > .fill-8 {
758
- flex: 0 0 66.6666666667%;
622
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
759
623
  }
760
624
  .flex > .order-8, .flex\@xs > .order-8, .flex\@sm > .order-8, .flex\@md > .order-8, .flex\@lg > .order-8, .flex\@xl > .order-8, .flex\@2xl > .order-8 {
761
625
  order: 8;
762
626
  }
763
627
  .flex > .fill-9, .flex\@xs > .fill-9, .flex\@sm > .fill-9, .flex\@md > .fill-9, .flex\@lg > .fill-9, .flex\@xl > .fill-9, .flex\@2xl > .fill-9 {
764
- flex: 0 0 75%;
628
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
765
629
  }
766
630
  .flex > .order-9, .flex\@xs > .order-9, .flex\@sm > .order-9, .flex\@md > .order-9, .flex\@lg > .order-9, .flex\@xl > .order-9, .flex\@2xl > .order-9 {
767
631
  order: 9;
768
632
  }
769
633
  .flex > .fill-10, .flex\@xs > .fill-10, .flex\@sm > .fill-10, .flex\@md > .fill-10, .flex\@lg > .fill-10, .flex\@xl > .fill-10, .flex\@2xl > .fill-10 {
770
- flex: 0 0 83.3333333333%;
634
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
771
635
  }
772
636
  .flex > .order-10, .flex\@xs > .order-10, .flex\@sm > .order-10, .flex\@md > .order-10, .flex\@lg > .order-10, .flex\@xl > .order-10, .flex\@2xl > .order-10 {
773
637
  order: 10;
774
638
  }
775
639
  .flex > .fill-11, .flex\@xs > .fill-11, .flex\@sm > .fill-11, .flex\@md > .fill-11, .flex\@lg > .fill-11, .flex\@xl > .fill-11, .flex\@2xl > .fill-11 {
776
- flex: 0 0 91.6666666667%;
640
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
777
641
  }
778
642
  .flex > .order-11, .flex\@xs > .order-11, .flex\@sm > .order-11, .flex\@md > .order-11, .flex\@lg > .order-11, .flex\@xl > .order-11, .flex\@2xl > .order-11 {
779
643
  order: 11;
780
644
  }
781
645
  .flex > .fill-12, .flex\@xs > .fill-12, .flex\@sm > .fill-12, .flex\@md > .fill-12, .flex\@lg > .fill-12, .flex\@xl > .fill-12, .flex\@2xl > .fill-12 {
782
- flex: 0 0 100%;
646
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
783
647
  }
784
648
  .flex > .order-12, .flex\@xs > .order-12, .flex\@sm > .order-12, .flex\@md > .order-12, .flex\@lg > .order-12, .flex\@xl > .order-12, .flex\@2xl > .order-12 {
785
649
  order: 12;
@@ -913,73 +777,73 @@ code {
913
777
  align-self: auto;
914
778
  }
915
779
  .flex > .fill-1\@xs, .flex\@xs > .fill-1\@xs, .flex\@sm > .fill-1\@xs, .flex\@md > .fill-1\@xs, .flex\@lg > .fill-1\@xs, .flex\@xl > .fill-1\@xs, .flex\@2xl > .fill-1\@xs {
916
- flex: 0 0 8.3333333333%;
780
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
917
781
  }
918
782
  .flex > .order-1\@xs, .flex\@xs > .order-1\@xs, .flex\@sm > .order-1\@xs, .flex\@md > .order-1\@xs, .flex\@lg > .order-1\@xs, .flex\@xl > .order-1\@xs, .flex\@2xl > .order-1\@xs {
919
783
  order: 1;
920
784
  }
921
785
  .flex > .fill-2\@xs, .flex\@xs > .fill-2\@xs, .flex\@sm > .fill-2\@xs, .flex\@md > .fill-2\@xs, .flex\@lg > .fill-2\@xs, .flex\@xl > .fill-2\@xs, .flex\@2xl > .fill-2\@xs {
922
- flex: 0 0 16.6666666667%;
786
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
923
787
  }
924
788
  .flex > .order-2\@xs, .flex\@xs > .order-2\@xs, .flex\@sm > .order-2\@xs, .flex\@md > .order-2\@xs, .flex\@lg > .order-2\@xs, .flex\@xl > .order-2\@xs, .flex\@2xl > .order-2\@xs {
925
789
  order: 2;
926
790
  }
927
791
  .flex > .fill-3\@xs, .flex\@xs > .fill-3\@xs, .flex\@sm > .fill-3\@xs, .flex\@md > .fill-3\@xs, .flex\@lg > .fill-3\@xs, .flex\@xl > .fill-3\@xs, .flex\@2xl > .fill-3\@xs {
928
- flex: 0 0 25%;
792
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
929
793
  }
930
794
  .flex > .order-3\@xs, .flex\@xs > .order-3\@xs, .flex\@sm > .order-3\@xs, .flex\@md > .order-3\@xs, .flex\@lg > .order-3\@xs, .flex\@xl > .order-3\@xs, .flex\@2xl > .order-3\@xs {
931
795
  order: 3;
932
796
  }
933
797
  .flex > .fill-4\@xs, .flex\@xs > .fill-4\@xs, .flex\@sm > .fill-4\@xs, .flex\@md > .fill-4\@xs, .flex\@lg > .fill-4\@xs, .flex\@xl > .fill-4\@xs, .flex\@2xl > .fill-4\@xs {
934
- flex: 0 0 33.3333333333%;
798
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
935
799
  }
936
800
  .flex > .order-4\@xs, .flex\@xs > .order-4\@xs, .flex\@sm > .order-4\@xs, .flex\@md > .order-4\@xs, .flex\@lg > .order-4\@xs, .flex\@xl > .order-4\@xs, .flex\@2xl > .order-4\@xs {
937
801
  order: 4;
938
802
  }
939
803
  .flex > .fill-5\@xs, .flex\@xs > .fill-5\@xs, .flex\@sm > .fill-5\@xs, .flex\@md > .fill-5\@xs, .flex\@lg > .fill-5\@xs, .flex\@xl > .fill-5\@xs, .flex\@2xl > .fill-5\@xs {
940
- flex: 0 0 41.6666666667%;
804
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
941
805
  }
942
806
  .flex > .order-5\@xs, .flex\@xs > .order-5\@xs, .flex\@sm > .order-5\@xs, .flex\@md > .order-5\@xs, .flex\@lg > .order-5\@xs, .flex\@xl > .order-5\@xs, .flex\@2xl > .order-5\@xs {
943
807
  order: 5;
944
808
  }
945
809
  .flex > .fill-6\@xs, .flex\@xs > .fill-6\@xs, .flex\@sm > .fill-6\@xs, .flex\@md > .fill-6\@xs, .flex\@lg > .fill-6\@xs, .flex\@xl > .fill-6\@xs, .flex\@2xl > .fill-6\@xs {
946
- flex: 0 0 50%;
810
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
947
811
  }
948
812
  .flex > .order-6\@xs, .flex\@xs > .order-6\@xs, .flex\@sm > .order-6\@xs, .flex\@md > .order-6\@xs, .flex\@lg > .order-6\@xs, .flex\@xl > .order-6\@xs, .flex\@2xl > .order-6\@xs {
949
813
  order: 6;
950
814
  }
951
815
  .flex > .fill-7\@xs, .flex\@xs > .fill-7\@xs, .flex\@sm > .fill-7\@xs, .flex\@md > .fill-7\@xs, .flex\@lg > .fill-7\@xs, .flex\@xl > .fill-7\@xs, .flex\@2xl > .fill-7\@xs {
952
- flex: 0 0 58.3333333333%;
816
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
953
817
  }
954
818
  .flex > .order-7\@xs, .flex\@xs > .order-7\@xs, .flex\@sm > .order-7\@xs, .flex\@md > .order-7\@xs, .flex\@lg > .order-7\@xs, .flex\@xl > .order-7\@xs, .flex\@2xl > .order-7\@xs {
955
819
  order: 7;
956
820
  }
957
821
  .flex > .fill-8\@xs, .flex\@xs > .fill-8\@xs, .flex\@sm > .fill-8\@xs, .flex\@md > .fill-8\@xs, .flex\@lg > .fill-8\@xs, .flex\@xl > .fill-8\@xs, .flex\@2xl > .fill-8\@xs {
958
- flex: 0 0 66.6666666667%;
822
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
959
823
  }
960
824
  .flex > .order-8\@xs, .flex\@xs > .order-8\@xs, .flex\@sm > .order-8\@xs, .flex\@md > .order-8\@xs, .flex\@lg > .order-8\@xs, .flex\@xl > .order-8\@xs, .flex\@2xl > .order-8\@xs {
961
825
  order: 8;
962
826
  }
963
827
  .flex > .fill-9\@xs, .flex\@xs > .fill-9\@xs, .flex\@sm > .fill-9\@xs, .flex\@md > .fill-9\@xs, .flex\@lg > .fill-9\@xs, .flex\@xl > .fill-9\@xs, .flex\@2xl > .fill-9\@xs {
964
- flex: 0 0 75%;
828
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
965
829
  }
966
830
  .flex > .order-9\@xs, .flex\@xs > .order-9\@xs, .flex\@sm > .order-9\@xs, .flex\@md > .order-9\@xs, .flex\@lg > .order-9\@xs, .flex\@xl > .order-9\@xs, .flex\@2xl > .order-9\@xs {
967
831
  order: 9;
968
832
  }
969
833
  .flex > .fill-10\@xs, .flex\@xs > .fill-10\@xs, .flex\@sm > .fill-10\@xs, .flex\@md > .fill-10\@xs, .flex\@lg > .fill-10\@xs, .flex\@xl > .fill-10\@xs, .flex\@2xl > .fill-10\@xs {
970
- flex: 0 0 83.3333333333%;
834
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
971
835
  }
972
836
  .flex > .order-10\@xs, .flex\@xs > .order-10\@xs, .flex\@sm > .order-10\@xs, .flex\@md > .order-10\@xs, .flex\@lg > .order-10\@xs, .flex\@xl > .order-10\@xs, .flex\@2xl > .order-10\@xs {
973
837
  order: 10;
974
838
  }
975
839
  .flex > .fill-11\@xs, .flex\@xs > .fill-11\@xs, .flex\@sm > .fill-11\@xs, .flex\@md > .fill-11\@xs, .flex\@lg > .fill-11\@xs, .flex\@xl > .fill-11\@xs, .flex\@2xl > .fill-11\@xs {
976
- flex: 0 0 91.6666666667%;
840
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
977
841
  }
978
842
  .flex > .order-11\@xs, .flex\@xs > .order-11\@xs, .flex\@sm > .order-11\@xs, .flex\@md > .order-11\@xs, .flex\@lg > .order-11\@xs, .flex\@xl > .order-11\@xs, .flex\@2xl > .order-11\@xs {
979
843
  order: 11;
980
844
  }
981
845
  .flex > .fill-12\@xs, .flex\@xs > .fill-12\@xs, .flex\@sm > .fill-12\@xs, .flex\@md > .fill-12\@xs, .flex\@lg > .fill-12\@xs, .flex\@xl > .fill-12\@xs, .flex\@2xl > .fill-12\@xs {
982
- flex: 0 0 100%;
846
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
983
847
  }
984
848
  .flex > .order-12\@xs, .flex\@xs > .order-12\@xs, .flex\@sm > .order-12\@xs, .flex\@md > .order-12\@xs, .flex\@lg > .order-12\@xs, .flex\@xl > .order-12\@xs, .flex\@2xl > .order-12\@xs {
985
849
  order: 12;
@@ -1117,73 +981,73 @@ code {
1117
981
  align-self: auto;
1118
982
  }
1119
983
  .flex > .fill-1\@sm, .flex\@xs > .fill-1\@sm, .flex\@sm > .fill-1\@sm, .flex\@md > .fill-1\@sm, .flex\@lg > .fill-1\@sm, .flex\@xl > .fill-1\@sm, .flex\@2xl > .fill-1\@sm {
1120
- flex: 0 0 8.3333333333%;
984
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
1121
985
  }
1122
986
  .flex > .order-1\@sm, .flex\@xs > .order-1\@sm, .flex\@sm > .order-1\@sm, .flex\@md > .order-1\@sm, .flex\@lg > .order-1\@sm, .flex\@xl > .order-1\@sm, .flex\@2xl > .order-1\@sm {
1123
987
  order: 1;
1124
988
  }
1125
989
  .flex > .fill-2\@sm, .flex\@xs > .fill-2\@sm, .flex\@sm > .fill-2\@sm, .flex\@md > .fill-2\@sm, .flex\@lg > .fill-2\@sm, .flex\@xl > .fill-2\@sm, .flex\@2xl > .fill-2\@sm {
1126
- flex: 0 0 16.6666666667%;
990
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
1127
991
  }
1128
992
  .flex > .order-2\@sm, .flex\@xs > .order-2\@sm, .flex\@sm > .order-2\@sm, .flex\@md > .order-2\@sm, .flex\@lg > .order-2\@sm, .flex\@xl > .order-2\@sm, .flex\@2xl > .order-2\@sm {
1129
993
  order: 2;
1130
994
  }
1131
995
  .flex > .fill-3\@sm, .flex\@xs > .fill-3\@sm, .flex\@sm > .fill-3\@sm, .flex\@md > .fill-3\@sm, .flex\@lg > .fill-3\@sm, .flex\@xl > .fill-3\@sm, .flex\@2xl > .fill-3\@sm {
1132
- flex: 0 0 25%;
996
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
1133
997
  }
1134
998
  .flex > .order-3\@sm, .flex\@xs > .order-3\@sm, .flex\@sm > .order-3\@sm, .flex\@md > .order-3\@sm, .flex\@lg > .order-3\@sm, .flex\@xl > .order-3\@sm, .flex\@2xl > .order-3\@sm {
1135
999
  order: 3;
1136
1000
  }
1137
1001
  .flex > .fill-4\@sm, .flex\@xs > .fill-4\@sm, .flex\@sm > .fill-4\@sm, .flex\@md > .fill-4\@sm, .flex\@lg > .fill-4\@sm, .flex\@xl > .fill-4\@sm, .flex\@2xl > .fill-4\@sm {
1138
- flex: 0 0 33.3333333333%;
1002
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
1139
1003
  }
1140
1004
  .flex > .order-4\@sm, .flex\@xs > .order-4\@sm, .flex\@sm > .order-4\@sm, .flex\@md > .order-4\@sm, .flex\@lg > .order-4\@sm, .flex\@xl > .order-4\@sm, .flex\@2xl > .order-4\@sm {
1141
1005
  order: 4;
1142
1006
  }
1143
1007
  .flex > .fill-5\@sm, .flex\@xs > .fill-5\@sm, .flex\@sm > .fill-5\@sm, .flex\@md > .fill-5\@sm, .flex\@lg > .fill-5\@sm, .flex\@xl > .fill-5\@sm, .flex\@2xl > .fill-5\@sm {
1144
- flex: 0 0 41.6666666667%;
1008
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
1145
1009
  }
1146
1010
  .flex > .order-5\@sm, .flex\@xs > .order-5\@sm, .flex\@sm > .order-5\@sm, .flex\@md > .order-5\@sm, .flex\@lg > .order-5\@sm, .flex\@xl > .order-5\@sm, .flex\@2xl > .order-5\@sm {
1147
1011
  order: 5;
1148
1012
  }
1149
1013
  .flex > .fill-6\@sm, .flex\@xs > .fill-6\@sm, .flex\@sm > .fill-6\@sm, .flex\@md > .fill-6\@sm, .flex\@lg > .fill-6\@sm, .flex\@xl > .fill-6\@sm, .flex\@2xl > .fill-6\@sm {
1150
- flex: 0 0 50%;
1014
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
1151
1015
  }
1152
1016
  .flex > .order-6\@sm, .flex\@xs > .order-6\@sm, .flex\@sm > .order-6\@sm, .flex\@md > .order-6\@sm, .flex\@lg > .order-6\@sm, .flex\@xl > .order-6\@sm, .flex\@2xl > .order-6\@sm {
1153
1017
  order: 6;
1154
1018
  }
1155
1019
  .flex > .fill-7\@sm, .flex\@xs > .fill-7\@sm, .flex\@sm > .fill-7\@sm, .flex\@md > .fill-7\@sm, .flex\@lg > .fill-7\@sm, .flex\@xl > .fill-7\@sm, .flex\@2xl > .fill-7\@sm {
1156
- flex: 0 0 58.3333333333%;
1020
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
1157
1021
  }
1158
1022
  .flex > .order-7\@sm, .flex\@xs > .order-7\@sm, .flex\@sm > .order-7\@sm, .flex\@md > .order-7\@sm, .flex\@lg > .order-7\@sm, .flex\@xl > .order-7\@sm, .flex\@2xl > .order-7\@sm {
1159
1023
  order: 7;
1160
1024
  }
1161
1025
  .flex > .fill-8\@sm, .flex\@xs > .fill-8\@sm, .flex\@sm > .fill-8\@sm, .flex\@md > .fill-8\@sm, .flex\@lg > .fill-8\@sm, .flex\@xl > .fill-8\@sm, .flex\@2xl > .fill-8\@sm {
1162
- flex: 0 0 66.6666666667%;
1026
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
1163
1027
  }
1164
1028
  .flex > .order-8\@sm, .flex\@xs > .order-8\@sm, .flex\@sm > .order-8\@sm, .flex\@md > .order-8\@sm, .flex\@lg > .order-8\@sm, .flex\@xl > .order-8\@sm, .flex\@2xl > .order-8\@sm {
1165
1029
  order: 8;
1166
1030
  }
1167
1031
  .flex > .fill-9\@sm, .flex\@xs > .fill-9\@sm, .flex\@sm > .fill-9\@sm, .flex\@md > .fill-9\@sm, .flex\@lg > .fill-9\@sm, .flex\@xl > .fill-9\@sm, .flex\@2xl > .fill-9\@sm {
1168
- flex: 0 0 75%;
1032
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
1169
1033
  }
1170
1034
  .flex > .order-9\@sm, .flex\@xs > .order-9\@sm, .flex\@sm > .order-9\@sm, .flex\@md > .order-9\@sm, .flex\@lg > .order-9\@sm, .flex\@xl > .order-9\@sm, .flex\@2xl > .order-9\@sm {
1171
1035
  order: 9;
1172
1036
  }
1173
1037
  .flex > .fill-10\@sm, .flex\@xs > .fill-10\@sm, .flex\@sm > .fill-10\@sm, .flex\@md > .fill-10\@sm, .flex\@lg > .fill-10\@sm, .flex\@xl > .fill-10\@sm, .flex\@2xl > .fill-10\@sm {
1174
- flex: 0 0 83.3333333333%;
1038
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
1175
1039
  }
1176
1040
  .flex > .order-10\@sm, .flex\@xs > .order-10\@sm, .flex\@sm > .order-10\@sm, .flex\@md > .order-10\@sm, .flex\@lg > .order-10\@sm, .flex\@xl > .order-10\@sm, .flex\@2xl > .order-10\@sm {
1177
1041
  order: 10;
1178
1042
  }
1179
1043
  .flex > .fill-11\@sm, .flex\@xs > .fill-11\@sm, .flex\@sm > .fill-11\@sm, .flex\@md > .fill-11\@sm, .flex\@lg > .fill-11\@sm, .flex\@xl > .fill-11\@sm, .flex\@2xl > .fill-11\@sm {
1180
- flex: 0 0 91.6666666667%;
1044
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
1181
1045
  }
1182
1046
  .flex > .order-11\@sm, .flex\@xs > .order-11\@sm, .flex\@sm > .order-11\@sm, .flex\@md > .order-11\@sm, .flex\@lg > .order-11\@sm, .flex\@xl > .order-11\@sm, .flex\@2xl > .order-11\@sm {
1183
1047
  order: 11;
1184
1048
  }
1185
1049
  .flex > .fill-12\@sm, .flex\@xs > .fill-12\@sm, .flex\@sm > .fill-12\@sm, .flex\@md > .fill-12\@sm, .flex\@lg > .fill-12\@sm, .flex\@xl > .fill-12\@sm, .flex\@2xl > .fill-12\@sm {
1186
- flex: 0 0 100%;
1050
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
1187
1051
  }
1188
1052
  .flex > .order-12\@sm, .flex\@xs > .order-12\@sm, .flex\@sm > .order-12\@sm, .flex\@md > .order-12\@sm, .flex\@lg > .order-12\@sm, .flex\@xl > .order-12\@sm, .flex\@2xl > .order-12\@sm {
1189
1053
  order: 12;
@@ -1321,73 +1185,73 @@ code {
1321
1185
  align-self: auto;
1322
1186
  }
1323
1187
  .flex > .fill-1\@md, .flex\@xs > .fill-1\@md, .flex\@sm > .fill-1\@md, .flex\@md > .fill-1\@md, .flex\@lg > .fill-1\@md, .flex\@xl > .fill-1\@md, .flex\@2xl > .fill-1\@md {
1324
- flex: 0 0 8.3333333333%;
1188
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
1325
1189
  }
1326
1190
  .flex > .order-1\@md, .flex\@xs > .order-1\@md, .flex\@sm > .order-1\@md, .flex\@md > .order-1\@md, .flex\@lg > .order-1\@md, .flex\@xl > .order-1\@md, .flex\@2xl > .order-1\@md {
1327
1191
  order: 1;
1328
1192
  }
1329
1193
  .flex > .fill-2\@md, .flex\@xs > .fill-2\@md, .flex\@sm > .fill-2\@md, .flex\@md > .fill-2\@md, .flex\@lg > .fill-2\@md, .flex\@xl > .fill-2\@md, .flex\@2xl > .fill-2\@md {
1330
- flex: 0 0 16.6666666667%;
1194
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
1331
1195
  }
1332
1196
  .flex > .order-2\@md, .flex\@xs > .order-2\@md, .flex\@sm > .order-2\@md, .flex\@md > .order-2\@md, .flex\@lg > .order-2\@md, .flex\@xl > .order-2\@md, .flex\@2xl > .order-2\@md {
1333
1197
  order: 2;
1334
1198
  }
1335
1199
  .flex > .fill-3\@md, .flex\@xs > .fill-3\@md, .flex\@sm > .fill-3\@md, .flex\@md > .fill-3\@md, .flex\@lg > .fill-3\@md, .flex\@xl > .fill-3\@md, .flex\@2xl > .fill-3\@md {
1336
- flex: 0 0 25%;
1200
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
1337
1201
  }
1338
1202
  .flex > .order-3\@md, .flex\@xs > .order-3\@md, .flex\@sm > .order-3\@md, .flex\@md > .order-3\@md, .flex\@lg > .order-3\@md, .flex\@xl > .order-3\@md, .flex\@2xl > .order-3\@md {
1339
1203
  order: 3;
1340
1204
  }
1341
1205
  .flex > .fill-4\@md, .flex\@xs > .fill-4\@md, .flex\@sm > .fill-4\@md, .flex\@md > .fill-4\@md, .flex\@lg > .fill-4\@md, .flex\@xl > .fill-4\@md, .flex\@2xl > .fill-4\@md {
1342
- flex: 0 0 33.3333333333%;
1206
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
1343
1207
  }
1344
1208
  .flex > .order-4\@md, .flex\@xs > .order-4\@md, .flex\@sm > .order-4\@md, .flex\@md > .order-4\@md, .flex\@lg > .order-4\@md, .flex\@xl > .order-4\@md, .flex\@2xl > .order-4\@md {
1345
1209
  order: 4;
1346
1210
  }
1347
1211
  .flex > .fill-5\@md, .flex\@xs > .fill-5\@md, .flex\@sm > .fill-5\@md, .flex\@md > .fill-5\@md, .flex\@lg > .fill-5\@md, .flex\@xl > .fill-5\@md, .flex\@2xl > .fill-5\@md {
1348
- flex: 0 0 41.6666666667%;
1212
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
1349
1213
  }
1350
1214
  .flex > .order-5\@md, .flex\@xs > .order-5\@md, .flex\@sm > .order-5\@md, .flex\@md > .order-5\@md, .flex\@lg > .order-5\@md, .flex\@xl > .order-5\@md, .flex\@2xl > .order-5\@md {
1351
1215
  order: 5;
1352
1216
  }
1353
1217
  .flex > .fill-6\@md, .flex\@xs > .fill-6\@md, .flex\@sm > .fill-6\@md, .flex\@md > .fill-6\@md, .flex\@lg > .fill-6\@md, .flex\@xl > .fill-6\@md, .flex\@2xl > .fill-6\@md {
1354
- flex: 0 0 50%;
1218
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
1355
1219
  }
1356
1220
  .flex > .order-6\@md, .flex\@xs > .order-6\@md, .flex\@sm > .order-6\@md, .flex\@md > .order-6\@md, .flex\@lg > .order-6\@md, .flex\@xl > .order-6\@md, .flex\@2xl > .order-6\@md {
1357
1221
  order: 6;
1358
1222
  }
1359
1223
  .flex > .fill-7\@md, .flex\@xs > .fill-7\@md, .flex\@sm > .fill-7\@md, .flex\@md > .fill-7\@md, .flex\@lg > .fill-7\@md, .flex\@xl > .fill-7\@md, .flex\@2xl > .fill-7\@md {
1360
- flex: 0 0 58.3333333333%;
1224
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
1361
1225
  }
1362
1226
  .flex > .order-7\@md, .flex\@xs > .order-7\@md, .flex\@sm > .order-7\@md, .flex\@md > .order-7\@md, .flex\@lg > .order-7\@md, .flex\@xl > .order-7\@md, .flex\@2xl > .order-7\@md {
1363
1227
  order: 7;
1364
1228
  }
1365
1229
  .flex > .fill-8\@md, .flex\@xs > .fill-8\@md, .flex\@sm > .fill-8\@md, .flex\@md > .fill-8\@md, .flex\@lg > .fill-8\@md, .flex\@xl > .fill-8\@md, .flex\@2xl > .fill-8\@md {
1366
- flex: 0 0 66.6666666667%;
1230
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
1367
1231
  }
1368
1232
  .flex > .order-8\@md, .flex\@xs > .order-8\@md, .flex\@sm > .order-8\@md, .flex\@md > .order-8\@md, .flex\@lg > .order-8\@md, .flex\@xl > .order-8\@md, .flex\@2xl > .order-8\@md {
1369
1233
  order: 8;
1370
1234
  }
1371
1235
  .flex > .fill-9\@md, .flex\@xs > .fill-9\@md, .flex\@sm > .fill-9\@md, .flex\@md > .fill-9\@md, .flex\@lg > .fill-9\@md, .flex\@xl > .fill-9\@md, .flex\@2xl > .fill-9\@md {
1372
- flex: 0 0 75%;
1236
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
1373
1237
  }
1374
1238
  .flex > .order-9\@md, .flex\@xs > .order-9\@md, .flex\@sm > .order-9\@md, .flex\@md > .order-9\@md, .flex\@lg > .order-9\@md, .flex\@xl > .order-9\@md, .flex\@2xl > .order-9\@md {
1375
1239
  order: 9;
1376
1240
  }
1377
1241
  .flex > .fill-10\@md, .flex\@xs > .fill-10\@md, .flex\@sm > .fill-10\@md, .flex\@md > .fill-10\@md, .flex\@lg > .fill-10\@md, .flex\@xl > .fill-10\@md, .flex\@2xl > .fill-10\@md {
1378
- flex: 0 0 83.3333333333%;
1242
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
1379
1243
  }
1380
1244
  .flex > .order-10\@md, .flex\@xs > .order-10\@md, .flex\@sm > .order-10\@md, .flex\@md > .order-10\@md, .flex\@lg > .order-10\@md, .flex\@xl > .order-10\@md, .flex\@2xl > .order-10\@md {
1381
1245
  order: 10;
1382
1246
  }
1383
1247
  .flex > .fill-11\@md, .flex\@xs > .fill-11\@md, .flex\@sm > .fill-11\@md, .flex\@md > .fill-11\@md, .flex\@lg > .fill-11\@md, .flex\@xl > .fill-11\@md, .flex\@2xl > .fill-11\@md {
1384
- flex: 0 0 91.6666666667%;
1248
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
1385
1249
  }
1386
1250
  .flex > .order-11\@md, .flex\@xs > .order-11\@md, .flex\@sm > .order-11\@md, .flex\@md > .order-11\@md, .flex\@lg > .order-11\@md, .flex\@xl > .order-11\@md, .flex\@2xl > .order-11\@md {
1387
1251
  order: 11;
1388
1252
  }
1389
1253
  .flex > .fill-12\@md, .flex\@xs > .fill-12\@md, .flex\@sm > .fill-12\@md, .flex\@md > .fill-12\@md, .flex\@lg > .fill-12\@md, .flex\@xl > .fill-12\@md, .flex\@2xl > .fill-12\@md {
1390
- flex: 0 0 100%;
1254
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
1391
1255
  }
1392
1256
  .flex > .order-12\@md, .flex\@xs > .order-12\@md, .flex\@sm > .order-12\@md, .flex\@md > .order-12\@md, .flex\@lg > .order-12\@md, .flex\@xl > .order-12\@md, .flex\@2xl > .order-12\@md {
1393
1257
  order: 12;
@@ -1525,73 +1389,73 @@ code {
1525
1389
  align-self: auto;
1526
1390
  }
1527
1391
  .flex > .fill-1\@lg, .flex\@xs > .fill-1\@lg, .flex\@sm > .fill-1\@lg, .flex\@md > .fill-1\@lg, .flex\@lg > .fill-1\@lg, .flex\@xl > .fill-1\@lg, .flex\@2xl > .fill-1\@lg {
1528
- flex: 0 0 8.3333333333%;
1392
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
1529
1393
  }
1530
1394
  .flex > .order-1\@lg, .flex\@xs > .order-1\@lg, .flex\@sm > .order-1\@lg, .flex\@md > .order-1\@lg, .flex\@lg > .order-1\@lg, .flex\@xl > .order-1\@lg, .flex\@2xl > .order-1\@lg {
1531
1395
  order: 1;
1532
1396
  }
1533
1397
  .flex > .fill-2\@lg, .flex\@xs > .fill-2\@lg, .flex\@sm > .fill-2\@lg, .flex\@md > .fill-2\@lg, .flex\@lg > .fill-2\@lg, .flex\@xl > .fill-2\@lg, .flex\@2xl > .fill-2\@lg {
1534
- flex: 0 0 16.6666666667%;
1398
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
1535
1399
  }
1536
1400
  .flex > .order-2\@lg, .flex\@xs > .order-2\@lg, .flex\@sm > .order-2\@lg, .flex\@md > .order-2\@lg, .flex\@lg > .order-2\@lg, .flex\@xl > .order-2\@lg, .flex\@2xl > .order-2\@lg {
1537
1401
  order: 2;
1538
1402
  }
1539
1403
  .flex > .fill-3\@lg, .flex\@xs > .fill-3\@lg, .flex\@sm > .fill-3\@lg, .flex\@md > .fill-3\@lg, .flex\@lg > .fill-3\@lg, .flex\@xl > .fill-3\@lg, .flex\@2xl > .fill-3\@lg {
1540
- flex: 0 0 25%;
1404
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
1541
1405
  }
1542
1406
  .flex > .order-3\@lg, .flex\@xs > .order-3\@lg, .flex\@sm > .order-3\@lg, .flex\@md > .order-3\@lg, .flex\@lg > .order-3\@lg, .flex\@xl > .order-3\@lg, .flex\@2xl > .order-3\@lg {
1543
1407
  order: 3;
1544
1408
  }
1545
1409
  .flex > .fill-4\@lg, .flex\@xs > .fill-4\@lg, .flex\@sm > .fill-4\@lg, .flex\@md > .fill-4\@lg, .flex\@lg > .fill-4\@lg, .flex\@xl > .fill-4\@lg, .flex\@2xl > .fill-4\@lg {
1546
- flex: 0 0 33.3333333333%;
1410
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
1547
1411
  }
1548
1412
  .flex > .order-4\@lg, .flex\@xs > .order-4\@lg, .flex\@sm > .order-4\@lg, .flex\@md > .order-4\@lg, .flex\@lg > .order-4\@lg, .flex\@xl > .order-4\@lg, .flex\@2xl > .order-4\@lg {
1549
1413
  order: 4;
1550
1414
  }
1551
1415
  .flex > .fill-5\@lg, .flex\@xs > .fill-5\@lg, .flex\@sm > .fill-5\@lg, .flex\@md > .fill-5\@lg, .flex\@lg > .fill-5\@lg, .flex\@xl > .fill-5\@lg, .flex\@2xl > .fill-5\@lg {
1552
- flex: 0 0 41.6666666667%;
1416
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
1553
1417
  }
1554
1418
  .flex > .order-5\@lg, .flex\@xs > .order-5\@lg, .flex\@sm > .order-5\@lg, .flex\@md > .order-5\@lg, .flex\@lg > .order-5\@lg, .flex\@xl > .order-5\@lg, .flex\@2xl > .order-5\@lg {
1555
1419
  order: 5;
1556
1420
  }
1557
1421
  .flex > .fill-6\@lg, .flex\@xs > .fill-6\@lg, .flex\@sm > .fill-6\@lg, .flex\@md > .fill-6\@lg, .flex\@lg > .fill-6\@lg, .flex\@xl > .fill-6\@lg, .flex\@2xl > .fill-6\@lg {
1558
- flex: 0 0 50%;
1422
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
1559
1423
  }
1560
1424
  .flex > .order-6\@lg, .flex\@xs > .order-6\@lg, .flex\@sm > .order-6\@lg, .flex\@md > .order-6\@lg, .flex\@lg > .order-6\@lg, .flex\@xl > .order-6\@lg, .flex\@2xl > .order-6\@lg {
1561
1425
  order: 6;
1562
1426
  }
1563
1427
  .flex > .fill-7\@lg, .flex\@xs > .fill-7\@lg, .flex\@sm > .fill-7\@lg, .flex\@md > .fill-7\@lg, .flex\@lg > .fill-7\@lg, .flex\@xl > .fill-7\@lg, .flex\@2xl > .fill-7\@lg {
1564
- flex: 0 0 58.3333333333%;
1428
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
1565
1429
  }
1566
1430
  .flex > .order-7\@lg, .flex\@xs > .order-7\@lg, .flex\@sm > .order-7\@lg, .flex\@md > .order-7\@lg, .flex\@lg > .order-7\@lg, .flex\@xl > .order-7\@lg, .flex\@2xl > .order-7\@lg {
1567
1431
  order: 7;
1568
1432
  }
1569
1433
  .flex > .fill-8\@lg, .flex\@xs > .fill-8\@lg, .flex\@sm > .fill-8\@lg, .flex\@md > .fill-8\@lg, .flex\@lg > .fill-8\@lg, .flex\@xl > .fill-8\@lg, .flex\@2xl > .fill-8\@lg {
1570
- flex: 0 0 66.6666666667%;
1434
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
1571
1435
  }
1572
1436
  .flex > .order-8\@lg, .flex\@xs > .order-8\@lg, .flex\@sm > .order-8\@lg, .flex\@md > .order-8\@lg, .flex\@lg > .order-8\@lg, .flex\@xl > .order-8\@lg, .flex\@2xl > .order-8\@lg {
1573
1437
  order: 8;
1574
1438
  }
1575
1439
  .flex > .fill-9\@lg, .flex\@xs > .fill-9\@lg, .flex\@sm > .fill-9\@lg, .flex\@md > .fill-9\@lg, .flex\@lg > .fill-9\@lg, .flex\@xl > .fill-9\@lg, .flex\@2xl > .fill-9\@lg {
1576
- flex: 0 0 75%;
1440
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
1577
1441
  }
1578
1442
  .flex > .order-9\@lg, .flex\@xs > .order-9\@lg, .flex\@sm > .order-9\@lg, .flex\@md > .order-9\@lg, .flex\@lg > .order-9\@lg, .flex\@xl > .order-9\@lg, .flex\@2xl > .order-9\@lg {
1579
1443
  order: 9;
1580
1444
  }
1581
1445
  .flex > .fill-10\@lg, .flex\@xs > .fill-10\@lg, .flex\@sm > .fill-10\@lg, .flex\@md > .fill-10\@lg, .flex\@lg > .fill-10\@lg, .flex\@xl > .fill-10\@lg, .flex\@2xl > .fill-10\@lg {
1582
- flex: 0 0 83.3333333333%;
1446
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
1583
1447
  }
1584
1448
  .flex > .order-10\@lg, .flex\@xs > .order-10\@lg, .flex\@sm > .order-10\@lg, .flex\@md > .order-10\@lg, .flex\@lg > .order-10\@lg, .flex\@xl > .order-10\@lg, .flex\@2xl > .order-10\@lg {
1585
1449
  order: 10;
1586
1450
  }
1587
1451
  .flex > .fill-11\@lg, .flex\@xs > .fill-11\@lg, .flex\@sm > .fill-11\@lg, .flex\@md > .fill-11\@lg, .flex\@lg > .fill-11\@lg, .flex\@xl > .fill-11\@lg, .flex\@2xl > .fill-11\@lg {
1588
- flex: 0 0 91.6666666667%;
1452
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
1589
1453
  }
1590
1454
  .flex > .order-11\@lg, .flex\@xs > .order-11\@lg, .flex\@sm > .order-11\@lg, .flex\@md > .order-11\@lg, .flex\@lg > .order-11\@lg, .flex\@xl > .order-11\@lg, .flex\@2xl > .order-11\@lg {
1591
1455
  order: 11;
1592
1456
  }
1593
1457
  .flex > .fill-12\@lg, .flex\@xs > .fill-12\@lg, .flex\@sm > .fill-12\@lg, .flex\@md > .fill-12\@lg, .flex\@lg > .fill-12\@lg, .flex\@xl > .fill-12\@lg, .flex\@2xl > .fill-12\@lg {
1594
- flex: 0 0 100%;
1458
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
1595
1459
  }
1596
1460
  .flex > .order-12\@lg, .flex\@xs > .order-12\@lg, .flex\@sm > .order-12\@lg, .flex\@md > .order-12\@lg, .flex\@lg > .order-12\@lg, .flex\@xl > .order-12\@lg, .flex\@2xl > .order-12\@lg {
1597
1461
  order: 12;
@@ -1729,73 +1593,73 @@ code {
1729
1593
  align-self: auto;
1730
1594
  }
1731
1595
  .flex > .fill-1\@xl, .flex\@xs > .fill-1\@xl, .flex\@sm > .fill-1\@xl, .flex\@md > .fill-1\@xl, .flex\@lg > .fill-1\@xl, .flex\@xl > .fill-1\@xl, .flex\@2xl > .fill-1\@xl {
1732
- flex: 0 0 8.3333333333%;
1596
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
1733
1597
  }
1734
1598
  .flex > .order-1\@xl, .flex\@xs > .order-1\@xl, .flex\@sm > .order-1\@xl, .flex\@md > .order-1\@xl, .flex\@lg > .order-1\@xl, .flex\@xl > .order-1\@xl, .flex\@2xl > .order-1\@xl {
1735
1599
  order: 1;
1736
1600
  }
1737
1601
  .flex > .fill-2\@xl, .flex\@xs > .fill-2\@xl, .flex\@sm > .fill-2\@xl, .flex\@md > .fill-2\@xl, .flex\@lg > .fill-2\@xl, .flex\@xl > .fill-2\@xl, .flex\@2xl > .fill-2\@xl {
1738
- flex: 0 0 16.6666666667%;
1602
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
1739
1603
  }
1740
1604
  .flex > .order-2\@xl, .flex\@xs > .order-2\@xl, .flex\@sm > .order-2\@xl, .flex\@md > .order-2\@xl, .flex\@lg > .order-2\@xl, .flex\@xl > .order-2\@xl, .flex\@2xl > .order-2\@xl {
1741
1605
  order: 2;
1742
1606
  }
1743
1607
  .flex > .fill-3\@xl, .flex\@xs > .fill-3\@xl, .flex\@sm > .fill-3\@xl, .flex\@md > .fill-3\@xl, .flex\@lg > .fill-3\@xl, .flex\@xl > .fill-3\@xl, .flex\@2xl > .fill-3\@xl {
1744
- flex: 0 0 25%;
1608
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
1745
1609
  }
1746
1610
  .flex > .order-3\@xl, .flex\@xs > .order-3\@xl, .flex\@sm > .order-3\@xl, .flex\@md > .order-3\@xl, .flex\@lg > .order-3\@xl, .flex\@xl > .order-3\@xl, .flex\@2xl > .order-3\@xl {
1747
1611
  order: 3;
1748
1612
  }
1749
1613
  .flex > .fill-4\@xl, .flex\@xs > .fill-4\@xl, .flex\@sm > .fill-4\@xl, .flex\@md > .fill-4\@xl, .flex\@lg > .fill-4\@xl, .flex\@xl > .fill-4\@xl, .flex\@2xl > .fill-4\@xl {
1750
- flex: 0 0 33.3333333333%;
1614
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
1751
1615
  }
1752
1616
  .flex > .order-4\@xl, .flex\@xs > .order-4\@xl, .flex\@sm > .order-4\@xl, .flex\@md > .order-4\@xl, .flex\@lg > .order-4\@xl, .flex\@xl > .order-4\@xl, .flex\@2xl > .order-4\@xl {
1753
1617
  order: 4;
1754
1618
  }
1755
1619
  .flex > .fill-5\@xl, .flex\@xs > .fill-5\@xl, .flex\@sm > .fill-5\@xl, .flex\@md > .fill-5\@xl, .flex\@lg > .fill-5\@xl, .flex\@xl > .fill-5\@xl, .flex\@2xl > .fill-5\@xl {
1756
- flex: 0 0 41.6666666667%;
1620
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
1757
1621
  }
1758
1622
  .flex > .order-5\@xl, .flex\@xs > .order-5\@xl, .flex\@sm > .order-5\@xl, .flex\@md > .order-5\@xl, .flex\@lg > .order-5\@xl, .flex\@xl > .order-5\@xl, .flex\@2xl > .order-5\@xl {
1759
1623
  order: 5;
1760
1624
  }
1761
1625
  .flex > .fill-6\@xl, .flex\@xs > .fill-6\@xl, .flex\@sm > .fill-6\@xl, .flex\@md > .fill-6\@xl, .flex\@lg > .fill-6\@xl, .flex\@xl > .fill-6\@xl, .flex\@2xl > .fill-6\@xl {
1762
- flex: 0 0 50%;
1626
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
1763
1627
  }
1764
1628
  .flex > .order-6\@xl, .flex\@xs > .order-6\@xl, .flex\@sm > .order-6\@xl, .flex\@md > .order-6\@xl, .flex\@lg > .order-6\@xl, .flex\@xl > .order-6\@xl, .flex\@2xl > .order-6\@xl {
1765
1629
  order: 6;
1766
1630
  }
1767
1631
  .flex > .fill-7\@xl, .flex\@xs > .fill-7\@xl, .flex\@sm > .fill-7\@xl, .flex\@md > .fill-7\@xl, .flex\@lg > .fill-7\@xl, .flex\@xl > .fill-7\@xl, .flex\@2xl > .fill-7\@xl {
1768
- flex: 0 0 58.3333333333%;
1632
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
1769
1633
  }
1770
1634
  .flex > .order-7\@xl, .flex\@xs > .order-7\@xl, .flex\@sm > .order-7\@xl, .flex\@md > .order-7\@xl, .flex\@lg > .order-7\@xl, .flex\@xl > .order-7\@xl, .flex\@2xl > .order-7\@xl {
1771
1635
  order: 7;
1772
1636
  }
1773
1637
  .flex > .fill-8\@xl, .flex\@xs > .fill-8\@xl, .flex\@sm > .fill-8\@xl, .flex\@md > .fill-8\@xl, .flex\@lg > .fill-8\@xl, .flex\@xl > .fill-8\@xl, .flex\@2xl > .fill-8\@xl {
1774
- flex: 0 0 66.6666666667%;
1638
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
1775
1639
  }
1776
1640
  .flex > .order-8\@xl, .flex\@xs > .order-8\@xl, .flex\@sm > .order-8\@xl, .flex\@md > .order-8\@xl, .flex\@lg > .order-8\@xl, .flex\@xl > .order-8\@xl, .flex\@2xl > .order-8\@xl {
1777
1641
  order: 8;
1778
1642
  }
1779
1643
  .flex > .fill-9\@xl, .flex\@xs > .fill-9\@xl, .flex\@sm > .fill-9\@xl, .flex\@md > .fill-9\@xl, .flex\@lg > .fill-9\@xl, .flex\@xl > .fill-9\@xl, .flex\@2xl > .fill-9\@xl {
1780
- flex: 0 0 75%;
1644
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
1781
1645
  }
1782
1646
  .flex > .order-9\@xl, .flex\@xs > .order-9\@xl, .flex\@sm > .order-9\@xl, .flex\@md > .order-9\@xl, .flex\@lg > .order-9\@xl, .flex\@xl > .order-9\@xl, .flex\@2xl > .order-9\@xl {
1783
1647
  order: 9;
1784
1648
  }
1785
1649
  .flex > .fill-10\@xl, .flex\@xs > .fill-10\@xl, .flex\@sm > .fill-10\@xl, .flex\@md > .fill-10\@xl, .flex\@lg > .fill-10\@xl, .flex\@xl > .fill-10\@xl, .flex\@2xl > .fill-10\@xl {
1786
- flex: 0 0 83.3333333333%;
1650
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
1787
1651
  }
1788
1652
  .flex > .order-10\@xl, .flex\@xs > .order-10\@xl, .flex\@sm > .order-10\@xl, .flex\@md > .order-10\@xl, .flex\@lg > .order-10\@xl, .flex\@xl > .order-10\@xl, .flex\@2xl > .order-10\@xl {
1789
1653
  order: 10;
1790
1654
  }
1791
1655
  .flex > .fill-11\@xl, .flex\@xs > .fill-11\@xl, .flex\@sm > .fill-11\@xl, .flex\@md > .fill-11\@xl, .flex\@lg > .fill-11\@xl, .flex\@xl > .fill-11\@xl, .flex\@2xl > .fill-11\@xl {
1792
- flex: 0 0 91.6666666667%;
1656
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
1793
1657
  }
1794
1658
  .flex > .order-11\@xl, .flex\@xs > .order-11\@xl, .flex\@sm > .order-11\@xl, .flex\@md > .order-11\@xl, .flex\@lg > .order-11\@xl, .flex\@xl > .order-11\@xl, .flex\@2xl > .order-11\@xl {
1795
1659
  order: 11;
1796
1660
  }
1797
1661
  .flex > .fill-12\@xl, .flex\@xs > .fill-12\@xl, .flex\@sm > .fill-12\@xl, .flex\@md > .fill-12\@xl, .flex\@lg > .fill-12\@xl, .flex\@xl > .fill-12\@xl, .flex\@2xl > .fill-12\@xl {
1798
- flex: 0 0 100%;
1662
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
1799
1663
  }
1800
1664
  .flex > .order-12\@xl, .flex\@xs > .order-12\@xl, .flex\@sm > .order-12\@xl, .flex\@md > .order-12\@xl, .flex\@lg > .order-12\@xl, .flex\@xl > .order-12\@xl, .flex\@2xl > .order-12\@xl {
1801
1665
  order: 12;
@@ -1933,73 +1797,73 @@ code {
1933
1797
  align-self: auto;
1934
1798
  }
1935
1799
  .flex > .fill-1\@2xl, .flex\@xs > .fill-1\@2xl, .flex\@sm > .fill-1\@2xl, .flex\@md > .fill-1\@2xl, .flex\@lg > .fill-1\@2xl, .flex\@xl > .fill-1\@2xl, .flex\@2xl > .fill-1\@2xl {
1936
- flex: 0 0 8.3333333333%;
1800
+ flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
1937
1801
  }
1938
1802
  .flex > .order-1\@2xl, .flex\@xs > .order-1\@2xl, .flex\@sm > .order-1\@2xl, .flex\@md > .order-1\@2xl, .flex\@lg > .order-1\@2xl, .flex\@xl > .order-1\@2xl, .flex\@2xl > .order-1\@2xl {
1939
1803
  order: 1;
1940
1804
  }
1941
1805
  .flex > .fill-2\@2xl, .flex\@xs > .fill-2\@2xl, .flex\@sm > .fill-2\@2xl, .flex\@md > .fill-2\@2xl, .flex\@lg > .fill-2\@2xl, .flex\@xl > .fill-2\@2xl, .flex\@2xl > .fill-2\@2xl {
1942
- flex: 0 0 16.6666666667%;
1806
+ flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
1943
1807
  }
1944
1808
  .flex > .order-2\@2xl, .flex\@xs > .order-2\@2xl, .flex\@sm > .order-2\@2xl, .flex\@md > .order-2\@2xl, .flex\@lg > .order-2\@2xl, .flex\@xl > .order-2\@2xl, .flex\@2xl > .order-2\@2xl {
1945
1809
  order: 2;
1946
1810
  }
1947
1811
  .flex > .fill-3\@2xl, .flex\@xs > .fill-3\@2xl, .flex\@sm > .fill-3\@2xl, .flex\@md > .fill-3\@2xl, .flex\@lg > .fill-3\@2xl, .flex\@xl > .fill-3\@2xl, .flex\@2xl > .fill-3\@2xl {
1948
- flex: 0 0 25%;
1812
+ flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
1949
1813
  }
1950
1814
  .flex > .order-3\@2xl, .flex\@xs > .order-3\@2xl, .flex\@sm > .order-3\@2xl, .flex\@md > .order-3\@2xl, .flex\@lg > .order-3\@2xl, .flex\@xl > .order-3\@2xl, .flex\@2xl > .order-3\@2xl {
1951
1815
  order: 3;
1952
1816
  }
1953
1817
  .flex > .fill-4\@2xl, .flex\@xs > .fill-4\@2xl, .flex\@sm > .fill-4\@2xl, .flex\@md > .fill-4\@2xl, .flex\@lg > .fill-4\@2xl, .flex\@xl > .fill-4\@2xl, .flex\@2xl > .fill-4\@2xl {
1954
- flex: 0 0 33.3333333333%;
1818
+ flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
1955
1819
  }
1956
1820
  .flex > .order-4\@2xl, .flex\@xs > .order-4\@2xl, .flex\@sm > .order-4\@2xl, .flex\@md > .order-4\@2xl, .flex\@lg > .order-4\@2xl, .flex\@xl > .order-4\@2xl, .flex\@2xl > .order-4\@2xl {
1957
1821
  order: 4;
1958
1822
  }
1959
1823
  .flex > .fill-5\@2xl, .flex\@xs > .fill-5\@2xl, .flex\@sm > .fill-5\@2xl, .flex\@md > .fill-5\@2xl, .flex\@lg > .fill-5\@2xl, .flex\@xl > .fill-5\@2xl, .flex\@2xl > .fill-5\@2xl {
1960
- flex: 0 0 41.6666666667%;
1824
+ flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
1961
1825
  }
1962
1826
  .flex > .order-5\@2xl, .flex\@xs > .order-5\@2xl, .flex\@sm > .order-5\@2xl, .flex\@md > .order-5\@2xl, .flex\@lg > .order-5\@2xl, .flex\@xl > .order-5\@2xl, .flex\@2xl > .order-5\@2xl {
1963
1827
  order: 5;
1964
1828
  }
1965
1829
  .flex > .fill-6\@2xl, .flex\@xs > .fill-6\@2xl, .flex\@sm > .fill-6\@2xl, .flex\@md > .fill-6\@2xl, .flex\@lg > .fill-6\@2xl, .flex\@xl > .fill-6\@2xl, .flex\@2xl > .fill-6\@2xl {
1966
- flex: 0 0 50%;
1830
+ flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
1967
1831
  }
1968
1832
  .flex > .order-6\@2xl, .flex\@xs > .order-6\@2xl, .flex\@sm > .order-6\@2xl, .flex\@md > .order-6\@2xl, .flex\@lg > .order-6\@2xl, .flex\@xl > .order-6\@2xl, .flex\@2xl > .order-6\@2xl {
1969
1833
  order: 6;
1970
1834
  }
1971
1835
  .flex > .fill-7\@2xl, .flex\@xs > .fill-7\@2xl, .flex\@sm > .fill-7\@2xl, .flex\@md > .fill-7\@2xl, .flex\@lg > .fill-7\@2xl, .flex\@xl > .fill-7\@2xl, .flex\@2xl > .fill-7\@2xl {
1972
- flex: 0 0 58.3333333333%;
1836
+ flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
1973
1837
  }
1974
1838
  .flex > .order-7\@2xl, .flex\@xs > .order-7\@2xl, .flex\@sm > .order-7\@2xl, .flex\@md > .order-7\@2xl, .flex\@lg > .order-7\@2xl, .flex\@xl > .order-7\@2xl, .flex\@2xl > .order-7\@2xl {
1975
1839
  order: 7;
1976
1840
  }
1977
1841
  .flex > .fill-8\@2xl, .flex\@xs > .fill-8\@2xl, .flex\@sm > .fill-8\@2xl, .flex\@md > .fill-8\@2xl, .flex\@lg > .fill-8\@2xl, .flex\@xl > .fill-8\@2xl, .flex\@2xl > .fill-8\@2xl {
1978
- flex: 0 0 66.6666666667%;
1842
+ flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
1979
1843
  }
1980
1844
  .flex > .order-8\@2xl, .flex\@xs > .order-8\@2xl, .flex\@sm > .order-8\@2xl, .flex\@md > .order-8\@2xl, .flex\@lg > .order-8\@2xl, .flex\@xl > .order-8\@2xl, .flex\@2xl > .order-8\@2xl {
1981
1845
  order: 8;
1982
1846
  }
1983
1847
  .flex > .fill-9\@2xl, .flex\@xs > .fill-9\@2xl, .flex\@sm > .fill-9\@2xl, .flex\@md > .fill-9\@2xl, .flex\@lg > .fill-9\@2xl, .flex\@xl > .fill-9\@2xl, .flex\@2xl > .fill-9\@2xl {
1984
- flex: 0 0 75%;
1848
+ flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
1985
1849
  }
1986
1850
  .flex > .order-9\@2xl, .flex\@xs > .order-9\@2xl, .flex\@sm > .order-9\@2xl, .flex\@md > .order-9\@2xl, .flex\@lg > .order-9\@2xl, .flex\@xl > .order-9\@2xl, .flex\@2xl > .order-9\@2xl {
1987
1851
  order: 9;
1988
1852
  }
1989
1853
  .flex > .fill-10\@2xl, .flex\@xs > .fill-10\@2xl, .flex\@sm > .fill-10\@2xl, .flex\@md > .fill-10\@2xl, .flex\@lg > .fill-10\@2xl, .flex\@xl > .fill-10\@2xl, .flex\@2xl > .fill-10\@2xl {
1990
- flex: 0 0 83.3333333333%;
1854
+ flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
1991
1855
  }
1992
1856
  .flex > .order-10\@2xl, .flex\@xs > .order-10\@2xl, .flex\@sm > .order-10\@2xl, .flex\@md > .order-10\@2xl, .flex\@lg > .order-10\@2xl, .flex\@xl > .order-10\@2xl, .flex\@2xl > .order-10\@2xl {
1993
1857
  order: 10;
1994
1858
  }
1995
1859
  .flex > .fill-11\@2xl, .flex\@xs > .fill-11\@2xl, .flex\@sm > .fill-11\@2xl, .flex\@md > .fill-11\@2xl, .flex\@lg > .fill-11\@2xl, .flex\@xl > .fill-11\@2xl, .flex\@2xl > .fill-11\@2xl {
1996
- flex: 0 0 91.6666666667%;
1860
+ flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
1997
1861
  }
1998
1862
  .flex > .order-11\@2xl, .flex\@xs > .order-11\@2xl, .flex\@sm > .order-11\@2xl, .flex\@md > .order-11\@2xl, .flex\@lg > .order-11\@2xl, .flex\@xl > .order-11\@2xl, .flex\@2xl > .order-11\@2xl {
1999
1863
  order: 11;
2000
1864
  }
2001
1865
  .flex > .fill-12\@2xl, .flex\@xs > .fill-12\@2xl, .flex\@sm > .fill-12\@2xl, .flex\@md > .fill-12\@2xl, .flex\@lg > .fill-12\@2xl, .flex\@xl > .fill-12\@2xl, .flex\@2xl > .fill-12\@2xl {
2002
- flex: 0 0 100%;
1866
+ flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
2003
1867
  }
2004
1868
  .flex > .order-12\@2xl, .flex\@xs > .order-12\@2xl, .flex\@sm > .order-12\@2xl, .flex\@md > .order-12\@2xl, .flex\@lg > .order-12\@2xl, .flex\@xl > .order-12\@2xl, .flex\@2xl > .order-12\@2xl {
2005
1869
  order: 12;
@@ -2009,35 +1873,6 @@ code {
2009
1873
  display: inline-flex;
2010
1874
  }
2011
1875
  }
2012
- /**
2013
- * @description Establishes a grid container.
2014
- */
2015
- /**
2016
- * @description Establishes a inline-grid container.
2017
- */
2018
- /**
2019
- * @description Establishes a grid container with a specified number of columns.
2020
- * @param {number} $count - The number of columns.
2021
-
2022
- /// EXAMPLE USAGE
2023
- .custom-grid {
2024
- display: grid;
2025
- @include cols-custom("1fr_auto_1fr");
2026
- }
2027
-
2028
- */
2029
- /**
2030
- * @description justify-items container.
2031
- * @param {string} $value - The value for the justify-items property.
2032
- */
2033
- /**
2034
- * @description Establishes a align-items container.
2035
- * @param {string} $value - The value for the align-items property.
2036
- */
2037
- /**
2038
- * @description Establishes a place-items container.
2039
- * @param {string} $value - The value for the place-items property.
2040
- */
2041
1876
  .grid, .grid\@xs, .grid\@sm, .grid\@md, .grid\@lg, .grid\@xl, .grid\@2xl {
2042
1877
  display: grid;
2043
1878
  }
@@ -3356,72 +3191,6 @@ code {
3356
3191
  place-items: stretch;
3357
3192
  }
3358
3193
  }
3359
- /**
3360
- * @component Opacity
3361
- * @description Controls element transparency with customizable opacity values and interactive states
3362
- *
3363
- * @example
3364
- * <!-- Basic opacity -->
3365
- * <div class="opacity-50">This element has 50% opacity</div>
3366
- *
3367
- * <!-- Responsive opacity -->
3368
- * <div class="opacity-100 opacity-50@md">
3369
- * 100% opacity by default, 50% on medium screens and up
3370
- * </div>
3371
- *
3372
- * <!-- Interactive states -->
3373
- * <div class="opacity-50 hover:opacity-100">
3374
- * 50% opacity, becomes fully visible on hover
3375
- * </div>
3376
- *
3377
- * <button class="opacity-70 focus:opacity-100">
3378
- * 70% opacity, fully visible when focused
3379
- * </button>
3380
- *
3381
- * <div class="opacity-75 active:opacity-100">
3382
- * 75% opacity, fully visible when clicked/active
3383
- * </div>
3384
- *
3385
- * <!-- Group hover effect -->
3386
- * <div class="group">
3387
- * <h3>Parent element with "group" class</h3>
3388
- * <div class="opacity-0 group-hover:opacity-100">
3389
- * Hidden by default, visible when parent is hovered
3390
- * </div>
3391
- * </div>
3392
- *
3393
- * <!-- With transition -->
3394
- * <div class="opacity-50 hover:opacity-100 transition-opacity">
3395
- * Smooth opacity transition on hover
3396
- * </div>
3397
- *
3398
- * @classes
3399
- * Base:
3400
- * - opacity-{value}: Sets element opacity (0-100%)
3401
- * Values: 0, 5, 10, 20, 25, 30, 40, 50, 60, 70, 75, 80, 90, 100
3402
- *
3403
- * Interactive States:
3404
- * - hover:opacity-{value}: Changes opacity on mouse hover
3405
- * - focus:opacity-{value}: Changes opacity when element receives focus
3406
- * - active:opacity-{value}: Changes opacity when element is active/pressed
3407
- * - group-hover:opacity-{value}: Changes opacity when parent with .group class is hovered
3408
- *
3409
- * Animation:
3410
- * - transition-opacity: Adds smooth transition when opacity changes
3411
- *
3412
- * @responsive
3413
- * All opacity classes support responsive variants using @breakpoint suffix:
3414
- * - opacity-50@sm: 50% opacity on small screens and up
3415
- * - hover:opacity-100@md: Full opacity on hover for medium screens and up
3416
- *
3417
- * Available breakpoints: xs, sm, md, lg, xl, xxl
3418
- *
3419
- * @customization
3420
- * Opacity values are defined in the $percentages variable
3421
- * Transition timing can be customized via CSS variables
3422
- *
3423
- * @see transitions
3424
- */
3425
3194
  .opacity-0,
3426
3195
  .hover\:opacity-0:hover,
3427
3196
  .focus\:opacity-0:focus,
@@ -4334,16 +4103,6 @@ code {
4334
4103
  vertical-align: bottom;
4335
4104
  }
4336
4105
  }
4337
- /**
4338
- * Backdrop Filter Utilities
4339
- *
4340
- * Provides utility classes and mixins for backdrop-filter effects.
4341
- * All utilities come with responsive variants.
4342
- *
4343
- * Usage:
4344
- * <div class="backdrop-blur-md">Blurred backdrop</div>
4345
- * <div class="backdrop-blur-lg@md">Blurred backdrop on medium screens and up</div>
4346
- */
4347
4106
  .backdrop-layer {
4348
4107
  --backdrop-blur: blur(0);
4349
4108
  --backdrop-brightness: brightness(100%);
@@ -5568,10 +5327,6 @@ code {
5568
5327
  backdrop-filter: blur(20px) saturate(90%) brightness(90%);
5569
5328
  }
5570
5329
  }
5571
- /**
5572
- * @description Applies border radius to all corners
5573
- * @param {String} $val - The border radius value
5574
- */
5575
5330
  .border {
5576
5331
  border-width: 1px;
5577
5332
  border-style: solid;
@@ -5790,7 +5545,7 @@ code {
5790
5545
  border-radius: 1.25rem;
5791
5546
  }
5792
5547
 
5793
- .rounded-circle {
5548
+ .rounded-full {
5794
5549
  border-radius: 50%;
5795
5550
  }
5796
5551
 
@@ -6014,39 +5769,39 @@ code {
6014
5769
  border-bottom-left-radius: 1.25rem;
6015
5770
  }
6016
5771
 
6017
- .rounded-t-circle {
5772
+ .rounded-t-full {
6018
5773
  border-top-left-radius: 50%;
6019
5774
  border-top-right-radius: 50%;
6020
5775
  }
6021
5776
 
6022
- .rounded-r-circle {
5777
+ .rounded-r-full {
6023
5778
  border-top-right-radius: 50%;
6024
5779
  border-bottom-right-radius: 50%;
6025
5780
  }
6026
5781
 
6027
- .rounded-b-circle {
5782
+ .rounded-b-full {
6028
5783
  border-bottom-left-radius: 50%;
6029
5784
  border-bottom-right-radius: 50%;
6030
5785
  }
6031
5786
 
6032
- .rounded-l-circle {
5787
+ .rounded-l-full {
6033
5788
  border-top-left-radius: 50%;
6034
5789
  border-bottom-left-radius: 50%;
6035
5790
  }
6036
5791
 
6037
- .rounded-tl-circle {
5792
+ .rounded-tl-full {
6038
5793
  border-top-left-radius: 50%;
6039
5794
  }
6040
5795
 
6041
- .rounded-tr-circle {
5796
+ .rounded-tr-full {
6042
5797
  border-top-right-radius: 50%;
6043
5798
  }
6044
5799
 
6045
- .rounded-br-circle {
5800
+ .rounded-br-full {
6046
5801
  border-bottom-right-radius: 50%;
6047
5802
  }
6048
5803
 
6049
- .rounded-bl-circle {
5804
+ .rounded-bl-full {
6050
5805
  border-bottom-left-radius: 50%;
6051
5806
  }
6052
5807
 
@@ -6468,7 +6223,7 @@ code {
6468
6223
  .rounded-2xl\@xs {
6469
6224
  border-radius: 1.25rem;
6470
6225
  }
6471
- .rounded-circle\@xs {
6226
+ .rounded-full\@xs {
6472
6227
  border-radius: 50%;
6473
6228
  }
6474
6229
  .rounded-none\@xs {
@@ -6538,7 +6293,7 @@ code {
6538
6293
  .rounded-2xl\@sm {
6539
6294
  border-radius: 1.25rem;
6540
6295
  }
6541
- .rounded-circle\@sm {
6296
+ .rounded-full\@sm {
6542
6297
  border-radius: 50%;
6543
6298
  }
6544
6299
  .rounded-none\@sm {
@@ -6608,7 +6363,7 @@ code {
6608
6363
  .rounded-2xl\@md {
6609
6364
  border-radius: 1.25rem;
6610
6365
  }
6611
- .rounded-circle\@md {
6366
+ .rounded-full\@md {
6612
6367
  border-radius: 50%;
6613
6368
  }
6614
6369
  .rounded-none\@md {
@@ -6678,7 +6433,7 @@ code {
6678
6433
  .rounded-2xl\@lg {
6679
6434
  border-radius: 1.25rem;
6680
6435
  }
6681
- .rounded-circle\@lg {
6436
+ .rounded-full\@lg {
6682
6437
  border-radius: 50%;
6683
6438
  }
6684
6439
  .rounded-none\@lg {
@@ -6748,7 +6503,7 @@ code {
6748
6503
  .rounded-2xl\@xl {
6749
6504
  border-radius: 1.25rem;
6750
6505
  }
6751
- .rounded-circle\@xl {
6506
+ .rounded-full\@xl {
6752
6507
  border-radius: 50%;
6753
6508
  }
6754
6509
  .rounded-none\@xl {
@@ -6818,7 +6573,7 @@ code {
6818
6573
  .rounded-2xl\@2xl {
6819
6574
  border-radius: 1.25rem;
6820
6575
  }
6821
- .rounded-circle\@2xl {
6576
+ .rounded-full\@2xl {
6822
6577
  border-radius: 50%;
6823
6578
  }
6824
6579
  .rounded-none\@2xl {
@@ -6834,21 +6589,6 @@ code {
6834
6589
  border-radius: 9999px;
6835
6590
  }
6836
6591
  }
6837
- /**
6838
- * Container Query Mixins
6839
- *
6840
- * Usage:
6841
- * .container {
6842
- * container-type: inline-size;
6843
- * container-name: sidebar;
6844
- * }
6845
- *
6846
- * .item {
6847
- * @include container-up('md', 'sidebar') {
6848
- * // Styles for 'md' and up within 'sidebar' container
6849
- * }
6850
- * }
6851
- */
6852
6592
  .container-inline-size {
6853
6593
  container-type: inline-size;
6854
6594
  }
@@ -7001,42 +6741,6 @@ code {
7001
6741
  cursor: all-scroll;
7002
6742
  }
7003
6743
 
7004
- /**
7005
- * Display Utilities
7006
- *
7007
- * Classes:
7008
- * - .hide, .show: Control element visibility
7009
- * - .block, .inline, .inline-block: Basic display modes
7010
- * - .d-tbl, .d-tbl-row, .d-tbl-cell: Table display modes
7011
- * - .overflow-hidden: Control overflow behavior
7012
- *
7013
- * All utilities support responsive variants with @breakpoint suffix:
7014
- * - .hide@md, .block@lg, etc.
7015
- */
7016
- /**
7017
- * @description Set display to none.
7018
- */
7019
- /**
7020
- * @description Set display to block.
7021
- */
7022
- /**
7023
- * @description Set display to inline.
7024
- */
7025
- /**
7026
- * @description Set display to inline-block.
7027
- */
7028
- /**
7029
- * @description Set display to initial original state.
7030
- */
7031
- /**
7032
- * @description Set display to table.
7033
- */
7034
- /**
7035
- * @description Set display to table-row.
7036
- */
7037
- /**
7038
- * @description Set display to table-cell.
7039
- */
7040
6744
  .hide {
7041
6745
  display: none;
7042
6746
  }
@@ -7531,19 +7235,6 @@ code {
7531
7235
  display: table-cell;
7532
7236
  }
7533
7237
  }
7534
- /**
7535
- * Generates a CSS shadow string from a given size.
7536
- *
7537
- * @param {String} $size - The shadow size.
7538
- * @param {String} $color - The shadow color.
7539
- * @return {String} - The CSS shadow string.
7540
- */
7541
- /**
7542
- * Generates a CSS shadow string from a given size.
7543
- *
7544
- * @param {String} $size - The shadow size.
7545
- * @param {String} $color - The shadow color.
7546
- */
7547
7238
  .shadow-none {
7548
7239
  box-shadow: none !important;
7549
7240
  }
@@ -15123,7 +14814,7 @@ code {
15123
14814
  }
15124
14815
 
15125
14816
  [role~=tooltip][data-microtip-position|=top]::before {
15126
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
14817
+ background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15127
14818
  height: 6px;
15128
14819
  width: 18px;
15129
14820
  margin-bottom: 6px;
@@ -15161,7 +14852,7 @@ code {
15161
14852
  }
15162
14853
 
15163
14854
  [role~=tooltip][data-microtip-position|=bottom]::before {
15164
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
14855
+ background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15165
14856
  height: 6px;
15166
14857
  width: 18px;
15167
14858
  margin-top: 5px;
@@ -15208,7 +14899,7 @@ code {
15208
14899
  transform: translate3d(10px, -50%, 0);
15209
14900
  }
15210
14901
  [role~=tooltip][data-microtip-position=left]::before {
15211
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
14902
+ background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15212
14903
  height: 18px;
15213
14904
  width: 6px;
15214
14905
  margin-right: 5px;
@@ -15228,7 +14919,7 @@ code {
15228
14919
  transform: translate3d(-10px, -50%, 0);
15229
14920
  }
15230
14921
  [role~=tooltip][data-microtip-position=right]::before {
15231
- background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
14922
+ background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
15232
14923
  height: 18px;
15233
14924
  width: 6px;
15234
14925
  margin-bottom: 0;
@@ -15256,15 +14947,6 @@ code {
15256
14947
  width: var(--tooltip-large-width);
15257
14948
  }
15258
14949
 
15259
- /**
15260
- * Transform Utilities
15261
- *
15262
- * - Translate (X, Y, Z)
15263
- * - Scale
15264
- * - Rotate
15265
- * - Skew
15266
- * - Transform origin
15267
- */
15268
14950
  .translate-x-0,
15269
14951
  .hover\:translate-x-0:hover,
15270
14952
  .group:hover .group-hover\:translate-x-0 {
@@ -20358,15 +20040,6 @@ code {
20358
20040
  transform-origin: top left;
20359
20041
  }
20360
20042
  }
20361
- /**
20362
- * Transition Utilities
20363
- *
20364
- * - .transition: Default transition for common properties
20365
- * - .transition-{property}: Transition specific properties
20366
- * - .duration-{time}: Set transition duration
20367
- * - .ease-{type}: Set transition timing function
20368
- * - .delay-{time}: Set transition delay
20369
- */
20370
20043
  .transition-none {
20371
20044
  transition-property: none;
20372
20045
  }
@@ -21029,26 +20702,6 @@ code {
21029
20702
  transition-delay: 1000ms;
21030
20703
  }
21031
20704
  }
21032
- /**
21033
- * Typography Utilities
21034
- *
21035
- * Classes:
21036
- * - Font Size: .text-xs, .text-sm, .text-base, etc.
21037
- * - Font Weight: .font-thin, .font-normal, .font-bold, etc.
21038
- * - Line Height: .leading-none, .leading-tight, .leading-normal, etc.
21039
- * - Text Align: .text-left, .text-center, .text-right, .text-justify
21040
- * - Text Transform: .uppercase, .lowercase, .capitalize, .normal-case
21041
- * - Text Style: .italic, .not-italic
21042
- * - Text Decoration: .underline, .line-through, .no-underline
21043
- * - Text Overflow: .truncate
21044
- *
21045
- * All utilities support responsive variants with @breakpoint suffix:
21046
- * - .text-lg@md, .font-bold@lg, etc.
21047
- */
21048
- /**
21049
- * Text size utility
21050
- * @param {string} $size - The size of the text.
21051
- */
21052
20705
  .text-xs {
21053
20706
  font-size: 0.75rem;
21054
20707
  }
@@ -22488,24 +22141,6 @@ code {
22488
22141
  min-width: 0;
22489
22142
  }
22490
22143
  }
22491
- /**
22492
- * Z-Index Utilities
22493
- *
22494
- * Classes:
22495
- * - z-index values: .z-0, .z-10, .z-20, etc.
22496
- * - Named z-index levels: .z-auto, .z-base, .z-dropdown, etc.
22497
- *
22498
- * All utilities support responsive variants with @breakpoint suffix:
22499
- * - .z-10@md, .z-dropdown@lg, etc.
22500
- */
22501
- /**
22502
- * Apply a z-index value
22503
- * @param {Number|String} $value - Z-index value or key
22504
- */
22505
- /**
22506
- * Generate z-index utility classes
22507
- * @param {String} $breakpoint - Optional breakpoint name for responsive variants
22508
- */
22509
22144
  .z-auto {
22510
22145
  z-index: auto;
22511
22146
  }
@@ -23112,208 +22747,6 @@ code {
23112
22747
  z-index: 9999;
23113
22748
  }
23114
22749
  }
23115
- /**
23116
- * @component Spacing
23117
- * @description Controls element margins, padding, gaps, and spacing between children
23118
- *
23119
- * @example
23120
- * <!-- Padding -->
23121
- * <div class="p-4">All sides padding</div>
23122
- * <div class="px-4 py-2">Horizontal and vertical padding</div>
23123
- * <div class="pt-2 pb-4">Top and bottom padding</div>
23124
- *
23125
- * <!-- Margins -->
23126
- * <div class="m-4">All sides margin</div>
23127
- * <div class="mt-4">Top margin only</div>
23128
- * <div class="mx-auto">Horizontally centered</div>
23129
- *
23130
- * <!-- Gap (for flex/grid containers) -->
23131
- * <div class="flex gap-4">
23132
- * <div>Item 1</div>
23133
- * <div>Item 2</div>
23134
- * </div>
23135
- *
23136
- * <!-- Responsive spacing -->
23137
- * <div class="p-2 p-4@md p-6@lg">
23138
- * Padding increases at each breakpoint
23139
- * </div>
23140
- *
23141
- * <!-- Child spacing -->
23142
- * <div class="space-y-4">
23143
- * <div>First child</div>
23144
- * <div>Second child (margin-top: 1rem)</div>
23145
- * <div>Third child (margin-top: 1rem)</div>
23146
- * </div>
23147
- *
23148
- * @classes
23149
- * Padding:
23150
- * - p-{size}: Padding on all sides
23151
- * - px-{size}: Horizontal padding (left and right)
23152
- * - py-{size}: Vertical padding (top and bottom)
23153
- * - pt-{size}, pr-{size}, pb-{size}, pl-{size}: Individual side padding
23154
- *
23155
- * Margin:
23156
- * - m-{size}: Margin on all sides
23157
- * - mx-{size}: Horizontal margin (left and right)
23158
- * - my-{size}: Vertical margin (top and bottom)
23159
- * - mt-{size}, mr-{size}, mb-{size}, ml-{size}: Individual side margin
23160
- * - mx-auto, ml-auto, mr-auto: Auto margin for alignment
23161
- *
23162
- * Gap:
23163
- * - gap-{size}: Gap between flex/grid children (all directions)
23164
- * - gap-x-{size}: Horizontal gap between children (column-gap)
23165
- * - gap-y-{size}: Vertical gap between children (row-gap)
23166
- *
23167
- * Child Spacing:
23168
- * - space-x-{size}: Horizontal space between children
23169
- * - space-y-{size}: Vertical space between children
23170
- *
23171
- * @responsive
23172
- * All spacing classes support responsive variants using @breakpoint suffix:
23173
- * - p-4@md: 1rem padding on medium screens and up
23174
- * - mt-8@lg: 2rem top margin on large screens
23175
- * - gap-2@xl: 0.5rem gap on extra large screens
23176
- *
23177
- * @customization
23178
- * Spacing values are defined in the $spacings map in variables.scss
23179
- * Typically follows a scale where higher numbers mean more spacing
23180
- *
23181
- * @see flex, grid, display
23182
- */
23183
- /**
23184
- * @mixin p
23185
- * @description Sets padding on all sides
23186
- * @param {Number|String} $val - Padding value
23187
- */
23188
- /**
23189
- * @mixin px
23190
- * @description Sets horizontal padding (left and right)
23191
- * @param {Number|String} $val - Padding value
23192
- */
23193
- /**
23194
- * @mixin py
23195
- * @description Sets vertical padding (top and bottom)
23196
- * @param {Number|String} $val - Padding value
23197
- */
23198
- /**
23199
- * @mixin pt
23200
- * @description Sets padding-top
23201
- * @param {Number|String} $val - Padding value
23202
- */
23203
- /**
23204
- * @mixin pr
23205
- * @description Sets padding-right
23206
- * @param {Number|String} $val - Padding value
23207
- */
23208
- /**
23209
- * @mixin pb
23210
- * @description Sets padding-bottom
23211
- * @param {Number|String} $val - Padding value
23212
- */
23213
- /**
23214
- * @mixin pl
23215
- * @description Sets padding-left
23216
- * @param {Number|String} $val - Padding value
23217
- */
23218
- /**
23219
- * @mixin m
23220
- * @description Sets margin on all sides
23221
- * @param {Number|String} $val - Margin value
23222
- */
23223
- /**
23224
- * @mixin mx
23225
- * @description Sets horizontal margin (left and right)
23226
- * @param {Number|String} $val - Margin value
23227
- */
23228
- /**
23229
- * @mixin my
23230
- * @description Sets vertical margin (top and bottom)
23231
- * @param {Number|String} $val - Margin value
23232
- */
23233
- /**
23234
- * @mixin mt
23235
- * @description Sets margin-top
23236
- * @param {Number|String} $val - Margin value
23237
- */
23238
- /**
23239
- * @mixin mr
23240
- * @description Sets margin-right
23241
- * @param {Number|String} $val - Margin value
23242
- */
23243
- /**
23244
- * @mixin mb
23245
- * @description Sets margin-bottom
23246
- * @param {Number|String} $val - Margin value
23247
- */
23248
- /**
23249
- * @mixin ml
23250
- * @description Sets margin-left
23251
- * @param {Number|String} $val - Margin value
23252
- */
23253
- /**
23254
- * @mixin ml-auto
23255
- * @description Sets margin-left to auto
23256
- */
23257
- /**
23258
- * @mixin mr-auto
23259
- * @description Sets margin-right to auto
23260
- */
23261
- /**
23262
- * @mixin mx-auto
23263
- * @description Centers element horizontally using auto margins
23264
- */
23265
- /**
23266
- * @mixin inset
23267
- * @description Sets all inset properties (top, right, bottom, left)
23268
- * @param {Number|String} $val - Inset value
23269
- */
23270
- /**
23271
- * @mixin inset-x
23272
- * @description Sets horizontal inset properties (left and right)
23273
- * @param {Number|String} $val - Inset value
23274
- */
23275
- /**
23276
- * @mixin inset-y
23277
- * @description Sets vertical inset properties (top and bottom)
23278
- * @param {Number|String} $val - Inset value
23279
- */
23280
- /**
23281
- * @mixin inset-auto
23282
- * @description Sets all inset properties to auto
23283
- */
23284
- /**
23285
- * @mixin inset-x-auto
23286
- * @description Sets horizontal inset properties to auto
23287
- */
23288
- /**
23289
- * @mixin inset-y-auto
23290
- * @description Sets vertical inset properties to auto
23291
- */
23292
- /**
23293
- * @mixin space-y
23294
- * @description Adds vertical spacing between direct children
23295
- * @param {Number|String} $i - Space amount
23296
- */
23297
- /**
23298
- * @mixin space-x
23299
- * @description Adds horizontal spacing between direct children
23300
- * @param {Number|String} $i - Space amount
23301
- */
23302
- /**
23303
- * @mixin gap
23304
- * @description Sets gap between grid/flex children
23305
- * @param {Number|String} $val - Gap value
23306
- */
23307
- /**
23308
- * @mixin gap-x
23309
- * @description Sets horizontal gap between grid/flex children
23310
- * @param {Number|String} $val - Gap value
23311
- */
23312
- /**
23313
- * @mixin gap-y
23314
- * @description Sets vertical gap between grid/flex children
23315
- * @param {Number|String} $val - Gap value
23316
- */
23317
22750
  .mx-auto {
23318
22751
  margin-left: auto;
23319
22752
  margin-right: auto;
@@ -23403,10 +22836,12 @@ code {
23403
22836
 
23404
22837
  .gap-0 {
23405
22838
  gap: 0px;
22839
+ --flex-gap: 0px;
23406
22840
  }
23407
22841
 
23408
22842
  .gap-x-0 {
23409
22843
  column-gap: 0px;
22844
+ --flex-gap: 0px;
23410
22845
  }
23411
22846
 
23412
22847
  .gap-y-0 {
@@ -23493,10 +22928,12 @@ code {
23493
22928
 
23494
22929
  .gap-1 {
23495
22930
  gap: 0.25rem;
22931
+ --flex-gap: 0.25rem;
23496
22932
  }
23497
22933
 
23498
22934
  .gap-x-1 {
23499
22935
  column-gap: 0.25rem;
22936
+ --flex-gap: 0.25rem;
23500
22937
  }
23501
22938
 
23502
22939
  .gap-y-1 {
@@ -23583,10 +23020,12 @@ code {
23583
23020
 
23584
23021
  .gap-2 {
23585
23022
  gap: 0.5rem;
23023
+ --flex-gap: 0.5rem;
23586
23024
  }
23587
23025
 
23588
23026
  .gap-x-2 {
23589
23027
  column-gap: 0.5rem;
23028
+ --flex-gap: 0.5rem;
23590
23029
  }
23591
23030
 
23592
23031
  .gap-y-2 {
@@ -23673,10 +23112,12 @@ code {
23673
23112
 
23674
23113
  .gap-3 {
23675
23114
  gap: 0.75rem;
23115
+ --flex-gap: 0.75rem;
23676
23116
  }
23677
23117
 
23678
23118
  .gap-x-3 {
23679
23119
  column-gap: 0.75rem;
23120
+ --flex-gap: 0.75rem;
23680
23121
  }
23681
23122
 
23682
23123
  .gap-y-3 {
@@ -23763,10 +23204,12 @@ code {
23763
23204
 
23764
23205
  .gap-4 {
23765
23206
  gap: 1rem;
23207
+ --flex-gap: 1rem;
23766
23208
  }
23767
23209
 
23768
23210
  .gap-x-4 {
23769
23211
  column-gap: 1rem;
23212
+ --flex-gap: 1rem;
23770
23213
  }
23771
23214
 
23772
23215
  .gap-y-4 {
@@ -23853,10 +23296,12 @@ code {
23853
23296
 
23854
23297
  .gap-5 {
23855
23298
  gap: 1.25rem;
23299
+ --flex-gap: 1.25rem;
23856
23300
  }
23857
23301
 
23858
23302
  .gap-x-5 {
23859
23303
  column-gap: 1.25rem;
23304
+ --flex-gap: 1.25rem;
23860
23305
  }
23861
23306
 
23862
23307
  .gap-y-5 {
@@ -23943,10 +23388,12 @@ code {
23943
23388
 
23944
23389
  .gap-6 {
23945
23390
  gap: 1.5rem;
23391
+ --flex-gap: 1.5rem;
23946
23392
  }
23947
23393
 
23948
23394
  .gap-x-6 {
23949
23395
  column-gap: 1.5rem;
23396
+ --flex-gap: 1.5rem;
23950
23397
  }
23951
23398
 
23952
23399
  .gap-y-6 {
@@ -24033,10 +23480,12 @@ code {
24033
23480
 
24034
23481
  .gap-8 {
24035
23482
  gap: 2rem;
23483
+ --flex-gap: 2rem;
24036
23484
  }
24037
23485
 
24038
23486
  .gap-x-8 {
24039
23487
  column-gap: 2rem;
23488
+ --flex-gap: 2rem;
24040
23489
  }
24041
23490
 
24042
23491
  .gap-y-8 {
@@ -24123,10 +23572,12 @@ code {
24123
23572
 
24124
23573
  .gap-10 {
24125
23574
  gap: 2.5rem;
23575
+ --flex-gap: 2.5rem;
24126
23576
  }
24127
23577
 
24128
23578
  .gap-x-10 {
24129
23579
  column-gap: 2.5rem;
23580
+ --flex-gap: 2.5rem;
24130
23581
  }
24131
23582
 
24132
23583
  .gap-y-10 {
@@ -24213,10 +23664,12 @@ code {
24213
23664
 
24214
23665
  .gap-12 {
24215
23666
  gap: 3rem;
23667
+ --flex-gap: 3rem;
24216
23668
  }
24217
23669
 
24218
23670
  .gap-x-12 {
24219
23671
  column-gap: 3rem;
23672
+ --flex-gap: 3rem;
24220
23673
  }
24221
23674
 
24222
23675
  .gap-y-12 {
@@ -24303,10 +23756,12 @@ code {
24303
23756
 
24304
23757
  .gap-16 {
24305
23758
  gap: 4rem;
23759
+ --flex-gap: 4rem;
24306
23760
  }
24307
23761
 
24308
23762
  .gap-x-16 {
24309
23763
  column-gap: 4rem;
23764
+ --flex-gap: 4rem;
24310
23765
  }
24311
23766
 
24312
23767
  .gap-y-16 {
@@ -24393,10 +23848,12 @@ code {
24393
23848
 
24394
23849
  .gap-20 {
24395
23850
  gap: 5rem;
23851
+ --flex-gap: 5rem;
24396
23852
  }
24397
23853
 
24398
23854
  .gap-x-20 {
24399
23855
  column-gap: 5rem;
23856
+ --flex-gap: 5rem;
24400
23857
  }
24401
23858
 
24402
23859
  .gap-y-20 {
@@ -24483,10 +23940,12 @@ code {
24483
23940
 
24484
23941
  .gap-24 {
24485
23942
  gap: 6rem;
23943
+ --flex-gap: 6rem;
24486
23944
  }
24487
23945
 
24488
23946
  .gap-x-24 {
24489
23947
  column-gap: 6rem;
23948
+ --flex-gap: 6rem;
24490
23949
  }
24491
23950
 
24492
23951
  .gap-y-24 {
@@ -24573,10 +24032,12 @@ code {
24573
24032
 
24574
24033
  .gap-32 {
24575
24034
  gap: 8rem;
24035
+ --flex-gap: 8rem;
24576
24036
  }
24577
24037
 
24578
24038
  .gap-x-32 {
24579
24039
  column-gap: 8rem;
24040
+ --flex-gap: 8rem;
24580
24041
  }
24581
24042
 
24582
24043
  .gap-y-32 {
@@ -24663,10 +24124,12 @@ code {
24663
24124
 
24664
24125
  .gap-40 {
24665
24126
  gap: 10rem;
24127
+ --flex-gap: 10rem;
24666
24128
  }
24667
24129
 
24668
24130
  .gap-x-40 {
24669
24131
  column-gap: 10rem;
24132
+ --flex-gap: 10rem;
24670
24133
  }
24671
24134
 
24672
24135
  .gap-y-40 {
@@ -24753,10 +24216,12 @@ code {
24753
24216
 
24754
24217
  .gap-48 {
24755
24218
  gap: 12rem;
24219
+ --flex-gap: 12rem;
24756
24220
  }
24757
24221
 
24758
24222
  .gap-x-48 {
24759
24223
  column-gap: 12rem;
24224
+ --flex-gap: 12rem;
24760
24225
  }
24761
24226
 
24762
24227
  .gap-y-48 {
@@ -24843,10 +24308,12 @@ code {
24843
24308
 
24844
24309
  .gap-56 {
24845
24310
  gap: 14rem;
24311
+ --flex-gap: 14rem;
24846
24312
  }
24847
24313
 
24848
24314
  .gap-x-56 {
24849
24315
  column-gap: 14rem;
24316
+ --flex-gap: 14rem;
24850
24317
  }
24851
24318
 
24852
24319
  .gap-y-56 {
@@ -24933,10 +24400,12 @@ code {
24933
24400
 
24934
24401
  .gap-64 {
24935
24402
  gap: 16rem;
24403
+ --flex-gap: 16rem;
24936
24404
  }
24937
24405
 
24938
24406
  .gap-x-64 {
24939
24407
  column-gap: 16rem;
24408
+ --flex-gap: 16rem;
24940
24409
  }
24941
24410
 
24942
24411
  .gap-y-64 {
@@ -32447,36 +31916,6 @@ code {
32447
31916
  bottom: 16rem;
32448
31917
  }
32449
31918
  }
32450
- /**
32451
- * @mixin animate-bounce
32452
- * @description Creates a bouncing animation
32453
- * @param {Map} $props - Animation properties
32454
- */
32455
- /**
32456
- * @mixin animate-pulse
32457
- * @description Creates a pulsing opacity animation
32458
- * @param {Map} $props - Animation properties
32459
- */
32460
- /**
32461
- * @mixin animate-spin
32462
- * @description Creates a spinning animation
32463
- * @param {Map} $props - Animation properties
32464
- */
32465
- /**
32466
- * @mixin animate-ping
32467
- * @description Creates a ping animation (scale + fade)
32468
- * @param {Map} $props - Animation properties
32469
- */
32470
- /**
32471
- * @mixin animate-fade
32472
- * @description Creates fade in/out animation
32473
- * @param {Map} $props - Animation properties
32474
- */
32475
- /**
32476
- * @mixin animate-shake
32477
- * @description Creates a shake animation
32478
- * @param {Map} $props - Animation properties
32479
- */
32480
31919
  .animate-pulse {
32481
31920
  animation: anim-pulse-50-100 1s ease-in-out infinite;
32482
31921
  }
@@ -32564,9 +32003,9 @@ code {
32564
32003
  }
32565
32004
 
32566
32005
  .animate-shake {
32567
- animation: anim-shake-5 0.5s ease-in-out 1;
32006
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32568
32007
  }
32569
- @keyframes anim-shake-5 {
32008
+ @keyframes anim-shake-strip-unit(5px) {
32570
32009
  0%, 100% {
32571
32010
  transform: translateX(0);
32572
32011
  }
@@ -32601,7 +32040,7 @@ code {
32601
32040
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32602
32041
  }
32603
32042
  .animate-shake\@xs {
32604
- animation: anim-shake-5 0.5s ease-in-out 1;
32043
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32605
32044
  }
32606
32045
  }
32607
32046
  @media (min-width: 640px) {
@@ -32627,7 +32066,7 @@ code {
32627
32066
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32628
32067
  }
32629
32068
  .animate-shake\@sm {
32630
- animation: anim-shake-5 0.5s ease-in-out 1;
32069
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32631
32070
  }
32632
32071
  }
32633
32072
  @media (min-width: 768px) {
@@ -32653,7 +32092,7 @@ code {
32653
32092
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32654
32093
  }
32655
32094
  .animate-shake\@md {
32656
- animation: anim-shake-5 0.5s ease-in-out 1;
32095
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32657
32096
  }
32658
32097
  }
32659
32098
  @media (min-width: 1024px) {
@@ -32679,7 +32118,7 @@ code {
32679
32118
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32680
32119
  }
32681
32120
  .animate-shake\@lg {
32682
- animation: anim-shake-5 0.5s ease-in-out 1;
32121
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32683
32122
  }
32684
32123
  }
32685
32124
  @media (min-width: 1280px) {
@@ -32705,7 +32144,7 @@ code {
32705
32144
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32706
32145
  }
32707
32146
  .animate-shake\@xl {
32708
- animation: anim-shake-5 0.5s ease-in-out 1;
32147
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32709
32148
  }
32710
32149
  }
32711
32150
  @media (min-width: 1536px) {
@@ -32731,7 +32170,7 @@ code {
32731
32170
  animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
32732
32171
  }
32733
32172
  .animate-shake\@2xl {
32734
- animation: anim-shake-5 0.5s ease-in-out 1;
32173
+ animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
32735
32174
  }
32736
32175
  }
32737
32176
  .hover-ready {
@@ -32740,137 +32179,6 @@ code {
32740
32179
  transition-timing-function: ease-in-out;
32741
32180
  }
32742
32181
 
32743
- /**
32744
- * @component Position
32745
- * @description Controls element positioning and placement within the document flow
32746
- *
32747
- * @example
32748
- * <!-- Basic positioning -->
32749
- * <div class="relative">
32750
- * <div class="absolute top-0 right-0">
32751
- * Positioned in top-right corner
32752
- * </div>
32753
- * </div>
32754
- *
32755
- * <!-- Sticky header -->
32756
- * <header class="sticky top-0">
32757
- * This header sticks to the top when scrolling
32758
- * </header>
32759
- *
32760
- * <!-- Responsive positioning -->
32761
- * <div class="relative@md">
32762
- * <div class="absolute@md top-2 left-2">
32763
- * Only positioned on medium screens and up
32764
- * </div>
32765
- * </div>
32766
- *
32767
- * @classes
32768
- * Position Types:
32769
- * - static: Default position, follows document flow
32770
- * - relative: Positioned relative to normal position
32771
- * - absolute: Positioned relative to nearest positioned ancestor
32772
- * - fixed: Positioned relative to viewport
32773
- * - sticky: Positioned based on scroll position
32774
- *
32775
- * Placement:
32776
- * - top-{value}: Sets top position
32777
- * - right-{value}: Sets right position
32778
- * - bottom-{value}: Sets bottom position
32779
- * - left-{value}: Sets left position
32780
- *
32781
- * Common values: 0, 1, 2, 3, 4, 5, 10, etc. (based on spacing scale)
32782
- *
32783
- * @responsive
32784
- * All position classes support responsive variants using @breakpoint suffix:
32785
- * - relative@md: Relative positioning on medium screens and up
32786
- * - top-0@lg: Zero top position on large screens
32787
- *
32788
- * @see z-index, transform
32789
- */
32790
- /**
32791
- * @mixin static
32792
- * @description Sets position to static (default document flow)
32793
- * @example
32794
- * .element {
32795
- * @include static;
32796
- * }
32797
- */
32798
- /**
32799
- * @mixin relative
32800
- * @description Sets position to relative, creating a positioning context
32801
- * @example
32802
- * .container {
32803
- * @include relative;
32804
- * }
32805
- */
32806
- /**
32807
- * @mixin absolute
32808
- * @description Sets position to absolute, removing from normal document flow
32809
- * @example
32810
- * .popup {
32811
- * @include absolute;
32812
- * top: 0;
32813
- * left: 0;
32814
- * }
32815
- */
32816
- /**
32817
- * @mixin absolute
32818
- * @description Sets position to absolute, removing from normal document flow
32819
- * @example
32820
- * .popup {
32821
- * @include absolute;
32822
- * top: 0;
32823
- * left: 0;
32824
- * }
32825
- */
32826
- /**
32827
- * @mixin sticky
32828
- * @description Creates a sticky element that remains in view during scrolling
32829
- * @example
32830
- * .nav {
32831
- * @include sticky;
32832
- * }
32833
- */
32834
- /**
32835
- * @mixin top
32836
- * @description Sets the top position of an element
32837
- * @param {Number|Length} $value - Position value (in px, rem, etc.)
32838
- * @example
32839
- * .toast {
32840
- * @include absolute;
32841
- * @include top(1rem);
32842
- * }
32843
- */
32844
- /**
32845
- * @mixin right
32846
- * @description Sets the right position of an element
32847
- * @param {Number|Length} $value - Position value (in px, rem, etc.)
32848
- * @example
32849
- * .badge {
32850
- * @include absolute;
32851
- * @include right(0);
32852
- * }
32853
- */
32854
- /**
32855
- * @mixin bottom
32856
- * @description Sets the bottom position of an element
32857
- * @param {Number|Length} $value - Position value (in px, rem, etc.)
32858
- * @example
32859
- * .footer {
32860
- * @include fixed;
32861
- * @include bottom(0);
32862
- * }
32863
- */
32864
- /**
32865
- * @mixin left
32866
- * @description Sets the left position of an element
32867
- * @param {Number|Length} $value - Position value (in px, rem, etc.)
32868
- * @example
32869
- * .sidebar {
32870
- * @include fixed;
32871
- * @include left(0);
32872
- * }
32873
- */
32874
32182
  .static {
32875
32183
  position: static;
32876
32184
  }