@digigov/css 1.1.1 → 1.2.0-mobile

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 (124) hide show
  1. package/defaultTheme/accordion.json +8 -0
  2. package/defaultTheme/brandConfig.json +14 -2
  3. package/defaultTheme/button.json +16 -3
  4. package/defaultTheme/card.json +16 -5
  5. package/defaultTheme/form.json +15 -0
  6. package/defaultTheme/globals.json +11 -1
  7. package/defaultTheme/index.js +1 -1
  8. package/defaultTheme/layout.json +55 -0
  9. package/defaultTheme/misc.json +20 -0
  10. package/defaultTheme/panel.json +5 -0
  11. package/defaultTheme/typography.json +26 -6
  12. package/dist/base/index.css +3 -3
  13. package/dist/base.js +1 -1
  14. package/dist/components.js +1 -1
  15. package/dist/digigov.css +5 -5
  16. package/dist/utilities/index.css +1 -1
  17. package/dist/utilities.js +1 -1
  18. package/package.json +19 -14
  19. package/postcss.config.js +1 -0
  20. package/src/base/base.css +1 -1
  21. package/src/base/index.css +5 -5
  22. package/src/components/accordion.css +76 -73
  23. package/src/components/admin-header.css +7 -24
  24. package/src/components/admin-layout.css +13 -22
  25. package/src/components/autocomplete.css +106 -64
  26. package/src/components/back-to-top.css +7 -8
  27. package/src/components/blockquote.common.css +14 -0
  28. package/src/components/blockquote.css +9 -0
  29. package/src/components/blockquote.native.css +11 -0
  30. package/src/components/bottom-info.css +3 -2
  31. package/src/components/breadcrumbs.css +21 -12
  32. package/src/components/button.common.css +64 -0
  33. package/src/components/button.css +81 -94
  34. package/src/components/button.native.css +42 -0
  35. package/src/components/card.common.css +33 -0
  36. package/src/components/card.css +77 -64
  37. package/src/components/card.native.css +29 -0
  38. package/src/components/checkboxes.css +34 -37
  39. package/src/components/chip.css +36 -37
  40. package/src/components/components.css +2 -2
  41. package/src/components/copy-to-clipboard.css +39 -38
  42. package/src/components/details.common.css +26 -0
  43. package/src/components/details.css +17 -18
  44. package/src/components/details.native.css +26 -0
  45. package/src/components/dev-theme.css +3 -4
  46. package/src/components/drawer.css +58 -59
  47. package/src/components/dropdown.common.css +58 -0
  48. package/src/components/dropdown.css +81 -68
  49. package/src/components/dropdown.native.css +58 -0
  50. package/src/components/experimental.css +18 -18
  51. package/src/components/fillable.css +6 -6
  52. package/src/components/filter.css +58 -63
  53. package/src/components/footer.css +53 -39
  54. package/src/components/form.common.css +49 -0
  55. package/src/components/form.css +125 -113
  56. package/src/components/form.native.css +58 -0
  57. package/src/components/full-page-background.css +2 -2
  58. package/src/components/header.common.css +36 -0
  59. package/src/components/header.css +78 -77
  60. package/src/components/header.native.css +34 -0
  61. package/src/components/hidden.css +23 -23
  62. package/src/components/index.css +48 -47
  63. package/src/components/kitchensink.css +41 -41
  64. package/src/components/layout.common.css +8 -0
  65. package/src/components/layout.css +56 -56
  66. package/src/components/layout.native.css +5 -0
  67. package/src/components/loader.css +31 -31
  68. package/src/components/masthead.css +60 -59
  69. package/src/components/misc.css +43 -21
  70. package/src/components/modal.css +28 -21
  71. package/src/components/nav.common.css +25 -0
  72. package/src/components/nav.css +96 -89
  73. package/src/components/nav.native.css +38 -0
  74. package/src/components/notification-banner.common.css +46 -0
  75. package/src/components/notification-banner.css +32 -28
  76. package/src/components/notification-banner.native.css +42 -0
  77. package/src/components/pagination.css +40 -41
  78. package/src/components/panel.common.css +30 -0
  79. package/src/components/panel.css +12 -20
  80. package/src/components/panel.native.css +20 -0
  81. package/src/components/phase-banner.common.css +23 -0
  82. package/src/components/phase-banner.css +15 -14
  83. package/src/components/phase-banner.native.css +31 -0
  84. package/src/components/radios.css +33 -30
  85. package/src/components/skeleton.css +85 -0
  86. package/src/components/skiplink.css +3 -3
  87. package/src/components/stack.css +64 -64
  88. package/src/components/stepnav.css +68 -64
  89. package/src/components/summary-list.common.css +25 -0
  90. package/src/components/summary-list.css +59 -47
  91. package/src/components/summary-list.native.css +27 -0
  92. package/src/components/svg-icons.common.css +56 -0
  93. package/src/components/svg-icons.css +79 -75
  94. package/src/components/svg-icons.native.css +55 -0
  95. package/src/components/table.css +189 -208
  96. package/src/components/tabs.css +52 -68
  97. package/src/components/task-list.css +31 -31
  98. package/src/components/test.css +7 -0
  99. package/src/components/timeline.css +19 -18
  100. package/src/components/typography.common.css +137 -0
  101. package/src/components/typography.css +159 -218
  102. package/src/components/typography.native.css +93 -0
  103. package/src/components/warning-text.common.css +23 -0
  104. package/src/components/warning-text.css +11 -11
  105. package/src/components/warning-text.native.css +22 -0
  106. package/src/index.native.css +17 -0
  107. package/src/pages/headings/service-heading.js +9 -9
  108. package/src/pages/index.js +201 -201
  109. package/src/utilities/grid.css +221 -0
  110. package/src/utilities/grid.native.css +274 -0
  111. package/src/utilities/index.css +3 -585
  112. package/src/utilities/index.native.css +2 -0
  113. package/src/utilities/print.css +11 -0
  114. package/src/utilities/spacing.css +2133 -0
  115. package/src/utilities/utilities.css +1647 -531
  116. package/tailwind.config.js +2 -2
  117. package/themes.plugin.js +1 -1
  118. package/defaultTheme/footer.json +0 -8
  119. package/src/pages/admin-filtering-data.js +0 -160
  120. package/src/pages/admin.js +0 -61
  121. package/src/pages/dropdown.js +0 -249
  122. package/src/pages/form.js +0 -400
  123. package/src/pages/pagination.js +0 -124
  124. package/src/pages/table.js +0 -308
