@medyll/cssfabric 0.0.10

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 (165) hide show
  1. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  2. package/.idea/cssfabric.iml +11 -0
  3. package/.idea/misc.xml +9 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/vcs.xml +6 -0
  6. package/.vscode/settings.json +24 -0
  7. package/README.md +240 -0
  8. package/cssfabric.config.js +3 -0
  9. package/cssfabric.json +8 -0
  10. package/gulpfile.js +610 -0
  11. package/lib/_generated/export.variables.json +583 -0
  12. package/lib/index.d.ts +2 -0
  13. package/lib/index.js +7 -0
  14. package/lib/scripts/cssfabric.d.ts +24 -0
  15. package/lib/scripts/cssfabric.js +48 -0
  16. package/lib/scripts/cssfabricClassNames.d.ts +14 -0
  17. package/lib/scripts/cssfabricClassNames.js +150 -0
  18. package/lib/scripts/utils.d.ts +5 -0
  19. package/lib/scripts/utils.js +40 -0
  20. package/lib/styles/core/animation/animation.css +0 -0
  21. package/lib/styles/core/animation/animation.min.css +0 -0
  22. package/lib/styles/core/base/base.css +222 -0
  23. package/lib/styles/core/base/base.min.css +1 -0
  24. package/lib/styles/core/box/box.css +2263 -0
  25. package/lib/styles/core/box/box.min.css +1 -0
  26. package/lib/styles/core/box/box.responsive.css +13590 -0
  27. package/lib/styles/core/box/box.responsive.min.css +1 -0
  28. package/lib/styles/core/color/color.css +923 -0
  29. package/lib/styles/core/color/color.min.css +1 -0
  30. package/lib/styles/core/color/color.responsive.css +5550 -0
  31. package/lib/styles/core/color/color.responsive.min.css +1 -0
  32. package/lib/styles/core/flex/flex.css +140 -0
  33. package/lib/styles/core/flex/flex.min.css +1 -0
  34. package/lib/styles/core/flex/flex.responsive.css +852 -0
  35. package/lib/styles/core/flex/flex.responsive.min.css +1 -0
  36. package/lib/styles/core/grid/grid.css +50 -0
  37. package/lib/styles/core/grid/grid.min.css +1 -0
  38. package/lib/styles/core/grid/grid.responsive.css +312 -0
  39. package/lib/styles/core/grid/grid.responsive.min.css +1 -0
  40. package/lib/styles/core/main.css +2263 -0
  41. package/lib/styles/core/main.min.css +1 -0
  42. package/lib/styles/core/menu/menu.css +97 -0
  43. package/lib/styles/core/menu/menu.min.css +1 -0
  44. package/lib/styles/core/menu/menu.responsive.css +504 -0
  45. package/lib/styles/core/menu/menu.responsive.min.css +1 -0
  46. package/lib/styles/core/overflow/overflow.css +60 -0
  47. package/lib/styles/core/overflow/overflow.min.css +1 -0
  48. package/lib/styles/core/overflow/overflow.responsive.css +367 -0
  49. package/lib/styles/core/overflow/overflow.responsive.min.css +1 -0
  50. package/lib/styles/core/scale/scale.css +639 -0
  51. package/lib/styles/core/scale/scale.min.css +1 -0
  52. package/lib/styles/core/scale/scale.responsive.css +3846 -0
  53. package/lib/styles/core/scale/scale.responsive.min.css +1 -0
  54. package/lib/styles/core/table/table.css +72 -0
  55. package/lib/styles/core/table/table.min.css +1 -0
  56. package/lib/styles/core/table/table.responsive.css +444 -0
  57. package/lib/styles/core/table/table.responsive.min.css +1 -0
  58. package/lib/styles/core/text/text.css +147 -0
  59. package/lib/styles/core/text/text.min.css +1 -0
  60. package/lib/styles/core/text/text.responsive.css +894 -0
  61. package/lib/styles/core/text/text.responsive.min.css +1 -0
  62. package/lib/styles/core/theme/theme.css +197 -0
  63. package/lib/styles/core/theme/theme.min.css +1 -0
  64. package/lib/styles/core/vars.css +278 -0
  65. package/lib/styles/core/vars.min.css +1 -0
  66. package/lib/styles/core/zindex/zindex.css +279 -0
  67. package/lib/styles/core/zindex/zindex.min.css +1 -0
  68. package/lib/styles/cssfabric.css +7631 -0
  69. package/lib/styles/cssfabric.min.css +15 -0
  70. package/lib/styles/cssfabric.responsive.css +26359 -0
  71. package/lib/styles/cssfabric.responsive.min.css +9 -0
  72. package/package.json +67 -0
  73. package/src/_generated/export.variables.json +756 -0
  74. package/src/_generated/export.variables.md +240 -0
  75. package/src/_generated/index.d.ts +3 -0
  76. package/src/cssfabric/_utils.scss +205 -0
  77. package/src/cssfabric/index.d.ts +3 -0
  78. package/src/cssfabric/modules/_cssfabric-config.scss +89 -0
  79. package/src/cssfabric/modules/_mixins.scss +1 -0
  80. package/src/cssfabric/modules/animation/_animation-build.scss +121 -0
  81. package/src/cssfabric/modules/animation/_animation-vars.scss +17 -0
  82. package/src/cssfabric/modules/animation/animation.scss +3 -0
  83. package/src/cssfabric/modules/base/_base-vars.scss +17 -0
  84. package/src/cssfabric/modules/base/base.scss +80 -0
  85. package/src/cssfabric/modules/box/_box-build.scss +215 -0
  86. package/src/cssfabric/modules/box/_box-vars.scss +119 -0
  87. package/src/cssfabric/modules/box/box-responsive.scss +18 -0
  88. package/src/cssfabric/modules/box/box.scss +3 -0
  89. package/src/cssfabric/modules/color/_color-build.scss +108 -0
  90. package/src/cssfabric/modules/color/_color-vars.scss +80 -0
  91. package/src/cssfabric/modules/color/color-responsive.scss +23 -0
  92. package/src/cssfabric/modules/color/color.scss +3 -0
  93. package/src/cssfabric/modules/css-fabric.scss +2 -0
  94. package/src/cssfabric/modules/flex/_flex-build.scss +169 -0
  95. package/src/cssfabric/modules/flex/_flex-vars.scss +87 -0
  96. package/src/cssfabric/modules/flex/flex-responsive.scss +25 -0
  97. package/src/cssfabric/modules/flex/flex.scss +3 -0
  98. package/src/cssfabric/modules/grid/_grid-build.scss +91 -0
  99. package/src/cssfabric/modules/grid/_grid-vars.scss +87 -0
  100. package/src/cssfabric/modules/grid/grid-responsive.scss +25 -0
  101. package/src/cssfabric/modules/grid/grid.scss +3 -0
  102. package/src/cssfabric/modules/main.scss +3 -0
  103. package/src/cssfabric/modules/menu/_menu-build.scss +119 -0
  104. package/src/cssfabric/modules/menu/_menu-vars.scss +29 -0
  105. package/src/cssfabric/modules/menu/menu-responsive.scss +19 -0
  106. package/src/cssfabric/modules/menu/menu.scss +3 -0
  107. package/src/cssfabric/modules/overflow/_overflow-build.scss +22 -0
  108. package/src/cssfabric/modules/overflow/_overflow-vars.scss +31 -0
  109. package/src/cssfabric/modules/overflow/overflow-responsive.scss +25 -0
  110. package/src/cssfabric/modules/overflow/overflow.scss +5 -0
  111. package/src/cssfabric/modules/scale/_scale-build.scss +129 -0
  112. package/src/cssfabric/modules/scale/_scale-vars.scss +75 -0
  113. package/src/cssfabric/modules/scale/scale-responsive.scss +23 -0
  114. package/src/cssfabric/modules/scale/scale.scss +3 -0
  115. package/src/cssfabric/modules/table/_table-build.scss +134 -0
  116. package/src/cssfabric/modules/table/_table-vars.scss +30 -0
  117. package/src/cssfabric/modules/table/table-responsive.scss +24 -0
  118. package/src/cssfabric/modules/table/table.scss +3 -0
  119. package/src/cssfabric/modules/text/_text-build.scss +109 -0
  120. package/src/cssfabric/modules/text/_text-vars.scss +87 -0
  121. package/src/cssfabric/modules/text/text-responsive.scss +25 -0
  122. package/src/cssfabric/modules/text/text.scss +5 -0
  123. package/src/cssfabric/modules/theme/_theme-build.scss +77 -0
  124. package/src/cssfabric/modules/theme/_theme-vars.scss +47 -0
  125. package/src/cssfabric/modules/theme/theme.scss +5 -0
  126. package/src/cssfabric/modules/vars.scss +120 -0
  127. package/src/cssfabric/modules/zindex/_zindex-vars.scss +19 -0
  128. package/src/cssfabric/modules/zindex/zindex.scss +18 -0
  129. package/src/index.d.ts +3 -0
  130. package/src/index.ts +4 -0
  131. package/src/scripts/cssfabric.ts +54 -0
  132. package/src/scripts/cssfabricClassNames.ts +216 -0
  133. package/src/scripts/utils.ts +37 -0
  134. package/src/vendor/index.d.ts +3 -0
  135. package/src/vendor/normalize/normalize.min.css +2 -0
  136. package/src/vendor/sass-json-export/CHANGELOG.md +26 -0
  137. package/src/vendor/sass-json-export/Gruntfile.js +60 -0
  138. package/src/vendor/sass-json-export/LICENSE +20 -0
  139. package/src/vendor/sass-json-export/README.md +90 -0
  140. package/src/vendor/sass-json-export/package.json +60 -0
  141. package/src/vendor/sass-json-export/stylesheets/encode/api/_json.scss +26 -0
  142. package/src/vendor/sass-json-export/stylesheets/encode/encode.scss +17 -0
  143. package/src/vendor/sass-json-export/stylesheets/encode/helpers/_quote.scss +9 -0
  144. package/src/vendor/sass-json-export/stylesheets/encode/mixins/_json.scss +42 -0
  145. package/src/vendor/sass-json-export/stylesheets/encode/types/_bool.scss +7 -0
  146. package/src/vendor/sass-json-export/stylesheets/encode/types/_color.scss +8 -0
  147. package/src/vendor/sass-json-export/stylesheets/encode/types/_list.scss +14 -0
  148. package/src/vendor/sass-json-export/stylesheets/encode/types/_map.scss +15 -0
  149. package/src/vendor/sass-json-export/stylesheets/encode/types/_null.scss +7 -0
  150. package/src/vendor/sass-json-export/stylesheets/encode/types/_number.scss +8 -0
  151. package/src/vendor/sass-json-export/stylesheets/encode/types/_string.scss +8 -0
  152. package/src/vendor/sass-json-export/stylesheets/sass-json-export.scss +2 -0
  153. package/src/vendor/sass-json-export/test/encode/_index.scss +14 -0
  154. package/src/vendor/sass-json-export/test/encode/api/_json.scss +29 -0
  155. package/src/vendor/sass-json-export/test/encode/helpers/_quote.scss +6 -0
  156. package/src/vendor/sass-json-export/test/encode/types/_bool.scss +6 -0
  157. package/src/vendor/sass-json-export/test/encode/types/_color.scss +7 -0
  158. package/src/vendor/sass-json-export/test/encode/types/_list.scss +25 -0
  159. package/src/vendor/sass-json-export/test/encode/types/_map.scss +17 -0
  160. package/src/vendor/sass-json-export/test/encode/types/_null.scss +8 -0
  161. package/src/vendor/sass-json-export/test/encode/types/_number.scss +68 -0
  162. package/src/vendor/sass-json-export/test/encode/types/_string.scss +9 -0
  163. package/src/vendor/sass-json-export/test/test.scss +9 -0
  164. package/tsconfig.json +46 -0
  165. package/webpack.config.js +53 -0
