@kompasid/lit-web-components 0.6.3 → 0.6.6

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 (50) hide show
  1. package/assets/kompas-free-trial.png +0 -0
  2. package/assets/qr-code.png +0 -0
  3. package/demo/index.html +33 -2
  4. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.d.ts +27 -0
  5. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js +233 -0
  6. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js.map +1 -0
  7. package/dist/src/components/kompasid-header-account/types.d.ts +8 -0
  8. package/dist/src/components/kompasid-header-account/types.js +2 -0
  9. package/dist/src/components/kompasid-header-account/types.js.map +1 -0
  10. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.d.ts +13 -0
  11. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js +172 -0
  12. package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js.map +1 -0
  13. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.d.ts +37 -0
  14. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js +185 -0
  15. package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js.map +1 -0
  16. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.d.ts +12 -0
  17. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +172 -0
  18. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -0
  19. package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js +8 -8
  20. package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js.map +1 -1
  21. package/dist/src/components/kompasid-paywall/KompasPaywall.js +7 -20
  22. package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
  23. package/dist/src/components/kompasid-paywall/types.d.ts +5 -0
  24. package/dist/src/components/kompasid-paywall/types.js.map +1 -1
  25. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +4 -0
  26. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +178 -28
  27. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
  28. package/dist/src/index.d.ts +1 -0
  29. package/dist/src/index.js +1 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/utils/text.d.ts +2 -0
  32. package/dist/src/utils/text.js +9 -0
  33. package/dist/src/utils/text.js.map +1 -0
  34. package/dist/tailwind/tailwind.js +391 -5
  35. package/dist/tailwind/tailwind.js.map +1 -1
  36. package/dist/tsconfig.tsbuildinfo +1 -1
  37. package/package.json +1 -1
  38. package/src/components/kompasid-header-account/KompasHeaderAccount.ts +197 -0
  39. package/src/components/kompasid-header-account/types.ts +8 -0
  40. package/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.ts +177 -0
  41. package/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.ts +172 -0
  42. package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +161 -0
  43. package/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.ts +8 -8
  44. package/src/components/kompasid-paywall/KompasPaywall.ts +7 -20
  45. package/src/components/kompasid-paywall/types.ts +5 -0
  46. package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +189 -36
  47. package/src/index.ts +1 -0
  48. package/src/utils/text.ts +9 -0
  49. package/tailwind/tailwind.css +382 -5
  50. package/tailwind/tailwind.ts +391 -5
@@ -618,6 +618,11 @@ video {
618
618
  margin: auto;
619
619
  }
620
620
 