@@ -1 +1 @@
1
- .govgr-m-0{margin:0!important}.govgr-m-1{margin:.25rem!important}.govgr-m-2{margin:.5rem!important}.govgr-m-3{margin:.5rem!important}@media (min-width:768px){.govgr-m-3{margin:.75rem!important}}.govgr-m-4{margin:.75rem!important}@media (min-width:768px){.govgr-m-4{margin:1rem!important}}.govgr-m-5{margin:1rem!important}@media (min-width:768px){.govgr-m-5{margin:1.25rem!important}}.govgr-m-6{margin:1.25rem!important}@media (min-width:768px){.govgr-m-6{margin:1.5rem!important}}.govgr-m-7{margin:1.5rem!important}@media (min-width:768px){.govgr-m-7{margin:2rem!important}}.govgr-m-8{margin:2rem!important}@media (min-width:768px){.govgr-m-8{margin:2.5rem!important}}.govgr-m-9{margin:2rem!important}@media (min-width:768px){.govgr-m-9{margin:3rem!important}}.govgr-m-10{margin:2.25rem!important}@media (min-width:768px){.govgr-m-10{margin:3.5rem!important}}.govgr-m-11{margin:2.5rem!important}@media (min-width:768px){.govgr-m-11{margin:4rem!important}}.govgr-m-12{margin:2.75rem!important}@media (min-width:768px){.govgr-m-12{margin:5rem!important}}.govgr-mt-0{margin-top:0!important}.govgr-mt-1{margin-top:.25rem!important}.govgr-mt-2{margin-top:.5rem!important}.govgr-mt-3{margin-top:.5rem!important}@media (min-width:768px){.govgr-mt-3{margin-top:.75rem!important}}.govgr-mt-4{margin-top:.75rem!important}@media (min-width:768px){.govgr-mt-4{margin-top:1rem!important}}.govgr-mt-5{margin-top:1rem!important}@media (min-width:768px){.govgr-mt-5{margin-top:1.25rem!important}}.govgr-mt-6{margin-top:1.25rem!important}@media (min-width:768px){.govgr-mt-6{margin-top:1.5rem!important}}.govgr-mt-7{margin-top:1.5rem!important}@media (min-width:768px){.govgr-mt-7{margin-top:2rem!important}}.govgr-mt-8{margin-top:2rem!important}@media (min-width:768px){.govgr-mt-8{margin-top:2.5rem!important}}.govgr-mt-9{margin-top:2rem!important}@media (min-width:768px){.govgr-mt-9{margin-top:3rem!important}}.govgr-mt-10{margin-top:2.25rem!important}@media (min-width:768px){.govgr-mt-10{margin-top:3.5rem!important}}.govgr-mt-11{margin-top:2.5rem!important}@media (min-width:768px){.govgr-mt-11{margin-top:4rem!important}}.govgr-mt-12{margin-top:2.75rem!important}@media (min-width:768px){.govgr-mt-12{margin-top:5rem!important}}.govgr-mb-0{margin-bottom:0!important}.govgr-mb-1{margin-bottom:.25rem!important}.govgr-mb-2{margin-bottom:.5rem!important}.govgr-mb-3{margin-bottom:.5rem!important}@media (min-width:768px){.govgr-mb-3{margin-bottom:.75rem!important}}.govgr-mb-4{margin-bottom:.75rem!important}@media (min-width:768px){.govgr-mb-4{margin-bottom:1rem!important}}.govgr-mb-5{margin-bottom:1rem!important}@media (min-width:768px){.govgr-mb-5{margin-bottom:1.25rem!important}}.govgr-mb-6{margin-bottom:1.25rem!important}@media (min-width:768px){.govgr-mb-6{margin-bottom:1.5rem!important}}.govgr-mb-7{margin-bottom:1.5rem!important}@media (min-width:768px){.govgr-mb-7{margin-bottom:2rem!important}}.govgr-mb-8{margin-bottom:2rem!important}@media (min-width:768px){.govgr-mb-8{margin-bottom:2.5rem!important}}.govgr-mb-9{margin-bottom:2rem!important}@media (min-width:768px){.govgr-mb-9{margin-bottom:3rem!important}}.govgr-mb-10{margin-bottom:2.25rem!important}@media (min-width:768px){.govgr-mb-10{margin-bottom:3.5rem!important}}.govgr-mb-11{margin-bottom:2.5rem!important}@media (min-width:768px){.govgr-mb-11{margin-bottom:4rem!important}}.govgr-mb-12{margin-bottom:2.75rem!important}@media (min-width:768px){.govgr-mb-12{margin-bottom:5rem!important}}.govgr-ml-0{margin-left:0!important}.govgr-ml-1{margin-left:.25rem!important}.govgr-ml-2{margin-left:.5rem!important}.govgr-ml-3{margin-left:.5rem!important}@media (min-width:768px){.govgr-ml-3{margin-left:.75rem!important}}.govgr-ml-4{margin-left:.75rem!important}@media (min-width:768px){.govgr-ml-4{margin-left:1rem!important}}.govgr-ml-5{margin-left:1rem!important}@media (min-width:768px){.govgr-ml-5{margin-left:1.25rem!important}}.govgr-ml-6{margin-left:1.25rem!important}@media (min-width:768px){.govgr-ml-6{margin-left:1.5rem!important}}.govgr-ml-7{margin-left:1.5rem!important}@media (min-width:768px){.govgr-ml-7{margin-left:2rem!important}}.govgr-ml-8{margin-left:2rem!important}@media (min-width:768px){.govgr-ml-8{margin-left:2.5rem!important}}.govgr-ml-9{margin-left:2rem!important}@media (min-width:768px){.govgr-ml-9{margin-left:3rem!important}}.govgr-ml-10{margin-left:2.25rem!important}@media (min-width:768px){.govgr-ml-10{margin-left:3.5rem!important}}.govgr-ml-11{margin-left:2.5rem!important}@media (min-width:768px){.govgr-ml-11{margin-left:4rem!important}}.govgr-ml-12{margin-left:2.75rem!important}@media (min-width:768px){.govgr-ml-12{margin-left:5rem!important}}.govgr-mr-0{margin-right:0!important}.govgr-mr-1{margin-right:.25rem!important}.govgr-mr-2{margin-right:.5rem!important}.govgr-mr-3{margin-right:.5rem!important}@media (min-width:768px){.govgr-mr-3{margin-right:.75rem!important}}.govgr-mr-4{margin-right:.75rem!important}@media (min-width:768px){.govgr-mr-4{margin-right:1rem!important}}.govgr-mr-5{margin-right:1rem!important}@media (min-width:768px){.govgr-mr-5{margin-right:1.25rem!important}}.govgr-mr-6{margin-right:1.25rem!important}@media (min-width:768px){.govgr-mr-6{margin-right:1.5rem!important}}.govgr-mr-7{margin-right:1.5rem!important}@media (min-width:768px){.govgr-mr-7{margin-right:2rem!important}}.govgr-mr-8{margin-right:2rem!important}@media (min-width:768px){.govgr-mr-8{margin-right:2.5rem!important}}.govgr-mr-9{margin-right:2rem!important}@media (min-width:768px){.govgr-mr-9{margin-right:3rem!important}}.govgr-mr-10{margin-right:2.25rem!important}@media (min-width:768px){.govgr-mr-10{margin-right:3.5rem!important}}.govgr-mr-11{margin-right:2.5rem!important}@media (min-width:768px){.govgr-mr-11{margin-right:4rem!important}}.govgr-mr-12{margin-right:2.75rem!important}@media (min-width:768px){.govgr-mr-12{margin-right:5rem!important}}.govgr-p-0{padding:0!important}.govgr-p-1{padding:.25rem!important}.govgr-p-2{padding:.5rem!important}.govgr-p-3{padding:.5rem!important}@media (min-width:768px){.govgr-p-3{padding:.75rem!important}}.govgr-p-4{padding:.75rem!important}@media (min-width:768px){.govgr-p-4{padding:1rem!important}}.govgr-p-5{padding:1rem!important}@media (min-width:768px){.govgr-p-5{padding:1.25rem!important}}.govgr-p-6{padding:1.25rem!important}@media (min-width:768px){.govgr-p-6{padding:1.5rem!important}}.govgr-p-7{padding:1.5rem!important}@media (min-width:768px){.govgr-p-7{padding:2rem!important}}.govgr-p-8{padding:2rem!important}@media (min-width:768px){.govgr-p-8{padding:2.5rem!important}}.govgr-p-9{padding:2rem!important}@media (min-width:768px){.govgr-p-9{padding:3rem!important}}.govgr-p-10{padding:2.25rem!important}@media (min-width:768px){.govgr-p-10{padding:3.5rem!important}}.govgr-p-11{padding:2.5rem!important}@media (min-width:768px){.govgr-p-11{padding:4rem!important}}.govgr-p-12{padding:2.75rem!important}@media (min-width:768px){.govgr-p-12{padding:5rem!important}}.govgr-pt-0{padding-top:0!important}.govgr-pt-1{padding-top:.25rem!important}.govgr-pt-2{padding-top:.5rem!important}.govgr-pt-3{padding-top:.5rem!important}@media (min-width:768px){.govgr-pt-3{padding-top:.75rem!important}}.govgr-pt-4{padding-top:.75rem!important}@media (min-width:768px){.govgr-pt-4{padding-top:1rem!important}}.govgr-pt-5{padding-top:1rem!important}@media (min-width:768px){.govgr-pt-5{padding-top:1.25rem!important}}.govgr-pt-6{padding-top:1.25rem!important}@media (min-width:768px){.govgr-pt-6{padding-top:1.5rem!important}}.govgr-pt-7{padding-top:1.5rem!important}@media (min-width:768px){.govgr-pt-7{padding-top:2rem!important}}.govgr-pt-8{padding-top:2rem!important}@media (min-width:768px){.govgr-pt-8{padding-top:2.5rem!important}}.govgr-pt-9{padding-top:2rem!important}@media (min-width:768px){.govgr-pt-9{padding-top:3rem!important}}.govgr-pt-10{padding-top:2.25rem!important}@media (min-width:768px){.govgr-pt-10{padding-top:3.5rem!important}}.govgr-pt-11{padding-top:2.5rem!important}@media (min-width:768px){.govgr-pt-11{padding-top:4rem!important}}.govgr-pt-12{padding-top:2.75rem!important}@media (min-width:768px){.govgr-pt-12{padding-top:5rem!important}}.govgr-pb-0{padding-bottom:0!important}.govgr-pb-1{padding-bottom:.25rem!important}.govgr-pb-2{padding-bottom:.5rem!important}.govgr-pb-3{padding-bottom:.5rem!important}@media (min-width:768px){.govgr-pb-3{padding-bottom:.75rem!important}}.govgr-pb-4{padding-bottom:.75rem!important}@media (min-width:768px){.govgr-pb-4{padding-bottom:1rem!important}}.govgr-pb-5{padding-bottom:1rem!important}@media (min-width:768px){.govgr-pb-5{padding-bottom:1.25rem!important}}.govgr-pb-6{padding-bottom:1.25rem!important}@media (min-width:768px){.govgr-pb-6{padding-bottom:1.5rem!important}}.govgr-pb-7{padding-bottom:1.5rem!important}@media (min-width:768px){.govgr-pb-7{padding-bottom:2rem!important}}.govgr-pb-8{padding-bottom:2rem!important}@media (min-width:768px){.govgr-pb-8{padding-bottom:2.5rem!important}}.govgr-pb-9{padding-bottom:2rem!important}@media (min-width:768px){.govgr-pb-9{padding-bottom:3rem!important}}.govgr-pb-10{padding-bottom:2.25rem!important}@media (min-width:768px){.govgr-pb-10{padding-bottom:3.5rem!important}}.govgr-pb-11{padding-bottom:2.5rem!important}@media (min-width:768px){.govgr-pb-11{padding-bottom:4rem!important}}.govgr-pb-12{padding-bottom:2.75rem!important}@media (min-width:768px){.govgr-pb-12{padding-bottom:5rem!important}}.govgr-pl-0{padding-left:0!important}.govgr-pl-1{padding-left:.25rem!important}.govgr-pl-2{padding-left:.5rem!important}.govgr-pl-3{padding-left:.5rem!important}@media (min-width:768px){.govgr-pl-3{padding-left:.75rem!important}}.govgr-pl-4{padding-left:.75rem!important}@media (min-width:768px){.govgr-pl-4{padding-left:1rem!important}}.govgr-pl-5{padding-left:1rem!important}@media (min-width:768px){.govgr-pl-5{padding-left:1.25rem!important}}.govgr-pl-6{padding-left:1.25rem!important}@media (min-width:768px){.govgr-pl-6{padding-left:1.5rem!important}}.govgr-pl-7{padding-left:1.5rem!important}@media (min-width:768px){.govgr-pl-7{padding-left:2rem!important}}.govgr-pl-8{padding-left:2rem!important}@media (min-width:768px){.govgr-pl-8{padding-left:2.5rem!important}}.govgr-pl-9{padding-left:2rem!important}@media (min-width:768px){.govgr-pl-9{padding-left:3rem!important}}.govgr-pl-10{padding-left:2.25rem!important}@media (min-width:768px){.govgr-pl-10{padding-left:3.5rem!important}}.govgr-pl-11{padding-left:2.5rem!important}@media (min-width:768px){.govgr-pl-11{padding-left:4rem!important}}.govgr-pl-12{padding-left:2.75rem!important}@media (min-width:768px){.govgr-pl-12{padding-left:5rem!important}}.govgr-pr-0{padding-right:0!important}.govgr-pr-1{padding-right:.25rem!important}.govgr-pr-2{padding-right:.5rem!important}.govgr-pr-3{padding-right:.5rem!important}@media (min-width:768px){.govgr-pr-3{padding-right:.75rem!important}}.govgr-pr-4{padding-right:.75rem!important}@media (min-width:768px){.govgr-pr-4{padding-right:1rem!important}}.govgr-pr-5{padding-right:1rem!important}@media (min-width:768px){.govgr-pr-5{padding-right:1.25rem!important}}.govgr-pr-6{padding-right:1.25rem!important}@media (min-width:768px){.govgr-pr-6{padding-right:1.5rem!important}}.govgr-pr-7{padding-right:1.5rem!important}@media (min-width:768px){.govgr-pr-7{padding-right:2rem!important}}.govgr-pr-8{padding-right:2rem!important}@media (min-width:768px){.govgr-pr-8{padding-right:2.5rem!important}}.govgr-pr-9{padding-right:2rem!important}@media (min-width:768px){.govgr-pr-9{padding-right:3rem!important}}.govgr-pr-10{padding-right:2.25rem!important}@media (min-width:768px){.govgr-pr-10{padding-right:3.5rem!important}}.govgr-pr-11{padding-right:2.5rem!important}@media (min-width:768px){.govgr-pr-11{padding-right:4rem!important}}.govgr-pr-12{padding-right:2.75rem!important}@media (min-width:768px){.govgr-pr-12{padding-right:5rem!important}}.govgr-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr))}.govgr-grid-inline{display:inline-grid}.govgr-grid__col-auto{grid-column:auto}.govgr-grid__col-span-1{grid-column:span 1/span 1}.govgr-grid__col-span-2{grid-column:span 2/span 2}.govgr-grid__col-span-3{grid-column:span 3/span 3}.govgr-grid__col-span-4{grid-column:span 4/span 4}.govgr-grid__col-span-5{grid-column:span 5/span 5}.govgr-grid__col-span-6{grid-column:span 6/span 6}.govgr-grid__col-span-7{grid-column:span 7/span 7}.govgr-grid__col-span-8{grid-column:span 8/span 8}.govgr-grid__col-span-9{grid-column:span 9/span 9}.govgr-grid__col-span-10{grid-column:span 10/span 10}.govgr-grid__col-span-11{grid-column:span 11/span 11}.govgr-grid__col-span-12{grid-column:span 12/span 12}@media print{.govgr-print-hidden{display:none!important}.govgr-print-visible-block{display:block!important}.govgr-print-visible-inline{display:inline!important}}.govgr-gap-1{gap:.25rem}.govgr-gap-2{gap:.5rem}.govgr-gap-4{gap:1rem}.govgr-gap-6{gap:1.5rem}.govgr-gap-8{gap:2rem}.govgr-gap-10{gap:2.5rem}.govgr-gap-12{gap:3rem}.govgr-gap-xs-1{gap:.25rem}.govgr-gap-xs-2{gap:.5rem}.govgr-gap-xs-4{gap:1rem}.govgr-gap-xs-5{gap:1.25rem}.govgr-gap-xs-6{gap:1.5rem}.govgr-gap-xs-8{gap:2rem}.govgr-gap-xs-10{gap:2.5rem}.govgr-gap-xs-12{gap:3rem}@media (min-width:640px){.govgr-gap-sm-1{gap:.25rem}.govgr-gap-sm-2{gap:.5rem}.govgr-gap-sm-4{gap:1rem}.govgr-gap-sm-5{gap:1.25rem}.govgr-gap-sm-6{gap:1.5rem}.govgr-gap-sm-8{gap:2rem}.govgr-gap-sm-10{gap:2.5rem}.govgr-gap-sm-12{gap:3rem}}@media (min-width:768px){.govgr-gap-md-1{gap:.25rem}.govgr-gap-md-2{gap:.5rem}.govgr-gap-md-4{gap:1rem}.govgr-gap-md-5{gap:1.25rem}.govgr-gap-md-6{gap:1.5rem}.govgr-gap-md-8{gap:2rem}.govgr-gap-md-10{gap:2.5rem}.govgr-gap-md-12{gap:3rem}}@media (min-width:1024px){.govgr-gap-lg-1{gap:.25rem}.govgr-gap-lg-2{gap:.5rem}.govgr-gap-lg-4{gap:1rem}.govgr-gap-lg-5{gap:1.25rem}.govgr-gap-lg-6{gap:1.5rem}.govgr-gap-lg-8{gap:2rem}.govgr-gap-lg-10{gap:2.5rem}.govgr-gap-lg-12{gap:3rem}}@media (min-width:1280px){.govgr-gap-xl-1{gap:.25rem}.govgr-gap-xl-2{gap:.5rem}.govgr-gap-xl-4{gap:1rem}.govgr-gap-xl-5{gap:1.25rem}.govgr-gap-xl-6{gap:1.5rem}.govgr-gap-xl-8{gap:2rem}.govgr-gap-xl-10{gap:2.5rem}.govgr-gap-xl-12{gap:3rem}}
1
+ .ds-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr))}.ds-grid-inline{display:inline-grid}.ds-grid__col-auto{grid-column:auto}.ds-grid__col-span-1,.xs\:ds-grid__col-span-1{grid-column:span 1/span 1}.ds-grid__col-span-2,.xs\:ds-grid__col-span-2{grid-column:span 2/span 2}.ds-grid__col-span-3,.xs\:ds-grid__col-span-3{grid-column:span 3/span 3}.ds-grid__col-span-4,.xs\:ds-grid__col-span-4{grid-column:span 4/span 4}.ds-grid__col-span-5,.xs\:ds-grid__col-span-5{grid-column:span 5/span 5}.ds-grid__col-span-6,.xs\:ds-grid__col-span-6{grid-column:span 6/span 6}.ds-grid__col-span-7,.xs\:ds-grid__col-span-7{grid-column:span 7/span 7}.ds-grid__col-span-8,.xs\:ds-grid__col-span-8{grid-column:span 8/span 8}.ds-grid__col-span-9,.xs\:ds-grid__col-span-9{grid-column:span 9/span 9}.ds-grid__col-span-10,.xs\:ds-grid__col-span-10{grid-column:span 10/span 10}.ds-grid__col-span-11,.xs\:ds-grid__col-span-11{grid-column:span 11/span 11}.ds-grid__col-span-12,.xs\:ds-grid__col-span-12{grid-column:span 12/span 12}@media (min-width:640px){.sm\:ds-grid__col-span-1{grid-column:span 1/span 1}.sm\:ds-grid__col-span-2{grid-column:span 2/span 2}.sm\:ds-grid__col-span-3{grid-column:span 3/span 3}.sm\:ds-grid__col-span-4{grid-column:span 4/span 4}.sm\:ds-grid__col-span-5{grid-column:span 5/span 5}.sm\:ds-grid__col-span-6{grid-column:span 6/span 6}.sm\:ds-grid__col-span-7{grid-column:span 7/span 7}.sm\:ds-grid__col-span-8{grid-column:span 8/span 8}.sm\:ds-grid__col-span-9{grid-column:span 9/span 9}.sm\:ds-grid__col-span-10{grid-column:span 10/span 10}.sm\:ds-grid__col-span-11{grid-column:span 11/span 11}.sm\:ds-grid__col-span-12{grid-column:span 12/span 12}}@media (min-width:768px){.md\:ds-grid__col-span-1{grid-column:span 1/span 1}.md\:ds-grid__col-span-2{grid-column:span 2/span 2}.md\:ds-grid__col-span-3{grid-column:span 3/span 3}.md\:ds-grid__col-span-4{grid-column:span 4/span 4}.md\:ds-grid__col-span-5{grid-column:span 5/span 5}.md\:ds-grid__col-span-6{grid-column:span 6/span 6}.md\:ds-grid__col-span-7{grid-column:span 7/span 7}.md\:ds-grid__col-span-8{grid-column:span 8/span 8}.md\:ds-grid__col-span-9{grid-column:span 9/span 9}.md\:ds-grid__col-span-10{grid-column:span 10/span 10}.md\:ds-grid__col-span-11{grid-column:span 11/span 11}.md\:ds-grid__col-span-12{grid-column:span 12/span 12}}@media (min-width:1024px){.lg\:ds-grid__col-span-1{grid-column:span 1/span 1}.lg\:ds-grid__col-span-2{grid-column:span 2/span 2}.lg\:ds-grid__col-span-3{grid-column:span 3/span 3}.lg\:ds-grid__col-span-4{grid-column:span 4/span 4}.lg\:ds-grid__col-span-5{grid-column:span 5/span 5}.lg\:ds-grid__col-span-6{grid-column:span 6/span 6}.lg\:ds-grid__col-span-7{grid-column:span 7/span 7}.lg\:ds-grid__col-span-8{grid-column:span 8/span 8}.lg\:ds-grid__col-span-9{grid-column:span 9/span 9}.lg\:ds-grid__col-span-10{grid-column:span 10/span 10}.lg\:ds-grid__col-span-11{grid-column:span 11/span 11}.lg\:ds-grid__col-span-12{grid-column:span 12/span 12}}.ds-m-0{margin:0!important}.ds-m-1{margin:.25rem!important}.ds-m-2{margin:.5rem!important}.ds-m-3{margin:.75rem!important}.ds-m-4{margin:1rem!important}.ds-m-5{margin:1.25rem!important}.ds-m-6{margin:1.5rem!important}.ds-m-7{margin:1.75rem!important}.ds-m-8{margin:2rem!important}.ds-m-9{margin:2.25rem!important}.ds-m-10{margin:2.5rem!important}.ds-m-11{margin:2.75rem!important}.ds-m-12{margin:3rem!important}.ds-m-14{margin:3.5rem!important}.ds-m-16{margin:4rem!important}.ds-m-20{margin:5rem!important}.ds-m-24{margin:6rem!important}.ds-m-28{margin:7rem!important}.ds-m-32{margin:8rem!important}.ds-m-36{margin:9rem!important}.ds-m-40{margin:10rem!important}.ds-m-44{margin:11rem!important}.ds-m-48{margin:12rem!important}.ds-m-52{margin:13rem!important}.ds-m-56{margin:14rem!important}.ds-m-60{margin:15rem!important}.ds-m-64{margin:16rem!important}.ds-m-72{margin:18rem!important}.ds-m-80{margin:20rem!important}.ds-m-96{margin:24rem!important}.ds-m-px{margin:1px!important}.ds-m-0\.5{margin:.125rem!important}.ds-m-1\.5{margin:.375rem!important}.ds-m-2\.5{margin:.625rem!important}.ds-m-3\.5{margin:.875rem!important}.ds-mt-0{margin-top:0!important}.ds-mt-1{margin-top:.25rem!important}.ds-mt-2{margin-top:.5rem!important}.ds-mt-3{margin-top:.75rem!important}.ds-mt-4{margin-top:1rem!important}.ds-mt-5{margin-top:1.25rem!important}.ds-mt-6{margin-top:1.5rem!important}.ds-mt-7{margin-top:1.75rem!important}.ds-mt-8{margin-top:2rem!important}.ds-mt-9{margin-top:2.25rem!important}.ds-mt-10{margin-top:2.5rem!important}.ds-mt-11{margin-top:2.75rem!important}.ds-mt-12{margin-top:3rem!important}.ds-mt-14{margin-top:3.5rem!important}.ds-mt-16{margin-top:4rem!important}.ds-mt-20{margin-top:5rem!important}.ds-mt-24{margin-top:6rem!important}.ds-mt-28{margin-top:7rem!important}.ds-mt-32{margin-top:8rem!important}.ds-mt-36{margin-top:9rem!important}.ds-mt-40{margin-top:10rem!important}.ds-mt-44{margin-top:11rem!important}.ds-mt-48{margin-top:12rem!important}.ds-mt-52{margin-top:13rem!important}.ds-mt-56{margin-top:14rem!important}.ds-mt-60{margin-top:15rem!important}.ds-mt-64{margin-top:16rem!important}.ds-mt-72{margin-top:18rem!important}.ds-mt-80{margin-top:20rem!important}.ds-mt-96{margin-top:24rem!important}.ds-mt-px{margin-top:1px!important}.ds-mx-0\.5{margin-left:.125rem!important;margin-right:.125rem!important}.ds-mx-1\.5{margin-left:.375rem!important;margin-right:.375rem!important}.ds-mx-2\.5{margin-left:.625rem!important;margin-right:.625rem!important}.ds-mx-3\.5{margin-left:.875rem!important;margin-right:.875rem!important}.ds-mt-0\.5{margin-top:.125rem!important}.ds-mt-1\.5{margin-top:.375rem!important}.ds-mt-2\.5{margin-top:.625rem!important}.ds-mt-3\.5{margin-top:.875rem!important}.ds-mr-0{margin-right:0!important}.ds-mr-1{margin-right:.25rem!important}.ds-mr-2{margin-right:.5rem!important}.ds-mr-3{margin-right:.75rem!important}.ds-mr-4{margin-right:1rem!important}.ds-mr-5{margin-right:1.25rem!important}.ds-mr-6{margin-right:1.5rem!important}.ds-mr-7{margin-right:1.75rem!important}.ds-mr-8{margin-right:2rem!important}.ds-mr-9{margin-right:2.25rem!important}.ds-mr-10{margin-right:2.5rem!important}.ds-mr-11{margin-right:2.75rem!important}.ds-mr-12{margin-right:3rem!important}.ds-mr-14{margin-right:3.5rem!important}.ds-mr-16{margin-right:4rem!important}.ds-mr-20{margin-right:5rem!important}.ds-mr-24{margin-right:6rem!important}.ds-mr-28{margin-right:7rem!important}.ds-mr-32{margin-right:8rem!important}.ds-mr-36{margin-right:9rem!important}.ds-mr-40{margin-right:10rem!important}.ds-mr-44{margin-right:11rem!important}.ds-mr-48{margin-right:12rem!important}.ds-mr-52{margin-right:13rem!important}.ds-mr-56{margin-right:14rem!important}.ds-mr-60{margin-right:15rem!important}.ds-mr-64{margin-right:16rem!important}.ds-mr-72{margin-right:18rem!important}.ds-mr-80{margin-right:20rem!important}.ds-mr-96{margin-right:24rem!important}.ds-mr-px{margin-right:1px!important}.ds-mr-0\.5{margin-right:.125rem!important}.ds-mr-1\.5{margin-right:.375rem!important}.ds-mr-2\.5{margin-right:.625rem!important}.ds-mr-3\.5{margin-right:.875rem!important}.ds-ml-0{margin-left:0!important}.ds-ml-1{margin-left:.25rem!important}.ds-ml-2{margin-left:.5rem!important}.ds-ml-3{margin-left:.75rem!important}.ds-ml-4{margin-left:1rem!important}.ds-ml-5{margin-left:1.25rem!important}.ds-ml-6{margin-left:1.5rem!important}.ds-ml-7{margin-left:1.75rem!important}.ds-ml-8{margin-left:2rem!important}.ds-ml-9{margin-left:2.25rem!important}.ds-ml-10{margin-left:2.5rem!important}.ds-ml-11{margin-left:2.75rem!important}.ds-ml-12{margin-left:3rem!important}.ds-ml-14{margin-left:3.5rem!important}.ds-ml-16{margin-left:4rem!important}.ds-ml-20{margin-left:5rem!important}.ds-ml-24{margin-left:6rem!important}.ds-ml-28{margin-left:7rem!important}.ds-ml-32{margin-left:8rem!important}.ds-ml-36{margin-left:9rem!important}.ds-ml-40{margin-left:10rem!important}.ds-ml-44{margin-left:11rem!important}.ds-ml-48{margin-left:12rem!important}.ds-ml-52{margin-left:13rem!important}.ds-ml-56{margin-left:14rem!important}.ds-ml-60{margin-left:15rem!important}.ds-ml-64{margin-left:16rem!important}.ds-ml-72{margin-left:18rem!important}.ds-ml-80{margin-left:20rem!important}.ds-ml-96{margin-left:24rem!important}.ds-ml-px{margin-left:1px!important}.ds-ml-0\.5{margin-left:.125rem!important}.ds-ml-1\.5{margin-left:.375rem!important}.ds-ml-2\.5{margin-left:.625rem!important}.ds-ml-3\.5{margin-left:.875rem!important}.ds-mb-0{margin-bottom:0!important}.ds-mb-1{margin-bottom:.25rem!important}.ds-mb-2{margin-bottom:.5rem!important}.ds-mb-3{margin-bottom:.75rem!important}.ds-mb-4{margin-bottom:1rem!important}.ds-mb-5{margin-bottom:1.25rem!important}.ds-mb-6{margin-bottom:1.5rem!important}.ds-mb-7{margin-bottom:1.75rem!important}.ds-mb-8{margin-bottom:2rem!important}.ds-mb-9{margin-bottom:2.25rem!important}.ds-mb-10{margin-bottom:2.5rem!important}.ds-mb-11{margin-bottom:2.75rem!important}.ds-mb-12{margin-bottom:3rem!important}.ds-mb-14{margin-bottom:3.5rem!important}.ds-mb-16{margin-bottom:4rem!important}.ds-mb-20{margin-bottom:5rem!important}.ds-mb-24{margin-bottom:6rem!important}.ds-mb-28{margin-bottom:7rem!important}.ds-mb-32{margin-bottom:8rem!important}.ds-mb-36{margin-bottom:9rem!important}.ds-mb-40{margin-bottom:10rem!important}.ds-mb-44{margin-bottom:11rem!important}.ds-mb-48{margin-bottom:12rem!important}.ds-mb-52{margin-bottom:13rem!important}.ds-mb-56{margin-bottom:14rem!important}.ds-mb-60{margin-bottom:15rem!important}.ds-mb-64{margin-bottom:16rem!important}.ds-mb-72{margin-bottom:18rem!important}.ds-mb-80{margin-bottom:20rem!important}.ds-mb-96{margin-bottom:24rem!important}.ds-mb-px{margin-bottom:1px!important}.ds-mb-0\.5{margin-bottom:.125rem!important}.ds-mb-1\.5{margin-bottom:.375rem!important}.ds-mb-2\.5{margin-bottom:.625rem!important}.ds-mb-3\.5{margin-bottom:.875rem!important}.ds-mx-0{margin-left:0!important;margin-right:0!important}.ds-mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.ds-mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.ds-mx-3{margin-left:.75rem!important;margin-right:.75rem!important}.ds-mx-4{margin-left:1rem!important;margin-right:1rem!important}.ds-mx-5{margin-left:1.25rem!important;margin-right:1.25rem!important}.ds-mx-6{margin-left:1.5rem!important;margin-right:1.5rem!important}.ds-mx-7{margin-left:1.75rem!important;margin-right:1.75rem!important}.ds-mx-8{margin-left:2rem!important;margin-right:2rem!important}.ds-mx-9{margin-left:2.25rem!important;margin-right:2.25rem!important}.ds-mx-10{margin-left:2.5rem!important;margin-right:2.5rem!important}.ds-mx-11{margin-left:2.75rem!important;margin-right:2.75rem!important}.ds-mx-12{margin-left:3rem!important;margin-right:3rem!important}.ds-mx-14{margin-left:3.5rem!important;margin-right:3.5rem!important}.ds-mx-16{margin-left:4rem!important;margin-right:4rem!important}.ds-mx-20{margin-left:5rem!important;margin-right:5rem!important}.ds-mx-24{margin-left:6rem!important;margin-right:6rem!important}.ds-mx-28{margin-left:7rem!important;margin-right:7rem!important}.ds-mx-32{margin-left:8rem!important;margin-right:8rem!important}.ds-mx-36{margin-left:9rem!important;margin-right:9rem!important}.ds-mx-40{margin-left:10rem!important;margin-right:10rem!important}.ds-mx-44{margin-left:11rem!important;margin-right:11rem!important}.ds-mx-48{margin-left:12rem!important;margin-right:12rem!important}.ds-mx-52{margin-left:13rem!important;margin-right:13rem!important}.ds-mx-56{margin-left:14rem!important;margin-right:14rem!important}.ds-mx-60{margin-left:15rem!important;margin-right:15rem!important}.ds-mx-64{margin-left:16rem!important;margin-right:16rem!important}.ds-mx-72{margin-left:18rem!important;margin-right:18rem!important}.ds-mx-80{margin-left:20rem!important;margin-right:20rem!important}.ds-mx-96{margin-left:24rem!important;margin-right:24rem!important}.ds-my-0{margin-top:0!important;margin-bottom:0!important}.ds-my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.ds-my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.ds-my-3{margin-top:.75rem!important;margin-bottom:.75rem!important}.ds-my-4{margin-top:1rem!important;margin-bottom:1rem!important}.ds-my-5{margin-top:1.25rem!important;margin-bottom:1.25rem!important}.ds-my-6{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.ds-my-7{margin-top:1.75rem!important;margin-bottom:1.75rem!important}.ds-my-8{margin-top:2rem!important;margin-bottom:2rem!important}.ds-my-9{margin-top:2.25rem!important;margin-bottom:2.25rem!important}.ds-my-10{margin-top:2.5rem!important;margin-bottom:2.5rem!important}.ds-my-11{margin-top:2.75rem!important;margin-bottom:2.75rem!important}.ds-my-12{margin-top:3rem!important;margin-bottom:3rem!important}.ds-my-14{margin-top:3.5rem!important;margin-bottom:3.5rem!important}.ds-my-16{margin-top:4rem!important;margin-bottom:4rem!important}.ds-my-20{margin-top:5rem!important;margin-bottom:5rem!important}.ds-my-24{margin-top:6rem!important;margin-bottom:6rem!important}.ds-my-28{margin-top:7rem!important;margin-bottom:7rem!important}.ds-my-32{margin-top:8rem!important;margin-bottom:8rem!important}.ds-my-36{margin-top:9rem!important;margin-bottom:9rem!important}.ds-my-40{margin-top:10rem!important;margin-bottom:10rem!important}.ds-my-44{margin-top:11rem!important;margin-bottom:11rem!important}.ds-my-48{margin-top:12rem!important;margin-bottom:12rem!important}.ds-my-52{margin-top:13rem!important;margin-bottom:13rem!important}.ds-my-56{margin-top:14rem!important;margin-bottom:14rem!important}.ds-my-60{margin-top:15rem!important;margin-bottom:15rem!important}.ds-my-64{margin-top:16rem!important;margin-bottom:16rem!important}.ds-my-72{margin-top:18rem!important;margin-bottom:18rem!important}.ds-my-80{margin-top:20rem!important;margin-bottom:20rem!important}.ds-my-96{margin-top:24rem!important;margin-bottom:24rem!important}.ds-my-0\.5{margin-top:.125rem!important;margin-bottom:.125rem!important}.ds-my-1\.5{margin-top:.375rem!important;margin-bottom:.375rem!important}.ds-my-2\.5{margin-top:.625rem!important;margin-bottom:.625rem!important}.ds-my-3\.5{margin-top:.875rem!important;margin-bottom:.875rem!important}.ds-p-0{padding:0!important}.ds-p-1{padding:.25rem!important}.ds-p-2{padding:.5rem!important}.ds-p-3{padding:.75rem!important}.ds-p-4{padding:1rem!important}.ds-p-5{padding:1.25rem!important}.ds-p-6{padding:1.5rem!important}.ds-p-7{padding:1.75rem!important}.ds-p-8{padding:2rem!important}.ds-p-9{padding:2.25rem!important}.ds-p-10{padding:2.5rem!important}.ds-p-11{padding:2.75rem!important}.ds-p-12{padding:3rem!important}.ds-p-14{padding:3.5rem!important}.ds-p-16{padding:4rem!important}.ds-p-20{padding:5rem!important}.ds-p-24{padding:6rem!important}.ds-p-28{padding:7rem!important}.ds-p-32{padding:8rem!important}.ds-p-36{padding:9rem!important}.ds-p-40{padding:10rem!important}.ds-p-44{padding:11rem!important}.ds-p-48{padding:12rem!important}.ds-p-52{padding:13rem!important}.ds-p-56{padding:14rem!important}.ds-p-60{padding:15rem!important}.ds-p-64{padding:16rem!important}.ds-p-72{padding:18rem!important}.ds-p-80{padding:20rem!important}.ds-p-96{padding:24rem!important}.ds-p-px{padding:1px!important}.ds-p-0\.5{padding:.125rem!important}.ds-p-1\.5{padding:.375rem!important}.ds-p-2\.5{padding:.625rem!important}.ds-p-3\.5{padding:.875rem!important}.ds-pt-0{padding-top:0!important}.ds-pt-1{padding-top:.25rem!important}.ds-pt-2{padding-top:.5rem!important}.ds-pt-3{padding-top:.75rem!important}.ds-pt-4{padding-top:1rem!important}.ds-pt-5{padding-top:1.25rem!important}.ds-pt-6{padding-top:1.5rem!important}.ds-pt-7{padding-top:1.75rem!important}.ds-pt-8{padding-top:2rem!important}.ds-pt-9{padding-top:2.25rem!important}.ds-pt-10{padding-top:2.5rem!important}.ds-pt-11{padding-top:2.75rem!important}.ds-pt-12{padding-top:3rem!important}.ds-pt-14{padding-top:3.5rem!important}.ds-pt-16{padding-top:4rem!important}.ds-pt-20{padding-top:5rem!important}.ds-pt-24{padding-top:6rem!important}.ds-pt-28{padding-top:7rem!important}.ds-pt-32{padding-top:8rem!important}.ds-pt-36{padding-top:9rem!important}.ds-pt-40{padding-top:10rem!important}.ds-pt-44{padding-top:11rem!important}.ds-pt-48{padding-top:12rem!important}.ds-pt-52{padding-top:13rem!important}.ds-pt-56{padding-top:14rem!important}.ds-pt-60{padding-top:15rem!important}.ds-pt-64{padding-top:16rem!important}.ds-pt-72{padding-top:18rem!important}.ds-pt-80{padding-top:20rem!important}.ds-pt-96{padding-top:24rem!important}.ds-pt-px{padding-top:1px!important}.ds-pt-0\.5{padding-top:.125rem!important}.ds-pt-1\.5{padding-top:.375rem!important}.ds-pt-2\.5{padding-top:.625rem!important}.ds-pt-3\.5{padding-top:.875rem!important}.ds-pr-0{padding-right:0!important}.ds-pr-1{padding-right:.25rem!important}.ds-pr-2{padding-right:.5rem!important}.ds-pr-3{padding-right:.75rem!important}.ds-pr-4{padding-right:1rem!important}.ds-pr-5{padding-right:1.25rem!important}.ds-pr-6{padding-right:1.5rem!important}.ds-pr-7{padding-right:1.75rem!important}.ds-pr-8{padding-right:2rem!important}.ds-pr-9{padding-right:2.25rem!important}.ds-pr-10{padding-right:2.5rem!important}.ds-pr-11{padding-right:2.75rem!important}.ds-pr-12{padding-right:3rem!important}.ds-pr-14{padding-right:3.5rem!important}.ds-pr-16{padding-right:4rem!important}.ds-pr-20{padding-right:5rem!important}.ds-pr-24{padding-right:6rem!important}.ds-pr-28{padding-right:7rem!important}.ds-pr-32{padding-right:8rem!important}.ds-pr-36{padding-right:9rem!important}.ds-pr-40{padding-right:10rem!important}.ds-pr-44{padding-right:11rem!important}.ds-pr-48{padding-right:12rem!important}.ds-pr-52{padding-right:13rem!important}.ds-pr-56{padding-right:14rem!important}.ds-pr-60{padding-right:15rem!important}.ds-pr-64{padding-right:16rem!important}.ds-pr-72{padding-right:18rem!important}.ds-pr-80{padding-right:20rem!important}.ds-pr-96{padding-right:24rem!important}.ds-pr-px{padding-right:1px!important}.ds-pr-0\.5{padding-right:.125rem!important}.ds-pr-1\.5{padding-right:.375rem!important}.ds-pr-2\.5{padding-right:.625rem!important}.ds-pr-3\.5{padding-right:.875rem!important}.ds-pl-0{padding-left:0!important}.ds-pl-1{padding-left:.25rem!important}.ds-pl-2{padding-left:.5rem!important}.ds-pl-3{padding-left:.75rem!important}.ds-pl-4{padding-left:1rem!important}.ds-pl-5{padding-left:1.25rem!important}.ds-pl-6{padding-left:1.5rem!important}.ds-pl-7{padding-left:1.75rem!important}.ds-pl-8{padding-left:2rem!important}.ds-pl-9{padding-left:2.25rem!important}.ds-pl-10{padding-left:2.5rem!important}.ds-pl-11{padding-left:2.75rem!important}.ds-pl-12{padding-left:3rem!important}.ds-pl-14{padding-left:3.5rem!important}.ds-pl-16{padding-left:4rem!important}.ds-pl-20{padding-left:5rem!important}.ds-pl-24{padding-left:6rem!important}.ds-pl-28{padding-left:7rem!important}.ds-pl-32{padding-left:8rem!important}.ds-pl-36{padding-left:9rem!important}.ds-pl-40{padding-left:10rem!important}.ds-pl-44{padding-left:11rem!important}.ds-pl-48{padding-left:12rem!important}.ds-pl-52{padding-left:13rem!important}.ds-pl-56{padding-left:14rem!important}.ds-pl-60{padding-left:15rem!important}.ds-pl-64{padding-left:16rem!important}.ds-pl-72{padding-left:18rem!important}.ds-pl-80{padding-left:20rem!important}.ds-pl-96{padding-left:24rem!important}.ds-pl-px{padding-left:1px!important}.ds-pl-0\.5{padding-left:.125rem!important}.ds-pl-1\.5{padding-left:.375rem!important}.ds-pl-2\.5{padding-left:.625rem!important}.ds-pl-3\.5{padding-left:.875rem!important}.ds-pb-0{padding-bottom:0!important}.ds-pb-1{padding-bottom:.25rem!important}.ds-pb-2{padding-bottom:.5rem!important}.ds-pb-3{padding-bottom:.75rem!important}.ds-pb-4{padding-bottom:1rem!important}.ds-pb-5{padding-bottom:1.25rem!important}.ds-pb-6{padding-bottom:1.5rem!important}.ds-pb-7{padding-bottom:1.75rem!important}.ds-pb-8{padding-bottom:2rem!important}.ds-pb-9{padding-bottom:2.25rem!important}.ds-pb-10{padding-bottom:2.5rem!important}.ds-pb-11{padding-bottom:2.75rem!important}.ds-pb-12{padding-bottom:3rem!important}.ds-pb-14{padding-bottom:3.5rem!important}.ds-pb-16{padding-bottom:4rem!important}.ds-pb-20{padding-bottom:5rem!important}.ds-pb-24{padding-bottom:6rem!important}.ds-pb-28{padding-bottom:7rem!important}.ds-pb-32{padding-bottom:8rem!important}.ds-pb-36{padding-bottom:9rem!important}.ds-pb-40{padding-bottom:10rem!important}.ds-pb-44{padding-bottom:11rem!important}.ds-pb-48{padding-bottom:12rem!important}.ds-pb-52{padding-bottom:13rem!important}.ds-pb-56{padding-bottom:14rem!important}.ds-pb-60{padding-bottom:15rem!important}.ds-pb-64{padding-bottom:16rem!important}.ds-pb-72{padding-bottom:18rem!important}.ds-pb-80{padding-bottom:20rem!important}.ds-pb-96{padding-bottom:24rem!important}.ds-pb-px{padding-bottom:1px!important}.ds-pb-0\.5{padding-bottom:.125rem!important}.ds-pb-1\.5{padding-bottom:.375rem!important}.ds-pb-2\.5{padding-bottom:.625rem!important}.ds-pb-3\.5{padding-bottom:.875rem!important}.ds-px-0{padding-left:0!important;padding-right:0!important}.ds-px-1{padding-left:.25rem!important;padding-right:.25rem!important}.ds-px-2{padding-left:.5rem!important;padding-right:.5rem!important}.ds-px-3{padding-left:.75rem!important;padding-right:.75rem!important}.ds-px-4{padding-left:1rem!important;padding-right:1rem!important}.ds-px-5{padding-left:1.25rem!important;padding-right:1.25rem!important}.ds-px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.ds-px-7{padding-left:1.75rem!important;padding-right:1.75rem!important}.ds-px-8{padding-left:2rem!important;padding-right:2rem!important}.ds-px-9{padding-left:2.25rem!important;padding-right:2.25rem!important}.ds-px-10{padding-left:2.5rem!important;padding-right:2.5rem!important}.ds-px-11{padding-left:2.75rem!important;padding-right:2.75rem!important}.ds-px-12{padding-left:3rem!important;padding-right:3rem!important}.ds-px-14{padding-left:3.5rem!important;padding-right:3.5rem!important}.ds-px-16{padding-left:4rem!important;padding-right:4rem!important}.ds-px-20{padding-left:5rem!important;padding-right:5rem!important}.ds-px-24{padding-left:6rem!important;padding-right:6rem!important}.ds-px-28{padding-left:7rem!important;padding-right:7rem!important}.ds-px-32{padding-left:8rem!important;padding-right:8rem!important}.ds-px-36{padding-left:9rem!important;padding-right:9rem!important}.ds-px-40{padding-left:10rem!important;padding-right:10rem!important}.ds-px-44{padding-left:11rem!important;padding-right:11rem!important}.ds-px-48{padding-left:12rem!important;padding-right:12rem!important}.ds-px-52{padding-left:13rem!important;padding-right:13rem!important}.ds-px-56{padding-left:14rem!important;padding-right:14rem!important}.ds-px-60{padding-left:15rem!important;padding-right:15rem!important}.ds-px-64{padding-left:16rem!important;padding-right:16rem!important}.ds-px-72{padding-left:18rem!important;padding-right:18rem!important}.ds-px-80{padding-left:20rem!important;padding-right:20rem!important}.ds-px-96{padding-left:24rem!important;padding-right:24rem!important}.ds-px-0\.5{padding-left:.125rem!important;padding-right:.125rem!important}.ds-px-1\.5{padding-left:.375rem!important;padding-right:.375rem!important}.ds-px-2\.5{padding-left:.625rem!important;padding-right:.625rem!important}.ds-px-3\.5{padding-left:.875rem!important;padding-right:.875rem!important}.ds-py-0{padding-top:0!important;padding-bottom:0!important}.ds-py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.ds-py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.ds-py-3{padding-top:.75rem!important;padding-bottom:.75rem!important}.ds-py-4{padding-top:1rem!important;padding-bottom:1rem!important}.ds-py-5{padding-top:1.25rem!important;padding-bottom:1.25rem!important}.ds-py-6{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.ds-py-7{padding-top:1.75rem!important;padding-bottom:1.75rem!important}.ds-py-8{padding-top:2rem!important;padding-bottom:2rem!important}.ds-py-9{padding-top:2.25rem!important;padding-bottom:2.25rem!important}.ds-py-10{padding-top:2.5rem!important;padding-bottom:2.5rem!important}.ds-py-11{padding-top:2.75rem!important;padding-bottom:2.75rem!important}.ds-py-12{padding-top:3rem!important;padding-bottom:3rem!important}.ds-py-14{padding-top:3.5rem!important;padding-bottom:3.5rem!important}.ds-py-16{padding-top:4rem!important;padding-bottom:4rem!important}.ds-py-20{padding-top:5rem!important;padding-bottom:5rem!important}.ds-py-24{padding-top:6rem!important;padding-bottom:6rem!important}.ds-py-28{padding-top:7rem!important;padding-bottom:7rem!important}.ds-py-32{padding-top:8rem!important;padding-bottom:8rem!important}.ds-py-36{padding-top:9rem!important;padding-bottom:9rem!important}.ds-py-40{padding-top:10rem!important;padding-bottom:10rem!important}.ds-py-44{padding-top:11rem!important;padding-bottom:11rem!important}.ds-py-48{padding-top:12rem!important;padding-bottom:12rem!important}.ds-py-52{padding-top:13rem!important;padding-bottom:13rem!important}.ds-py-56{padding-top:14rem!important;padding-bottom:14rem!important}.ds-py-60{padding-top:15rem!important;padding-bottom:15rem!important}.ds-py-64{padding-top:16rem!important;padding-bottom:16rem!important}.ds-py-72{padding-top:18rem!important;padding-bottom:18rem!important}.ds-py-80{padding-top:20rem!important;padding-bottom:20rem!important}.ds-py-96{padding-top:24rem!important;padding-bottom:24rem!important}.ds-py-0\.5{padding-top:.125rem!important;padding-bottom:.125rem!important}.ds-py-1\.5{padding-top:.375rem!important;padding-bottom:.375rem!important}.ds-py-2\.5{padding-top:.625rem!important;padding-bottom:.625rem!important}.ds-py-3\.5{padding-top:.875rem!important;padding-bottom:.875rem!important}.ds-gap-1{gap:.25rem}.ds-gap-2{gap:.5rem}.ds-gap-4{gap:1rem}.ds-gap-6{gap:1.5rem}.ds-gap-8{gap:2rem}.ds-gap-10{gap:2.5rem}.ds-gap-12{gap:3rem}.ds-gap-xs-1{gap:.25rem}.ds-gap-xs-2{gap:.5rem}.ds-gap-xs-4{gap:1rem}.ds-gap-xs-5{gap:1.25rem}.ds-gap-xs-6{gap:1.5rem}.ds-gap-xs-8{gap:2rem}.ds-gap-xs-10{gap:2.5rem}.ds-gap-xs-12{gap:3rem}@media (min-width:640px){.ds-gap-sm-1{gap:.25rem}.ds-gap-sm-2{gap:.5rem}.ds-gap-sm-4{gap:1rem}.ds-gap-sm-5{gap:1.25rem}.ds-gap-sm-6{gap:1.5rem}.ds-gap-sm-8{gap:2rem}.ds-gap-sm-10{gap:2.5rem}.ds-gap-sm-12{gap:3rem}}@media (min-width:768px){.ds-gap-md-1{gap:.25rem}.ds-gap-md-2{gap:.5rem}.ds-gap-md-4{gap:1rem}.ds-gap-md-5{gap:1.25rem}.ds-gap-md-6{gap:1.5rem}.ds-gap-md-8{gap:2rem}.ds-gap-md-10{gap:2.5rem}.ds-gap-md-12{gap:3rem}}@media (min-width:1024px){.ds-gap-lg-1{gap:.25rem}.ds-gap-lg-2{gap:.5rem}.ds-gap-lg-4{gap:1rem}.ds-gap-lg-5{gap:1.25rem}.ds-gap-lg-6{gap:1.5rem}.ds-gap-lg-8{gap:2rem}.ds-gap-lg-10{gap:2.5rem}.ds-gap-lg-12{gap:3rem}}@media (min-width:1280px){.ds-gap-xl-1{gap:.25rem}.ds-gap-xl-2{gap:.5rem}.ds-gap-xl-4{gap:1rem}.ds-gap-xl-5{gap:1.25rem}.ds-gap-xl-6{gap:1.5rem}.ds-gap-xl-8{gap:2rem}.ds-gap-xl-10{gap:2.5rem}.ds-gap-xl-12{gap:3rem}}@media print{.ds-print-hidden{display:none!important}.ds-print-visible-block{display:block!important}.ds-print-visible-inline{display:inline!important}}
package/dist/utilities.js CHANGED
@@ -1 +1 @@
1
- module.exports = {".govgr-m-0":{"margin":"0 !important"},".govgr-m-1":{"margin":".25rem !important"},".govgr-m-2":{"margin":".5rem !important"},".govgr-m-3":{"margin":".5rem !important"},"@media (min-width:768px)":[{".govgr-m-3":{"margin":".75rem !important"}},{".govgr-m-4":{"margin":"1rem !important"}},{".govgr-m-5":{"margin":"1.25rem !important"}},{".govgr-m-6":{"margin":"1.5rem !important"}},{".govgr-m-7":{"margin":"2rem !important"}},{".govgr-m-8":{"margin":"2.5rem !important"}},{".govgr-m-9":{"margin":"3rem !important"}},{".govgr-m-10":{"margin":"3.5rem !important"}},{".govgr-m-11":{"margin":"4rem !important"}},{".govgr-m-12":{"margin":"5rem !important"}},{".govgr-mt-3":{"marginTop":".75rem !important"}},{".govgr-mt-4":{"marginTop":"1rem !important"}},{".govgr-mt-5":{"marginTop":"1.25rem !important"}},{".govgr-mt-6":{"marginTop":"1.5rem !important"}},{".govgr-mt-7":{"marginTop":"2rem !important"}},{".govgr-mt-8":{"marginTop":"2.5rem !important"}},{".govgr-mt-9":{"marginTop":"3rem !important"}},{".govgr-mt-10":{"marginTop":"3.5rem !important"}},{".govgr-mt-11":{"marginTop":"4rem !important"}},{".govgr-mt-12":{"marginTop":"5rem !important"}},{".govgr-mb-3":{"marginBottom":".75rem !important"}},{".govgr-mb-4":{"marginBottom":"1rem !important"}},{".govgr-mb-5":{"marginBottom":"1.25rem !important"}},{".govgr-mb-6":{"marginBottom":"1.5rem !important"}},{".govgr-mb-7":{"marginBottom":"2rem !important"}},{".govgr-mb-8":{"marginBottom":"2.5rem !important"}},{".govgr-mb-9":{"marginBottom":"3rem !important"}},{".govgr-mb-10":{"marginBottom":"3.5rem !important"}},{".govgr-mb-11":{"marginBottom":"4rem !important"}},{".govgr-mb-12":{"marginBottom":"5rem !important"}},{".govgr-ml-3":{"marginLeft":".75rem !important"}},{".govgr-ml-4":{"marginLeft":"1rem !important"}},{".govgr-ml-5":{"marginLeft":"1.25rem !important"}},{".govgr-ml-6":{"marginLeft":"1.5rem !important"}},{".govgr-ml-7":{"marginLeft":"2rem !important"}},{".govgr-ml-8":{"marginLeft":"2.5rem !important"}},{".govgr-ml-9":{"marginLeft":"3rem !important"}},{".govgr-ml-10":{"marginLeft":"3.5rem !important"}},{".govgr-ml-11":{"marginLeft":"4rem !important"}},{".govgr-ml-12":{"marginLeft":"5rem !important"}},{".govgr-mr-3":{"marginRight":".75rem !important"}},{".govgr-mr-4":{"marginRight":"1rem !important"}},{".govgr-mr-5":{"marginRight":"1.25rem !important"}},{".govgr-mr-6":{"marginRight":"1.5rem !important"}},{".govgr-mr-7":{"marginRight":"2rem !important"}},{".govgr-mr-8":{"marginRight":"2.5rem !important"}},{".govgr-mr-9":{"marginRight":"3rem !important"}},{".govgr-mr-10":{"marginRight":"3.5rem !important"}},{".govgr-mr-11":{"marginRight":"4rem !important"}},{".govgr-mr-12":{"marginRight":"5rem !important"}},{".govgr-p-3":{"padding":".75rem !important"}},{".govgr-p-4":{"padding":"1rem !important"}},{".govgr-p-5":{"padding":"1.25rem !important"}},{".govgr-p-6":{"padding":"1.5rem !important"}},{".govgr-p-7":{"padding":"2rem !important"}},{".govgr-p-8":{"padding":"2.5rem !important"}},{".govgr-p-9":{"padding":"3rem !important"}},{".govgr-p-10":{"padding":"3.5rem !important"}},{".govgr-p-11":{"padding":"4rem !important"}},{".govgr-p-12":{"padding":"5rem !important"}},{".govgr-pt-3":{"paddingTop":".75rem !important"}},{".govgr-pt-4":{"paddingTop":"1rem !important"}},{".govgr-pt-5":{"paddingTop":"1.25rem !important"}},{".govgr-pt-6":{"paddingTop":"1.5rem !important"}},{".govgr-pt-7":{"paddingTop":"2rem !important"}},{".govgr-pt-8":{"paddingTop":"2.5rem !important"}},{".govgr-pt-9":{"paddingTop":"3rem !important"}},{".govgr-pt-10":{"paddingTop":"3.5rem !important"}},{".govgr-pt-11":{"paddingTop":"4rem !important"}},{".govgr-pt-12":{"paddingTop":"5rem !important"}},{".govgr-pb-3":{"paddingBottom":".75rem !important"}},{".govgr-pb-4":{"paddingBottom":"1rem !important"}},{".govgr-pb-5":{"paddingBottom":"1.25rem !important"}},{".govgr-pb-6":{"paddingBottom":"1.5rem !important"}},{".govgr-pb-7":{"paddingBottom":"2rem !important"}},{".govgr-pb-8":{"paddingBottom":"2.5rem !important"}},{".govgr-pb-9":{"paddingBottom":"3rem !important"}},{".govgr-pb-10":{"paddingBottom":"3.5rem !important"}},{".govgr-pb-11":{"paddingBottom":"4rem !important"}},{".govgr-pb-12":{"paddingBottom":"5rem !important"}},{".govgr-pl-3":{"paddingLeft":".75rem !important"}},{".govgr-pl-4":{"paddingLeft":"1rem !important"}},{".govgr-pl-5":{"paddingLeft":"1.25rem !important"}},{".govgr-pl-6":{"paddingLeft":"1.5rem !important"}},{".govgr-pl-7":{"paddingLeft":"2rem !important"}},{".govgr-pl-8":{"paddingLeft":"2.5rem !important"}},{".govgr-pl-9":{"paddingLeft":"3rem !important"}},{".govgr-pl-10":{"paddingLeft":"3.5rem !important"}},{".govgr-pl-11":{"paddingLeft":"4rem !important"}},{".govgr-pl-12":{"paddingLeft":"5rem !important"}},{".govgr-pr-3":{"paddingRight":".75rem !important"}},{".govgr-pr-4":{"paddingRight":"1rem !important"}},{".govgr-pr-5":{"paddingRight":"1.25rem !important"}},{".govgr-pr-6":{"paddingRight":"1.5rem !important"}},{".govgr-pr-7":{"paddingRight":"2rem !important"}},{".govgr-pr-8":{"paddingRight":"2.5rem !important"}},{".govgr-pr-9":{"paddingRight":"3rem !important"}},{".govgr-pr-10":{"paddingRight":"3.5rem !important"}},{".govgr-pr-11":{"paddingRight":"4rem !important"}},{".govgr-pr-12":{"paddingRight":"5rem !important"}},{".govgr-gap-md-1":{"gap":".25rem"},".govgr-gap-md-2":{"gap":".5rem"},".govgr-gap-md-4":{"gap":"1rem"},".govgr-gap-md-5":{"gap":"1.25rem"},".govgr-gap-md-6":{"gap":"1.5rem"},".govgr-gap-md-8":{"gap":"2rem"},".govgr-gap-md-10":{"gap":"2.5rem"},".govgr-gap-md-12":{"gap":"3rem"}}],".govgr-m-4":{"margin":".75rem !important"},".govgr-m-5":{"margin":"1rem !important"},".govgr-m-6":{"margin":"1.25rem !important"},".govgr-m-7":{"margin":"1.5rem !important"},".govgr-m-8":{"margin":"2rem !important"},".govgr-m-9":{"margin":"2rem !important"},".govgr-m-10":{"margin":"2.25rem !important"},".govgr-m-11":{"margin":"2.5rem !important"},".govgr-m-12":{"margin":"2.75rem !important"},".govgr-mt-0":{"marginTop":"0 !important"},".govgr-mt-1":{"marginTop":".25rem !important"},".govgr-mt-2":{"marginTop":".5rem !important"},".govgr-mt-3":{"marginTop":".5rem !important"},".govgr-mt-4":{"marginTop":".75rem !important"},".govgr-mt-5":{"marginTop":"1rem !important"},".govgr-mt-6":{"marginTop":"1.25rem !important"},".govgr-mt-7":{"marginTop":"1.5rem !important"},".govgr-mt-8":{"marginTop":"2rem !important"},".govgr-mt-9":{"marginTop":"2rem !important"},".govgr-mt-10":{"marginTop":"2.25rem !important"},".govgr-mt-11":{"marginTop":"2.5rem !important"},".govgr-mt-12":{"marginTop":"2.75rem !important"},".govgr-mb-0":{"marginBottom":"0 !important"},".govgr-mb-1":{"marginBottom":".25rem !important"},".govgr-mb-2":{"marginBottom":".5rem !important"},".govgr-mb-3":{"marginBottom":".5rem !important"},".govgr-mb-4":{"marginBottom":".75rem !important"},".govgr-mb-5":{"marginBottom":"1rem !important"},".govgr-mb-6":{"marginBottom":"1.25rem !important"},".govgr-mb-7":{"marginBottom":"1.5rem !important"},".govgr-mb-8":{"marginBottom":"2rem !important"},".govgr-mb-9":{"marginBottom":"2rem !important"},".govgr-mb-10":{"marginBottom":"2.25rem !important"},".govgr-mb-11":{"marginBottom":"2.5rem !important"},".govgr-mb-12":{"marginBottom":"2.75rem !important"},".govgr-ml-0":{"marginLeft":"0 !important"},".govgr-ml-1":{"marginLeft":".25rem !important"},".govgr-ml-2":{"marginLeft":".5rem !important"},".govgr-ml-3":{"marginLeft":".5rem !important"},".govgr-ml-4":{"marginLeft":".75rem !important"},".govgr-ml-5":{"marginLeft":"1rem !important"},".govgr-ml-6":{"marginLeft":"1.25rem !important"},".govgr-ml-7":{"marginLeft":"1.5rem !important"},".govgr-ml-8":{"marginLeft":"2rem !important"},".govgr-ml-9":{"marginLeft":"2rem !important"},".govgr-ml-10":{"marginLeft":"2.25rem !important"},".govgr-ml-11":{"marginLeft":"2.5rem !important"},".govgr-ml-12":{"marginLeft":"2.75rem !important"},".govgr-mr-0":{"marginRight":"0 !important"},".govgr-mr-1":{"marginRight":".25rem !important"},".govgr-mr-2":{"marginRight":".5rem !important"},".govgr-mr-3":{"marginRight":".5rem !important"},".govgr-mr-4":{"marginRight":".75rem !important"},".govgr-mr-5":{"marginRight":"1rem !important"},".govgr-mr-6":{"marginRight":"1.25rem !important"},".govgr-mr-7":{"marginRight":"1.5rem !important"},".govgr-mr-8":{"marginRight":"2rem !important"},".govgr-mr-9":{"marginRight":"2rem !important"},".govgr-mr-10":{"marginRight":"2.25rem !important"},".govgr-mr-11":{"marginRight":"2.5rem !important"},".govgr-mr-12":{"marginRight":"2.75rem !important"},".govgr-p-0":{"padding":"0 !important"},".govgr-p-1":{"padding":".25rem !important"},".govgr-p-2":{"padding":".5rem !important"},".govgr-p-3":{"padding":".5rem !important"},".govgr-p-4":{"padding":".75rem !important"},".govgr-p-5":{"padding":"1rem !important"},".govgr-p-6":{"padding":"1.25rem !important"},".govgr-p-7":{"padding":"1.5rem !important"},".govgr-p-8":{"padding":"2rem !important"},".govgr-p-9":{"padding":"2rem !important"},".govgr-p-10":{"padding":"2.25rem !important"},".govgr-p-11":{"padding":"2.5rem !important"},".govgr-p-12":{"padding":"2.75rem !important"},".govgr-pt-0":{"paddingTop":"0 !important"},".govgr-pt-1":{"paddingTop":".25rem !important"},".govgr-pt-2":{"paddingTop":".5rem !important"},".govgr-pt-3":{"paddingTop":".5rem !important"},".govgr-pt-4":{"paddingTop":".75rem !important"},".govgr-pt-5":{"paddingTop":"1rem !important"},".govgr-pt-6":{"paddingTop":"1.25rem !important"},".govgr-pt-7":{"paddingTop":"1.5rem !important"},".govgr-pt-8":{"paddingTop":"2rem !important"},".govgr-pt-9":{"paddingTop":"2rem !important"},".govgr-pt-10":{"paddingTop":"2.25rem !important"},".govgr-pt-11":{"paddingTop":"2.5rem !important"},".govgr-pt-12":{"paddingTop":"2.75rem !important"},".govgr-pb-0":{"paddingBottom":"0 !important"},".govgr-pb-1":{"paddingBottom":".25rem !important"},".govgr-pb-2":{"paddingBottom":".5rem !important"},".govgr-pb-3":{"paddingBottom":".5rem !important"},".govgr-pb-4":{"paddingBottom":".75rem !important"},".govgr-pb-5":{"paddingBottom":"1rem !important"},".govgr-pb-6":{"paddingBottom":"1.25rem !important"},".govgr-pb-7":{"paddingBottom":"1.5rem !important"},".govgr-pb-8":{"paddingBottom":"2rem !important"},".govgr-pb-9":{"paddingBottom":"2rem !important"},".govgr-pb-10":{"paddingBottom":"2.25rem !important"},".govgr-pb-11":{"paddingBottom":"2.5rem !important"},".govgr-pb-12":{"paddingBottom":"2.75rem !important"},".govgr-pl-0":{"paddingLeft":"0 !important"},".govgr-pl-1":{"paddingLeft":".25rem !important"},".govgr-pl-2":{"paddingLeft":".5rem !important"},".govgr-pl-3":{"paddingLeft":".5rem !important"},".govgr-pl-4":{"paddingLeft":".75rem !important"},".govgr-pl-5":{"paddingLeft":"1rem !important"},".govgr-pl-6":{"paddingLeft":"1.25rem !important"},".govgr-pl-7":{"paddingLeft":"1.5rem !important"},".govgr-pl-8":{"paddingLeft":"2rem !important"},".govgr-pl-9":{"paddingLeft":"2rem !important"},".govgr-pl-10":{"paddingLeft":"2.25rem !important"},".govgr-pl-11":{"paddingLeft":"2.5rem !important"},".govgr-pl-12":{"paddingLeft":"2.75rem !important"},".govgr-pr-0":{"paddingRight":"0 !important"},".govgr-pr-1":{"paddingRight":".25rem !important"},".govgr-pr-2":{"paddingRight":".5rem !important"},".govgr-pr-3":{"paddingRight":".5rem !important"},".govgr-pr-4":{"paddingRight":".75rem !important"},".govgr-pr-5":{"paddingRight":"1rem !important"},".govgr-pr-6":{"paddingRight":"1.25rem !important"},".govgr-pr-7":{"paddingRight":"1.5rem !important"},".govgr-pr-8":{"paddingRight":"2rem !important"},".govgr-pr-9":{"paddingRight":"2rem !important"},".govgr-pr-10":{"paddingRight":"2.25rem !important"},".govgr-pr-11":{"paddingRight":"2.5rem !important"},".govgr-pr-12":{"paddingRight":"2.75rem !important"},".govgr-grid":{"display":"grid","gridTemplateColumns":"repeat(12,minmax(0,1fr))"},".govgr-grid-inline":{"display":"inline-grid"},".govgr-grid__col-auto":{"gridColumn":"auto"},".govgr-grid__col-span-1":{"gridColumn":"span 1/span 1"},".govgr-grid__col-span-2":{"gridColumn":"span 2/span 2"},".govgr-grid__col-span-3":{"gridColumn":"span 3/span 3"},".govgr-grid__col-span-4":{"gridColumn":"span 4/span 4"},".govgr-grid__col-span-5":{"gridColumn":"span 5/span 5"},".govgr-grid__col-span-6":{"gridColumn":"span 6/span 6"},".govgr-grid__col-span-7":{"gridColumn":"span 7/span 7"},".govgr-grid__col-span-8":{"gridColumn":"span 8/span 8"},".govgr-grid__col-span-9":{"gridColumn":"span 9/span 9"},".govgr-grid__col-span-10":{"gridColumn":"span 10/span 10"},".govgr-grid__col-span-11":{"gridColumn":"span 11/span 11"},".govgr-grid__col-span-12":{"gridColumn":"span 12/span 12"},"@media print":{".govgr-print-hidden":{"display":"none !important"},".govgr-print-visible-block":{"display":"block !important"},".govgr-print-visible-inline":{"display":"inline !important"}},".govgr-gap-1":{"gap":".25rem"},".govgr-gap-2":{"gap":".5rem"},".govgr-gap-4":{"gap":"1rem"},".govgr-gap-6":{"gap":"1.5rem"},".govgr-gap-8":{"gap":"2rem"},".govgr-gap-10":{"gap":"2.5rem"},".govgr-gap-12":{"gap":"3rem"},".govgr-gap-xs-1":{"gap":".25rem"},".govgr-gap-xs-2":{"gap":".5rem"},".govgr-gap-xs-4":{"gap":"1rem"},".govgr-gap-xs-5":{"gap":"1.25rem"},".govgr-gap-xs-6":{"gap":"1.5rem"},".govgr-gap-xs-8":{"gap":"2rem"},".govgr-gap-xs-10":{"gap":"2.5rem"},".govgr-gap-xs-12":{"gap":"3rem"},"@media (min-width:640px)":{".govgr-gap-sm-1":{"gap":".25rem"},".govgr-gap-sm-2":{"gap":".5rem"},".govgr-gap-sm-4":{"gap":"1rem"},".govgr-gap-sm-5":{"gap":"1.25rem"},".govgr-gap-sm-6":{"gap":"1.5rem"},".govgr-gap-sm-8":{"gap":"2rem"},".govgr-gap-sm-10":{"gap":"2.5rem"},".govgr-gap-sm-12":{"gap":"3rem"}},"@media (min-width:1024px)":{".govgr-gap-lg-1":{"gap":".25rem"},".govgr-gap-lg-2":{"gap":".5rem"},".govgr-gap-lg-4":{"gap":"1rem"},".govgr-gap-lg-5":{"gap":"1.25rem"},".govgr-gap-lg-6":{"gap":"1.5rem"},".govgr-gap-lg-8":{"gap":"2rem"},".govgr-gap-lg-10":{"gap":"2.5rem"},".govgr-gap-lg-12":{"gap":"3rem"}},"@media (min-width:1280px)":{".govgr-gap-xl-1":{"gap":".25rem"},".govgr-gap-xl-2":{"gap":".5rem"},".govgr-gap-xl-4":{"gap":"1rem"},".govgr-gap-xl-5":{"gap":"1.25rem"},".govgr-gap-xl-6":{"gap":"1.5rem"},".govgr-gap-xl-8":{"gap":"2rem"},".govgr-gap-xl-10":{"gap":"2.5rem"},".govgr-gap-xl-12":{"gap":"3rem"}}}
1
+ module.exports = {".ds-grid":{"display":"grid","gridTemplateColumns":"repeat(12,minmax(0,1fr))"},".ds-grid-inline":{"display":"inline-grid"},".ds-grid__col-auto":{"gridColumn":"auto"},".ds-grid__col-span-1,.xs\\:ds-grid__col-span-1":{"gridColumn":"span 1/span 1"},".ds-grid__col-span-2,.xs\\:ds-grid__col-span-2":{"gridColumn":"span 2/span 2"},".ds-grid__col-span-3,.xs\\:ds-grid__col-span-3":{"gridColumn":"span 3/span 3"},".ds-grid__col-span-4,.xs\\:ds-grid__col-span-4":{"gridColumn":"span 4/span 4"},".ds-grid__col-span-5,.xs\\:ds-grid__col-span-5":{"gridColumn":"span 5/span 5"},".ds-grid__col-span-6,.xs\\:ds-grid__col-span-6":{"gridColumn":"span 6/span 6"},".ds-grid__col-span-7,.xs\\:ds-grid__col-span-7":{"gridColumn":"span 7/span 7"},".ds-grid__col-span-8,.xs\\:ds-grid__col-span-8":{"gridColumn":"span 8/span 8"},".ds-grid__col-span-9,.xs\\:ds-grid__col-span-9":{"gridColumn":"span 9/span 9"},".ds-grid__col-span-10,.xs\\:ds-grid__col-span-10":{"gridColumn":"span 10/span 10"},".ds-grid__col-span-11,.xs\\:ds-grid__col-span-11":{"gridColumn":"span 11/span 11"},".ds-grid__col-span-12,.xs\\:ds-grid__col-span-12":{"gridColumn":"span 12/span 12"},"@media (min-width:640px)":[{".sm\\:ds-grid__col-span-1":{"gridColumn":"span 1/span 1"},".sm\\:ds-grid__col-span-2":{"gridColumn":"span 2/span 2"},".sm\\:ds-grid__col-span-3":{"gridColumn":"span 3/span 3"},".sm\\:ds-grid__col-span-4":{"gridColumn":"span 4/span 4"},".sm\\:ds-grid__col-span-5":{"gridColumn":"span 5/span 5"},".sm\\:ds-grid__col-span-6":{"gridColumn":"span 6/span 6"},".sm\\:ds-grid__col-span-7":{"gridColumn":"span 7/span 7"},".sm\\:ds-grid__col-span-8":{"gridColumn":"span 8/span 8"},".sm\\:ds-grid__col-span-9":{"gridColumn":"span 9/span 9"},".sm\\:ds-grid__col-span-10":{"gridColumn":"span 10/span 10"},".sm\\:ds-grid__col-span-11":{"gridColumn":"span 11/span 11"},".sm\\:ds-grid__col-span-12":{"gridColumn":"span 12/span 12"}},{".ds-gap-sm-1":{"gap":".25rem"},".ds-gap-sm-2":{"gap":".5rem"},".ds-gap-sm-4":{"gap":"1rem"},".ds-gap-sm-5":{"gap":"1.25rem"},".ds-gap-sm-6":{"gap":"1.5rem"},".ds-gap-sm-8":{"gap":"2rem"},".ds-gap-sm-10":{"gap":"2.5rem"},".ds-gap-sm-12":{"gap":"3rem"}}],"@media (min-width:768px)":[{".md\\:ds-grid__col-span-1":{"gridColumn":"span 1/span 1"},".md\\:ds-grid__col-span-2":{"gridColumn":"span 2/span 2"},".md\\:ds-grid__col-span-3":{"gridColumn":"span 3/span 3"},".md\\:ds-grid__col-span-4":{"gridColumn":"span 4/span 4"},".md\\:ds-grid__col-span-5":{"gridColumn":"span 5/span 5"},".md\\:ds-grid__col-span-6":{"gridColumn":"span 6/span 6"},".md\\:ds-grid__col-span-7":{"gridColumn":"span 7/span 7"},".md\\:ds-grid__col-span-8":{"gridColumn":"span 8/span 8"},".md\\:ds-grid__col-span-9":{"gridColumn":"span 9/span 9"},".md\\:ds-grid__col-span-10":{"gridColumn":"span 10/span 10"},".md\\:ds-grid__col-span-11":{"gridColumn":"span 11/span 11"},".md\\:ds-grid__col-span-12":{"gridColumn":"span 12/span 12"}},{".ds-gap-md-1":{"gap":".25rem"},".ds-gap-md-2":{"gap":".5rem"},".ds-gap-md-4":{"gap":"1rem"},".ds-gap-md-5":{"gap":"1.25rem"},".ds-gap-md-6":{"gap":"1.5rem"},".ds-gap-md-8":{"gap":"2rem"},".ds-gap-md-10":{"gap":"2.5rem"},".ds-gap-md-12":{"gap":"3rem"}}],"@media (min-width:1024px)":[{".lg\\:ds-grid__col-span-1":{"gridColumn":"span 1/span 1"},".lg\\:ds-grid__col-span-2":{"gridColumn":"span 2/span 2"},".lg\\:ds-grid__col-span-3":{"gridColumn":"span 3/span 3"},".lg\\:ds-grid__col-span-4":{"gridColumn":"span 4/span 4"},".lg\\:ds-grid__col-span-5":{"gridColumn":"span 5/span 5"},".lg\\:ds-grid__col-span-6":{"gridColumn":"span 6/span 6"},".lg\\:ds-grid__col-span-7":{"gridColumn":"span 7/span 7"},".lg\\:ds-grid__col-span-8":{"gridColumn":"span 8/span 8"},".lg\\:ds-grid__col-span-9":{"gridColumn":"span 9/span 9"},".lg\\:ds-grid__col-span-10":{"gridColumn":"span 10/span 10"},".lg\\:ds-grid__col-span-11":{"gridColumn":"span 11/span 11"},".lg\\:ds-grid__col-span-12":{"gridColumn":"span 12/span 12"}},{".ds-gap-lg-1":{"gap":".25rem"},".ds-gap-lg-2":{"gap":".5rem"},".ds-gap-lg-4":{"gap":"1rem"},".ds-gap-lg-5":{"gap":"1.25rem"},".ds-gap-lg-6":{"gap":"1.5rem"},".ds-gap-lg-8":{"gap":"2rem"},".ds-gap-lg-10":{"gap":"2.5rem"},".ds-gap-lg-12":{"gap":"3rem"}}],".ds-m-0":{"margin":"0 !important"},".ds-m-1":{"margin":".25rem !important"},".ds-m-2":{"margin":".5rem !important"},".ds-m-3":{"margin":".75rem !important"},".ds-m-4":{"margin":"1rem !important"},".ds-m-5":{"margin":"1.25rem !important"},".ds-m-6":{"margin":"1.5rem !important"},".ds-m-7":{"margin":"1.75rem !important"},".ds-m-8":{"margin":"2rem !important"},".ds-m-9":{"margin":"2.25rem !important"},".ds-m-10":{"margin":"2.5rem !important"},".ds-m-11":{"margin":"2.75rem !important"},".ds-m-12":{"margin":"3rem !important"},".ds-m-14":{"margin":"3.5rem !important"},".ds-m-16":{"margin":"4rem !important"},".ds-m-20":{"margin":"5rem !important"},".ds-m-24":{"margin":"6rem !important"},".ds-m-28":{"margin":"7rem !important"},".ds-m-32":{"margin":"8rem !important"},".ds-m-36":{"margin":"9rem !important"},".ds-m-40":{"margin":"10rem !important"},".ds-m-44":{"margin":"11rem !important"},".ds-m-48":{"margin":"12rem !important"},".ds-m-52":{"margin":"13rem !important"},".ds-m-56":{"margin":"14rem !important"},".ds-m-60":{"margin":"15rem !important"},".ds-m-64":{"margin":"16rem !important"},".ds-m-72":{"margin":"18rem !important"},".ds-m-80":{"margin":"20rem !important"},".ds-m-96":{"margin":"24rem !important"},".ds-m-px":{"margin":"1px !important"},".ds-m-0\\.5":{"margin":".125rem !important"},".ds-m-1\\.5":{"margin":".375rem !important"},".ds-m-2\\.5":{"margin":".625rem !important"},".ds-m-3\\.5":{"margin":".875rem !important"},".ds-mt-0":{"marginTop":"0 !important"},".ds-mt-1":{"marginTop":".25rem !important"},".ds-mt-2":{"marginTop":".5rem !important"},".ds-mt-3":{"marginTop":".75rem !important"},".ds-mt-4":{"marginTop":"1rem !important"},".ds-mt-5":{"marginTop":"1.25rem !important"},".ds-mt-6":{"marginTop":"1.5rem !important"},".ds-mt-7":{"marginTop":"1.75rem !important"},".ds-mt-8":{"marginTop":"2rem !important"},".ds-mt-9":{"marginTop":"2.25rem !important"},".ds-mt-10":{"marginTop":"2.5rem !important"},".ds-mt-11":{"marginTop":"2.75rem !important"},".ds-mt-12":{"marginTop":"3rem !important"},".ds-mt-14":{"marginTop":"3.5rem !important"},".ds-mt-16":{"marginTop":"4rem !important"},".ds-mt-20":{"marginTop":"5rem !important"},".ds-mt-24":{"marginTop":"6rem !important"},".ds-mt-28":{"marginTop":"7rem !important"},".ds-mt-32":{"marginTop":"8rem !important"},".ds-mt-36":{"marginTop":"9rem !important"},".ds-mt-40":{"marginTop":"10rem !important"},".ds-mt-44":{"marginTop":"11rem !important"},".ds-mt-48":{"marginTop":"12rem !important"},".ds-mt-52":{"marginTop":"13rem !important"},".ds-mt-56":{"marginTop":"14rem !important"},".ds-mt-60":{"marginTop":"15rem !important"},".ds-mt-64":{"marginTop":"16rem !important"},".ds-mt-72":{"marginTop":"18rem !important"},".ds-mt-80":{"marginTop":"20rem !important"},".ds-mt-96":{"marginTop":"24rem !important"},".ds-mt-px":{"marginTop":"1px !important"},".ds-mx-0\\.5":{"marginLeft":".125rem !important","marginRight":".125rem !important"},".ds-mx-1\\.5":{"marginLeft":".375rem !important","marginRight":".375rem !important"},".ds-mx-2\\.5":{"marginLeft":".625rem !important","marginRight":".625rem !important"},".ds-mx-3\\.5":{"marginLeft":".875rem !important","marginRight":".875rem !important"},".ds-mt-0\\.5":{"marginTop":".125rem !important"},".ds-mt-1\\.5":{"marginTop":".375rem !important"},".ds-mt-2\\.5":{"marginTop":".625rem !important"},".ds-mt-3\\.5":{"marginTop":".875rem !important"},".ds-mr-0":{"marginRight":"0 !important"},".ds-mr-1":{"marginRight":".25rem !important"},".ds-mr-2":{"marginRight":".5rem !important"},".ds-mr-3":{"marginRight":".75rem !important"},".ds-mr-4":{"marginRight":"1rem !important"},".ds-mr-5":{"marginRight":"1.25rem !important"},".ds-mr-6":{"marginRight":"1.5rem !important"},".ds-mr-7":{"marginRight":"1.75rem !important"},".ds-mr-8":{"marginRight":"2rem !important"},".ds-mr-9":{"marginRight":"2.25rem !important"},".ds-mr-10":{"marginRight":"2.5rem !important"},".ds-mr-11":{"marginRight":"2.75rem !important"},".ds-mr-12":{"marginRight":"3rem !important"},".ds-mr-14":{"marginRight":"3.5rem !important"},".ds-mr-16":{"marginRight":"4rem !important"},".ds-mr-20":{"marginRight":"5rem !important"},".ds-mr-24":{"marginRight":"6rem !important"},".ds-mr-28":{"marginRight":"7rem !important"},".ds-mr-32":{"marginRight":"8rem !important"},".ds-mr-36":{"marginRight":"9rem !important"},".ds-mr-40":{"marginRight":"10rem !important"},".ds-mr-44":{"marginRight":"11rem !important"},".ds-mr-48":{"marginRight":"12rem !important"},".ds-mr-52":{"marginRight":"13rem !important"},".ds-mr-56":{"marginRight":"14rem !important"},".ds-mr-60":{"marginRight":"15rem !important"},".ds-mr-64":{"marginRight":"16rem !important"},".ds-mr-72":{"marginRight":"18rem !important"},".ds-mr-80":{"marginRight":"20rem !important"},".ds-mr-96":{"marginRight":"24rem !important"},".ds-mr-px":{"marginRight":"1px !important"},".ds-mr-0\\.5":{"marginRight":".125rem !important"},".ds-mr-1\\.5":{"marginRight":".375rem !important"},".ds-mr-2\\.5":{"marginRight":".625rem !important"},".ds-mr-3\\.5":{"marginRight":".875rem !important"},".ds-ml-0":{"marginLeft":"0 !important"},".ds-ml-1":{"marginLeft":".25rem !important"},".ds-ml-2":{"marginLeft":".5rem !important"},".ds-ml-3":{"marginLeft":".75rem !important"},".ds-ml-4":{"marginLeft":"1rem !important"},".ds-ml-5":{"marginLeft":"1.25rem !important"},".ds-ml-6":{"marginLeft":"1.5rem !important"},".ds-ml-7":{"marginLeft":"1.75rem !important"},".ds-ml-8":{"marginLeft":"2rem !important"},".ds-ml-9":{"marginLeft":"2.25rem !important"},".ds-ml-10":{"marginLeft":"2.5rem !important"},".ds-ml-11":{"marginLeft":"2.75rem !important"},".ds-ml-12":{"marginLeft":"3rem !important"},".ds-ml-14":{"marginLeft":"3.5rem !important"},".ds-ml-16":{"marginLeft":"4rem !important"},".ds-ml-20":{"marginLeft":"5rem !important"},".ds-ml-24":{"marginLeft":"6rem !important"},".ds-ml-28":{"marginLeft":"7rem !important"},".ds-ml-32":{"marginLeft":"8rem !important"},".ds-ml-36":{"marginLeft":"9rem !important"},".ds-ml-40":{"marginLeft":"10rem !important"},".ds-ml-44":{"marginLeft":"11rem !important"},".ds-ml-48":{"marginLeft":"12rem !important"},".ds-ml-52":{"marginLeft":"13rem !important"},".ds-ml-56":{"marginLeft":"14rem !important"},".ds-ml-60":{"marginLeft":"15rem !important"},".ds-ml-64":{"marginLeft":"16rem !important"},".ds-ml-72":{"marginLeft":"18rem !important"},".ds-ml-80":{"marginLeft":"20rem !important"},".ds-ml-96":{"marginLeft":"24rem !important"},".ds-ml-px":{"marginLeft":"1px !important"},".ds-ml-0\\.5":{"marginLeft":".125rem !important"},".ds-ml-1\\.5":{"marginLeft":".375rem !important"},".ds-ml-2\\.5":{"marginLeft":".625rem !important"},".ds-ml-3\\.5":{"marginLeft":".875rem !important"},".ds-mb-0":{"marginBottom":"0 !important"},".ds-mb-1":{"marginBottom":".25rem !important"},".ds-mb-2":{"marginBottom":".5rem !important"},".ds-mb-3":{"marginBottom":".75rem !important"},".ds-mb-4":{"marginBottom":"1rem !important"},".ds-mb-5":{"marginBottom":"1.25rem !important"},".ds-mb-6":{"marginBottom":"1.5rem !important"},".ds-mb-7":{"marginBottom":"1.75rem !important"},".ds-mb-8":{"marginBottom":"2rem !important"},".ds-mb-9":{"marginBottom":"2.25rem !important"},".ds-mb-10":{"marginBottom":"2.5rem !important"},".ds-mb-11":{"marginBottom":"2.75rem !important"},".ds-mb-12":{"marginBottom":"3rem !important"},".ds-mb-14":{"marginBottom":"3.5rem !important"},".ds-mb-16":{"marginBottom":"4rem !important"},".ds-mb-20":{"marginBottom":"5rem !important"},".ds-mb-24":{"marginBottom":"6rem !important"},".ds-mb-28":{"marginBottom":"7rem !important"},".ds-mb-32":{"marginBottom":"8rem !important"},".ds-mb-36":{"marginBottom":"9rem !important"},".ds-mb-40":{"marginBottom":"10rem !important"},".ds-mb-44":{"marginBottom":"11rem !important"},".ds-mb-48":{"marginBottom":"12rem !important"},".ds-mb-52":{"marginBottom":"13rem !important"},".ds-mb-56":{"marginBottom":"14rem !important"},".ds-mb-60":{"marginBottom":"15rem !important"},".ds-mb-64":{"marginBottom":"16rem !important"},".ds-mb-72":{"marginBottom":"18rem !important"},".ds-mb-80":{"marginBottom":"20rem !important"},".ds-mb-96":{"marginBottom":"24rem !important"},".ds-mb-px":{"marginBottom":"1px !important"},".ds-mb-0\\.5":{"marginBottom":".125rem !important"},".ds-mb-1\\.5":{"marginBottom":".375rem !important"},".ds-mb-2\\.5":{"marginBottom":".625rem !important"},".ds-mb-3\\.5":{"marginBottom":".875rem !important"},".ds-mx-0":{"marginLeft":"0 !important","marginRight":"0 !important"},".ds-mx-1":{"marginLeft":".25rem !important","marginRight":".25rem !important"},".ds-mx-2":{"marginLeft":".5rem !important","marginRight":".5rem !important"},".ds-mx-3":{"marginLeft":".75rem !important","marginRight":".75rem !important"},".ds-mx-4":{"marginLeft":"1rem !important","marginRight":"1rem !important"},".ds-mx-5":{"marginLeft":"1.25rem !important","marginRight":"1.25rem !important"},".ds-mx-6":{"marginLeft":"1.5rem !important","marginRight":"1.5rem !important"},".ds-mx-7":{"marginLeft":"1.75rem !important","marginRight":"1.75rem !important"},".ds-mx-8":{"marginLeft":"2rem !important","marginRight":"2rem !important"},".ds-mx-9":{"marginLeft":"2.25rem !important","marginRight":"2.25rem !important"},".ds-mx-10":{"marginLeft":"2.5rem !important","marginRight":"2.5rem !important"},".ds-mx-11":{"marginLeft":"2.75rem !important","marginRight":"2.75rem !important"},".ds-mx-12":{"marginLeft":"3rem !important","marginRight":"3rem !important"},".ds-mx-14":{"marginLeft":"3.5rem !important","marginRight":"3.5rem !important"},".ds-mx-16":{"marginLeft":"4rem !important","marginRight":"4rem !important"},".ds-mx-20":{"marginLeft":"5rem !important","marginRight":"5rem !important"},".ds-mx-24":{"marginLeft":"6rem !important","marginRight":"6rem !important"},".ds-mx-28":{"marginLeft":"7rem !important","marginRight":"7rem !important"},".ds-mx-32":{"marginLeft":"8rem !important","marginRight":"8rem !important"},".ds-mx-36":{"marginLeft":"9rem !important","marginRight":"9rem !important"},".ds-mx-40":{"marginLeft":"10rem !important","marginRight":"10rem !important"},".ds-mx-44":{"marginLeft":"11rem !important","marginRight":"11rem !important"},".ds-mx-48":{"marginLeft":"12rem !important","marginRight":"12rem !important"},".ds-mx-52":{"marginLeft":"13rem !important","marginRight":"13rem !important"},".ds-mx-56":{"marginLeft":"14rem !important","marginRight":"14rem !important"},".ds-mx-60":{"marginLeft":"15rem !important","marginRight":"15rem !important"},".ds-mx-64":{"marginLeft":"16rem !important","marginRight":"16rem !important"},".ds-mx-72":{"marginLeft":"18rem !important","marginRight":"18rem !important"},".ds-mx-80":{"marginLeft":"20rem !important","marginRight":"20rem !important"},".ds-mx-96":{"marginLeft":"24rem !important","marginRight":"24rem !important"},".ds-my-0":{"marginTop":"0 !important","marginBottom":"0 !important"},".ds-my-1":{"marginTop":".25rem !important","marginBottom":".25rem !important"},".ds-my-2":{"marginTop":".5rem !important","marginBottom":".5rem !important"},".ds-my-3":{"marginTop":".75rem !important","marginBottom":".75rem !important"},".ds-my-4":{"marginTop":"1rem !important","marginBottom":"1rem !important"},".ds-my-5":{"marginTop":"1.25rem !important","marginBottom":"1.25rem !important"},".ds-my-6":{"marginTop":"1.5rem !important","marginBottom":"1.5rem !important"},".ds-my-7":{"marginTop":"1.75rem !important","marginBottom":"1.75rem !important"},".ds-my-8":{"marginTop":"2rem !important","marginBottom":"2rem !important"},".ds-my-9":{"marginTop":"2.25rem !important","marginBottom":"2.25rem !important"},".ds-my-10":{"marginTop":"2.5rem !important","marginBottom":"2.5rem !important"},".ds-my-11":{"marginTop":"2.75rem !important","marginBottom":"2.75rem !important"},".ds-my-12":{"marginTop":"3rem !important","marginBottom":"3rem !important"},".ds-my-14":{"marginTop":"3.5rem !important","marginBottom":"3.5rem !important"},".ds-my-16":{"marginTop":"4rem !important","marginBottom":"4rem !important"},".ds-my-20":{"marginTop":"5rem !important","marginBottom":"5rem !important"},".ds-my-24":{"marginTop":"6rem !important","marginBottom":"6rem !important"},".ds-my-28":{"marginTop":"7rem !important","marginBottom":"7rem !important"},".ds-my-32":{"marginTop":"8rem !important","marginBottom":"8rem !important"},".ds-my-36":{"marginTop":"9rem !important","marginBottom":"9rem !important"},".ds-my-40":{"marginTop":"10rem !important","marginBottom":"10rem !important"},".ds-my-44":{"marginTop":"11rem !important","marginBottom":"11rem !important"},".ds-my-48":{"marginTop":"12rem !important","marginBottom":"12rem !important"},".ds-my-52":{"marginTop":"13rem !important","marginBottom":"13rem !important"},".ds-my-56":{"marginTop":"14rem !important","marginBottom":"14rem !important"},".ds-my-60":{"marginTop":"15rem !important","marginBottom":"15rem !important"},".ds-my-64":{"marginTop":"16rem !important","marginBottom":"16rem !important"},".ds-my-72":{"marginTop":"18rem !important","marginBottom":"18rem !important"},".ds-my-80":{"marginTop":"20rem !important","marginBottom":"20rem !important"},".ds-my-96":{"marginTop":"24rem !important","marginBottom":"24rem !important"},".ds-my-0\\.5":{"marginTop":".125rem !important","marginBottom":".125rem !important"},".ds-my-1\\.5":{"marginTop":".375rem !important","marginBottom":".375rem !important"},".ds-my-2\\.5":{"marginTop":".625rem !important","marginBottom":".625rem !important"},".ds-my-3\\.5":{"marginTop":".875rem !important","marginBottom":".875rem !important"},".ds-p-0":{"padding":"0 !important"},".ds-p-1":{"padding":".25rem !important"},".ds-p-2":{"padding":".5rem !important"},".ds-p-3":{"padding":".75rem !important"},".ds-p-4":{"padding":"1rem !important"},".ds-p-5":{"padding":"1.25rem !important"},".ds-p-6":{"padding":"1.5rem !important"},".ds-p-7":{"padding":"1.75rem !important"},".ds-p-8":{"padding":"2rem !important"},".ds-p-9":{"padding":"2.25rem !important"},".ds-p-10":{"padding":"2.5rem !important"},".ds-p-11":{"padding":"2.75rem !important"},".ds-p-12":{"padding":"3rem !important"},".ds-p-14":{"padding":"3.5rem !important"},".ds-p-16":{"padding":"4rem !important"},".ds-p-20":{"padding":"5rem !important"},".ds-p-24":{"padding":"6rem !important"},".ds-p-28":{"padding":"7rem !important"},".ds-p-32":{"padding":"8rem !important"},".ds-p-36":{"padding":"9rem !important"},".ds-p-40":{"padding":"10rem !important"},".ds-p-44":{"padding":"11rem !important"},".ds-p-48":{"padding":"12rem !important"},".ds-p-52":{"padding":"13rem !important"},".ds-p-56":{"padding":"14rem !important"},".ds-p-60":{"padding":"15rem !important"},".ds-p-64":{"padding":"16rem !important"},".ds-p-72":{"padding":"18rem !important"},".ds-p-80":{"padding":"20rem !important"},".ds-p-96":{"padding":"24rem !important"},".ds-p-px":{"padding":"1px !important"},".ds-p-0\\.5":{"padding":".125rem !important"},".ds-p-1\\.5":{"padding":".375rem !important"},".ds-p-2\\.5":{"padding":".625rem !important"},".ds-p-3\\.5":{"padding":".875rem !important"},".ds-pt-0":{"paddingTop":"0 !important"},".ds-pt-1":{"paddingTop":".25rem !important"},".ds-pt-2":{"paddingTop":".5rem !important"},".ds-pt-3":{"paddingTop":".75rem !important"},".ds-pt-4":{"paddingTop":"1rem !important"},".ds-pt-5":{"paddingTop":"1.25rem !important"},".ds-pt-6":{"paddingTop":"1.5rem !important"},".ds-pt-7":{"paddingTop":"1.75rem !important"},".ds-pt-8":{"paddingTop":"2rem !important"},".ds-pt-9":{"paddingTop":"2.25rem !important"},".ds-pt-10":{"paddingTop":"2.5rem !important"},".ds-pt-11":{"paddingTop":"2.75rem !important"},".ds-pt-12":{"paddingTop":"3rem !important"},".ds-pt-14":{"paddingTop":"3.5rem !important"},".ds-pt-16":{"paddingTop":"4rem !important"},".ds-pt-20":{"paddingTop":"5rem !important"},".ds-pt-24":{"paddingTop":"6rem !important"},".ds-pt-28":{"paddingTop":"7rem !important"},".ds-pt-32":{"paddingTop":"8rem !important"},".ds-pt-36":{"paddingTop":"9rem !important"},".ds-pt-40":{"paddingTop":"10rem !important"},".ds-pt-44":{"paddingTop":"11rem !important"},".ds-pt-48":{"paddingTop":"12rem !important"},".ds-pt-52":{"paddingTop":"13rem !important"},".ds-pt-56":{"paddingTop":"14rem !important"},".ds-pt-60":{"paddingTop":"15rem !important"},".ds-pt-64":{"paddingTop":"16rem !important"},".ds-pt-72":{"paddingTop":"18rem !important"},".ds-pt-80":{"paddingTop":"20rem !important"},".ds-pt-96":{"paddingTop":"24rem !important"},".ds-pt-px":{"paddingTop":"1px !important"},".ds-pt-0\\.5":{"paddingTop":".125rem !important"},".ds-pt-1\\.5":{"paddingTop":".375rem !important"},".ds-pt-2\\.5":{"paddingTop":".625rem !important"},".ds-pt-3\\.5":{"paddingTop":".875rem !important"},".ds-pr-0":{"paddingRight":"0 !important"},".ds-pr-1":{"paddingRight":".25rem !important"},".ds-pr-2":{"paddingRight":".5rem !important"},".ds-pr-3":{"paddingRight":".75rem !important"},".ds-pr-4":{"paddingRight":"1rem !important"},".ds-pr-5":{"paddingRight":"1.25rem !important"},".ds-pr-6":{"paddingRight":"1.5rem !important"},".ds-pr-7":{"paddingRight":"1.75rem !important"},".ds-pr-8":{"paddingRight":"2rem !important"},".ds-pr-9":{"paddingRight":"2.25rem !important"},".ds-pr-10":{"paddingRight":"2.5rem !important"},".ds-pr-11":{"paddingRight":"2.75rem !important"},".ds-pr-12":{"paddingRight":"3rem !important"},".ds-pr-14":{"paddingRight":"3.5rem !important"},".ds-pr-16":{"paddingRight":"4rem !important"},".ds-pr-20":{"paddingRight":"5rem !important"},".ds-pr-24":{"paddingRight":"6rem !important"},".ds-pr-28":{"paddingRight":"7rem !important"},".ds-pr-32":{"paddingRight":"8rem !important"},".ds-pr-36":{"paddingRight":"9rem !important"},".ds-pr-40":{"paddingRight":"10rem !important"},".ds-pr-44":{"paddingRight":"11rem !important"},".ds-pr-48":{"paddingRight":"12rem !important"},".ds-pr-52":{"paddingRight":"13rem !important"},".ds-pr-56":{"paddingRight":"14rem !important"},".ds-pr-60":{"paddingRight":"15rem !important"},".ds-pr-64":{"paddingRight":"16rem !important"},".ds-pr-72":{"paddingRight":"18rem !important"},".ds-pr-80":{"paddingRight":"20rem !important"},".ds-pr-96":{"paddingRight":"24rem !important"},".ds-pr-px":{"paddingRight":"1px !important"},".ds-pr-0\\.5":{"paddingRight":".125rem !important"},".ds-pr-1\\.5":{"paddingRight":".375rem !important"},".ds-pr-2\\.5":{"paddingRight":".625rem !important"},".ds-pr-3\\.5":{"paddingRight":".875rem !important"},".ds-pl-0":{"paddingLeft":"0 !important"},".ds-pl-1":{"paddingLeft":".25rem !important"},".ds-pl-2":{"paddingLeft":".5rem !important"},".ds-pl-3":{"paddingLeft":".75rem !important"},".ds-pl-4":{"paddingLeft":"1rem !important"},".ds-pl-5":{"paddingLeft":"1.25rem !important"},".ds-pl-6":{"paddingLeft":"1.5rem !important"},".ds-pl-7":{"paddingLeft":"1.75rem !important"},".ds-pl-8":{"paddingLeft":"2rem !important"},".ds-pl-9":{"paddingLeft":"2.25rem !important"},".ds-pl-10":{"paddingLeft":"2.5rem !important"},".ds-pl-11":{"paddingLeft":"2.75rem !important"},".ds-pl-12":{"paddingLeft":"3rem !important"},".ds-pl-14":{"paddingLeft":"3.5rem !important"},".ds-pl-16":{"paddingLeft":"4rem !important"},".ds-pl-20":{"paddingLeft":"5rem !important"},".ds-pl-24":{"paddingLeft":"6rem !important"},".ds-pl-28":{"paddingLeft":"7rem !important"},".ds-pl-32":{"paddingLeft":"8rem !important"},".ds-pl-36":{"paddingLeft":"9rem !important"},".ds-pl-40":{"paddingLeft":"10rem !important"},".ds-pl-44":{"paddingLeft":"11rem !important"},".ds-pl-48":{"paddingLeft":"12rem !important"},".ds-pl-52":{"paddingLeft":"13rem !important"},".ds-pl-56":{"paddingLeft":"14rem !important"},".ds-pl-60":{"paddingLeft":"15rem !important"},".ds-pl-64":{"paddingLeft":"16rem !important"},".ds-pl-72":{"paddingLeft":"18rem !important"},".ds-pl-80":{"paddingLeft":"20rem !important"},".ds-pl-96":{"paddingLeft":"24rem !important"},".ds-pl-px":{"paddingLeft":"1px !important"},".ds-pl-0\\.5":{"paddingLeft":".125rem !important"},".ds-pl-1\\.5":{"paddingLeft":".375rem !important"},".ds-pl-2\\.5":{"paddingLeft":".625rem !important"},".ds-pl-3\\.5":{"paddingLeft":".875rem !important"},".ds-pb-0":{"paddingBottom":"0 !important"},".ds-pb-1":{"paddingBottom":".25rem !important"},".ds-pb-2":{"paddingBottom":".5rem !important"},".ds-pb-3":{"paddingBottom":".75rem !important"},".ds-pb-4":{"paddingBottom":"1rem !important"},".ds-pb-5":{"paddingBottom":"1.25rem !important"},".ds-pb-6":{"paddingBottom":"1.5rem !important"},".ds-pb-7":{"paddingBottom":"1.75rem !important"},".ds-pb-8":{"paddingBottom":"2rem !important"},".ds-pb-9":{"paddingBottom":"2.25rem !important"},".ds-pb-10":{"paddingBottom":"2.5rem !important"},".ds-pb-11":{"paddingBottom":"2.75rem !important"},".ds-pb-12":{"paddingBottom":"3rem !important"},".ds-pb-14":{"paddingBottom":"3.5rem !important"},".ds-pb-16":{"paddingBottom":"4rem !important"},".ds-pb-20":{"paddingBottom":"5rem !important"},".ds-pb-24":{"paddingBottom":"6rem !important"},".ds-pb-28":{"paddingBottom":"7rem !important"},".ds-pb-32":{"paddingBottom":"8rem !important"},".ds-pb-36":{"paddingBottom":"9rem !important"},".ds-pb-40":{"paddingBottom":"10rem !important"},".ds-pb-44":{"paddingBottom":"11rem !important"},".ds-pb-48":{"paddingBottom":"12rem !important"},".ds-pb-52":{"paddingBottom":"13rem !important"},".ds-pb-56":{"paddingBottom":"14rem !important"},".ds-pb-60":{"paddingBottom":"15rem !important"},".ds-pb-64":{"paddingBottom":"16rem !important"},".ds-pb-72":{"paddingBottom":"18rem !important"},".ds-pb-80":{"paddingBottom":"20rem !important"},".ds-pb-96":{"paddingBottom":"24rem !important"},".ds-pb-px":{"paddingBottom":"1px !important"},".ds-pb-0\\.5":{"paddingBottom":".125rem !important"},".ds-pb-1\\.5":{"paddingBottom":".375rem !important"},".ds-pb-2\\.5":{"paddingBottom":".625rem !important"},".ds-pb-3\\.5":{"paddingBottom":".875rem !important"},".ds-px-0":{"paddingLeft":"0 !important","paddingRight":"0 !important"},".ds-px-1":{"paddingLeft":".25rem !important","paddingRight":".25rem !important"},".ds-px-2":{"paddingLeft":".5rem !important","paddingRight":".5rem !important"},".ds-px-3":{"paddingLeft":".75rem !important","paddingRight":".75rem !important"},".ds-px-4":{"paddingLeft":"1rem !important","paddingRight":"1rem !important"},".ds-px-5":{"paddingLeft":"1.25rem !important","paddingRight":"1.25rem !important"},".ds-px-6":{"paddingLeft":"1.5rem !important","paddingRight":"1.5rem !important"},".ds-px-7":{"paddingLeft":"1.75rem !important","paddingRight":"1.75rem !important"},".ds-px-8":{"paddingLeft":"2rem !important","paddingRight":"2rem !important"},".ds-px-9":{"paddingLeft":"2.25rem !important","paddingRight":"2.25rem !important"},".ds-px-10":{"paddingLeft":"2.5rem !important","paddingRight":"2.5rem !important"},".ds-px-11":{"paddingLeft":"2.75rem !important","paddingRight":"2.75rem !important"},".ds-px-12":{"paddingLeft":"3rem !important","paddingRight":"3rem !important"},".ds-px-14":{"paddingLeft":"3.5rem !important","paddingRight":"3.5rem !important"},".ds-px-16":{"paddingLeft":"4rem !important","paddingRight":"4rem !important"},".ds-px-20":{"paddingLeft":"5rem !important","paddingRight":"5rem !important"},".ds-px-24":{"paddingLeft":"6rem !important","paddingRight":"6rem !important"},".ds-px-28":{"paddingLeft":"7rem !important","paddingRight":"7rem !important"},".ds-px-32":{"paddingLeft":"8rem !important","paddingRight":"8rem !important"},".ds-px-36":{"paddingLeft":"9rem !important","paddingRight":"9rem !important"},".ds-px-40":{"paddingLeft":"10rem !important","paddingRight":"10rem !important"},".ds-px-44":{"paddingLeft":"11rem !important","paddingRight":"11rem !important"},".ds-px-48":{"paddingLeft":"12rem !important","paddingRight":"12rem !important"},".ds-px-52":{"paddingLeft":"13rem !important","paddingRight":"13rem !important"},".ds-px-56":{"paddingLeft":"14rem !important","paddingRight":"14rem !important"},".ds-px-60":{"paddingLeft":"15rem !important","paddingRight":"15rem !important"},".ds-px-64":{"paddingLeft":"16rem !important","paddingRight":"16rem !important"},".ds-px-72":{"paddingLeft":"18rem !important","paddingRight":"18rem !important"},".ds-px-80":{"paddingLeft":"20rem !important","paddingRight":"20rem !important"},".ds-px-96":{"paddingLeft":"24rem !important","paddingRight":"24rem !important"},".ds-px-0\\.5":{"paddingLeft":".125rem !important","paddingRight":".125rem !important"},".ds-px-1\\.5":{"paddingLeft":".375rem !important","paddingRight":".375rem !important"},".ds-px-2\\.5":{"paddingLeft":".625rem !important","paddingRight":".625rem !important"},".ds-px-3\\.5":{"paddingLeft":".875rem !important","paddingRight":".875rem !important"},".ds-py-0":{"paddingTop":"0 !important","paddingBottom":"0 !important"},".ds-py-1":{"paddingTop":".25rem !important","paddingBottom":".25rem !important"},".ds-py-2":{"paddingTop":".5rem !important","paddingBottom":".5rem !important"},".ds-py-3":{"paddingTop":".75rem !important","paddingBottom":".75rem !important"},".ds-py-4":{"paddingTop":"1rem !important","paddingBottom":"1rem !important"},".ds-py-5":{"paddingTop":"1.25rem !important","paddingBottom":"1.25rem !important"},".ds-py-6":{"paddingTop":"1.5rem !important","paddingBottom":"1.5rem !important"},".ds-py-7":{"paddingTop":"1.75rem !important","paddingBottom":"1.75rem !important"},".ds-py-8":{"paddingTop":"2rem !important","paddingBottom":"2rem !important"},".ds-py-9":{"paddingTop":"2.25rem !important","paddingBottom":"2.25rem !important"},".ds-py-10":{"paddingTop":"2.5rem !important","paddingBottom":"2.5rem !important"},".ds-py-11":{"paddingTop":"2.75rem !important","paddingBottom":"2.75rem !important"},".ds-py-12":{"paddingTop":"3rem !important","paddingBottom":"3rem !important"},".ds-py-14":{"paddingTop":"3.5rem !important","paddingBottom":"3.5rem !important"},".ds-py-16":{"paddingTop":"4rem !important","paddingBottom":"4rem !important"},".ds-py-20":{"paddingTop":"5rem !important","paddingBottom":"5rem !important"},".ds-py-24":{"paddingTop":"6rem !important","paddingBottom":"6rem !important"},".ds-py-28":{"paddingTop":"7rem !important","paddingBottom":"7rem !important"},".ds-py-32":{"paddingTop":"8rem !important","paddingBottom":"8rem !important"},".ds-py-36":{"paddingTop":"9rem !important","paddingBottom":"9rem !important"},".ds-py-40":{"paddingTop":"10rem !important","paddingBottom":"10rem !important"},".ds-py-44":{"paddingTop":"11rem !important","paddingBottom":"11rem !important"},".ds-py-48":{"paddingTop":"12rem !important","paddingBottom":"12rem !important"},".ds-py-52":{"paddingTop":"13rem !important","paddingBottom":"13rem !important"},".ds-py-56":{"paddingTop":"14rem !important","paddingBottom":"14rem !important"},".ds-py-60":{"paddingTop":"15rem !important","paddingBottom":"15rem !important"},".ds-py-64":{"paddingTop":"16rem !important","paddingBottom":"16rem !important"},".ds-py-72":{"paddingTop":"18rem !important","paddingBottom":"18rem !important"},".ds-py-80":{"paddingTop":"20rem !important","paddingBottom":"20rem !important"},".ds-py-96":{"paddingTop":"24rem !important","paddingBottom":"24rem !important"},".ds-py-0\\.5":{"paddingTop":".125rem !important","paddingBottom":".125rem !important"},".ds-py-1\\.5":{"paddingTop":".375rem !important","paddingBottom":".375rem !important"},".ds-py-2\\.5":{"paddingTop":".625rem !important","paddingBottom":".625rem !important"},".ds-py-3\\.5":{"paddingTop":".875rem !important","paddingBottom":".875rem !important"},".ds-gap-1":{"gap":".25rem"},".ds-gap-2":{"gap":".5rem"},".ds-gap-4":{"gap":"1rem"},".ds-gap-6":{"gap":"1.5rem"},".ds-gap-8":{"gap":"2rem"},".ds-gap-10":{"gap":"2.5rem"},".ds-gap-12":{"gap":"3rem"},".ds-gap-xs-1":{"gap":".25rem"},".ds-gap-xs-2":{"gap":".5rem"},".ds-gap-xs-4":{"gap":"1rem"},".ds-gap-xs-5":{"gap":"1.25rem"},".ds-gap-xs-6":{"gap":"1.5rem"},".ds-gap-xs-8":{"gap":"2rem"},".ds-gap-xs-10":{"gap":"2.5rem"},".ds-gap-xs-12":{"gap":"3rem"},"@media (min-width:1280px)":{".ds-gap-xl-1":{"gap":".25rem"},".ds-gap-xl-2":{"gap":".5rem"},".ds-gap-xl-4":{"gap":"1rem"},".ds-gap-xl-5":{"gap":"1.25rem"},".ds-gap-xl-6":{"gap":"1.5rem"},".ds-gap-xl-8":{"gap":"2rem"},".ds-gap-xl-10":{"gap":"2.5rem"},".ds-gap-xl-12":{"gap":"3rem"}},"@media print":{".ds-print-hidden":{"display":"none !important"},".ds-print-visible-block":{"display":"block !important"},".ds-print-visible-inline":{"display":"inline !important"}}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/css",
3
- "version": "1.1.1",
3
+ "version": "1.2.0-mobile",
4
4
  "description": "Digigov CSS - Tailwind CSS Components",
5
5
  "author": "GRNET Devs <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
@@ -39,6 +39,7 @@
39
39
  ]
40
40
  },
41
41
  "devDependencies": {
42
+ "@digigov/cli": "1.1.1",
42
43
  "autoprefixer": "10.4.16",
43
44
  "cssnano": "4.1.10",
44
45
  "postcss": "8.4.4",
@@ -48,20 +49,14 @@
48
49
  "rtlcss": "3.0.0",
49
50
  "tailwindcss": "3.3.5",
50
51
  "nodemon": "2.0.7",
51
- "next": "10.0.9",
52
- "@digigov/postcss-banner": "1.0.3",
52
+ "next": "13.1.1",
53
+ "@digigov/postcss-banner": "1.0.4",
53
54
  "@digigov/cli-build-tailwind": "1.0.1",
54
55
  "rimraf": "3.0.2",
55
56
  "publint": "0.1.8",
56
- "@digigov/cli": "1.1.0"
57
- },
58
- "dependencies": {
59
- "@fontsource/roboto": "4.4.0",
60
- "publint": "0.1.8",
61
- "@adobe/leonardo-contrast-colors": "1.0.0-alpha.13",
62
- "polished": "4.2.2",
63
- "postcss-js": "4.0.0",
64
- "postcss-load-config": "3.1.4"
57
+ "stylelint": "15.11.0",
58
+ "stylelint-plugin-digigov": "1.0.0",
59
+ "prettier": "3.2.5"
65
60
  },
66
61
  "scripts": {
67
62
  "preutilities": "DIGIGOV_CSS_BUILD=TRUE postcss --config src/utilities src/utilities/index.css --base src --dir dist",
@@ -77,6 +72,16 @@
77
72
  "start": "next dev",
78
73
  "build": "rimraf dist && npm run build-tailwind",
79
74
  "publint": "publint",
80
- "build-tailwind": "digigov build-tailwind --bundle digigov"
75
+ "build-tailwind": "digigov build-tailwind --bundle digigov",
76
+ "lint": "stylelint --fix src/**/*.css; prettier --write src/**/*.css --log-level error"
77
+ },
78
+ "dependencies": {
79
+ "@fontsource/roboto": "4.4.0",
80
+ "publint": "0.1.8",
81
+ "@adobe/leonardo-contrast-colors": "1.0.0-alpha.13",
82
+ "polished": "4.2.2",
83
+ "postcss-js": "4.0.0",
84
+ "postcss-load-config": "3.1.4",
85
+ "postcss-class-apply": "~4.0.1"
81
86
  }
82
- }
87
+ }
package/postcss.config.js CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  /** @type {import('postcss-load-config').Config} */
2
3
  const config = {
3
4
  plugins: {
package/src/base/base.css CHANGED
@@ -1 +1 @@
1
- @import "./index.css";
1
+ @import './index.css';
@@ -1,15 +1,15 @@
1
- @import "tailwindcss/base";
2
-  
1
+ @import 'tailwindcss/base';
3
2
  :root {
4
3
  accent-color: var(--color-accent);
5
4
  }
6
- html{
5
+ html {
7
6
  -webkit-tap-highlight-color: transparent;
8
7
  scroll-behavior: smooth;
9
8
  }
10
9
  body {
11
10
  @apply font-sans text-base-content bg-base-100;
12
11
  }
13
- .light, .dark {
12
+ .light,
13
+ .dark {
14
14
  @apply font-sans text-base-content bg-base-100;
15
- }
15
+ }
@@ -1,22 +1,73 @@
1
- .govgr-accordion {
2
- .govgr-accordion__controls {
1
+ .ds-accordion {
2
+ &.ds-accordion--no-border {
3
+ .ds-accordion__section {
4
+ @apply border-0 !important;
5
+ }
6
+ }
7
+ &.ds-accordion--border-top {
8
+ .ds-accordion__section {
9
+ .ds-accordion__section-summary {
10
+ @apply border-b-0;
11
+ }
12
+ }
13
+ }
14
+ &.ds-accordion--border-bottom {
15
+ .ds-accordion__section {
16
+ @apply border-0;
17
+ &:first-child {
18
+ @apply border-0;
19
+ }
20
+ .ds-accordion__section-summary {
21
+ @apply border-b border-base-400;
22
+ }
23
+ }
24
+ }
25
+ &.ds-accordion--secondary {
26
+ .ds-accordion__section {
27
+ .ds-accordion__section-summary {
28
+ @apply px-4 bg-base-200;
29
+ }
30
+ .ds-accordion__section-content {
31
+ @apply px-4;
32
+ }
33
+ }
34
+ .ds-accordion__section-button {
35
+ &::after {
36
+ @apply right-0;
37
+ }
38
+ }
39
+ }
40
+ &.ds-accordion--dense {
41
+ .ds-accordion__section {
42
+ .ds-accordion__section-summary {
43
+ @apply py-2;
44
+ }
45
+ .ds-accordion__section-content {
46
+ @apply py-2 my-0;
47
+ }
48
+ }
49
+ }
50
+ .ds-accordion__controls {
3
51
  @apply text-right;
4
52
  }
5
- .govgr-accordion__section {
53
+ .ds-accordion__section {
6
54
  @apply border-b border-base-400;
7
55
  &:first-child {
8
56
  @apply border-t;
9
57
  }
10
58
  }
11
- .govgr-accordion__section-summary {
12
- @apply py-4 pr-8 hover:bg-base-200 transition ease-in-out cursor-pointer;
13
- @apply mb-0;
59
+ .ds-accordion__section-summary {
60
+ @apply py-4 pr-8 mb-0 transition ease-in-out cursor-pointer;
61
+ background: var(--accordion__section-summary-background);
14
62
  list-style: none;
63
+ &:hover {
64
+ background: var(--accordion__section-summary-background-hover);
65
+ }
15
66
  &::-webkit-details-marker {
16
67
  @apply hidden;
17
68
  }
18
69
  &:focus {
19
- .govgr-accordion__section-button {
70
+ .ds-accordion__section-button {
20
71
  @apply underline bg-focus;
21
72
  text-decoration-thickness: 2px;
22
73
  &::after {
@@ -32,102 +83,54 @@
32
83
  @apply outline-none;
33
84
  }
34
85
  }
35
- .govgr-accordion__section-header {
86
+ .ds-accordion__section-header {
36
87
  }
37
- .govgr-accordion__section-heading {
38
- font-size: var(--accordion__section-heading-font-size);
88
+ .ds-accordion__section-heading {
39
89
  @apply no-underline font-semibold
40
90
  mb-0 transition-all justify-between cursor-pointer;
91
+ font-size: var(--accordion__section-heading-font-size);
41
92
  &:active {
42
93
  @apply ring-link-visited;
43
94
  }
44
95
  }
45
- .govgr-accordion__section-button {
96
+ .ds-accordion__section-button {
46
97
  @apply text-base-content focus:underline flex justify-between;
47
98
  &::after {
48
- content: "+";
49
99
  @apply text-2xl text-base-content float-right relative -right-8 ml-2;
100
+ content: '+';
50
101
  }
51
102
  }
52
- .govgr-accordion__section[open] {
53
- .govgr-accordion__section-content {
103
+ .ds-accordion__section[open] {
104
+ .ds-accordion__section-content {
54
105
  @apply block;
55
106
  }
56
- .govgr-accordion__section-button {
107
+ .ds-accordion__section-button {
57
108
  &::after {
58
- content: "\2013";
109
+ content: '\2013';
59
110
  }
60
111
  }
61
112
  }
62
- .govgr-accordion__section-content {
113
+ .ds-accordion__section-content {
63
114
  @apply hidden md:pt-2 mb-6 pt-1 mx-0;
64
115
  > *:last-child {
65
116
  @apply mb-0;
66
117
  }
67
118
  }
68
119
  }
69
- .govgr-accordion--no-border {
70
- .govgr-accordion__section {
71
- @apply border-0 !important;
72
- }
73
- }
74
- .govgr-accordion--border-top {
75
- .govgr-accordion__section {
76
- .govgr-accordion__section-summary {
77
- @apply border-b-0;
78
- }
79
- }
80
- }
81
- .govgr-accordion--border-bottom {
82
- .govgr-accordion__section {
83
- @apply border-0;
84
- &:first-child {
85
- @apply border-0;
86
- }
87
- .govgr-accordion__section-summary {
88
- @apply border-b border-base-400;
89
- }
90
- }
91
- }
92
- .govgr-accordion--secondary {
93
- .govgr-accordion__section {
94
- .govgr-accordion__section-summary {
95
- @apply px-4 bg-base-200;
96
- }
97
- .govgr-accordion__section-content {
98
- @apply px-4;
99
- }
100
- }
101
- .govgr-accordion__section-button {
102
- &::after {
103
- @apply right-0;
104
- }
105
- }
106
- }
107
- .govgr-accordion--dense {
108
- .govgr-accordion__section {
109
- .govgr-accordion__section-summary {
110
- @apply py-2;
111
- }
112
- .govgr-accordion__section-content {
113
- @apply py-2 my-0;
114
- }
115
- }
116
- }
117
120
 
118
121
  /* overrides */
119
122
 
120
- .govgr-accordion__section-summary {
121
- .govgr-hint {
123
+ .ds-accordion__section-summary {
124
+ .ds-hint {
122
125
  @apply mb-0 mt-1;
123
126
  }
124
127
  }
125
- .govgr-accordion__section-heading {
126
- .govgt-heading-xs,
127
- .govgr-heading-sm,
128
- .govgr-heading-md,
129
- .govgr-heading-lg,
130
- .govgr-heading-xl {
128
+ .ds-accordion__section-heading {
129
+ .ds-heading-xs,
130
+ .ds-heading-sm,
131
+ .ds-heading-md,
132
+ .ds-heading-lg,
133
+ .ds-heading-xl {
131
134
  @apply mb-0;
132
135
  }
133
136
  }
@@ -1,33 +1,16 @@
1
- .govgr-admin-header {
2
- @apply bg-primary print:bg-white border-b-8 print:border-b-2 border-tertiary;
3
- border-bottom-style: solid;
1
+ .ds-admin-header {
4
2
  }
5
- .govgr-admin-header__content {
6
- @apply px-4 py-2 mx-auto max-w-full w-full flex justify-between items-center;
3
+ .ds-admin-header__content {
4
+ @apply max-w-full !important;
7
5
  }
8
6
 
9
7
  /* overrides */
10
8
 
11
- .govgr-admin-header {
12
- .govgr-dropdown {
9
+ .ds-admin-header {
10
+ .ds-dropdown {
13
11
  @apply print:hidden;
14
12
  }
15
- .govgr-dropdown__button.govgr-link {
16
- @apply text-lg text-white focus:text-base-content print:text-base-800;
17
- }
18
- .govgr-link {
19
- .govgr-svg-icon {
20
- fill: var(--color-white);
21
- }
22
- &:hover {
23
- .govgr-svg-icon {
24
- fill: var(--color-white);
25
- }
26
- }
27
- &:focus {
28
- .govgr-svg-icon {
29
- fill: var(--color-link-active);
30
- }
31
- }
13
+ .ds-dropdown__button.ds-link {
14
+ @apply text-lg text-white focus:text-base-content print:text-base-800 text-right;
32
15
  }
33
16
  }
@@ -1,26 +1,17 @@
1
- .govgr-admin-layout-wrapper {
2
- display: flex;
3
- flex-direction: column;
4
- flex-wrap: wrap;
5
- min-height: 100vh;
1
+ .ds-admin-layout {
6
2
  }
7
- .govgr-admin-top-section {}
8
- .govgr-admin-top-section--secondary {
9
- @apply bg-base-200 px-4 py-2;
3
+ .ds-admin-top-section {
4
+ &.ds-admin-top-section--secondary {
5
+ @apply bg-base-200 px-4 py-2;
6
+ }
7
+ &.ds-admin-top-section--border {
8
+ @apply border border-base-300 px-4 py-2;
9
+ }
10
10
  }
11
- .govgr-admin-top-section--border {
12
- @apply border border-base-300 px-4 py-2;
11
+ .ds-admin-main {
13
12
  }
14
- .govgr-admin-width-container {
15
- @apply px-4 py-8 m-0 w-full mx-auto;
16
- flex: 1 1 0%;
17
- }
18
- .govgr-admin-main-wrapper {
19
- @apply grid p-4 md:grid-cols-12 gap-x-8 md:gap-x-10 gap-y-4 grid-cols-1 print:grid-cols-1;
20
- }
21
- .govgr-admin-main-content {
22
- @apply lg:col-span-8 md:col-span-7;
23
- }
24
- .govgr-admin-side-content {
25
- @apply lg:col-span-4 md:col-span-5 print:order-1;
13
+ .ds-admin-aside {
14
+ &.ds-aside {
15
+ @apply block;
16
+ }
26
17
  }