@@ -0,0 +1 @@
1
+ @media only screen and (max-width:0rem){.scale-w-xxxl-full,.w-xxxl-full{width:100%}.scale-w-xxxl-full-max,.w-xxxl-full-max{max-width:100%}.scale-w-xxxl-full-min,.w-xxxl-full-min{min-width:100%}.scale-w-xxxl-mid,.w-xxxl-mid{width:50%}.scale-w-xxxl-mid-max,.w-xxxl-mid-max{max-width:50%}.scale-w-xxxl-mid-min,.w-xxxl-mid-min{min-width:50%}.scale-w-xxxl-quarter,.w-xxxl-quarter{width:25%}.scale-w-xxxl-quarter-max,.w-xxxl-quarter-max{max-width:25%}.scale-w-xxxl-quarter-min,.w-xxxl-quarter-min{min-width:25%}.scale-w-xxxl-tiers,.w-xxxl-tiers{width:33%}.scale-w-xxxl-tiers-max,.w-xxxl-tiers-max{max-width:33%}.scale-w-xxxl-tiers-min,.w-xxxl-tiers-min{min-width:33%}.scale-w-xxxl-content-max,.w-xxxl-content-max{width:max-content}.scale-w-xxxl-content-max-max,.w-xxxl-content-max-max{max-width:max-content}.scale-w-xxxl-content-max-min,.w-xxxl-content-max-min{min-width:max-content}.scale-w-xxxl-content-min,.w-xxxl-content-min{width:min-content}.scale-w-xxxl-content-min-max,.w-xxxl-content-min-max{max-width:min-content}.scale-w-xxxl-content-min-min,.w-xxxl-content-min-min{min-width:min-content}.scale-w-xxxl-1,.w-xxxl-1{width:1rem}.scale-w-xxxl-1-max,.w-xxxl-1-max{max-width:1rem}.scale-w-xxxl-1-min,.w-xxxl-1-min{min-width:1rem}.scale-w-xxxl-2,.w-xxxl-2{width:2rem}.scale-w-xxxl-2-max,.w-xxxl-2-max{max-width:2rem}.scale-w-xxxl-2-min,.w-xxxl-2-min{min-width:2rem}.scale-w-xxxl-4,.w-xxxl-4{width:4rem}.scale-w-xxxl-4-max,.w-xxxl-4-max{max-width:4rem}.scale-w-xxxl-4-min,.w-xxxl-4-min{min-width:4rem}.scale-w-xxxl-8,.w-xxxl-8{width:8rem}.scale-w-xxxl-8-max,.w-xxxl-8-max{max-width:8rem}.scale-w-xxxl-8-min,.w-xxxl-8-min{min-width:8rem}.scale-w-xxxl-16,.w-xxxl-16{width:16rem}.scale-w-xxxl-16-max,.w-xxxl-16-max{max-width:16rem}.scale-w-xxxl-16-min,.w-xxxl-16-min{min-width:16rem}.scale-w-xxxl-24,.w-xxxl-24{width:24rem}.scale-w-xxxl-24-max,.w-xxxl-24-max{max-width:24rem}.scale-w-xxxl-24-min,.w-xxxl-24-min{min-width:24rem}.scale-w-xxxl-32,.w-xxxl-32{width:32rem}.scale-w-xxxl-32-max,.w-xxxl-32-max{max-width:32rem}.scale-w-xxxl-32-min,.w-xxxl-32-min{min-width:32rem}.scale-w-xxxl-48,.w-xxxl-48{width:48rem}.scale-w-xxxl-48-max,.w-xxxl-48-max{max-width:48rem}.scale-w-xxxl-48-min,.w-xxxl-48-min{min-width:48rem}.scale-w-xxxl-64,.w-xxxl-64{width:64rem}.scale-w-xxxl-64-max,.w-xxxl-64-max{max-width:64rem}.scale-w-xxxl-64-min,.w-xxxl-64-min{min-width:64rem}.scale-w-xxxl-1-5,.w-xxxl-1-5{width:20%}.scale-w-xxxl-1-5-max,.w-xxxl-1-5-max{max-width:20%}.scale-w-xxxl-1-5-min,.w-xxxl-1-5-min{min-width:20%}.scale-w-xxxl-2-5,.w-xxxl-2-5{width:40%}.scale-w-xxxl-2-5-max,.w-xxxl-2-5-max{max-width:40%}.scale-w-xxxl-2-5-min,.w-xxxl-2-5-min{min-width:40%}.scale-w-xxxl-3-5,.w-xxxl-3-5{width:60%}.scale-w-xxxl-3-5-max,.w-xxxl-3-5-max{max-width:60%}.scale-w-xxxl-3-5-min,.w-xxxl-3-5-min{min-width:60%}.scale-w-xxxl-4-5,.w-xxxl-4-5{width:80%}.scale-w-xxxl-4-5-max,.w-xxxl-4-5-max{max-width:80%}.scale-w-xxxl-4-5-min,.w-xxxl-4-5-min{min-width:80%}.scale-w-xxxl-5-5,.w-xxxl-5-5{width:100%}.scale-w-xxxl-5-5-max,.w-xxxl-5-5-max{max-width:100%}.scale-w-xxxl-5-5-min,.w-xxxl-5-5-min{min-width:100%}.scale-w-xxxl-1-12,.w-xxxl-1-12{width:8.3333333333%}.scale-w-xxxl-1-12-max,.w-xxxl-1-12-max{max-width:8.3333333333%}.scale-w-xxxl-1-12-min,.w-xxxl-1-12-min{min-width:8.3333333333%}.scale-w-xxxl-2-12,.w-xxxl-2-12{width:16.6666666667%}.scale-w-xxxl-2-12-max,.w-xxxl-2-12-max{max-width:16.6666666667%}.scale-w-xxxl-2-12-min,.w-xxxl-2-12-min{min-width:16.6666666667%}.scale-w-xxxl-3-12,.w-xxxl-3-12{width:25%}.scale-w-xxxl-3-12-max,.w-xxxl-3-12-max{max-width:25%}.scale-w-xxxl-3-12-min,.w-xxxl-3-12-min{min-width:25%}.scale-w-xxxl-4-12,.w-xxxl-4-12{width:33.3333333333%}.scale-w-xxxl-4-12-max,.w-xxxl-4-12-max{max-width:33.3333333333%}.scale-w-xxxl-4-12-min,.w-xxxl-4-12-min{min-width:33.3333333333%}.scale-w-xxxl-5-12,.w-xxxl-5-12{width:41.6666666667%}.scale-w-xxxl-5-12-max,.w-xxxl-5-12-max{max-width:41.6666666667%}.scale-w-xxxl-5-12-min,.w-xxxl-5-12-min{min-width:41.6666666667%}.scale-w-xxxl-6-12,.w-xxxl-6-12{width:50%}.scale-w-xxxl-6-12-max,.w-xxxl-6-12-max{max-width:50%}.scale-w-xxxl-6-12-min,.w-xxxl-6-12-min{min-width:50%}.scale-w-xxxl-7-12,.w-xxxl-7-12{width:58.3333333333%}.scale-w-xxxl-7-12-max,.w-xxxl-7-12-max{max-width:58.3333333333%}.scale-w-xxxl-7-12-min,.w-xxxl-7-12-min{min-width:58.3333333333%}.scale-w-xxxl-8-12,.w-xxxl-8-12{width:66.6666666667%}.scale-w-xxxl-8-12-max,.w-xxxl-8-12-max{max-width:66.6666666667%}.scale-w-xxxl-8-12-min,.w-xxxl-8-12-min{min-width:66.6666666667%}.scale-w-xxxl-9-12,.w-xxxl-9-12{width:75%}.scale-w-xxxl-9-12-max,.w-xxxl-9-12-max{max-width:75%}.scale-w-xxxl-9-12-min,.w-xxxl-9-12-min{min-width:75%}.scale-w-xxxl-10-12,.w-xxxl-10-12{width:83.3333333333%}.scale-w-xxxl-10-12-max,.w-xxxl-10-12-max{max-width:83.3333333333%}.scale-w-xxxl-10-12-min,.w-xxxl-10-12-min{min-width:83.3333333333%}.scale-w-xxxl-11-12,.w-xxxl-11-12{width:91.6666666667%}.scale-w-xxxl-11-12-max,.w-xxxl-11-12-max{max-width:91.6666666667%}.scale-w-xxxl-11-12-min,.w-xxxl-11-12-min{min-width:91.6666666667%}.scale-w-xxxl-12-12,.w-xxxl-12-12{width:100%}.scale-w-xxxl-12-12-max,.w-xxxl-12-12-max{max-width:100%}.scale-w-xxxl-12-12-min,.w-xxxl-12-12-min{min-width:100%}.h-xxxl-full,.scale-h-xxxl-full{height:100%}.h-xxxl-full-max,.scale-h-xxxl-full-max{max-height:100%}.h-xxxl-full-min,.scale-h-xxxl-full-min{min-height:100%}.h-xxxl-mid,.scale-h-xxxl-mid{height:50%}.h-xxxl-mid-max,.scale-h-xxxl-mid-max{max-height:50%}.h-xxxl-mid-min,.scale-h-xxxl-mid-min{min-height:50%}.h-xxxl-quarter,.scale-h-xxxl-quarter{height:25%}.h-xxxl-quarter-max,.scale-h-xxxl-quarter-max{max-height:25%}.h-xxxl-quarter-min,.scale-h-xxxl-quarter-min{min-height:25%}.h-xxxl-tiers,.scale-h-xxxl-tiers{height:33%}.h-xxxl-tiers-max,.scale-h-xxxl-tiers-max{max-height:33%}.h-xxxl-tiers-min,.scale-h-xxxl-tiers-min{min-height:33%}.h-xxxl-content-max,.scale-h-xxxl-content-max{height:max-content}.h-xxxl-content-max-max,.scale-h-xxxl-content-max-max{max-height:max-content}.h-xxxl-content-max-min,.scale-h-xxxl-content-max-min{min-height:max-content}.h-xxxl-content-min,.scale-h-xxxl-content-min{height:min-content}.h-xxxl-content-min-max,.scale-h-xxxl-content-min-max{max-height:min-content}.h-xxxl-content-min-min,.scale-h-xxxl-content-min-min{min-height:min-content}.h-xxxl-1,.scale-h-xxxl-1{height:1rem}.h-xxxl-1-max,.scale-h-xxxl-1-max{max-height:1rem}.h-xxxl-1-min,.scale-h-xxxl-1-min{min-height:1rem}.h-xxxl-2,.scale-h-xxxl-2{height:2rem}.h-xxxl-2-max,.scale-h-xxxl-2-max{max-height:2rem}.h-xxxl-2-min,.scale-h-xxxl-2-min{min-height:2rem}.h-xxxl-4,.scale-h-xxxl-4{height:4rem}.h-xxxl-4-max,.scale-h-xxxl-4-max{max-height:4rem}.h-xxxl-4-min,.scale-h-xxxl-4-min{min-height:4rem}.h-xxxl-8,.scale-h-xxxl-8{height:8rem}.h-xxxl-8-max,.scale-h-xxxl-8-max{max-height:8rem}.h-xxxl-8-min,.scale-h-xxxl-8-min{min-height:8rem}.h-xxxl-16,.scale-h-xxxl-16{height:16rem}.h-xxxl-16-max,.scale-h-xxxl-16-max{max-height:16rem}.h-xxxl-16-min,.scale-h-xxxl-16-min{min-height:16rem}.h-xxxl-24,.scale-h-xxxl-24{height:24rem}.h-xxxl-24-max,.scale-h-xxxl-24-max{max-height:24rem}.h-xxxl-24-min,.scale-h-xxxl-24-min{min-height:24rem}.h-xxxl-32,.scale-h-xxxl-32{height:32rem}.h-xxxl-32-max,.scale-h-xxxl-32-max{max-height:32rem}.h-xxxl-32-min,.scale-h-xxxl-32-min{min-height:32rem}.h-xxxl-48,.scale-h-xxxl-48{height:48rem}.h-xxxl-48-max,.scale-h-xxxl-48-max{max-height:48rem}.h-xxxl-48-min,.scale-h-xxxl-48-min{min-height:48rem}.h-xxxl-64,.scale-h-xxxl-64{height:64rem}.h-xxxl-64-max,.scale-h-xxxl-64-max{max-height:64rem}.h-xxxl-64-min,.scale-h-xxxl-64-min{min-height:64rem}.h-xxxl-1-5,.scale-h-xxxl-1-5{height:20%}.h-xxxl-1-5-max,.scale-h-xxxl-1-5-max{max-height:20%}.h-xxxl-1-5-min,.scale-h-xxxl-1-5-min{min-height:20%}.h-xxxl-2-5,.scale-h-xxxl-2-5{height:40%}.h-xxxl-2-5-max,.scale-h-xxxl-2-5-max{max-height:40%}.h-xxxl-2-5-min,.scale-h-xxxl-2-5-min{min-height:40%}.h-xxxl-3-5,.scale-h-xxxl-3-5{height:60%}.h-xxxl-3-5-max,.scale-h-xxxl-3-5-max{max-height:60%}.h-xxxl-3-5-min,.scale-h-xxxl-3-5-min{min-height:60%}.h-xxxl-4-5,.scale-h-xxxl-4-5{height:80%}.h-xxxl-4-5-max,.scale-h-xxxl-4-5-max{max-height:80%}.h-xxxl-4-5-min,.scale-h-xxxl-4-5-min{min-height:80%}.h-xxxl-5-5,.scale-h-xxxl-5-5{height:100%}.h-xxxl-5-5-max,.scale-h-xxxl-5-5-max{max-height:100%}.h-xxxl-5-5-min,.scale-h-xxxl-5-5-min{min-height:100%}.h-xxxl-1-12,.scale-h-xxxl-1-12{height:8.3333333333%}.h-xxxl-1-12-max,.scale-h-xxxl-1-12-max{max-height:8.3333333333%}.h-xxxl-1-12-min,.scale-h-xxxl-1-12-min{min-height:8.3333333333%}.h-xxxl-2-12,.scale-h-xxxl-2-12{height:16.6666666667%}.h-xxxl-2-12-max,.scale-h-xxxl-2-12-max{max-height:16.6666666667%}.h-xxxl-2-12-min,.scale-h-xxxl-2-12-min{min-height:16.6666666667%}.h-xxxl-3-12,.scale-h-xxxl-3-12{height:25%}.h-xxxl-3-12-max,.scale-h-xxxl-3-12-max{max-height:25%}.h-xxxl-3-12-min,.scale-h-xxxl-3-12-min{min-height:25%}.h-xxxl-4-12,.scale-h-xxxl-4-12{height:33.3333333333%}.h-xxxl-4-12-max,.scale-h-xxxl-4-12-max{max-height:33.3333333333%}.h-xxxl-4-12-min,.scale-h-xxxl-4-12-min{min-height:33.3333333333%}.h-xxxl-5-12,.scale-h-xxxl-5-12{height:41.6666666667%}.h-xxxl-5-12-max,.scale-h-xxxl-5-12-max{max-height:41.6666666667%}.h-xxxl-5-12-min,.scale-h-xxxl-5-12-min{min-height:41.6666666667%}.h-xxxl-6-12,.scale-h-xxxl-6-12{height:50%}.h-xxxl-6-12-max,.scale-h-xxxl-6-12-max{max-height:50%}.h-xxxl-6-12-min,.scale-h-xxxl-6-12-min{min-height:50%}.h-xxxl-7-12,.scale-h-xxxl-7-12{height:58.3333333333%}.h-xxxl-7-12-max,.scale-h-xxxl-7-12-max{max-height:58.3333333333%}.h-xxxl-7-12-min,.scale-h-xxxl-7-12-min{min-height:58.3333333333%}.h-xxxl-8-12,.scale-h-xxxl-8-12{height:66.6666666667%}.h-xxxl-8-12-max,.scale-h-xxxl-8-12-max{max-height:66.6666666667%}.h-xxxl-8-12-min,.scale-h-xxxl-8-12-min{min-height:66.6666666667%}.h-xxxl-9-12,.scale-h-xxxl-9-12{height:75%}.h-xxxl-9-12-max,.scale-h-xxxl-9-12-max{max-height:75%}.h-xxxl-9-12-min,.scale-h-xxxl-9-12-min{min-height:75%}.h-xxxl-10-12,.scale-h-xxxl-10-12{height:83.3333333333%}.h-xxxl-10-12-max,.scale-h-xxxl-10-12-max{max-height:83.3333333333%}.h-xxxl-10-12-min,.scale-h-xxxl-10-12-min{min-height:83.3333333333%}.h-xxxl-11-12,.scale-h-xxxl-11-12{height:91.6666666667%}.h-xxxl-11-12-max,.scale-h-xxxl-11-12-max{max-height:91.6666666667%}.h-xxxl-11-12-min,.scale-h-xxxl-11-12-min{min-height:91.6666666667%}.h-xxxl-12-12,.scale-h-xxxl-12-12{height:100%}.h-xxxl-12-12-max,.scale-h-xxxl-12-12-max{max-height:100%}.h-xxxl-12-12-min,.scale-h-xxxl-12-12-min{min-height:100%}}@media only screen and (max-width:120rem){.scale-w-xxl-full,.w-xxl-full{width:100%}.scale-w-xxl-full-max,.w-xxl-full-max{max-width:100%}.scale-w-xxl-full-min,.w-xxl-full-min{min-width:100%}.scale-w-xxl-mid,.w-xxl-mid{width:50%}.scale-w-xxl-mid-max,.w-xxl-mid-max{max-width:50%}.scale-w-xxl-mid-min,.w-xxl-mid-min{min-width:50%}.scale-w-xxl-quarter,.w-xxl-quarter{width:25%}.scale-w-xxl-quarter-max,.w-xxl-quarter-max{max-width:25%}.scale-w-xxl-quarter-min,.w-xxl-quarter-min{min-width:25%}.scale-w-xxl-tiers,.w-xxl-tiers{width:33%}.scale-w-xxl-tiers-max,.w-xxl-tiers-max{max-width:33%}.scale-w-xxl-tiers-min,.w-xxl-tiers-min{min-width:33%}.scale-w-xxl-content-max,.w-xxl-content-max{width:max-content}.scale-w-xxl-content-max-max,.w-xxl-content-max-max{max-width:max-content}.scale-w-xxl-content-max-min,.w-xxl-content-max-min{min-width:max-content}.scale-w-xxl-content-min,.w-xxl-content-min{width:min-content}.scale-w-xxl-content-min-max,.w-xxl-content-min-max{max-width:min-content}.scale-w-xxl-content-min-min,.w-xxl-content-min-min{min-width:min-content}.scale-w-xxl-1,.w-xxl-1{width:1rem}.scale-w-xxl-1-max,.w-xxl-1-max{max-width:1rem}.scale-w-xxl-1-min,.w-xxl-1-min{min-width:1rem}.scale-w-xxl-2,.w-xxl-2{width:2rem}.scale-w-xxl-2-max,.w-xxl-2-max{max-width:2rem}.scale-w-xxl-2-min,.w-xxl-2-min{min-width:2rem}.scale-w-xxl-4,.w-xxl-4{width:4rem}.scale-w-xxl-4-max,.w-xxl-4-max{max-width:4rem}.scale-w-xxl-4-min,.w-xxl-4-min{min-width:4rem}.scale-w-xxl-8,.w-xxl-8{width:8rem}.scale-w-xxl-8-max,.w-xxl-8-max{max-width:8rem}.scale-w-xxl-8-min,.w-xxl-8-min{min-width:8rem}.scale-w-xxl-16,.w-xxl-16{width:16rem}.scale-w-xxl-16-max,.w-xxl-16-max{max-width:16rem}.scale-w-xxl-16-min,.w-xxl-16-min{min-width:16rem}.scale-w-xxl-24,.w-xxl-24{width:24rem}.scale-w-xxl-24-max,.w-xxl-24-max{max-width:24rem}.scale-w-xxl-24-min,.w-xxl-24-min{min-width:24rem}.scale-w-xxl-32,.w-xxl-32{width:32rem}.scale-w-xxl-32-max,.w-xxl-32-max{max-width:32rem}.scale-w-xxl-32-min,.w-xxl-32-min{min-width:32rem}.scale-w-xxl-48,.w-xxl-48{width:48rem}.scale-w-xxl-48-max,.w-xxl-48-max{max-width:48rem}.scale-w-xxl-48-min,.w-xxl-48-min{min-width:48rem}.scale-w-xxl-64,.w-xxl-64{width:64rem}.scale-w-xxl-64-max,.w-xxl-64-max{max-width:64rem}.scale-w-xxl-64-min,.w-xxl-64-min{min-width:64rem}.scale-w-xxl-1-5,.w-xxl-1-5{width:20%}.scale-w-xxl-1-5-max,.w-xxl-1-5-max{max-width:20%}.scale-w-xxl-1-5-min,.w-xxl-1-5-min{min-width:20%}.scale-w-xxl-2-5,.w-xxl-2-5{width:40%}.scale-w-xxl-2-5-max,.w-xxl-2-5-max{max-width:40%}.scale-w-xxl-2-5-min,.w-xxl-2-5-min{min-width:40%}.scale-w-xxl-3-5,.w-xxl-3-5{width:60%}.scale-w-xxl-3-5-max,.w-xxl-3-5-max{max-width:60%}.scale-w-xxl-3-5-min,.w-xxl-3-5-min{min-width:60%}.scale-w-xxl-4-5,.w-xxl-4-5{width:80%}.scale-w-xxl-4-5-max,.w-xxl-4-5-max{max-width:80%}.scale-w-xxl-4-5-min,.w-xxl-4-5-min{min-width:80%}.scale-w-xxl-5-5,.w-xxl-5-5{width:100%}.scale-w-xxl-5-5-max,.w-xxl-5-5-max{max-width:100%}.scale-w-xxl-5-5-min,.w-xxl-5-5-min{min-width:100%}.scale-w-xxl-1-12,.w-xxl-1-12{width:8.3333333333%}.scale-w-xxl-1-12-max,.w-xxl-1-12-max{max-width:8.3333333333%}.scale-w-xxl-1-12-min,.w-xxl-1-12-min{min-width:8.3333333333%}.scale-w-xxl-2-12,.w-xxl-2-12{width:16.6666666667%}.scale-w-xxl-2-12-max,.w-xxl-2-12-max{max-width:16.6666666667%}.scale-w-xxl-2-12-min,.w-xxl-2-12-min{min-width:16.6666666667%}.scale-w-xxl-3-12,.w-xxl-3-12{width:25%}.scale-w-xxl-3-12-max,.w-xxl-3-12-max{max-width:25%}.scale-w-xxl-3-12-min,.w-xxl-3-12-min{min-width:25%}.scale-w-xxl-4-12,.w-xxl-4-12{width:33.3333333333%}.scale-w-xxl-4-12-max,.w-xxl-4-12-max{max-width:33.3333333333%}.scale-w-xxl-4-12-min,.w-xxl-4-12-min{min-width:33.3333333333%}.scale-w-xxl-5-12,.w-xxl-5-12{width:41.6666666667%}.scale-w-xxl-5-12-max,.w-xxl-5-12-max{max-width:41.6666666667%}.scale-w-xxl-5-12-min,.w-xxl-5-12-min{min-width:41.6666666667%}.scale-w-xxl-6-12,.w-xxl-6-12{width:50%}.scale-w-xxl-6-12-max,.w-xxl-6-12-max{max-width:50%}.scale-w-xxl-6-12-min,.w-xxl-6-12-min{min-width:50%}.scale-w-xxl-7-12,.w-xxl-7-12{width:58.3333333333%}.scale-w-xxl-7-12-max,.w-xxl-7-12-max{max-width:58.3333333333%}.scale-w-xxl-7-12-min,.w-xxl-7-12-min{min-width:58.3333333333%}.scale-w-xxl-8-12,.w-xxl-8-12{width:66.6666666667%}.scale-w-xxl-8-12-max,.w-xxl-8-12-max{max-width:66.6666666667%}.scale-w-xxl-8-12-min,.w-xxl-8-12-min{min-width:66.6666666667%}.scale-w-xxl-9-12,.w-xxl-9-12{width:75%}.scale-w-xxl-9-12-max,.w-xxl-9-12-max{max-width:75%}.scale-w-xxl-9-12-min,.w-xxl-9-12-min{min-width:75%}.scale-w-xxl-10-12,.w-xxl-10-12{width:83.3333333333%}.scale-w-xxl-10-12-max,.w-xxl-10-12-max{max-width:83.3333333333%}.scale-w-xxl-10-12-min,.w-xxl-10-12-min{min-width:83.3333333333%}.scale-w-xxl-11-12,.w-xxl-11-12{width:91.6666666667%}.scale-w-xxl-11-12-max,.w-xxl-11-12-max{max-width:91.6666666667%}.scale-w-xxl-11-12-min,.w-xxl-11-12-min{min-width:91.6666666667%}.scale-w-xxl-12-12,.w-xxl-12-12{width:100%}.scale-w-xxl-12-12-max,.w-xxl-12-12-max{max-width:100%}.scale-w-xxl-12-12-min,.w-xxl-12-12-min{min-width:100%}.h-xxl-full,.scale-h-xxl-full{height:100%}.h-xxl-full-max,.scale-h-xxl-full-max{max-height:100%}.h-xxl-full-min,.scale-h-xxl-full-min{min-height:100%}.h-xxl-mid,.scale-h-xxl-mid{height:50%}.h-xxl-mid-max,.scale-h-xxl-mid-max{max-height:50%}.h-xxl-mid-min,.scale-h-xxl-mid-min{min-height:50%}.h-xxl-quarter,.scale-h-xxl-quarter{height:25%}.h-xxl-quarter-max,.scale-h-xxl-quarter-max{max-height:25%}.h-xxl-quarter-min,.scale-h-xxl-quarter-min{min-height:25%}.h-xxl-tiers,.scale-h-xxl-tiers{height:33%}.h-xxl-tiers-max,.scale-h-xxl-tiers-max{max-height:33%}.h-xxl-tiers-min,.scale-h-xxl-tiers-min{min-height:33%}.h-xxl-content-max,.scale-h-xxl-content-max{height:max-content}.h-xxl-content-max-max,.scale-h-xxl-content-max-max{max-height:max-content}.h-xxl-content-max-min,.scale-h-xxl-content-max-min{min-height:max-content}.h-xxl-content-min,.scale-h-xxl-content-min{height:min-content}.h-xxl-content-min-max,.scale-h-xxl-content-min-max{max-height:min-content}.h-xxl-content-min-min,.scale-h-xxl-content-min-min{min-height:min-content}.h-xxl-1,.scale-h-xxl-1{height:1rem}.h-xxl-1-max,.scale-h-xxl-1-max{max-height:1rem}.h-xxl-1-min,.scale-h-xxl-1-min{min-height:1rem}.h-xxl-2,.scale-h-xxl-2{height:2rem}.h-xxl-2-max,.scale-h-xxl-2-max{max-height:2rem}.h-xxl-2-min,.scale-h-xxl-2-min{min-height:2rem}.h-xxl-4,.scale-h-xxl-4{height:4rem}.h-xxl-4-max,.scale-h-xxl-4-max{max-height:4rem}.h-xxl-4-min,.scale-h-xxl-4-min{min-height:4rem}.h-xxl-8,.scale-h-xxl-8{height:8rem}.h-xxl-8-max,.scale-h-xxl-8-max{max-height:8rem}.h-xxl-8-min,.scale-h-xxl-8-min{min-height:8rem}.h-xxl-16,.scale-h-xxl-16{height:16rem}.h-xxl-16-max,.scale-h-xxl-16-max{max-height:16rem}.h-xxl-16-min,.scale-h-xxl-16-min{min-height:16rem}.h-xxl-24,.scale-h-xxl-24{height:24rem}.h-xxl-24-max,.scale-h-xxl-24-max{max-height:24rem}.h-xxl-24-min,.scale-h-xxl-24-min{min-height:24rem}.h-xxl-32,.scale-h-xxl-32{height:32rem}.h-xxl-32-max,.scale-h-xxl-32-max{max-height:32rem}.h-xxl-32-min,.scale-h-xxl-32-min{min-height:32rem}.h-xxl-48,.scale-h-xxl-48{height:48rem}.h-xxl-48-max,.scale-h-xxl-48-max{max-height:48rem}.h-xxl-48-min,.scale-h-xxl-48-min{min-height:48rem}.h-xxl-64,.scale-h-xxl-64{height:64rem}.h-xxl-64-max,.scale-h-xxl-64-max{max-height:64rem}.h-xxl-64-min,.scale-h-xxl-64-min{min-height:64rem}.h-xxl-1-5,.scale-h-xxl-1-5{height:20%}.h-xxl-1-5-max,.scale-h-xxl-1-5-max{max-height:20%}.h-xxl-1-5-min,.scale-h-xxl-1-5-min{min-height:20%}.h-xxl-2-5,.scale-h-xxl-2-5{height:40%}.h-xxl-2-5-max,.scale-h-xxl-2-5-max{max-height:40%}.h-xxl-2-5-min,.scale-h-xxl-2-5-min{min-height:40%}.h-xxl-3-5,.scale-h-xxl-3-5{height:60%}.h-xxl-3-5-max,.scale-h-xxl-3-5-max{max-height:60%}.h-xxl-3-5-min,.scale-h-xxl-3-5-min{min-height:60%}.h-xxl-4-5,.scale-h-xxl-4-5{height:80%}.h-xxl-4-5-max,.scale-h-xxl-4-5-max{max-height:80%}.h-xxl-4-5-min,.scale-h-xxl-4-5-min{min-height:80%}.h-xxl-5-5,.scale-h-xxl-5-5{height:100%}.h-xxl-5-5-max,.scale-h-xxl-5-5-max{max-height:100%}.h-xxl-5-5-min,.scale-h-xxl-5-5-min{min-height:100%}.h-xxl-1-12,.scale-h-xxl-1-12{height:8.3333333333%}.h-xxl-1-12-max,.scale-h-xxl-1-12-max{max-height:8.3333333333%}.h-xxl-1-12-min,.scale-h-xxl-1-12-min{min-height:8.3333333333%}.h-xxl-2-12,.scale-h-xxl-2-12{height:16.6666666667%}.h-xxl-2-12-max,.scale-h-xxl-2-12-max{max-height:16.6666666667%}.h-xxl-2-12-min,.scale-h-xxl-2-12-min{min-height:16.6666666667%}.h-xxl-3-12,.scale-h-xxl-3-12{height:25%}.h-xxl-3-12-max,.scale-h-xxl-3-12-max{max-height:25%}.h-xxl-3-12-min,.scale-h-xxl-3-12-min{min-height:25%}.h-xxl-4-12,.scale-h-xxl-4-12{height:33.3333333333%}.h-xxl-4-12-max,.scale-h-xxl-4-12-max{max-height:33.3333333333%}.h-xxl-4-12-min,.scale-h-xxl-4-12-min{min-height:33.3333333333%}.h-xxl-5-12,.scale-h-xxl-5-12{height:41.6666666667%}.h-xxl-5-12-max,.scale-h-xxl-5-12-max{max-height:41.6666666667%}.h-xxl-5-12-min,.scale-h-xxl-5-12-min{min-height:41.6666666667%}.h-xxl-6-12,.scale-h-xxl-6-12{height:50%}.h-xxl-6-12-max,.scale-h-xxl-6-12-max{max-height:50%}.h-xxl-6-12-min,.scale-h-xxl-6-12-min{min-height:50%}.h-xxl-7-12,.scale-h-xxl-7-12{height:58.3333333333%}.h-xxl-7-12-max,.scale-h-xxl-7-12-max{max-height:58.3333333333%}.h-xxl-7-12-min,.scale-h-xxl-7-12-min{min-height:58.3333333333%}.h-xxl-8-12,.scale-h-xxl-8-12{height:66.6666666667%}.h-xxl-8-12-max,.scale-h-xxl-8-12-max{max-height:66.6666666667%}.h-xxl-8-12-min,.scale-h-xxl-8-12-min{min-height:66.6666666667%}.h-xxl-9-12,.scale-h-xxl-9-12{height:75%}.h-xxl-9-12-max,.scale-h-xxl-9-12-max{max-height:75%}.h-xxl-9-12-min,.scale-h-xxl-9-12-min{min-height:75%}.h-xxl-10-12,.scale-h-xxl-10-12{height:83.3333333333%}.h-xxl-10-12-max,.scale-h-xxl-10-12-max{max-height:83.3333333333%}.h-xxl-10-12-min,.scale-h-xxl-10-12-min{min-height:83.3333333333%}.h-xxl-11-12,.scale-h-xxl-11-12{height:91.6666666667%}.h-xxl-11-12-max,.scale-h-xxl-11-12-max{max-height:91.6666666667%}.h-xxl-11-12-min,.scale-h-xxl-11-12-min{min-height:91.6666666667%}.h-xxl-12-12,.scale-h-xxl-12-12{height:100%}.h-xxl-12-12-max,.scale-h-xxl-12-12-max{max-height:100%}.h-xxl-12-12-min,.scale-h-xxl-12-12-min{min-height:100%}}@media only screen and (max-width:90rem){.scale-w-xl-full,.w-xl-full{width:100%}.scale-w-xl-full-max,.w-xl-full-max{max-width:100%}.scale-w-xl-full-min,.w-xl-full-min{min-width:100%}.scale-w-xl-mid,.w-xl-mid{width:50%}.scale-w-xl-mid-max,.w-xl-mid-max{max-width:50%}.scale-w-xl-mid-min,.w-xl-mid-min{min-width:50%}.scale-w-xl-quarter,.w-xl-quarter{width:25%}.scale-w-xl-quarter-max,.w-xl-quarter-max{max-width:25%}.scale-w-xl-quarter-min,.w-xl-quarter-min{min-width:25%}.scale-w-xl-tiers,.w-xl-tiers{width:33%}.scale-w-xl-tiers-max,.w-xl-tiers-max{max-width:33%}.scale-w-xl-tiers-min,.w-xl-tiers-min{min-width:33%}.scale-w-xl-content-max,.w-xl-content-max{width:max-content}.scale-w-xl-content-max-max,.w-xl-content-max-max{max-width:max-content}.scale-w-xl-content-max-min,.w-xl-content-max-min{min-width:max-content}.scale-w-xl-content-min,.w-xl-content-min{width:min-content}.scale-w-xl-content-min-max,.w-xl-content-min-max{max-width:min-content}.scale-w-xl-content-min-min,.w-xl-content-min-min{min-width:min-content}.scale-w-xl-1,.w-xl-1{width:1rem}.scale-w-xl-1-max,.w-xl-1-max{max-width:1rem}.scale-w-xl-1-min,.w-xl-1-min{min-width:1rem}.scale-w-xl-2,.w-xl-2{width:2rem}.scale-w-xl-2-max,.w-xl-2-max{max-width:2rem}.scale-w-xl-2-min,.w-xl-2-min{min-width:2rem}.scale-w-xl-4,.w-xl-4{width:4rem}.scale-w-xl-4-max,.w-xl-4-max{max-width:4rem}.scale-w-xl-4-min,.w-xl-4-min{min-width:4rem}.scale-w-xl-8,.w-xl-8{width:8rem}.scale-w-xl-8-max,.w-xl-8-max{max-width:8rem}.scale-w-xl-8-min,.w-xl-8-min{min-width:8rem}.scale-w-xl-16,.w-xl-16{width:16rem}.scale-w-xl-16-max,.w-xl-16-max{max-width:16rem}.scale-w-xl-16-min,.w-xl-16-min{min-width:16rem}.scale-w-xl-24,.w-xl-24{width:24rem}.scale-w-xl-24-max,.w-xl-24-max{max-width:24rem}.scale-w-xl-24-min,.w-xl-24-min{min-width:24rem}.scale-w-xl-32,.w-xl-32{width:32rem}.scale-w-xl-32-max,.w-xl-32-max{max-width:32rem}.scale-w-xl-32-min,.w-xl-32-min{min-width:32rem}.scale-w-xl-48,.w-xl-48{width:48rem}.scale-w-xl-48-max,.w-xl-48-max{max-width:48rem}.scale-w-xl-48-min,.w-xl-48-min{min-width:48rem}.scale-w-xl-64,.w-xl-64{width:64rem}.scale-w-xl-64-max,.w-xl-64-max{max-width:64rem}.scale-w-xl-64-min,.w-xl-64-min{min-width:64rem}.scale-w-xl-1-5,.w-xl-1-5{width:20%}.scale-w-xl-1-5-max,.w-xl-1-5-max{max-width:20%}.scale-w-xl-1-5-min,.w-xl-1-5-min{min-width:20%}.scale-w-xl-2-5,.w-xl-2-5{width:40%}.scale-w-xl-2-5-max,.w-xl-2-5-max{max-width:40%}.scale-w-xl-2-5-min,.w-xl-2-5-min{min-width:40%}.scale-w-xl-3-5,.w-xl-3-5{width:60%}.scale-w-xl-3-5-max,.w-xl-3-5-max{max-width:60%}.scale-w-xl-3-5-min,.w-xl-3-5-min{min-width:60%}.scale-w-xl-4-5,.w-xl-4-5{width:80%}.scale-w-xl-4-5-max,.w-xl-4-5-max{max-width:80%}.scale-w-xl-4-5-min,.w-xl-4-5-min{min-width:80%}.scale-w-xl-5-5,.w-xl-5-5{width:100%}.scale-w-xl-5-5-max,.w-xl-5-5-max{max-width:100%}.scale-w-xl-5-5-min,.w-xl-5-5-min{min-width:100%}.scale-w-xl-1-12,.w-xl-1-12{width:8.3333333333%}.scale-w-xl-1-12-max,.w-xl-1-12-max{max-width:8.3333333333%}.scale-w-xl-1-12-min,.w-xl-1-12-min{min-width:8.3333333333%}.scale-w-xl-2-12,.w-xl-2-12{width:16.6666666667%}.scale-w-xl-2-12-max,.w-xl-2-12-max{max-width:16.6666666667%}.scale-w-xl-2-12-min,.w-xl-2-12-min{min-width:16.6666666667%}.scale-w-xl-3-12,.w-xl-3-12{width:25%}.scale-w-xl-3-12-max,.w-xl-3-12-max{max-width:25%}.scale-w-xl-3-12-min,.w-xl-3-12-min{min-width:25%}.scale-w-xl-4-12,.w-xl-4-12{width:33.3333333333%}.scale-w-xl-4-12-max,.w-xl-4-12-max{max-width:33.3333333333%}.scale-w-xl-4-12-min,.w-xl-4-12-min{min-width:33.3333333333%}.scale-w-xl-5-12,.w-xl-5-12{width:41.6666666667%}.scale-w-xl-5-12-max,.w-xl-5-12-max{max-width:41.6666666667%}.scale-w-xl-5-12-min,.w-xl-5-12-min{min-width:41.6666666667%}.scale-w-xl-6-12,.w-xl-6-12{width:50%}.scale-w-xl-6-12-max,.w-xl-6-12-max{max-width:50%}.scale-w-xl-6-12-min,.w-xl-6-12-min{min-width:50%}.scale-w-xl-7-12,.w-xl-7-12{width:58.3333333333%}.scale-w-xl-7-12-max,.w-xl-7-12-max{max-width:58.3333333333%}.scale-w-xl-7-12-min,.w-xl-7-12-min{min-width:58.3333333333%}.scale-w-xl-8-12,.w-xl-8-12{width:66.6666666667%}.scale-w-xl-8-12-max,.w-xl-8-12-max{max-width:66.6666666667%}.scale-w-xl-8-12-min,.w-xl-8-12-min{min-width:66.6666666667%}.scale-w-xl-9-12,.w-xl-9-12{width:75%}.scale-w-xl-9-12-max,.w-xl-9-12-max{max-width:75%}.scale-w-xl-9-12-min,.w-xl-9-12-min{min-width:75%}.scale-w-xl-10-12,.w-xl-10-12{width:83.3333333333%}.scale-w-xl-10-12-max,.w-xl-10-12-max{max-width:83.3333333333%}.scale-w-xl-10-12-min,.w-xl-10-12-min{min-width:83.3333333333%}.scale-w-xl-11-12,.w-xl-11-12{width:91.6666666667%}.scale-w-xl-11-12-max,.w-xl-11-12-max{max-width:91.6666666667%}.scale-w-xl-11-12-min,.w-xl-11-12-min{min-width:91.6666666667%}.scale-w-xl-12-12,.w-xl-12-12{width:100%}.scale-w-xl-12-12-max,.w-xl-12-12-max{max-width:100%}.scale-w-xl-12-12-min,.w-xl-12-12-min{min-width:100%}.h-xl-full,.scale-h-xl-full{height:100%}.h-xl-full-max,.scale-h-xl-full-max{max-height:100%}.h-xl-full-min,.scale-h-xl-full-min{min-height:100%}.h-xl-mid,.scale-h-xl-mid{height:50%}.h-xl-mid-max,.scale-h-xl-mid-max{max-height:50%}.h-xl-mid-min,.scale-h-xl-mid-min{min-height:50%}.h-xl-quarter,.scale-h-xl-quarter{height:25%}.h-xl-quarter-max,.scale-h-xl-quarter-max{max-height:25%}.h-xl-quarter-min,.scale-h-xl-quarter-min{min-height:25%}.h-xl-tiers,.scale-h-xl-tiers{height:33%}.h-xl-tiers-max,.scale-h-xl-tiers-max{max-height:33%}.h-xl-tiers-min,.scale-h-xl-tiers-min{min-height:33%}.h-xl-content-max,.scale-h-xl-content-max{height:max-content}.h-xl-content-max-max,.scale-h-xl-content-max-max{max-height:max-content}.h-xl-content-max-min,.scale-h-xl-content-max-min{min-height:max-content}.h-xl-content-min,.scale-h-xl-content-min{height:min-content}.h-xl-content-min-max,.scale-h-xl-content-min-max{max-height:min-content}.h-xl-content-min-min,.scale-h-xl-content-min-min{min-height:min-content}.h-xl-1,.scale-h-xl-1{height:1rem}.h-xl-1-max,.scale-h-xl-1-max{max-height:1rem}.h-xl-1-min,.scale-h-xl-1-min{min-height:1rem}.h-xl-2,.scale-h-xl-2{height:2rem}.h-xl-2-max,.scale-h-xl-2-max{max-height:2rem}.h-xl-2-min,.scale-h-xl-2-min{min-height:2rem}.h-xl-4,.scale-h-xl-4{height:4rem}.h-xl-4-max,.scale-h-xl-4-max{max-height:4rem}.h-xl-4-min,.scale-h-xl-4-min{min-height:4rem}.h-xl-8,.scale-h-xl-8{height:8rem}.h-xl-8-max,.scale-h-xl-8-max{max-height:8rem}.h-xl-8-min,.scale-h-xl-8-min{min-height:8rem}.h-xl-16,.scale-h-xl-16{height:16rem}.h-xl-16-max,.scale-h-xl-16-max{max-height:16rem}.h-xl-16-min,.scale-h-xl-16-min{min-height:16rem}.h-xl-24,.scale-h-xl-24{height:24rem}.h-xl-24-max,.scale-h-xl-24-max{max-height:24rem}.h-xl-24-min,.scale-h-xl-24-min{min-height:24rem}.h-xl-32,.scale-h-xl-32{height:32rem}.h-xl-32-max,.scale-h-xl-32-max{max-height:32rem}.h-xl-32-min,.scale-h-xl-32-min{min-height:32rem}.h-xl-48,.scale-h-xl-48{height:48rem}.h-xl-48-max,.scale-h-xl-48-max{max-height:48rem}.h-xl-48-min,.scale-h-xl-48-min{min-height:48rem}.h-xl-64,.scale-h-xl-64{height:64rem}.h-xl-64-max,.scale-h-xl-64-max{max-height:64rem}.h-xl-64-min,.scale-h-xl-64-min{min-height:64rem}.h-xl-1-5,.scale-h-xl-1-5{height:20%}.h-xl-1-5-max,.scale-h-xl-1-5-max{max-height:20%}.h-xl-1-5-min,.scale-h-xl-1-5-min{min-height:20%}.h-xl-2-5,.scale-h-xl-2-5{height:40%}.h-xl-2-5-max,.scale-h-xl-2-5-max{max-height:40%}.h-xl-2-5-min,.scale-h-xl-2-5-min{min-height:40%}.h-xl-3-5,.scale-h-xl-3-5{height:60%}.h-xl-3-5-max,.scale-h-xl-3-5-max{max-height:60%}.h-xl-3-5-min,.scale-h-xl-3-5-min{min-height:60%}.h-xl-4-5,.scale-h-xl-4-5{height:80%}.h-xl-4-5-max,.scale-h-xl-4-5-max{max-height:80%}.h-xl-4-5-min,.scale-h-xl-4-5-min{min-height:80%}.h-xl-5-5,.scale-h-xl-5-5{height:100%}.h-xl-5-5-max,.scale-h-xl-5-5-max{max-height:100%}.h-xl-5-5-min,.scale-h-xl-5-5-min{min-height:100%}.h-xl-1-12,.scale-h-xl-1-12{height:8.3333333333%}.h-xl-1-12-max,.scale-h-xl-1-12-max{max-height:8.3333333333%}.h-xl-1-12-min,.scale-h-xl-1-12-min{min-height:8.3333333333%}.h-xl-2-12,.scale-h-xl-2-12{height:16.6666666667%}.h-xl-2-12-max,.scale-h-xl-2-12-max{max-height:16.6666666667%}.h-xl-2-12-min,.scale-h-xl-2-12-min{min-height:16.6666666667%}.h-xl-3-12,.scale-h-xl-3-12{height:25%}.h-xl-3-12-max,.scale-h-xl-3-12-max{max-height:25%}.h-xl-3-12-min,.scale-h-xl-3-12-min{min-height:25%}.h-xl-4-12,.scale-h-xl-4-12{height:33.3333333333%}.h-xl-4-12-max,.scale-h-xl-4-12-max{max-height:33.3333333333%}.h-xl-4-12-min,.scale-h-xl-4-12-min{min-height:33.3333333333%}.h-xl-5-12,.scale-h-xl-5-12{height:41.6666666667%}.h-xl-5-12-max,.scale-h-xl-5-12-max{max-height:41.6666666667%}.h-xl-5-12-min,.scale-h-xl-5-12-min{min-height:41.6666666667%}.h-xl-6-12,.scale-h-xl-6-12{height:50%}.h-xl-6-12-max,.scale-h-xl-6-12-max{max-height:50%}.h-xl-6-12-min,.scale-h-xl-6-12-min{min-height:50%}.h-xl-7-12,.scale-h-xl-7-12{height:58.3333333333%}.h-xl-7-12-max,.scale-h-xl-7-12-max{max-height:58.3333333333%}.h-xl-7-12-min,.scale-h-xl-7-12-min{min-height:58.3333333333%}.h-xl-8-12,.scale-h-xl-8-12{height:66.6666666667%}.h-xl-8-12-max,.scale-h-xl-8-12-max{max-height:66.6666666667%}.h-xl-8-12-min,.scale-h-xl-8-12-min{min-height:66.6666666667%}.h-xl-9-12,.scale-h-xl-9-12{height:75%}.h-xl-9-12-max,.scale-h-xl-9-12-max{max-height:75%}.h-xl-9-12-min,.scale-h-xl-9-12-min{min-height:75%}.h-xl-10-12,.scale-h-xl-10-12{height:83.3333333333%}.h-xl-10-12-max,.scale-h-xl-10-12-max{max-height:83.3333333333%}.h-xl-10-12-min,.scale-h-xl-10-12-min{min-height:83.3333333333%}.h-xl-11-12,.scale-h-xl-11-12{height:91.6666666667%}.h-xl-11-12-max,.scale-h-xl-11-12-max{max-height:91.6666666667%}.h-xl-11-12-min,.scale-h-xl-11-12-min{min-height:91.6666666667%}.h-xl-12-12,.scale-h-xl-12-12{height:100%}.h-xl-12-12-max,.scale-h-xl-12-12-max{max-height:100%}.h-xl-12-12-min,.scale-h-xl-12-12-min{min-height:100%}}@media only screen and (max-width:64rem){.scale-w-lg-full,.w-lg-full{width:100%}.scale-w-lg-full-max,.w-lg-full-max{max-width:100%}.scale-w-lg-full-min,.w-lg-full-min{min-width:100%}.scale-w-lg-mid,.w-lg-mid{width:50%}.scale-w-lg-mid-max,.w-lg-mid-max{max-width:50%}.scale-w-lg-mid-min,.w-lg-mid-min{min-width:50%}.scale-w-lg-quarter,.w-lg-quarter{width:25%}.scale-w-lg-quarter-max,.w-lg-quarter-max{max-width:25%}.scale-w-lg-quarter-min,.w-lg-quarter-min{min-width:25%}.scale-w-lg-tiers,.w-lg-tiers{width:33%}.scale-w-lg-tiers-max,.w-lg-tiers-max{max-width:33%}.scale-w-lg-tiers-min,.w-lg-tiers-min{min-width:33%}.scale-w-lg-content-max,.w-lg-content-max{width:max-content}.scale-w-lg-content-max-max,.w-lg-content-max-max{max-width:max-content}.scale-w-lg-content-max-min,.w-lg-content-max-min{min-width:max-content}.scale-w-lg-content-min,.w-lg-content-min{width:min-content}.scale-w-lg-content-min-max,.w-lg-content-min-max{max-width:min-content}.scale-w-lg-content-min-min,.w-lg-content-min-min{min-width:min-content}.scale-w-lg-1,.w-lg-1{width:1rem}.scale-w-lg-1-max,.w-lg-1-max{max-width:1rem}.scale-w-lg-1-min,.w-lg-1-min{min-width:1rem}.scale-w-lg-2,.w-lg-2{width:2rem}.scale-w-lg-2-max,.w-lg-2-max{max-width:2rem}.scale-w-lg-2-min,.w-lg-2-min{min-width:2rem}.scale-w-lg-4,.w-lg-4{width:4rem}.scale-w-lg-4-max,.w-lg-4-max{max-width:4rem}.scale-w-lg-4-min,.w-lg-4-min{min-width:4rem}.scale-w-lg-8,.w-lg-8{width:8rem}.scale-w-lg-8-max,.w-lg-8-max{max-width:8rem}.scale-w-lg-8-min,.w-lg-8-min{min-width:8rem}.scale-w-lg-16,.w-lg-16{width:16rem}.scale-w-lg-16-max,.w-lg-16-max{max-width:16rem}.scale-w-lg-16-min,.w-lg-16-min{min-width:16rem}.scale-w-lg-24,.w-lg-24{width:24rem}.scale-w-lg-24-max,.w-lg-24-max{max-width:24rem}.scale-w-lg-24-min,.w-lg-24-min{min-width:24rem}.scale-w-lg-32,.w-lg-32{width:32rem}.scale-w-lg-32-max,.w-lg-32-max{max-width:32rem}.scale-w-lg-32-min,.w-lg-32-min{min-width:32rem}.scale-w-lg-48,.w-lg-48{width:48rem}.scale-w-lg-48-max,.w-lg-48-max{max-width:48rem}.scale-w-lg-48-min,.w-lg-48-min{min-width:48rem}.scale-w-lg-64,.w-lg-64{width:64rem}.scale-w-lg-64-max,.w-lg-64-max{max-width:64rem}.scale-w-lg-64-min,.w-lg-64-min{min-width:64rem}.scale-w-lg-1-5,.w-lg-1-5{width:20%}.scale-w-lg-1-5-max,.w-lg-1-5-max{max-width:20%}.scale-w-lg-1-5-min,.w-lg-1-5-min{min-width:20%}.scale-w-lg-2-5,.w-lg-2-5{width:40%}.scale-w-lg-2-5-max,.w-lg-2-5-max{max-width:40%}.scale-w-lg-2-5-min,.w-lg-2-5-min{min-width:40%}.scale-w-lg-3-5,.w-lg-3-5{width:60%}.scale-w-lg-3-5-max,.w-lg-3-5-max{max-width:60%}.scale-w-lg-3-5-min,.w-lg-3-5-min{min-width:60%}.scale-w-lg-4-5,.w-lg-4-5{width:80%}.scale-w-lg-4-5-max,.w-lg-4-5-max{max-width:80%}.scale-w-lg-4-5-min,.w-lg-4-5-min{min-width:80%}.scale-w-lg-5-5,.w-lg-5-5{width:100%}.scale-w-lg-5-5-max,.w-lg-5-5-max{max-width:100%}.scale-w-lg-5-5-min,.w-lg-5-5-min{min-width:100%}.scale-w-lg-1-12,.w-lg-1-12{width:8.3333333333%}.scale-w-lg-1-12-max,.w-lg-1-12-max{max-width:8.3333333333%}.scale-w-lg-1-12-min,.w-lg-1-12-min{min-width:8.3333333333%}.scale-w-lg-2-12,.w-lg-2-12{width:16.6666666667%}.scale-w-lg-2-12-max,.w-lg-2-12-max{max-width:16.6666666667%}.scale-w-lg-2-12-min,.w-lg-2-12-min{min-width:16.6666666667%}.scale-w-lg-3-12,.w-lg-3-12{width:25%}.scale-w-lg-3-12-max,.w-lg-3-12-max{max-width:25%}.scale-w-lg-3-12-min,.w-lg-3-12-min{min-width:25%}.scale-w-lg-4-12,.w-lg-4-12{width:33.3333333333%}.scale-w-lg-4-12-max,.w-lg-4-12-max{max-width:33.3333333333%}.scale-w-lg-4-12-min,.w-lg-4-12-min{min-width:33.3333333333%}.scale-w-lg-5-12,.w-lg-5-12{width:41.6666666667%}.scale-w-lg-5-12-max,.w-lg-5-12-max{max-width:41.6666666667%}.scale-w-lg-5-12-min,.w-lg-5-12-min{min-width:41.6666666667%}.scale-w-lg-6-12,.w-lg-6-12{width:50%}.scale-w-lg-6-12-max,.w-lg-6-12-max{max-width:50%}.scale-w-lg-6-12-min,.w-lg-6-12-min{min-width:50%}.scale-w-lg-7-12,.w-lg-7-12{width:58.3333333333%}.scale-w-lg-7-12-max,.w-lg-7-12-max{max-width:58.3333333333%}.scale-w-lg-7-12-min,.w-lg-7-12-min{min-width:58.3333333333%}.scale-w-lg-8-12,.w-lg-8-12{width:66.6666666667%}.scale-w-lg-8-12-max,.w-lg-8-12-max{max-width:66.6666666667%}.scale-w-lg-8-12-min,.w-lg-8-12-min{min-width:66.6666666667%}.scale-w-lg-9-12,.w-lg-9-12{width:75%}.scale-w-lg-9-12-max,.w-lg-9-12-max{max-width:75%}.scale-w-lg-9-12-min,.w-lg-9-12-min{min-width:75%}.scale-w-lg-10-12,.w-lg-10-12{width:83.3333333333%}.scale-w-lg-10-12-max,.w-lg-10-12-max{max-width:83.3333333333%}.scale-w-lg-10-12-min,.w-lg-10-12-min{min-width:83.3333333333%}.scale-w-lg-11-12,.w-lg-11-12{width:91.6666666667%}.scale-w-lg-11-12-max,.w-lg-11-12-max{max-width:91.6666666667%}.scale-w-lg-11-12-min,.w-lg-11-12-min{min-width:91.6666666667%}.scale-w-lg-12-12,.w-lg-12-12{width:100%}.scale-w-lg-12-12-max,.w-lg-12-12-max{max-width:100%}.scale-w-lg-12-12-min,.w-lg-12-12-min{min-width:100%}.h-lg-full,.scale-h-lg-full{height:100%}.h-lg-full-max,.scale-h-lg-full-max{max-height:100%}.h-lg-full-min,.scale-h-lg-full-min{min-height:100%}.h-lg-mid,.scale-h-lg-mid{height:50%}.h-lg-mid-max,.scale-h-lg-mid-max{max-height:50%}.h-lg-mid-min,.scale-h-lg-mid-min{min-height:50%}.h-lg-quarter,.scale-h-lg-quarter{height:25%}.h-lg-quarter-max,.scale-h-lg-quarter-max{max-height:25%}.h-lg-quarter-min,.scale-h-lg-quarter-min{min-height:25%}.h-lg-tiers,.scale-h-lg-tiers{height:33%}.h-lg-tiers-max,.scale-h-lg-tiers-max{max-height:33%}.h-lg-tiers-min,.scale-h-lg-tiers-min{min-height:33%}.h-lg-content-max,.scale-h-lg-content-max{height:max-content}.h-lg-content-max-max,.scale-h-lg-content-max-max{max-height:max-content}.h-lg-content-max-min,.scale-h-lg-content-max-min{min-height:max-content}.h-lg-content-min,.scale-h-lg-content-min{height:min-content}.h-lg-content-min-max,.scale-h-lg-content-min-max{max-height:min-content}.h-lg-content-min-min,.scale-h-lg-content-min-min{min-height:min-content}.h-lg-1,.scale-h-lg-1{height:1rem}.h-lg-1-max,.scale-h-lg-1-max{max-height:1rem}.h-lg-1-min,.scale-h-lg-1-min{min-height:1rem}.h-lg-2,.scale-h-lg-2{height:2rem}.h-lg-2-max,.scale-h-lg-2-max{max-height:2rem}.h-lg-2-min,.scale-h-lg-2-min{min-height:2rem}.h-lg-4,.scale-h-lg-4{height:4rem}.h-lg-4-max,.scale-h-lg-4-max{max-height:4rem}.h-lg-4-min,.scale-h-lg-4-min{min-height:4rem}.h-lg-8,.scale-h-lg-8{height:8rem}.h-lg-8-max,.scale-h-lg-8-max{max-height:8rem}.h-lg-8-min,.scale-h-lg-8-min{min-height:8rem}.h-lg-16,.scale-h-lg-16{height:16rem}.h-lg-16-max,.scale-h-lg-16-max{max-height:16rem}.h-lg-16-min,.scale-h-lg-16-min{min-height:16rem}.h-lg-24,.scale-h-lg-24{height:24rem}.h-lg-24-max,.scale-h-lg-24-max{max-height:24rem}.h-lg-24-min,.scale-h-lg-24-min{min-height:24rem}.h-lg-32,.scale-h-lg-32{height:32rem}.h-lg-32-max,.scale-h-lg-32-max{max-height:32rem}.h-lg-32-min,.scale-h-lg-32-min{min-height:32rem}.h-lg-48,.scale-h-lg-48{height:48rem}.h-lg-48-max,.scale-h-lg-48-max{max-height:48rem}.h-lg-48-min,.scale-h-lg-48-min{min-height:48rem}.h-lg-64,.scale-h-lg-64{height:64rem}.h-lg-64-max,.scale-h-lg-64-max{max-height:64rem}.h-lg-64-min,.scale-h-lg-64-min{min-height:64rem}.h-lg-1-5,.scale-h-lg-1-5{height:20%}.h-lg-1-5-max,.scale-h-lg-1-5-max{max-height:20%}.h-lg-1-5-min,.scale-h-lg-1-5-min{min-height:20%}.h-lg-2-5,.scale-h-lg-2-5{height:40%}.h-lg-2-5-max,.scale-h-lg-2-5-max{max-height:40%}.h-lg-2-5-min,.scale-h-lg-2-5-min{min-height:40%}.h-lg-3-5,.scale-h-lg-3-5{height:60%}.h-lg-3-5-max,.scale-h-lg-3-5-max{max-height:60%}.h-lg-3-5-min,.scale-h-lg-3-5-min{min-height:60%}.h-lg-4-5,.scale-h-lg-4-5{height:80%}.h-lg-4-5-max,.scale-h-lg-4-5-max{max-height:80%}.h-lg-4-5-min,.scale-h-lg-4-5-min{min-height:80%}.h-lg-5-5,.scale-h-lg-5-5{height:100%}.h-lg-5-5-max,.scale-h-lg-5-5-max{max-height:100%}.h-lg-5-5-min,.scale-h-lg-5-5-min{min-height:100%}.h-lg-1-12,.scale-h-lg-1-12{height:8.3333333333%}.h-lg-1-12-max,.scale-h-lg-1-12-max{max-height:8.3333333333%}.h-lg-1-12-min,.scale-h-lg-1-12-min{min-height:8.3333333333%}.h-lg-2-12,.scale-h-lg-2-12{height:16.6666666667%}.h-lg-2-12-max,.scale-h-lg-2-12-max{max-height:16.6666666667%}.h-lg-2-12-min,.scale-h-lg-2-12-min{min-height:16.6666666667%}.h-lg-3-12,.scale-h-lg-3-12{height:25%}.h-lg-3-12-max,.scale-h-lg-3-12-max{max-height:25%}.h-lg-3-12-min,.scale-h-lg-3-12-min{min-height:25%}.h-lg-4-12,.scale-h-lg-4-12{height:33.3333333333%}.h-lg-4-12-max,.scale-h-lg-4-12-max{max-height:33.3333333333%}.h-lg-4-12-min,.scale-h-lg-4-12-min{min-height:33.3333333333%}.h-lg-5-12,.scale-h-lg-5-12{height:41.6666666667%}.h-lg-5-12-max,.scale-h-lg-5-12-max{max-height:41.6666666667%}.h-lg-5-12-min,.scale-h-lg-5-12-min{min-height:41.6666666667%}.h-lg-6-12,.scale-h-lg-6-12{height:50%}.h-lg-6-12-max,.scale-h-lg-6-12-max{max-height:50%}.h-lg-6-12-min,.scale-h-lg-6-12-min{min-height:50%}.h-lg-7-12,.scale-h-lg-7-12{height:58.3333333333%}.h-lg-7-12-max,.scale-h-lg-7-12-max{max-height:58.3333333333%}.h-lg-7-12-min,.scale-h-lg-7-12-min{min-height:58.3333333333%}.h-lg-8-12,.scale-h-lg-8-12{height:66.6666666667%}.h-lg-8-12-max,.scale-h-lg-8-12-max{max-height:66.6666666667%}.h-lg-8-12-min,.scale-h-lg-8-12-min{min-height:66.6666666667%}.h-lg-9-12,.scale-h-lg-9-12{height:75%}.h-lg-9-12-max,.scale-h-lg-9-12-max{max-height:75%}.h-lg-9-12-min,.scale-h-lg-9-12-min{min-height:75%}.h-lg-10-12,.scale-h-lg-10-12{height:83.3333333333%}.h-lg-10-12-max,.scale-h-lg-10-12-max{max-height:83.3333333333%}.h-lg-10-12-min,.scale-h-lg-10-12-min{min-height:83.3333333333%}.h-lg-11-12,.scale-h-lg-11-12{height:91.6666666667%}.h-lg-11-12-max,.scale-h-lg-11-12-max{max-height:91.6666666667%}.h-lg-11-12-min,.scale-h-lg-11-12-min{min-height:91.6666666667%}.h-lg-12-12,.scale-h-lg-12-12{height:100%}.h-lg-12-12-max,.scale-h-lg-12-12-max{max-height:100%}.h-lg-12-12-min,.scale-h-lg-12-12-min{min-height:100%}}@media only screen and (max-width:48rem){.scale-w-md-full,.w-md-full{width:100%}.scale-w-md-full-max,.w-md-full-max{max-width:100%}.scale-w-md-full-min,.w-md-full-min{min-width:100%}.scale-w-md-mid,.w-md-mid{width:50%}.scale-w-md-mid-max,.w-md-mid-max{max-width:50%}.scale-w-md-mid-min,.w-md-mid-min{min-width:50%}.scale-w-md-quarter,.w-md-quarter{width:25%}.scale-w-md-quarter-max,.w-md-quarter-max{max-width:25%}.scale-w-md-quarter-min,.w-md-quarter-min{min-width:25%}.scale-w-md-tiers,.w-md-tiers{width:33%}.scale-w-md-tiers-max,.w-md-tiers-max{max-width:33%}.scale-w-md-tiers-min,.w-md-tiers-min{min-width:33%}.scale-w-md-content-max,.w-md-content-max{width:max-content}.scale-w-md-content-max-max,.w-md-content-max-max{max-width:max-content}.scale-w-md-content-max-min,.w-md-content-max-min{min-width:max-content}.scale-w-md-content-min,.w-md-content-min{width:min-content}.scale-w-md-content-min-max,.w-md-content-min-max{max-width:min-content}.scale-w-md-content-min-min,.w-md-content-min-min{min-width:min-content}.scale-w-md-1,.w-md-1{width:1rem}.scale-w-md-1-max,.w-md-1-max{max-width:1rem}.scale-w-md-1-min,.w-md-1-min{min-width:1rem}.scale-w-md-2,.w-md-2{width:2rem}.scale-w-md-2-max,.w-md-2-max{max-width:2rem}.scale-w-md-2-min,.w-md-2-min{min-width:2rem}.scale-w-md-4,.w-md-4{width:4rem}.scale-w-md-4-max,.w-md-4-max{max-width:4rem}.scale-w-md-4-min,.w-md-4-min{min-width:4rem}.scale-w-md-8,.w-md-8{width:8rem}.scale-w-md-8-max,.w-md-8-max{max-width:8rem}.scale-w-md-8-min,.w-md-8-min{min-width:8rem}.scale-w-md-16,.w-md-16{width:16rem}.scale-w-md-16-max,.w-md-16-max{max-width:16rem}.scale-w-md-16-min,.w-md-16-min{min-width:16rem}.scale-w-md-24,.w-md-24{width:24rem}.scale-w-md-24-max,.w-md-24-max{max-width:24rem}.scale-w-md-24-min,.w-md-24-min{min-width:24rem}.scale-w-md-32,.w-md-32{width:32rem}.scale-w-md-32-max,.w-md-32-max{max-width:32rem}.scale-w-md-32-min,.w-md-32-min{min-width:32rem}.scale-w-md-48,.w-md-48{width:48rem}.scale-w-md-48-max,.w-md-48-max{max-width:48rem}.scale-w-md-48-min,.w-md-48-min{min-width:48rem}.scale-w-md-64,.w-md-64{width:64rem}.scale-w-md-64-max,.w-md-64-max{max-width:64rem}.scale-w-md-64-min,.w-md-64-min{min-width:64rem}.scale-w-md-1-5,.w-md-1-5{width:20%}.scale-w-md-1-5-max,.w-md-1-5-max{max-width:20%}.scale-w-md-1-5-min,.w-md-1-5-min{min-width:20%}.scale-w-md-2-5,.w-md-2-5{width:40%}.scale-w-md-2-5-max,.w-md-2-5-max{max-width:40%}.scale-w-md-2-5-min,.w-md-2-5-min{min-width:40%}.scale-w-md-3-5,.w-md-3-5{width:60%}.scale-w-md-3-5-max,.w-md-3-5-max{max-width:60%}.scale-w-md-3-5-min,.w-md-3-5-min{min-width:60%}.scale-w-md-4-5,.w-md-4-5{width:80%}.scale-w-md-4-5-max,.w-md-4-5-max{max-width:80%}.scale-w-md-4-5-min,.w-md-4-5-min{min-width:80%}.scale-w-md-5-5,.w-md-5-5{width:100%}.scale-w-md-5-5-max,.w-md-5-5-max{max-width:100%}.scale-w-md-5-5-min,.w-md-5-5-min{min-width:100%}.scale-w-md-1-12,.w-md-1-12{width:8.3333333333%}.scale-w-md-1-12-max,.w-md-1-12-max{max-width:8.3333333333%}.scale-w-md-1-12-min,.w-md-1-12-min{min-width:8.3333333333%}.scale-w-md-2-12,.w-md-2-12{width:16.6666666667%}.scale-w-md-2-12-max,.w-md-2-12-max{max-width:16.6666666667%}.scale-w-md-2-12-min,.w-md-2-12-min{min-width:16.6666666667%}.scale-w-md-3-12,.w-md-3-12{width:25%}.scale-w-md-3-12-max,.w-md-3-12-max{max-width:25%}.scale-w-md-3-12-min,.w-md-3-12-min{min-width:25%}.scale-w-md-4-12,.w-md-4-12{width:33.3333333333%}.scale-w-md-4-12-max,.w-md-4-12-max{max-width:33.3333333333%}.scale-w-md-4-12-min,.w-md-4-12-min{min-width:33.3333333333%}.scale-w-md-5-12,.w-md-5-12{width:41.6666666667%}.scale-w-md-5-12-max,.w-md-5-12-max{max-width:41.6666666667%}.scale-w-md-5-12-min,.w-md-5-12-min{min-width:41.6666666667%}.scale-w-md-6-12,.w-md-6-12{width:50%}.scale-w-md-6-12-max,.w-md-6-12-max{max-width:50%}.scale-w-md-6-12-min,.w-md-6-12-min{min-width:50%}.scale-w-md-7-12,.w-md-7-12{width:58.3333333333%}.scale-w-md-7-12-max,.w-md-7-12-max{max-width:58.3333333333%}.scale-w-md-7-12-min,.w-md-7-12-min{min-width:58.3333333333%}.scale-w-md-8-12,.w-md-8-12{width:66.6666666667%}.scale-w-md-8-12-max,.w-md-8-12-max{max-width:66.6666666667%}.scale-w-md-8-12-min,.w-md-8-12-min{min-width:66.6666666667%}.scale-w-md-9-12,.w-md-9-12{width:75%}.scale-w-md-9-12-max,.w-md-9-12-max{max-width:75%}.scale-w-md-9-12-min,.w-md-9-12-min{min-width:75%}.scale-w-md-10-12,.w-md-10-12{width:83.3333333333%}.scale-w-md-10-12-max,.w-md-10-12-max{max-width:83.3333333333%}.scale-w-md-10-12-min,.w-md-10-12-min{min-width:83.3333333333%}.scale-w-md-11-12,.w-md-11-12{width:91.6666666667%}.scale-w-md-11-12-max,.w-md-11-12-max{max-width:91.6666666667%}.scale-w-md-11-12-min,.w-md-11-12-min{min-width:91.6666666667%}.scale-w-md-12-12,.w-md-12-12{width:100%}.scale-w-md-12-12-max,.w-md-12-12-max{max-width:100%}.scale-w-md-12-12-min,.w-md-12-12-min{min-width:100%}.h-md-full,.scale-h-md-full{height:100%}.h-md-full-max,.scale-h-md-full-max{max-height:100%}.h-md-full-min,.scale-h-md-full-min{min-height:100%}.h-md-mid,.scale-h-md-mid{height:50%}.h-md-mid-max,.scale-h-md-mid-max{max-height:50%}.h-md-mid-min,.scale-h-md-mid-min{min-height:50%}.h-md-quarter,.scale-h-md-quarter{height:25%}.h-md-quarter-max,.scale-h-md-quarter-max{max-height:25%}.h-md-quarter-min,.scale-h-md-quarter-min{min-height:25%}.h-md-tiers,.scale-h-md-tiers{height:33%}.h-md-tiers-max,.scale-h-md-tiers-max{max-height:33%}.h-md-tiers-min,.scale-h-md-tiers-min{min-height:33%}.h-md-content-max,.scale-h-md-content-max{height:max-content}.h-md-content-max-max,.scale-h-md-content-max-max{max-height:max-content}.h-md-content-max-min,.scale-h-md-content-max-min{min-height:max-content}.h-md-content-min,.scale-h-md-content-min{height:min-content}.h-md-content-min-max,.scale-h-md-content-min-max{max-height:min-content}.h-md-content-min-min,.scale-h-md-content-min-min{min-height:min-content}.h-md-1,.scale-h-md-1{height:1rem}.h-md-1-max,.scale-h-md-1-max{max-height:1rem}.h-md-1-min,.scale-h-md-1-min{min-height:1rem}.h-md-2,.scale-h-md-2{height:2rem}.h-md-2-max,.scale-h-md-2-max{max-height:2rem}.h-md-2-min,.scale-h-md-2-min{min-height:2rem}.h-md-4,.scale-h-md-4{height:4rem}.h-md-4-max,.scale-h-md-4-max{max-height:4rem}.h-md-4-min,.scale-h-md-4-min{min-height:4rem}.h-md-8,.scale-h-md-8{height:8rem}.h-md-8-max,.scale-h-md-8-max{max-height:8rem}.h-md-8-min,.scale-h-md-8-min{min-height:8rem}.h-md-16,.scale-h-md-16{height:16rem}.h-md-16-max,.scale-h-md-16-max{max-height:16rem}.h-md-16-min,.scale-h-md-16-min{min-height:16rem}.h-md-24,.scale-h-md-24{height:24rem}.h-md-24-max,.scale-h-md-24-max{max-height:24rem}.h-md-24-min,.scale-h-md-24-min{min-height:24rem}.h-md-32,.scale-h-md-32{height:32rem}.h-md-32-max,.scale-h-md-32-max{max-height:32rem}.h-md-32-min,.scale-h-md-32-min{min-height:32rem}.h-md-48,.scale-h-md-48{height:48rem}.h-md-48-max,.scale-h-md-48-max{max-height:48rem}.h-md-48-min,.scale-h-md-48-min{min-height:48rem}.h-md-64,.scale-h-md-64{height:64rem}.h-md-64-max,.scale-h-md-64-max{max-height:64rem}.h-md-64-min,.scale-h-md-64-min{min-height:64rem}.h-md-1-5,.scale-h-md-1-5{height:20%}.h-md-1-5-max,.scale-h-md-1-5-max{max-height:20%}.h-md-1-5-min,.scale-h-md-1-5-min{min-height:20%}.h-md-2-5,.scale-h-md-2-5{height:40%}.h-md-2-5-max,.scale-h-md-2-5-max{max-height:40%}.h-md-2-5-min,.scale-h-md-2-5-min{min-height:40%}.h-md-3-5,.scale-h-md-3-5{height:60%}.h-md-3-5-max,.scale-h-md-3-5-max{max-height:60%}.h-md-3-5-min,.scale-h-md-3-5-min{min-height:60%}.h-md-4-5,.scale-h-md-4-5{height:80%}.h-md-4-5-max,.scale-h-md-4-5-max{max-height:80%}.h-md-4-5-min,.scale-h-md-4-5-min{min-height:80%}.h-md-5-5,.scale-h-md-5-5{height:100%}.h-md-5-5-max,.scale-h-md-5-5-max{max-height:100%}.h-md-5-5-min,.scale-h-md-5-5-min{min-height:100%}.h-md-1-12,.scale-h-md-1-12{height:8.3333333333%}.h-md-1-12-max,.scale-h-md-1-12-max{max-height:8.3333333333%}.h-md-1-12-min,.scale-h-md-1-12-min{min-height:8.3333333333%}.h-md-2-12,.scale-h-md-2-12{height:16.6666666667%}.h-md-2-12-max,.scale-h-md-2-12-max{max-height:16.6666666667%}.h-md-2-12-min,.scale-h-md-2-12-min{min-height:16.6666666667%}.h-md-3-12,.scale-h-md-3-12{height:25%}.h-md-3-12-max,.scale-h-md-3-12-max{max-height:25%}.h-md-3-12-min,.scale-h-md-3-12-min{min-height:25%}.h-md-4-12,.scale-h-md-4-12{height:33.3333333333%}.h-md-4-12-max,.scale-h-md-4-12-max{max-height:33.3333333333%}.h-md-4-12-min,.scale-h-md-4-12-min{min-height:33.3333333333%}.h-md-5-12,.scale-h-md-5-12{height:41.6666666667%}.h-md-5-12-max,.scale-h-md-5-12-max{max-height:41.6666666667%}.h-md-5-12-min,.scale-h-md-5-12-min{min-height:41.6666666667%}.h-md-6-12,.scale-h-md-6-12{height:50%}.h-md-6-12-max,.scale-h-md-6-12-max{max-height:50%}.h-md-6-12-min,.scale-h-md-6-12-min{min-height:50%}.h-md-7-12,.scale-h-md-7-12{height:58.3333333333%}.h-md-7-12-max,.scale-h-md-7-12-max{max-height:58.3333333333%}.h-md-7-12-min,.scale-h-md-7-12-min{min-height:58.3333333333%}.h-md-8-12,.scale-h-md-8-12{height:66.6666666667%}.h-md-8-12-max,.scale-h-md-8-12-max{max-height:66.6666666667%}.h-md-8-12-min,.scale-h-md-8-12-min{min-height:66.6666666667%}.h-md-9-12,.scale-h-md-9-12{height:75%}.h-md-9-12-max,.scale-h-md-9-12-max{max-height:75%}.h-md-9-12-min,.scale-h-md-9-12-min{min-height:75%}.h-md-10-12,.scale-h-md-10-12{height:83.3333333333%}.h-md-10-12-max,.scale-h-md-10-12-max{max-height:83.3333333333%}.h-md-10-12-min,.scale-h-md-10-12-min{min-height:83.3333333333%}.h-md-11-12,.scale-h-md-11-12{height:91.6666666667%}.h-md-11-12-max,.scale-h-md-11-12-max{max-height:91.6666666667%}.h-md-11-12-min,.scale-h-md-11-12-min{min-height:91.6666666667%}.h-md-12-12,.scale-h-md-12-12{height:100%}.h-md-12-12-max,.scale-h-md-12-12-max{max-height:100%}.h-md-12-12-min,.scale-h-md-12-12-min{min-height:100%}}@media only screen and (max-width:35.7rem){.scale-w-sm-full,.w-sm-full{width:100%}.scale-w-sm-full-max,.w-sm-full-max{max-width:100%}.scale-w-sm-full-min,.w-sm-full-min{min-width:100%}.scale-w-sm-mid,.w-sm-mid{width:50%}.scale-w-sm-mid-max,.w-sm-mid-max{max-width:50%}.scale-w-sm-mid-min,.w-sm-mid-min{min-width:50%}.scale-w-sm-quarter,.w-sm-quarter{width:25%}.scale-w-sm-quarter-max,.w-sm-quarter-max{max-width:25%}.scale-w-sm-quarter-min,.w-sm-quarter-min{min-width:25%}.scale-w-sm-tiers,.w-sm-tiers{width:33%}.scale-w-sm-tiers-max,.w-sm-tiers-max{max-width:33%}.scale-w-sm-tiers-min,.w-sm-tiers-min{min-width:33%}.scale-w-sm-content-max,.w-sm-content-max{width:max-content}.scale-w-sm-content-max-max,.w-sm-content-max-max{max-width:max-content}.scale-w-sm-content-max-min,.w-sm-content-max-min{min-width:max-content}.scale-w-sm-content-min,.w-sm-content-min{width:min-content}.scale-w-sm-content-min-max,.w-sm-content-min-max{max-width:min-content}.scale-w-sm-content-min-min,.w-sm-content-min-min{min-width:min-content}.scale-w-sm-1,.w-sm-1{width:1rem}.scale-w-sm-1-max,.w-sm-1-max{max-width:1rem}.scale-w-sm-1-min,.w-sm-1-min{min-width:1rem}.scale-w-sm-2,.w-sm-2{width:2rem}.scale-w-sm-2-max,.w-sm-2-max{max-width:2rem}.scale-w-sm-2-min,.w-sm-2-min{min-width:2rem}.scale-w-sm-4,.w-sm-4{width:4rem}.scale-w-sm-4-max,.w-sm-4-max{max-width:4rem}.scale-w-sm-4-min,.w-sm-4-min{min-width:4rem}.scale-w-sm-8,.w-sm-8{width:8rem}.scale-w-sm-8-max,.w-sm-8-max{max-width:8rem}.scale-w-sm-8-min,.w-sm-8-min{min-width:8rem}.scale-w-sm-16,.w-sm-16{width:16rem}.scale-w-sm-16-max,.w-sm-16-max{max-width:16rem}.scale-w-sm-16-min,.w-sm-16-min{min-width:16rem}.scale-w-sm-24,.w-sm-24{width:24rem}.scale-w-sm-24-max,.w-sm-24-max{max-width:24rem}.scale-w-sm-24-min,.w-sm-24-min{min-width:24rem}.scale-w-sm-32,.w-sm-32{width:32rem}.scale-w-sm-32-max,.w-sm-32-max{max-width:32rem}.scale-w-sm-32-min,.w-sm-32-min{min-width:32rem}.scale-w-sm-48,.w-sm-48{width:48rem}.scale-w-sm-48-max,.w-sm-48-max{max-width:48rem}.scale-w-sm-48-min,.w-sm-48-min{min-width:48rem}.scale-w-sm-64,.w-sm-64{width:64rem}.scale-w-sm-64-max,.w-sm-64-max{max-width:64rem}.scale-w-sm-64-min,.w-sm-64-min{min-width:64rem}.scale-w-sm-1-5,.w-sm-1-5{width:20%}.scale-w-sm-1-5-max,.w-sm-1-5-max{max-width:20%}.scale-w-sm-1-5-min,.w-sm-1-5-min{min-width:20%}.scale-w-sm-2-5,.w-sm-2-5{width:40%}.scale-w-sm-2-5-max,.w-sm-2-5-max{max-width:40%}.scale-w-sm-2-5-min,.w-sm-2-5-min{min-width:40%}.scale-w-sm-3-5,.w-sm-3-5{width:60%}.scale-w-sm-3-5-max,.w-sm-3-5-max{max-width:60%}.scale-w-sm-3-5-min,.w-sm-3-5-min{min-width:60%}.scale-w-sm-4-5,.w-sm-4-5{width:80%}.scale-w-sm-4-5-max,.w-sm-4-5-max{max-width:80%}.scale-w-sm-4-5-min,.w-sm-4-5-min{min-width:80%}.scale-w-sm-5-5,.w-sm-5-5{width:100%}.scale-w-sm-5-5-max,.w-sm-5-5-max{max-width:100%}.scale-w-sm-5-5-min,.w-sm-5-5-min{min-width:100%}.scale-w-sm-1-12,.w-sm-1-12{width:8.3333333333%}.scale-w-sm-1-12-max,.w-sm-1-12-max{max-width:8.3333333333%}.scale-w-sm-1-12-min,.w-sm-1-12-min{min-width:8.3333333333%}.scale-w-sm-2-12,.w-sm-2-12{width:16.6666666667%}.scale-w-sm-2-12-max,.w-sm-2-12-max{max-width:16.6666666667%}.scale-w-sm-2-12-min,.w-sm-2-12-min{min-width:16.6666666667%}.scale-w-sm-3-12,.w-sm-3-12{width:25%}.scale-w-sm-3-12-max,.w-sm-3-12-max{max-width:25%}.scale-w-sm-3-12-min,.w-sm-3-12-min{min-width:25%}.scale-w-sm-4-12,.w-sm-4-12{width:33.3333333333%}.scale-w-sm-4-12-max,.w-sm-4-12-max{max-width:33.3333333333%}.scale-w-sm-4-12-min,.w-sm-4-12-min{min-width:33.3333333333%}.scale-w-sm-5-12,.w-sm-5-12{width:41.6666666667%}.scale-w-sm-5-12-max,.w-sm-5-12-max{max-width:41.6666666667%}.scale-w-sm-5-12-min,.w-sm-5-12-min{min-width:41.6666666667%}.scale-w-sm-6-12,.w-sm-6-12{width:50%}.scale-w-sm-6-12-max,.w-sm-6-12-max{max-width:50%}.scale-w-sm-6-12-min,.w-sm-6-12-min{min-width:50%}.scale-w-sm-7-12,.w-sm-7-12{width:58.3333333333%}.scale-w-sm-7-12-max,.w-sm-7-12-max{max-width:58.3333333333%}.scale-w-sm-7-12-min,.w-sm-7-12-min{min-width:58.3333333333%}.scale-w-sm-8-12,.w-sm-8-12{width:66.6666666667%}.scale-w-sm-8-12-max,.w-sm-8-12-max{max-width:66.6666666667%}.scale-w-sm-8-12-min,.w-sm-8-12-min{min-width:66.6666666667%}.scale-w-sm-9-12,.w-sm-9-12{width:75%}.scale-w-sm-9-12-max,.w-sm-9-12-max{max-width:75%}.scale-w-sm-9-12-min,.w-sm-9-12-min{min-width:75%}.scale-w-sm-10-12,.w-sm-10-12{width:83.3333333333%}.scale-w-sm-10-12-max,.w-sm-10-12-max{max-width:83.3333333333%}.scale-w-sm-10-12-min,.w-sm-10-12-min{min-width:83.3333333333%}.scale-w-sm-11-12,.w-sm-11-12{width:91.6666666667%}.scale-w-sm-11-12-max,.w-sm-11-12-max{max-width:91.6666666667%}.scale-w-sm-11-12-min,.w-sm-11-12-min{min-width:91.6666666667%}.scale-w-sm-12-12,.w-sm-12-12{width:100%}.scale-w-sm-12-12-max,.w-sm-12-12-max{max-width:100%}.scale-w-sm-12-12-min,.w-sm-12-12-min{min-width:100%}.h-sm-full,.scale-h-sm-full{height:100%}.h-sm-full-max,.scale-h-sm-full-max{max-height:100%}.h-sm-full-min,.scale-h-sm-full-min{min-height:100%}.h-sm-mid,.scale-h-sm-mid{height:50%}.h-sm-mid-max,.scale-h-sm-mid-max{max-height:50%}.h-sm-mid-min,.scale-h-sm-mid-min{min-height:50%}.h-sm-quarter,.scale-h-sm-quarter{height:25%}.h-sm-quarter-max,.scale-h-sm-quarter-max{max-height:25%}.h-sm-quarter-min,.scale-h-sm-quarter-min{min-height:25%}.h-sm-tiers,.scale-h-sm-tiers{height:33%}.h-sm-tiers-max,.scale-h-sm-tiers-max{max-height:33%}.h-sm-tiers-min,.scale-h-sm-tiers-min{min-height:33%}.h-sm-content-max,.scale-h-sm-content-max{height:max-content}.h-sm-content-max-max,.scale-h-sm-content-max-max{max-height:max-content}.h-sm-content-max-min,.scale-h-sm-content-max-min{min-height:max-content}.h-sm-content-min,.scale-h-sm-content-min{height:min-content}.h-sm-content-min-max,.scale-h-sm-content-min-max{max-height:min-content}.h-sm-content-min-min,.scale-h-sm-content-min-min{min-height:min-content}.h-sm-1,.scale-h-sm-1{height:1rem}.h-sm-1-max,.scale-h-sm-1-max{max-height:1rem}.h-sm-1-min,.scale-h-sm-1-min{min-height:1rem}.h-sm-2,.scale-h-sm-2{height:2rem}.h-sm-2-max,.scale-h-sm-2-max{max-height:2rem}.h-sm-2-min,.scale-h-sm-2-min{min-height:2rem}.h-sm-4,.scale-h-sm-4{height:4rem}.h-sm-4-max,.scale-h-sm-4-max{max-height:4rem}.h-sm-4-min,.scale-h-sm-4-min{min-height:4rem}.h-sm-8,.scale-h-sm-8{height:8rem}.h-sm-8-max,.scale-h-sm-8-max{max-height:8rem}.h-sm-8-min,.scale-h-sm-8-min{min-height:8rem}.h-sm-16,.scale-h-sm-16{height:16rem}.h-sm-16-max,.scale-h-sm-16-max{max-height:16rem}.h-sm-16-min,.scale-h-sm-16-min{min-height:16rem}.h-sm-24,.scale-h-sm-24{height:24rem}.h-sm-24-max,.scale-h-sm-24-max{max-height:24rem}.h-sm-24-min,.scale-h-sm-24-min{min-height:24rem}.h-sm-32,.scale-h-sm-32{height:32rem}.h-sm-32-max,.scale-h-sm-32-max{max-height:32rem}.h-sm-32-min,.scale-h-sm-32-min{min-height:32rem}.h-sm-48,.scale-h-sm-48{height:48rem}.h-sm-48-max,.scale-h-sm-48-max{max-height:48rem}.h-sm-48-min,.scale-h-sm-48-min{min-height:48rem}.h-sm-64,.scale-h-sm-64{height:64rem}.h-sm-64-max,.scale-h-sm-64-max{max-height:64rem}.h-sm-64-min,.scale-h-sm-64-min{min-height:64rem}.h-sm-1-5,.scale-h-sm-1-5{height:20%}.h-sm-1-5-max,.scale-h-sm-1-5-max{max-height:20%}.h-sm-1-5-min,.scale-h-sm-1-5-min{min-height:20%}.h-sm-2-5,.scale-h-sm-2-5{height:40%}.h-sm-2-5-max,.scale-h-sm-2-5-max{max-height:40%}.h-sm-2-5-min,.scale-h-sm-2-5-min{min-height:40%}.h-sm-3-5,.scale-h-sm-3-5{height:60%}.h-sm-3-5-max,.scale-h-sm-3-5-max{max-height:60%}.h-sm-3-5-min,.scale-h-sm-3-5-min{min-height:60%}.h-sm-4-5,.scale-h-sm-4-5{height:80%}.h-sm-4-5-max,.scale-h-sm-4-5-max{max-height:80%}.h-sm-4-5-min,.scale-h-sm-4-5-min{min-height:80%}.h-sm-5-5,.scale-h-sm-5-5{height:100%}.h-sm-5-5-max,.scale-h-sm-5-5-max{max-height:100%}.h-sm-5-5-min,.scale-h-sm-5-5-min{min-height:100%}.h-sm-1-12,.scale-h-sm-1-12{height:8.3333333333%}.h-sm-1-12-max,.scale-h-sm-1-12-max{max-height:8.3333333333%}.h-sm-1-12-min,.scale-h-sm-1-12-min{min-height:8.3333333333%}.h-sm-2-12,.scale-h-sm-2-12{height:16.6666666667%}.h-sm-2-12-max,.scale-h-sm-2-12-max{max-height:16.6666666667%}.h-sm-2-12-min,.scale-h-sm-2-12-min{min-height:16.6666666667%}.h-sm-3-12,.scale-h-sm-3-12{height:25%}.h-sm-3-12-max,.scale-h-sm-3-12-max{max-height:25%}.h-sm-3-12-min,.scale-h-sm-3-12-min{min-height:25%}.h-sm-4-12,.scale-h-sm-4-12{height:33.3333333333%}.h-sm-4-12-max,.scale-h-sm-4-12-max{max-height:33.3333333333%}.h-sm-4-12-min,.scale-h-sm-4-12-min{min-height:33.3333333333%}.h-sm-5-12,.scale-h-sm-5-12{height:41.6666666667%}.h-sm-5-12-max,.scale-h-sm-5-12-max{max-height:41.6666666667%}.h-sm-5-12-min,.scale-h-sm-5-12-min{min-height:41.6666666667%}.h-sm-6-12,.scale-h-sm-6-12{height:50%}.h-sm-6-12-max,.scale-h-sm-6-12-max{max-height:50%}.h-sm-6-12-min,.scale-h-sm-6-12-min{min-height:50%}.h-sm-7-12,.scale-h-sm-7-12{height:58.3333333333%}.h-sm-7-12-max,.scale-h-sm-7-12-max{max-height:58.3333333333%}.h-sm-7-12-min,.scale-h-sm-7-12-min{min-height:58.3333333333%}.h-sm-8-12,.scale-h-sm-8-12{height:66.6666666667%}.h-sm-8-12-max,.scale-h-sm-8-12-max{max-height:66.6666666667%}.h-sm-8-12-min,.scale-h-sm-8-12-min{min-height:66.6666666667%}.h-sm-9-12,.scale-h-sm-9-12{height:75%}.h-sm-9-12-max,.scale-h-sm-9-12-max{max-height:75%}.h-sm-9-12-min,.scale-h-sm-9-12-min{min-height:75%}.h-sm-10-12,.scale-h-sm-10-12{height:83.3333333333%}.h-sm-10-12-max,.scale-h-sm-10-12-max{max-height:83.3333333333%}.h-sm-10-12-min,.scale-h-sm-10-12-min{min-height:83.3333333333%}.h-sm-11-12,.scale-h-sm-11-12{height:91.6666666667%}.h-sm-11-12-max,.scale-h-sm-11-12-max{max-height:91.6666666667%}.h-sm-11-12-min,.scale-h-sm-11-12-min{min-height:91.6666666667%}.h-sm-12-12,.scale-h-sm-12-12{height:100%}.h-sm-12-12-max,.scale-h-sm-12-12-max{max-height:100%}.h-sm-12-12-min,.scale-h-sm-12-12-min{min-height:100%}}
@@ -0,0 +1,72 @@
1
+ /** cssfabric : tbl*/
2
+ .table {
3
+ border-collapse: collapse;
4
+ border-spacing: 0;
5
+ }
6
+ .table thead,
7
+ .table .thead {
8
+ position: relative;
9
+ margin-bottom: 2rem;
10
+ }
11
+ .table.tbl-head thead tr th {
12
+ background-color: table_bg_color_head;
13
+ }
14
+ .table thead tr th,
15
+ .table .thead .tr .th {
16
+ padding: 0.5rem 0.25rem;
17
+ font-weight: normal;
18
+ }
19
+ .table tbody tr td,
20
+ .table .tbody .tr .td {
21
+ padding: 0.25em;
22
+ }
23
+ .table.tbl-layout {
24
+ table-layout: fixed;
25
+ }
26
+ .table.tbl-h-line th,
27
+ .table.tbl-h-line td,
28
+ .table.tbl-h-line .th,
29
+ .table.tbl-h-line .td {
30
+ border-bottom: 1px solid #ededed;
31
+ }
32
+ .table.tbl-h-line:last-child {
33
+ border-bottom: none;
34
+ }
35
+ .table.tbl-v-line tr th, .table.tbl-v-line tr td {
36
+ border-right: 1px solid #ededed;
37
+ }
38
+ .table.tbl-v-line tr th:last-child, .table.tbl-v-line tr td:last-child {
39
+ border-right: none;
40
+ }
41
+ .table.tbl-border {
42
+ border: 1px solid #ededed;
43
+ }
44
+ .table.tbl-shad thead tr th {
45
+ box-shadow: 4px 4px 8px #ccc;
46
+ z-index: 11;
47
+ }
48
+ .table.tbl-shad thead tr th:last-child {
49
+ box-shadow: 4px 4px 8px #ccc;
50
+ z-index: -1;
51
+ }
52
+ .table.tbl-bg-strip-2 tr:nth-child(2n+2) td {
53
+ background-color: #ededed;
54
+ }
55
+ .table.tbl-bg-strip-5 tr:nth-child(5n+5) td {
56
+ background-color: #ededed;
57
+ }
58
+ .table.tbl-sticky {
59
+ position: relative;
60
+ }
61
+ .table.tbl-sticky thead tr,
62
+ .table.tbl-sticky .thead .tr {
63
+ position: static;
64
+ }
65
+ .table.tbl-sticky thead tr th,
66
+ .table.tbl-sticky thead tr .th,
67
+ .table.tbl-sticky .thead .tr th,
68
+ .table.tbl-sticky .thead .tr .th {
69
+ background-color: #ededed;
70
+ position: sticky;
71
+ top: 0;
72
+ }
@@ -0,0 +1 @@
1
+ .table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-layout{table-layout:fixed}.table.tbl-h-line .td,.table.tbl-h-line .th,.table.tbl-h-line td,.table.tbl-h-line th{border-bottom:1px solid #ededed}.table.tbl-h-line:last-child{border-bottom:none}.table.tbl-v-line tr td,.table.tbl-v-line tr th{border-right:1px solid #ededed}.table.tbl-v-line tr td:last-child,.table.tbl-v-line tr th:last-child{border-right:none}.table.tbl-border{border:1px solid #ededed}.table.tbl-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-sticky{position:relative}.table.tbl-sticky .thead .tr,.table.tbl-sticky thead tr{position:static}.table.tbl-sticky .thead .tr .th,.table.tbl-sticky .thead .tr th,.table.tbl-sticky thead tr .th,.table.tbl-sticky thead tr th{background-color:#ededed;position:sticky;top:0}
@@ -0,0 +1,444 @@
1
+ @media only screen and (max-width: 0rem) {
2
+ /** cssfabric : tbl*/
3
+ .table {
4
+ border-collapse: collapse;
5
+ border-spacing: 0;
6
+ }
7
+ .table thead,
8
+ .table .thead {
9
+ position: relative;
10
+ margin-bottom: 2rem;
11
+ }
12
+ .table.tbl-xxxl-head thead tr th {
13
+ background-color: table_bg_color_head;
14
+ }
15
+ .table thead tr th,
16
+ .table .thead .tr .th {
17
+ padding: 0.5rem 0.25rem;
18
+ font-weight: normal;
19
+ }
20
+ .table tbody tr td,
21
+ .table .tbody .tr .td {
22
+ padding: 0.25em;
23
+ }
24
+ .table.tbl-xxxl-layout {
25
+ table-layout: fixed;
26
+ }
27
+ .table.tbl-xxxl-h-line th,
28
+ .table.tbl-xxxl-h-line td,
29
+ .table.tbl-xxxl-h-line .th,
30
+ .table.tbl-xxxl-h-line .td {
31
+ border-bottom: 1px solid #ededed;
32
+ }
33
+ .table.tbl-xxxl-h-line:last-child {
34
+ border-bottom: none;
35
+ }
36
+ .table.tbl-xxxl-v-line tr th, .table.tbl-xxxl-v-line tr td {
37
+ border-right: 1px solid #ededed;
38
+ }
39
+ .table.tbl-xxxl-v-line tr th:last-child, .table.tbl-xxxl-v-line tr td:last-child {
40
+ border-right: none;
41
+ }
42
+ .table.tbl-xxxl-border {
43
+ border: 1px solid #ededed;
44
+ }
45
+ .table.tbl-xxxl-shad thead tr th {
46
+ box-shadow: 4px 4px 8px #ccc;
47
+ z-index: 11;
48
+ }
49
+ .table.tbl-xxxl-shad thead tr th:last-child {
50
+ box-shadow: 4px 4px 8px #ccc;
51
+ z-index: -1;
52
+ }
53
+ .table.tbl-xxxl-bg-strip-2 tr:nth-child(2n+2) td {
54
+ background-color: #ededed;
55
+ }
56
+ .table.tbl-xxxl-bg-strip-5 tr:nth-child(5n+5) td {
57
+ background-color: #ededed;
58
+ }
59
+ .table.tbl-xxxl-sticky {
60
+ position: relative;
61
+ }
62
+ .table.tbl-xxxl-sticky thead tr,
63
+ .table.tbl-xxxl-sticky .thead .tr {
64
+ position: static;
65
+ }
66
+ .table.tbl-xxxl-sticky thead tr th,
67
+ .table.tbl-xxxl-sticky thead tr .th,
68
+ .table.tbl-xxxl-sticky .thead .tr th,
69
+ .table.tbl-xxxl-sticky .thead .tr .th {
70
+ background-color: #ededed;
71
+ position: sticky;
72
+ top: 0;
73
+ }
74
+ }
75
+ @media only screen and (max-width: 120rem) {
76
+ /** cssfabric : tbl*/
77
+ .table {
78
+ border-collapse: collapse;
79
+ border-spacing: 0;
80
+ }
81
+ .table thead,
82
+ .table .thead {
83
+ position: relative;
84
+ margin-bottom: 2rem;
85
+ }
86
+ .table.tbl-xxl-head thead tr th {
87
+ background-color: table_bg_color_head;
88
+ }
89
+ .table thead tr th,
90
+ .table .thead .tr .th {
91
+ padding: 0.5rem 0.25rem;
92
+ font-weight: normal;
93
+ }
94
+ .table tbody tr td,
95
+ .table .tbody .tr .td {
96
+ padding: 0.25em;
97
+ }
98
+ .table.tbl-xxl-layout {
99
+ table-layout: fixed;
100
+ }
101
+ .table.tbl-xxl-h-line th,
102
+ .table.tbl-xxl-h-line td,
103
+ .table.tbl-xxl-h-line .th,
104
+ .table.tbl-xxl-h-line .td {
105
+ border-bottom: 1px solid #ededed;
106
+ }
107
+ .table.tbl-xxl-h-line:last-child {
108
+ border-bottom: none;
109
+ }
110
+ .table.tbl-xxl-v-line tr th, .table.tbl-xxl-v-line tr td {
111
+ border-right: 1px solid #ededed;
112
+ }
113
+ .table.tbl-xxl-v-line tr th:last-child, .table.tbl-xxl-v-line tr td:last-child {
114
+ border-right: none;
115
+ }
116
+ .table.tbl-xxl-border {
117
+ border: 1px solid #ededed;
118
+ }
119
+ .table.tbl-xxl-shad thead tr th {
120
+ box-shadow: 4px 4px 8px #ccc;
121
+ z-index: 11;
122
+ }
123
+ .table.tbl-xxl-shad thead tr th:last-child {
124
+ box-shadow: 4px 4px 8px #ccc;
125
+ z-index: -1;
126
+ }
127
+ .table.tbl-xxl-bg-strip-2 tr:nth-child(2n+2) td {
128
+ background-color: #ededed;
129
+ }
130
+ .table.tbl-xxl-bg-strip-5 tr:nth-child(5n+5) td {
131
+ background-color: #ededed;
132
+ }
133
+ .table.tbl-xxl-sticky {
134
+ position: relative;
135
+ }
136
+ .table.tbl-xxl-sticky thead tr,
137
+ .table.tbl-xxl-sticky .thead .tr {
138
+ position: static;
139
+ }
140
+ .table.tbl-xxl-sticky thead tr th,
141
+ .table.tbl-xxl-sticky thead tr .th,
142
+ .table.tbl-xxl-sticky .thead .tr th,
143
+ .table.tbl-xxl-sticky .thead .tr .th {
144
+ background-color: #ededed;
145
+ position: sticky;
146
+ top: 0;
147
+ }
148
+ }
149
+ @media only screen and (max-width: 90rem) {
150
+ /** cssfabric : tbl*/
151
+ .table {
152
+ border-collapse: collapse;
153
+ border-spacing: 0;
154
+ }
155
+ .table thead,
156
+ .table .thead {
157
+ position: relative;
158
+ margin-bottom: 2rem;
159
+ }
160
+ .table.tbl-xl-head thead tr th {
161
+ background-color: table_bg_color_head;
162
+ }
163
+ .table thead tr th,
164
+ .table .thead .tr .th {
165
+ padding: 0.5rem 0.25rem;
166
+ font-weight: normal;
167
+ }
168
+ .table tbody tr td,
169
+ .table .tbody .tr .td {
170
+ padding: 0.25em;
171
+ }
172
+ .table.tbl-xl-layout {
173
+ table-layout: fixed;
174
+ }
175
+ .table.tbl-xl-h-line th,
176
+ .table.tbl-xl-h-line td,
177
+ .table.tbl-xl-h-line .th,
178
+ .table.tbl-xl-h-line .td {
179
+ border-bottom: 1px solid #ededed;
180
+ }
181
+ .table.tbl-xl-h-line:last-child {
182
+ border-bottom: none;
183
+ }
184
+ .table.tbl-xl-v-line tr th, .table.tbl-xl-v-line tr td {
185
+ border-right: 1px solid #ededed;
186
+ }
187
+ .table.tbl-xl-v-line tr th:last-child, .table.tbl-xl-v-line tr td:last-child {
188
+ border-right: none;
189
+ }
190
+ .table.tbl-xl-border {
191
+ border: 1px solid #ededed;
192
+ }
193
+ .table.tbl-xl-shad thead tr th {
194
+ box-shadow: 4px 4px 8px #ccc;
195
+ z-index: 11;
196
+ }
197
+ .table.tbl-xl-shad thead tr th:last-child {
198
+ box-shadow: 4px 4px 8px #ccc;
199
+ z-index: -1;
200
+ }
201
+ .table.tbl-xl-bg-strip-2 tr:nth-child(2n+2) td {
202
+ background-color: #ededed;
203
+ }
204
+ .table.tbl-xl-bg-strip-5 tr:nth-child(5n+5) td {
205
+ background-color: #ededed;
206
+ }
207
+ .table.tbl-xl-sticky {
208
+ position: relative;
209
+ }
210
+ .table.tbl-xl-sticky thead tr,
211
+ .table.tbl-xl-sticky .thead .tr {
212
+ position: static;
213
+ }
214
+ .table.tbl-xl-sticky thead tr th,
215
+ .table.tbl-xl-sticky thead tr .th,
216
+ .table.tbl-xl-sticky .thead .tr th,
217
+ .table.tbl-xl-sticky .thead .tr .th {
218
+ background-color: #ededed;
219
+ position: sticky;
220
+ top: 0;
221
+ }
222
+ }
223
+ @media only screen and (max-width: 64rem) {
224
+ /** cssfabric : tbl*/
225
+ .table {
226
+ border-collapse: collapse;
227
+ border-spacing: 0;
228
+ }
229
+ .table thead,
230
+ .table .thead {
231
+ position: relative;
232
+ margin-bottom: 2rem;
233
+ }
234
+ .table.tbl-lg-head thead tr th {
235
+ background-color: table_bg_color_head;
236
+ }
237
+ .table thead tr th,
238
+ .table .thead .tr .th {
239
+ padding: 0.5rem 0.25rem;
240
+ font-weight: normal;
241
+ }
242
+ .table tbody tr td,
243
+ .table .tbody .tr .td {
244
+ padding: 0.25em;
245
+ }
246
+ .table.tbl-lg-layout {
247
+ table-layout: fixed;
248
+ }
249
+ .table.tbl-lg-h-line th,
250
+ .table.tbl-lg-h-line td,
251
+ .table.tbl-lg-h-line .th,
252
+ .table.tbl-lg-h-line .td {
253
+ border-bottom: 1px solid #ededed;
254
+ }
255
+ .table.tbl-lg-h-line:last-child {
256
+ border-bottom: none;
257
+ }
258
+ .table.tbl-lg-v-line tr th, .table.tbl-lg-v-line tr td {
259
+ border-right: 1px solid #ededed;
260
+ }
261
+ .table.tbl-lg-v-line tr th:last-child, .table.tbl-lg-v-line tr td:last-child {
262
+ border-right: none;
263
+ }
264
+ .table.tbl-lg-border {
265
+ border: 1px solid #ededed;
266
+ }
267
+ .table.tbl-lg-shad thead tr th {
268
+ box-shadow: 4px 4px 8px #ccc;
269
+ z-index: 11;
270
+ }
271
+ .table.tbl-lg-shad thead tr th:last-child {
272
+ box-shadow: 4px 4px 8px #ccc;
273
+ z-index: -1;
274
+ }
275
+ .table.tbl-lg-bg-strip-2 tr:nth-child(2n+2) td {
276
+ background-color: #ededed;
277
+ }
278
+ .table.tbl-lg-bg-strip-5 tr:nth-child(5n+5) td {
279
+ background-color: #ededed;
280
+ }
281
+ .table.tbl-lg-sticky {
282
+ position: relative;
283
+ }
284
+ .table.tbl-lg-sticky thead tr,
285
+ .table.tbl-lg-sticky .thead .tr {
286
+ position: static;
287
+ }
288
+ .table.tbl-lg-sticky thead tr th,
289
+ .table.tbl-lg-sticky thead tr .th,
290
+ .table.tbl-lg-sticky .thead .tr th,
291
+ .table.tbl-lg-sticky .thead .tr .th {
292
+ background-color: #ededed;
293
+ position: sticky;
294
+ top: 0;
295
+ }
296
+ }
297
+ @media only screen and (max-width: 48rem) {
298
+ /** cssfabric : tbl*/
299
+ .table {
300
+ border-collapse: collapse;
301
+ border-spacing: 0;
302
+ }
303
+ .table thead,
304
+ .table .thead {
305
+ position: relative;
306
+ margin-bottom: 2rem;
307
+ }
308
+ .table.tbl-md-head thead tr th {
309
+ background-color: table_bg_color_head;
310
+ }
311
+ .table thead tr th,
312
+ .table .thead .tr .th {
313
+ padding: 0.5rem 0.25rem;
314
+ font-weight: normal;
315
+ }
316
+ .table tbody tr td,
317
+ .table .tbody .tr .td {
318
+ padding: 0.25em;
319
+ }
320
+ .table.tbl-md-layout {
321
+ table-layout: fixed;
322
+ }
323
+ .table.tbl-md-h-line th,
324
+ .table.tbl-md-h-line td,
325
+ .table.tbl-md-h-line .th,
326
+ .table.tbl-md-h-line .td {
327
+ border-bottom: 1px solid #ededed;
328
+ }
329
+ .table.tbl-md-h-line:last-child {
330
+ border-bottom: none;
331
+ }
332
+ .table.tbl-md-v-line tr th, .table.tbl-md-v-line tr td {
333
+ border-right: 1px solid #ededed;
334
+ }
335
+ .table.tbl-md-v-line tr th:last-child, .table.tbl-md-v-line tr td:last-child {
336
+ border-right: none;
337
+ }
338
+ .table.tbl-md-border {
339
+ border: 1px solid #ededed;
340
+ }
341
+ .table.tbl-md-shad thead tr th {
342
+ box-shadow: 4px 4px 8px #ccc;
343
+ z-index: 11;
344
+ }
345
+ .table.tbl-md-shad thead tr th:last-child {
346
+ box-shadow: 4px 4px 8px #ccc;
347
+ z-index: -1;
348
+ }
349
+ .table.tbl-md-bg-strip-2 tr:nth-child(2n+2) td {
350
+ background-color: #ededed;
351
+ }
352
+ .table.tbl-md-bg-strip-5 tr:nth-child(5n+5) td {
353
+ background-color: #ededed;
354
+ }
355
+ .table.tbl-md-sticky {
356
+ position: relative;
357
+ }
358
+ .table.tbl-md-sticky thead tr,
359
+ .table.tbl-md-sticky .thead .tr {
360
+ position: static;
361
+ }
362
+ .table.tbl-md-sticky thead tr th,
363
+ .table.tbl-md-sticky thead tr .th,
364
+ .table.tbl-md-sticky .thead .tr th,
365
+ .table.tbl-md-sticky .thead .tr .th {
366
+ background-color: #ededed;
367
+ position: sticky;
368
+ top: 0;
369
+ }
370
+ }
371
+ @media only screen and (max-width: 35.7rem) {
372
+ /** cssfabric : tbl*/
373
+ .table {
374
+ border-collapse: collapse;
375
+ border-spacing: 0;
376
+ }
377
+ .table thead,
378
+ .table .thead {
379
+ position: relative;
380
+ margin-bottom: 2rem;
381
+ }
382
+ .table.tbl-sm-head thead tr th {
383
+ background-color: table_bg_color_head;
384
+ }
385
+ .table thead tr th,
386
+ .table .thead .tr .th {
387
+ padding: 0.5rem 0.25rem;
388
+ font-weight: normal;
389
+ }
390
+ .table tbody tr td,
391
+ .table .tbody .tr .td {
392
+ padding: 0.25em;
393
+ }
394
+ .table.tbl-sm-layout {
395
+ table-layout: fixed;
396
+ }
397
+ .table.tbl-sm-h-line th,
398
+ .table.tbl-sm-h-line td,
399
+ .table.tbl-sm-h-line .th,
400
+ .table.tbl-sm-h-line .td {
401
+ border-bottom: 1px solid #ededed;
402
+ }
403
+ .table.tbl-sm-h-line:last-child {
404
+ border-bottom: none;
405
+ }
406
+ .table.tbl-sm-v-line tr th, .table.tbl-sm-v-line tr td {
407
+ border-right: 1px solid #ededed;
408
+ }
409
+ .table.tbl-sm-v-line tr th:last-child, .table.tbl-sm-v-line tr td:last-child {
410
+ border-right: none;
411
+ }
412
+ .table.tbl-sm-border {
413
+ border: 1px solid #ededed;
414
+ }
415
+ .table.tbl-sm-shad thead tr th {
416
+ box-shadow: 4px 4px 8px #ccc;
417
+ z-index: 11;
418
+ }
419
+ .table.tbl-sm-shad thead tr th:last-child {
420
+ box-shadow: 4px 4px 8px #ccc;
421
+ z-index: -1;
422
+ }
423
+ .table.tbl-sm-bg-strip-2 tr:nth-child(2n+2) td {
424
+ background-color: #ededed;
425
+ }
426
+ .table.tbl-sm-bg-strip-5 tr:nth-child(5n+5) td {
427
+ background-color: #ededed;
428
+ }
429
+ .table.tbl-sm-sticky {
430
+ position: relative;
431
+ }
432
+ .table.tbl-sm-sticky thead tr,
433
+ .table.tbl-sm-sticky .thead .tr {
434
+ position: static;
435
+ }
436
+ .table.tbl-sm-sticky thead tr th,
437
+ .table.tbl-sm-sticky thead tr .th,
438
+ .table.tbl-sm-sticky .thead .tr th,
439
+ .table.tbl-sm-sticky .thead .tr .th {
440
+ background-color: #ededed;
441
+ position: sticky;
442
+ top: 0;
443
+ }
444
+ }
@@ -0,0 +1 @@
1
+ @media only screen and (max-width:0rem){.table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-xxxl-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-xxxl-layout{table-layout:fixed}.table.tbl-xxxl-h-line .td,.table.tbl-xxxl-h-line .th,.table.tbl-xxxl-h-line td,.table.tbl-xxxl-h-line th{border-bottom:1px solid #ededed}.table.tbl-xxxl-h-line:last-child{border-bottom:none}.table.tbl-xxxl-v-line tr td,.table.tbl-xxxl-v-line tr th{border-right:1px solid #ededed}.table.tbl-xxxl-v-line tr td:last-child,.table.tbl-xxxl-v-line tr th:last-child{border-right:none}.table.tbl-xxxl-border{border:1px solid #ededed}.table.tbl-xxxl-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-xxxl-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-xxxl-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-xxxl-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-xxxl-sticky{position:relative}.table.tbl-xxxl-sticky .thead .tr,.table.tbl-xxxl-sticky thead tr{position:static}.table.tbl-xxxl-sticky .thead .tr .th,.table.tbl-xxxl-sticky .thead .tr th,.table.tbl-xxxl-sticky thead tr .th,.table.tbl-xxxl-sticky thead tr th{background-color:#ededed;position:sticky;top:0}}@media only screen and (max-width:120rem){.table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-xxl-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-xxl-layout{table-layout:fixed}.table.tbl-xxl-h-line .td,.table.tbl-xxl-h-line .th,.table.tbl-xxl-h-line td,.table.tbl-xxl-h-line th{border-bottom:1px solid #ededed}.table.tbl-xxl-h-line:last-child{border-bottom:none}.table.tbl-xxl-v-line tr td,.table.tbl-xxl-v-line tr th{border-right:1px solid #ededed}.table.tbl-xxl-v-line tr td:last-child,.table.tbl-xxl-v-line tr th:last-child{border-right:none}.table.tbl-xxl-border{border:1px solid #ededed}.table.tbl-xxl-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-xxl-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-xxl-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-xxl-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-xxl-sticky{position:relative}.table.tbl-xxl-sticky .thead .tr,.table.tbl-xxl-sticky thead tr{position:static}.table.tbl-xxl-sticky .thead .tr .th,.table.tbl-xxl-sticky .thead .tr th,.table.tbl-xxl-sticky thead tr .th,.table.tbl-xxl-sticky thead tr th{background-color:#ededed;position:sticky;top:0}}@media only screen and (max-width:90rem){.table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-xl-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-xl-layout{table-layout:fixed}.table.tbl-xl-h-line .td,.table.tbl-xl-h-line .th,.table.tbl-xl-h-line td,.table.tbl-xl-h-line th{border-bottom:1px solid #ededed}.table.tbl-xl-h-line:last-child{border-bottom:none}.table.tbl-xl-v-line tr td,.table.tbl-xl-v-line tr th{border-right:1px solid #ededed}.table.tbl-xl-v-line tr td:last-child,.table.tbl-xl-v-line tr th:last-child{border-right:none}.table.tbl-xl-border{border:1px solid #ededed}.table.tbl-xl-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-xl-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-xl-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-xl-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-xl-sticky{position:relative}.table.tbl-xl-sticky .thead .tr,.table.tbl-xl-sticky thead tr{position:static}.table.tbl-xl-sticky .thead .tr .th,.table.tbl-xl-sticky .thead .tr th,.table.tbl-xl-sticky thead tr .th,.table.tbl-xl-sticky thead tr th{background-color:#ededed;position:sticky;top:0}}@media only screen and (max-width:64rem){.table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-lg-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-lg-layout{table-layout:fixed}.table.tbl-lg-h-line .td,.table.tbl-lg-h-line .th,.table.tbl-lg-h-line td,.table.tbl-lg-h-line th{border-bottom:1px solid #ededed}.table.tbl-lg-h-line:last-child{border-bottom:none}.table.tbl-lg-v-line tr td,.table.tbl-lg-v-line tr th{border-right:1px solid #ededed}.table.tbl-lg-v-line tr td:last-child,.table.tbl-lg-v-line tr th:last-child{border-right:none}.table.tbl-lg-border{border:1px solid #ededed}.table.tbl-lg-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-lg-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-lg-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-lg-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-lg-sticky{position:relative}.table.tbl-lg-sticky .thead .tr,.table.tbl-lg-sticky thead tr{position:static}.table.tbl-lg-sticky .thead .tr .th,.table.tbl-lg-sticky .thead .tr th,.table.tbl-lg-sticky thead tr .th,.table.tbl-lg-sticky thead tr th{background-color:#ededed;position:sticky;top:0}}@media only screen and (max-width:48rem){.table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-md-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-md-layout{table-layout:fixed}.table.tbl-md-h-line .td,.table.tbl-md-h-line .th,.table.tbl-md-h-line td,.table.tbl-md-h-line th{border-bottom:1px solid #ededed}.table.tbl-md-h-line:last-child{border-bottom:none}.table.tbl-md-v-line tr td,.table.tbl-md-v-line tr th{border-right:1px solid #ededed}.table.tbl-md-v-line tr td:last-child,.table.tbl-md-v-line tr th:last-child{border-right:none}.table.tbl-md-border{border:1px solid #ededed}.table.tbl-md-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-md-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-md-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-md-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-md-sticky{position:relative}.table.tbl-md-sticky .thead .tr,.table.tbl-md-sticky thead tr{position:static}.table.tbl-md-sticky .thead .tr .th,.table.tbl-md-sticky .thead .tr th,.table.tbl-md-sticky thead tr .th,.table.tbl-md-sticky thead tr th{background-color:#ededed;position:sticky;top:0}}@media only screen and (max-width:35.7rem){.table{border-collapse:collapse;border-spacing:0}.table .thead,.table thead{position:relative;margin-bottom:2rem}.table.tbl-sm-head thead tr th{background-color:table_bg_color_head}.table .thead .tr .th,.table thead tr th{padding:.5rem .25rem;font-weight:400}.table .tbody .tr .td,.table tbody tr td{padding:.25em}.table.tbl-sm-layout{table-layout:fixed}.table.tbl-sm-h-line .td,.table.tbl-sm-h-line .th,.table.tbl-sm-h-line td,.table.tbl-sm-h-line th{border-bottom:1px solid #ededed}.table.tbl-sm-h-line:last-child{border-bottom:none}.table.tbl-sm-v-line tr td,.table.tbl-sm-v-line tr th{border-right:1px solid #ededed}.table.tbl-sm-v-line tr td:last-child,.table.tbl-sm-v-line tr th:last-child{border-right:none}.table.tbl-sm-border{border:1px solid #ededed}.table.tbl-sm-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-sm-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-sm-bg-strip-2 tr:nth-child(2n+2) td,.table.tbl-sm-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-sm-sticky{position:relative}.table.tbl-sm-sticky .thead .tr,.table.tbl-sm-sticky thead tr{position:static}.table.tbl-sm-sticky .thead .tr .th,.table.tbl-sm-sticky .thead .tr th,.table.tbl-sm-sticky thead tr .th,.table.tbl-sm-sticky thead tr th{background-color:#ededed;position:sticky;top:0}}