621
+ .mx-1 {
622
+ margin-left: 0.25rem;
623
+ margin-right: 0.25rem;
624
+ }
625
+
621
626
  .mx-2 {
622
627
  margin-left: 0.5rem;
623
628
  margin-right: 0.5rem;
@@ -680,6 +685,10 @@ video {
680
685
  margin-bottom: 1rem;
681
686
  }
682
687
 
688
+ .mb-5 {
689
+ margin-bottom: 1.25rem;
690
+ }
691
+
683
692
  .ml-0 {
684
693
  margin-left: 0px;
685
694
  }
@@ -716,6 +725,10 @@ video {
716
725
  margin-right: 2.5rem;
717
726
  }
718
727
 
728
+ .mr-2 {
729
+ margin-right: 0.5rem;
730
+ }
731
+
719
732
  .mr-3 {
720
733
  margin-right: 0.75rem;
721
734
  }
@@ -756,6 +769,10 @@ video {
756
769
  margin-top: 2rem;
757
770
  }
758
771
 
772
+ .mr-6 {
773
+ margin-right: 1.5rem;
774
+ }
775
+
759
776
  .block {
760
777
  display: block;
761
778
  }
@@ -776,6 +793,18 @@ video {
776
793
  height: 2.5rem;
777
794
  }
778
795
 
796
+ .h-16 {
797
+ height: 4rem;
798
+ }
799
+
800
+ .h-2 {
801
+ height: 0.5rem;
802
+ }
803
+
804
+ .h-2\.5 {
805
+ height: 0.625rem;
806
+ }
807
+
779
808
  .h-20 {
780
809
  height: 5rem;
781
810
  }
@@ -796,6 +825,10 @@ video {
796
825
  height: 1.25rem;
797
826
  }
798
827
 
828
+ .h-6 {
829
+ height: 1.5rem;
830
+ }
831
+
799
832
  .h-8 {
800
833
  height: 2rem;
801
834
  }
@@ -808,6 +841,10 @@ video {
808
841
  height: 17px;
809
842
  }
810
843
 
844
+ .h-\[49px\] {
845
+ height: 49px;
846
+ }
847
+
811
848
  .h-\[68px\] {
812
849
  height: 68px;
813
850
  }
@@ -829,6 +866,18 @@ video {
829
866
  height: max-content;
830
867
  }
831
868
 
869
+ .h-12 {
870
+ height: 3rem;
871
+ }
872
+
873
+ .w-1\/2 {
874
+ width: 50%;
875
+ }
876
+
877
+ .w-1\/4 {
878
+ width: 25%;
879
+ }
880
+
832
881
  .w-1\/5 {
833
882
  width: 20%;
834
883
  }
@@ -837,6 +886,18 @@ video {
837
886
  width: 2.5rem;
838
887
  }
839
888
 
889
+ .w-16 {
890
+ width: 4rem;
891
+ }
892
+
893
+ .w-2 {
894
+ width: 0.5rem;
895
+ }
896
+
897
+ .w-2\.5 {
898
+ width: 0.625rem;
899
+ }
900
+
840
901
  .w-20 {
841
902
  width: 5rem;
842
903
  }
@@ -857,14 +918,26 @@ video {
857
918
  width: 1.25rem;
858
919
  }
859
920
 
921
+ .w-6 {
922
+ width: 1.5rem;
923
+ }
924
+
860
925
  .w-60 {
861
926
  width: 15rem;
862
927
  }
863
928
 
929
+ .w-76 {
930
+ width: 19rem;
931
+ }
932
+
864
933
  .w-8 {
865
934
  width: 2rem;
866
935
  }
867
936
 
937
+ .w-80 {
938
+ width: 20rem;
939
+ }
940
+
868
941
  .w-9 {
869
942
  width: 2.25rem;
870
943
  }
@@ -893,6 +966,30 @@ video {
893
966
  width: 100%;
894
967
  }
895
968
 
969
+ .w-1\/3 {
970
+ width: 33.333333%;
971
+ }
972
+
973
+ .w-3\/4 {
974
+ width: 75%;
975
+ }
976
+
977
+ .w-4\/5 {
978
+ width: 80%;
979
+ }
980
+
981
+ .w-2\/4 {
982
+ width: 50%;
983
+ }
984
+
985
+ .w-2\/3 {
986
+ width: 66.666667%;
987
+ }
988
+
989
+ .w-11\/12 {
990
+ width: 91.666667%;
991
+ }
992
+
896
993
  .max-w-7xl {
897
994
  max-width: 80rem;
898
995
  }
@@ -917,6 +1014,10 @@ video {
917
1014
  flex: none;
918
1015
  }
919
1016
 
1017
+ .flex-shrink-0 {
1018
+ flex-shrink: 0;
1019
+ }
1020
+
920
1021
  .shrink-0 {
921
1022
  flex-shrink: 0;
922
1023
  }
@@ -934,6 +1035,16 @@ video {
934
1035
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
935
1036
  }
936
1037
 
1038
+ @keyframes pulse {
1039
+ 50% {
1040
+ opacity: .5;
1041
+ }
1042
+ }
1043
+
1044
+ .animate-pulse {
1045
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1046
+ }
1047
+
937
1048
  .cursor-pointer {
938
1049
  cursor: pointer;
939
1050
  }
@@ -998,6 +1109,10 @@ video {
998
1109
  justify-content: flex-start;
999
1110
  }
1000
1111
 
1112
+ .justify-end {
1113
+ justify-content: flex-end;
1114
+ }
1115
+
1001
1116
  .justify-center {
1002
1117
  justify-content: center;
1003
1118
  }
@@ -1022,6 +1137,14 @@ video {
1022
1137
  gap: 2rem;
1023
1138
  }
1024
1139
 
1140
+ .gap-2 {
1141
+ gap: 0.5rem;
1142
+ }
1143
+
1144
+ .gap-y-2 {
1145
+ row-gap: 0.5rem;
1146
+ }
1147
+
1025
1148
  .gap-y-4 {
1026
1149
  row-gap: 1rem;
1027
1150
  }
@@ -1070,6 +1193,12 @@ video {
1070
1193
  overflow: hidden;
1071
1194
  }
1072
1195
 
1196
+ .truncate {
1197
+ overflow: hidden;
1198
+ text-overflow: ellipsis;
1199
+ white-space: nowrap;
1200
+ }
1201
+
1073
1202
  .whitespace-nowrap {
1074
1203
  white-space: nowrap;
1075
1204
  }
@@ -1082,6 +1211,10 @@ video {
1082
1211
  border-radius: 10px;
1083
1212
  }
1084
1213
 
1214
+ .rounded-full {
1215
+ border-radius: 9999px;
1216
+ }
1217
+
1085
1218
  .rounded-lg {
1086
1219
  border-radius: 0.5rem;
1087
1220
  }
@@ -1090,6 +1223,10 @@ video {
1090
1223
  border-radius: 0.375rem;
1091
1224
  }
1092
1225
 
1226
+ .rounded-sm {
1227
+ border-radius: 0.125rem;
1228
+ }
1229
+
1093
1230
  .rounded-xl {
1094
1231
  border-radius: 0.75rem;
1095
1232
  }
@@ -1159,6 +1296,11 @@ video {
1159
1296
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
1160
1297
  }
1161
1298
 
1299
+ .border-grey-300 {
1300
+ --tw-border-opacity: 1;
1301
+ border-color: rgb(221 221 221 / var(--tw-border-opacity));
1302
+ }
1303
+
1162
1304
  .border-grey-400 {
1163
1305
  --tw-border-opacity: 1;
1164
1306
  border-color: rgb(153 153 153 / var(--tw-border-opacity));
@@ -1244,6 +1386,16 @@ video {
1244
1386
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1245
1387
  }
1246
1388
 
1389
+ .bg-grey-200 {
1390
+ --tw-bg-opacity: 1;
1391
+ background-color: rgb(238 238 238 / var(--tw-bg-opacity));
1392
+ }
1393
+
1394
+ .bg-grey-300 {
1395
+ --tw-bg-opacity: 1;
1396
+ background-color: rgb(221 221 221 / var(--tw-bg-opacity));
1397
+ }
1398
+
1247
1399
  .bg-grey-600 {
1248
1400
  --tw-bg-opacity: 1;
1249
1401
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
@@ -1259,6 +1411,21 @@ video {
1259
1411
  background-color: rgb(255 220 63 / var(--tw-bg-opacity));
1260
1412
  }
1261
1413
 
1414
+ .bg-red-300 {
1415
+ --tw-bg-opacity: 1;
1416
+ background-color: rgb(247 100 76 / var(--tw-bg-opacity));
1417
+ }
1418
+
1419
+ .bg-red-500 {
1420
+ --tw-bg-opacity: 1;
1421
+ background-color: rgb(208 13 18 / var(--tw-bg-opacity));
1422
+ }
1423
+
1424
+ .bg-red-400 {
1425
+ --tw-bg-opacity: 1;
1426
+ background-color: rgb(243 32 19 / var(--tw-bg-opacity));
1427
+ }
1428
+
1262
1429
  .bg-opacity-75 {
1263
1430
  --tw-bg-opacity: 0.75;
1264
1431
  }
@@ -1273,6 +1440,14 @@ video {
1273
1440
  object-fit: scale-down;
1274
1441
  }
1275
1442
 
1443
+ .p-1 {
1444
+ padding: 0.25rem;
1445
+ }
1446
+
1447
+ .p-1\.5 {
1448
+ padding: 0.375rem;
1449
+ }
1450
+
1276
1451
  .p-2 {
1277
1452
  padding: 0.5rem;
1278
1453
  }
@@ -1285,21 +1460,38 @@ video {
1285
1460
  padding: 1rem;
1286
1461
  }
1287
1462
 
1463
+ .p-5 {
1464
+ padding: 1.25rem;
1465
+ }
1466
+
1467
+ .p-8 {
1468
+ padding: 2rem;
1469
+ }
1470
+
1471
+ .p-6 {
1472
+ padding: 1.5rem;
1473
+ }
1474
+
1475
+ .px-10 {
1476
+ padding-left: 2.5rem;
1477
+ padding-right: 2.5rem;
1478
+ }
1479
+
1288
1480
  .px-2 {
1289
1481
  padding-left: 0.5rem;
1290
1482
  padding-right: 0.5rem;
1291
1483
  }
1292
1484
 
1485
+ .px-3 {
1486
+ padding-left: 0.75rem;
1487
+ padding-right: 0.75rem;
1488
+ }
1489
+
1293
1490
  .px-4 {
1294
1491
  padding-left: 1rem;
1295
1492
  padding-right: 1rem;
1296
1493
  }
1297
1494
 
1298
- .px-5 {
1299
- padding-left: 1.25rem;
1300
- padding-right: 1.25rem;
1301
- }
1302
-
1303
1495
  .px-8 {
1304
1496
  padding-left: 2rem;
1305
1497
  padding-right: 2rem;
@@ -1350,6 +1542,31 @@ video {
1350
1542
  padding-bottom: 5.6px;
1351
1543
  }
1352
1544
 
1545
+ .px-9 {
1546
+ padding-left: 2.25rem;
1547
+ padding-right: 2.25rem;
1548
+ }
1549
+
1550
+ .px-6 {
1551
+ padding-left: 1.5rem;
1552
+ padding-right: 1.5rem;
1553
+ }
1554
+
1555
+ .py-6 {
1556
+ padding-top: 1.5rem;
1557
+ padding-bottom: 1.5rem;
1558
+ }
1559
+
1560
+ .py-12 {
1561
+ padding-top: 3rem;
1562
+ padding-bottom: 3rem;
1563
+ }
1564
+
1565
+ .px-0 {
1566
+ padding-left: 0px;
1567
+ padding-right: 0px;
1568
+ }
1569
+
1353
1570
  .pb-1 {
1354
1571
  padding-bottom: 0.25rem;
1355
1572
  }
@@ -1358,6 +1575,10 @@ video {
1358
1575
  padding-bottom: 0.5rem;
1359
1576
  }
1360
1577
 
1578
+ .pb-20 {
1579
+ padding-bottom: 5rem;
1580
+ }
1581
+
1361
1582
  .pb-3 {
1362
1583
  padding-bottom: 0.75rem;
1363
1584
  }
@@ -1382,6 +1603,14 @@ video {
1382
1603
  padding-bottom: 2rem;
1383
1604
  }
1384
1605
 
1606
+ .pl-0 {
1607
+ padding-left: 0px;
1608
+ }
1609
+
1610
+ .pl-0\.5 {
1611
+ padding-left: 0.125rem;
1612
+ }
1613
+
1385
1614
  .pl-1 {
1386
1615
  padding-left: 0.25rem;
1387
1616
  }
@@ -1394,6 +1623,10 @@ video {
1394
1623
  padding-left: 1rem;
1395
1624
  }
1396
1625
 
1626
+ .pl-px {
1627
+ padding-left: 1px;
1628
+ }
1629
+
1397
1630
  .pr-14 {
1398
1631
  padding-right: 3.5rem;
1399
1632
  }
@@ -1402,6 +1635,10 @@ video {
1402
1635
  padding-right: 0.5rem;
1403
1636
  }
1404
1637
 
1638
+ .pr-3 {
1639
+ padding-right: 0.75rem;
1640
+ }
1641
+
1405
1642
  .pt-0 {
1406
1643
  padding-top: 0px;
1407
1644
  }
@@ -1438,10 +1675,19 @@ video {
1438
1675
  text-align: start;
1439
1676
  }
1440
1677
 
1678
+ .text-end {
1679
+ text-align: end;
1680
+ }
1681
+
1441
1682
  .font-serif {
1442
1683
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
1443
1684
  }
1444
1685
 
1686
+ .text-2xl {
1687
+ font-size: 1.5rem;
1688
+ line-height: 2rem;
1689
+ }
1690
+
1445
1691
  .text-\[11px\] {
1446
1692
  font-size: 11px;
1447
1693
  }
@@ -1466,6 +1712,10 @@ video {
1466
1712
  line-height: 1rem;
1467
1713
  }
1468
1714
 
1715
+ .text-xxs {
1716
+ font-size: 0.625rem;
1717
+ }
1718
+
1469
1719
  .font-bold {
1470
1720
  font-weight: 700;
1471
1721
  }
@@ -1478,6 +1728,10 @@ video {
1478
1728
  font-weight: 400;
1479
1729
  }
1480
1730
 
1731
+ .capitalize {
1732
+ text-transform: capitalize;
1733
+ }
1734
+
1481
1735
  .leading-4 {
1482
1736
  line-height: 1rem;
1483
1737
  }
@@ -1600,17 +1854,57 @@ video {
1600
1854
  color: rgb(255 255 255 / var(--tw-text-opacity));
1601
1855
  }
1602
1856
 
1857
+ .text-grey-400 {
1858
+ --tw-text-opacity: 1;
1859
+ color: rgb(153 153 153 / var(--tw-text-opacity));
1860
+ }
1861
+
1603
1862
  .underline {
1604
1863
  text-decoration-line: underline;
1605
1864
  }
1606
1865
 
1866
+ .shadow-lg {
1867
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1868
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1869
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1870
+ }
1871
+
1607
1872
  .shadow-sm {
1608
1873
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
1609
1874
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1610
1875
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1611
1876
  }
1612
1877
 
1878
+ .transition {
1879
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
1880
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
1881
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
1882
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1883
+ transition-duration: 150ms;
1884
+ }
1885
+
1886
+ .hover\:underline:hover {
1887
+ text-decoration-line: underline;
1888
+ }
1889
+
1890
+ .focus\:outline-none:focus {
1891
+ outline: 2px solid transparent;
1892
+ outline-offset: 2px;
1893
+ }
1894
+
1613
1895
  @media (min-width: 640px) {
1896
+ .sm\:w-1\/2 {
1897
+ width: 50%;
1898
+ }
1899
+
1900
+ .sm\:w-3\/4 {
1901
+ width: 75%;
1902
+ }
1903
+
1904
+ .sm\:w-1\/4 {
1905
+ width: 25%;
1906
+ }
1907
+
1614
1908
  .sm\:max-w-lg {
1615
1909
  max-width: 32rem;
1616
1910
  }
@@ -1749,6 +2043,26 @@ video {
1749
2043
  width: 100%;
1750
2044
  }
1751
2045
 
2046
+ .md\:w-1\/2 {
2047
+ width: 50%;
2048
+ }
2049
+
2050
+ .md\:w-3\/4 {
2051
+ width: 75%;
2052
+ }
2053
+
2054
+ .md\:w-1\/4 {
2055
+ width: 25%;
2056
+ }
2057
+
2058
+ .md\:w-1\/3 {
2059
+ width: 33.333333%;
2060
+ }
2061
+
2062
+ .md\:w-2\/3 {
2063
+ width: 66.666667%;
2064
+ }
2065
+
1752
2066
  .md\:max-w-\[137px\] {
1753
2067
  max-width: 137px;
1754
2068
  }
@@ -1892,6 +2206,11 @@ video {
1892
2206
  padding-bottom: 1.5rem;
1893
2207
  }
1894
2208
 
2209
+ .md\:px-8 {
2210
+ padding-left: 2rem;
2211
+ padding-right: 2rem;
2212
+ }
2213
+
1895
2214
  .md\:pb-4 {
1896
2215
  padding-bottom: 1rem;
1897
2216
  }
@@ -1989,6 +2308,14 @@ video {
1989
2308
  display: block;
1990
2309
  }
1991
2310
 
2311
+ .lg\:flex {
2312
+ display: flex;
2313
+ }
2314
+
2315
+ .lg\:hidden {
2316
+ display: none;
2317
+ }
2318
+
1992
2319
  .lg\:min-h-\[220px\] {
1993
2320
  min-height: 220px;
1994
2321
  }
@@ -1997,6 +2324,26 @@ video {
1997
2324
  width: 410px;
1998
2325
  }
1999
2326
 
2327
+ .lg\:w-1\/2 {
2328
+ width: 50%;
2329
+ }
2330
+
2331
+ .lg\:w-1\/3 {
2332
+ width: 33.333333%;
2333
+ }
2334
+
2335
+ .lg\:w-3\/4 {
2336
+ width: 75%;
2337
+ }
2338
+
2339
+ .lg\:w-2 {
2340
+ width: 0.5rem;
2341
+ }
2342
+
2343
+ .lg\:w-2\/3 {
2344
+ width: 66.666667%;
2345
+ }
2346
+
2000
2347
  .lg\:max-w-7xl {
2001
2348
  max-width: 80rem;
2002
2349
  }
@@ -2067,8 +2414,38 @@ video {
2067
2414
  }
2068
2415
 
2069
2416
  @media (min-width: 1280px) {
2417
+ .xl\:block {
2418
+ display: block;
2419
+ }
2420
+
2421
+ .xl\:flex {
2422
+ display: flex;
2423
+ }
2424
+
2425
+ .xl\:hidden {
2426
+ display: none;
2427
+ }
2428
+
2429
+ .xl\:w-1\/3 {
2430
+ width: 33.333333%;
2431
+ }
2432
+
2433
+ .xl\:w-1\/2 {
2434
+ width: 50%;
2435
+ }
2436
+
2437
+ .xl\:w-1\/4 {
2438
+ width: 25%;
2439
+ }
2440
+
2070
2441
  .xl\:px-0 {
2071
2442
  padding-left: 0px;
2072
2443
  padding-right: 0px;
2073
2444
  }
2074
2445
  }
2446
+
2447
+ @media (min-width: 1536px) {
2448
+ .\32xl\:w-1\/4 {
2449
+ width: 25%;
2450
+ }
2451
+ }