@baloise/ds-styles 0.0.5-snapshot.18-20240228142632

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 (117) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +45 -0
  3. package/bin/index.mjs +1333 -0
  4. package/css/all.css +18468 -0
  5. package/css/all.css.map +1 -0
  6. package/css/all.min.css +1 -0
  7. package/css/baloise-design-system.css +18468 -0
  8. package/css/baloise-design-system.css.map +1 -0
  9. package/css/baloise-design-system.min.css +1 -0
  10. package/css/core.css +4423 -0
  11. package/css/core.css.map +1 -0
  12. package/css/core.min.css +1 -0
  13. package/css/font.css +29 -0
  14. package/css/font.css.map +1 -0
  15. package/css/font.min.css +1 -0
  16. package/css/mixins.css +2 -0
  17. package/css/mixins.css.map +1 -0
  18. package/css/mixins.min.css +0 -0
  19. package/css/normalize.css +351 -0
  20. package/css/normalize.css.map +1 -0
  21. package/css/normalize.min.css +1 -0
  22. package/css/structure.css +147 -0
  23. package/css/structure.css.map +1 -0
  24. package/css/structure.min.css +1 -0
  25. package/css/themes/compact.css +30 -0
  26. package/css/themes/compact.css.map +1 -0
  27. package/css/themes/compact.min.css +1 -0
  28. package/css/utilities/all.css +13112 -0
  29. package/css/utilities/all.css.map +1 -0
  30. package/css/utilities/all.min.css +1 -0
  31. package/css/utilities/background.css +1460 -0
  32. package/css/utilities/background.css.map +1 -0
  33. package/css/utilities/background.min.css +1 -0
  34. package/css/utilities/border.css +4697 -0
  35. package/css/utilities/border.css.map +1 -0
  36. package/css/utilities/border.min.css +1 -0
  37. package/css/utilities/elevation.css +317 -0
  38. package/css/utilities/elevation.css.map +1 -0
  39. package/css/utilities/elevation.min.css +1 -0
  40. package/css/utilities/flex.css +969 -0
  41. package/css/utilities/flex.css.map +1 -0
  42. package/css/utilities/flex.min.css +1 -0
  43. package/css/utilities/grid.css +1209 -0
  44. package/css/utilities/grid.css.map +1 -0
  45. package/css/utilities/grid.min.css +1 -0
  46. package/css/utilities/interaction.css +44 -0
  47. package/css/utilities/interaction.css.map +1 -0
  48. package/css/utilities/interaction.min.css +1 -0
  49. package/css/utilities/layout.css +1055 -0
  50. package/css/utilities/layout.css.map +1 -0
  51. package/css/utilities/layout.min.css +1 -0
  52. package/css/utilities/sizing.css +1931 -0
  53. package/css/utilities/sizing.css.map +1 -0
  54. package/css/utilities/sizing.min.css +1 -0
  55. package/css/utilities/spacing.css +1881 -0
  56. package/css/utilities/spacing.css.map +1 -0
  57. package/css/utilities/spacing.min.css +1 -0
  58. package/css/utilities/typography.css +763 -0
  59. package/css/utilities/typography.css.map +1 -0
  60. package/css/utilities/typography.min.css +1 -0
  61. package/package.json +36 -0
  62. package/sass/all.sass +6 -0
  63. package/sass/baloise-design-system.sass +1 -0
  64. package/sass/core.sass +37 -0
  65. package/sass/font.sass +1 -0
  66. package/sass/mixins.sass +3 -0
  67. package/sass/normalize.sass +359 -0
  68. package/sass/structure.sass +113 -0
  69. package/sass/themes/compact.sass +28 -0
  70. package/sass/utilities/all.sass +9 -0
  71. package/sass/utilities/background.sass +5 -0
  72. package/sass/utilities/border.sass +2 -0
  73. package/sass/utilities/elevation.sass +2 -0
  74. package/sass/utilities/flex.sass +2 -0
  75. package/sass/utilities/grid.sass +2 -0
  76. package/sass/utilities/interaction.sass +2 -0
  77. package/sass/utilities/layout.sass +12 -0
  78. package/sass/utilities/sizing.sass +2 -0
  79. package/sass/utilities/spacing.sass +2 -0
  80. package/sass/utilities/typography.sass +127 -0
  81. package/src/core/_all.sass +18 -0
  82. package/src/core/container.sass +23 -0
  83. package/src/core/form/_all.sass +6 -0
  84. package/src/core/form/button.sass +532 -0
  85. package/src/core/form/file.sass +139 -0
  86. package/src/core/form/input-textarea.sass +80 -0
  87. package/src/core/form/select.sass +111 -0
  88. package/src/core/form/shared.sass +69 -0
  89. package/src/core/form/tools.sass +209 -0
  90. package/src/core/grid.sass +477 -0
  91. package/src/core/link.sass +64 -0
  92. package/src/core/list.sass +85 -0
  93. package/src/core/table.sass +134 -0
  94. package/src/core/typography.sass +33 -0
  95. package/src/core/vars/_all.sass +7 -0
  96. package/src/core/vars/button.vars.sass +282 -0
  97. package/src/core/vars/form.vars.sass +137 -0
  98. package/src/core/vars/link.vars.sass +36 -0
  99. package/src/core/vars/list.vars.sass +20 -0
  100. package/src/core/vars/structure.vars.sass +47 -0
  101. package/src/core/vars/table.vars.sass +55 -0
  102. package/src/core/vars/typography.vars.sass +12 -0
  103. package/src/generated/background.sass +1091 -0
  104. package/src/generated/border.sass +3943 -0
  105. package/src/generated/elevation.sass +283 -0
  106. package/src/generated/flex.sass +831 -0
  107. package/src/generated/interaction.sass +26 -0
  108. package/src/generated/layout.sass +948 -0
  109. package/src/generated/sizing.sass +1703 -0
  110. package/src/generated/spacing.sass +1683 -0
  111. package/src/generated/typography.sass +453 -0
  112. package/src/mixins/_all.sass +7 -0
  113. package/src/mixins/bem.mixin.sass +39 -0
  114. package/src/mixins/breakpoint.mixin.sass +67 -0
  115. package/src/mixins/extends.sass +32 -0
  116. package/src/mixins/general.mixin.sass +95 -0
  117. package/src/mixins/svg.mixin.sass +6 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["file:///home/runner/work/ds-playground/ds-playground/packages/styles/src/generated/sizing.sass","file:///home/runner/work/ds-playground/ds-playground/packages/styles/src/mixins/breakpoint.mixin.sass"],"names":[],"mappings":"AAAA;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AC7FA;EDgGA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACtMF;EDyMA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACvSF;ED0SA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC5XF;ED+XA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACjqBA;EDoqBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC9yBF;EDizBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACn7BF;EDs7BA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC5iCF;ED+iCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AC1vCA;ED6vCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC5wCF;ED+wCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACtxCF;EDyxCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACpxCF;EDuxCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACv2CA;ED02CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACz3CF;ED43CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACn4CF;EDs4CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACj4CF;EDo4CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACp9CA;EDu9CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACt+CF;EDy+CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACh/CF;EDm/CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC9+CF;EDi/CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACjkDA;EDokDA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACnlDF;EDslDA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC7lDF;EDgmDA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC3lDF;ED8lDA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE","sourcesContent":[".h-full\n height: 100% !important\n\n.h-screen\n height: 100vh !important\n\n.h-auto\n height: auto !important\n\n.h-min\n height: min-content !important\n\n.h-max\n height: max-content !important\n\n.h-fit\n height: fit-content !important\n\n.h-1rem\n height: 1rem !important\n\n.h-2rem\n height: 2rem !important\n\n.h-3rem\n height: 3rem !important\n\n.h-4rem\n height: 4rem !important\n\n.h-5rem\n height: 5rem !important\n\n.h-6rem\n height: 6rem !important\n\n.h-7rem\n height: 7rem !important\n\n.h-8rem\n height: 8rem !important\n\n.h-9rem\n height: 9rem !important\n\n.h-10rem\n height: 10rem !important\n\n.h-11rem\n height: 11rem !important\n\n.h-12rem\n height: 12rem !important\n\n.h-13rem\n height: 13rem !important\n\n.h-14rem\n height: 14rem !important\n\n.h-15rem\n height: 15rem !important\n\n.h-16rem\n height: 16rem !important\n\n.h-17rem\n height: 17rem !important\n\n.h-18rem\n height: 18rem !important\n\n.h-19rem\n height: 19rem !important\n\n.h-20rem\n height: 20rem !important\n\n.h-21rem\n height: 21rem !important\n\n.h-22rem\n height: 22rem !important\n\n.h-23rem\n height: 23rem !important\n\n.h-24rem\n height: 24rem !important\n\n.h-25rem\n height: 25rem !important\n\n.h-26rem\n height: 26rem !important\n\n.h-27rem\n height: 27rem !important\n\n.h-28rem\n height: 28rem !important\n\n.h-29rem\n height: 29rem !important\n\n.h-30rem\n height: 30rem !important\n\n+mobile\n .mobile\\:h-full\n height: 100% !important\n\n .mobile\\:h-screen\n height: 100vh !important\n\n .mobile\\:h-auto\n height: auto !important\n\n .mobile\\:h-min\n height: min-content !important\n\n .mobile\\:h-max\n height: max-content !important\n\n .mobile\\:h-fit\n height: fit-content !important\n\n .mobile\\:h-1rem\n height: 1rem !important\n\n .mobile\\:h-2rem\n height: 2rem !important\n\n .mobile\\:h-3rem\n height: 3rem !important\n\n .mobile\\:h-4rem\n height: 4rem !important\n\n .mobile\\:h-5rem\n height: 5rem !important\n\n .mobile\\:h-6rem\n height: 6rem !important\n\n .mobile\\:h-7rem\n height: 7rem !important\n\n .mobile\\:h-8rem\n height: 8rem !important\n\n .mobile\\:h-9rem\n height: 9rem !important\n\n .mobile\\:h-10rem\n height: 10rem !important\n\n .mobile\\:h-11rem\n height: 11rem !important\n\n .mobile\\:h-12rem\n height: 12rem !important\n\n .mobile\\:h-13rem\n height: 13rem !important\n\n .mobile\\:h-14rem\n height: 14rem !important\n\n .mobile\\:h-15rem\n height: 15rem !important\n\n .mobile\\:h-16rem\n height: 16rem !important\n\n .mobile\\:h-17rem\n height: 17rem !important\n\n .mobile\\:h-18rem\n height: 18rem !important\n\n .mobile\\:h-19rem\n height: 19rem !important\n\n .mobile\\:h-20rem\n height: 20rem !important\n\n .mobile\\:h-21rem\n height: 21rem !important\n\n .mobile\\:h-22rem\n height: 22rem !important\n\n .mobile\\:h-23rem\n height: 23rem !important\n\n .mobile\\:h-24rem\n height: 24rem !important\n\n .mobile\\:h-25rem\n height: 25rem !important\n\n .mobile\\:h-26rem\n height: 26rem !important\n\n .mobile\\:h-27rem\n height: 27rem !important\n\n .mobile\\:h-28rem\n height: 28rem !important\n\n .mobile\\:h-29rem\n height: 29rem !important\n\n .mobile\\:h-30rem\n height: 30rem !important\n\n+tablet\n .tablet\\:h-full\n height: 100% !important\n\n .tablet\\:h-screen\n height: 100vh !important\n\n .tablet\\:h-auto\n height: auto !important\n\n .tablet\\:h-min\n height: min-content !important\n\n .tablet\\:h-max\n height: max-content !important\n\n .tablet\\:h-fit\n height: fit-content !important\n\n .tablet\\:h-1rem\n height: 1rem !important\n\n .tablet\\:h-2rem\n height: 2rem !important\n\n .tablet\\:h-3rem\n height: 3rem !important\n\n .tablet\\:h-4rem\n height: 4rem !important\n\n .tablet\\:h-5rem\n height: 5rem !important\n\n .tablet\\:h-6rem\n height: 6rem !important\n\n .tablet\\:h-7rem\n height: 7rem !important\n\n .tablet\\:h-8rem\n height: 8rem !important\n\n .tablet\\:h-9rem\n height: 9rem !important\n\n .tablet\\:h-10rem\n height: 10rem !important\n\n .tablet\\:h-11rem\n height: 11rem !important\n\n .tablet\\:h-12rem\n height: 12rem !important\n\n .tablet\\:h-13rem\n height: 13rem !important\n\n .tablet\\:h-14rem\n height: 14rem !important\n\n .tablet\\:h-15rem\n height: 15rem !important\n\n .tablet\\:h-16rem\n height: 16rem !important\n\n .tablet\\:h-17rem\n height: 17rem !important\n\n .tablet\\:h-18rem\n height: 18rem !important\n\n .tablet\\:h-19rem\n height: 19rem !important\n\n .tablet\\:h-20rem\n height: 20rem !important\n\n .tablet\\:h-21rem\n height: 21rem !important\n\n .tablet\\:h-22rem\n height: 22rem !important\n\n .tablet\\:h-23rem\n height: 23rem !important\n\n .tablet\\:h-24rem\n height: 24rem !important\n\n .tablet\\:h-25rem\n height: 25rem !important\n\n .tablet\\:h-26rem\n height: 26rem !important\n\n .tablet\\:h-27rem\n height: 27rem !important\n\n .tablet\\:h-28rem\n height: 28rem !important\n\n .tablet\\:h-29rem\n height: 29rem !important\n\n .tablet\\:h-30rem\n height: 30rem !important\n\n+desktop\n .desktop\\:h-full\n height: 100% !important\n\n .desktop\\:h-screen\n height: 100vh !important\n\n .desktop\\:h-auto\n height: auto !important\n\n .desktop\\:h-min\n height: min-content !important\n\n .desktop\\:h-max\n height: max-content !important\n\n .desktop\\:h-fit\n height: fit-content !important\n\n .desktop\\:h-1rem\n height: 1rem !important\n\n .desktop\\:h-2rem\n height: 2rem !important\n\n .desktop\\:h-3rem\n height: 3rem !important\n\n .desktop\\:h-4rem\n height: 4rem !important\n\n .desktop\\:h-5rem\n height: 5rem !important\n\n .desktop\\:h-6rem\n height: 6rem !important\n\n .desktop\\:h-7rem\n height: 7rem !important\n\n .desktop\\:h-8rem\n height: 8rem !important\n\n .desktop\\:h-9rem\n height: 9rem !important\n\n .desktop\\:h-10rem\n height: 10rem !important\n\n .desktop\\:h-11rem\n height: 11rem !important\n\n .desktop\\:h-12rem\n height: 12rem !important\n\n .desktop\\:h-13rem\n height: 13rem !important\n\n .desktop\\:h-14rem\n height: 14rem !important\n\n .desktop\\:h-15rem\n height: 15rem !important\n\n .desktop\\:h-16rem\n height: 16rem !important\n\n .desktop\\:h-17rem\n height: 17rem !important\n\n .desktop\\:h-18rem\n height: 18rem !important\n\n .desktop\\:h-19rem\n height: 19rem !important\n\n .desktop\\:h-20rem\n height: 20rem !important\n\n .desktop\\:h-21rem\n height: 21rem !important\n\n .desktop\\:h-22rem\n height: 22rem !important\n\n .desktop\\:h-23rem\n height: 23rem !important\n\n .desktop\\:h-24rem\n height: 24rem !important\n\n .desktop\\:h-25rem\n height: 25rem !important\n\n .desktop\\:h-26rem\n height: 26rem !important\n\n .desktop\\:h-27rem\n height: 27rem !important\n\n .desktop\\:h-28rem\n height: 28rem !important\n\n .desktop\\:h-29rem\n height: 29rem !important\n\n .desktop\\:h-30rem\n height: 30rem !important\n\n+widescreen\n .widescreen\\:h-full\n height: 100% !important\n\n .widescreen\\:h-screen\n height: 100vh !important\n\n .widescreen\\:h-auto\n height: auto !important\n\n .widescreen\\:h-min\n height: min-content !important\n\n .widescreen\\:h-max\n height: max-content !important\n\n .widescreen\\:h-fit\n height: fit-content !important\n\n .widescreen\\:h-1rem\n height: 1rem !important\n\n .widescreen\\:h-2rem\n height: 2rem !important\n\n .widescreen\\:h-3rem\n height: 3rem !important\n\n .widescreen\\:h-4rem\n height: 4rem !important\n\n .widescreen\\:h-5rem\n height: 5rem !important\n\n .widescreen\\:h-6rem\n height: 6rem !important\n\n .widescreen\\:h-7rem\n height: 7rem !important\n\n .widescreen\\:h-8rem\n height: 8rem !important\n\n .widescreen\\:h-9rem\n height: 9rem !important\n\n .widescreen\\:h-10rem\n height: 10rem !important\n\n .widescreen\\:h-11rem\n height: 11rem !important\n\n .widescreen\\:h-12rem\n height: 12rem !important\n\n .widescreen\\:h-13rem\n height: 13rem !important\n\n .widescreen\\:h-14rem\n height: 14rem !important\n\n .widescreen\\:h-15rem\n height: 15rem !important\n\n .widescreen\\:h-16rem\n height: 16rem !important\n\n .widescreen\\:h-17rem\n height: 17rem !important\n\n .widescreen\\:h-18rem\n height: 18rem !important\n\n .widescreen\\:h-19rem\n height: 19rem !important\n\n .widescreen\\:h-20rem\n height: 20rem !important\n\n .widescreen\\:h-21rem\n height: 21rem !important\n\n .widescreen\\:h-22rem\n height: 22rem !important\n\n .widescreen\\:h-23rem\n height: 23rem !important\n\n .widescreen\\:h-24rem\n height: 24rem !important\n\n .widescreen\\:h-25rem\n height: 25rem !important\n\n .widescreen\\:h-26rem\n height: 26rem !important\n\n .widescreen\\:h-27rem\n height: 27rem !important\n\n .widescreen\\:h-28rem\n height: 28rem !important\n\n .widescreen\\:h-29rem\n height: 29rem !important\n\n .widescreen\\:h-30rem\n height: 30rem !important\n\n.w-full\n width: 100% !important\n\n.w-screen\n width: 100vw !important\n\n.w-auto\n width: auto !important\n\n.w-min\n width: min-content !important\n\n.w-max\n width: max-content !important\n\n.w-fit\n width: fit-content !important\n\n.w-1\n width: 8.3333% !important\n\n.w-2\n width: 16.6667% !important\n\n.w-3\n width: 25% !important\n\n.w-4\n width: 33.3333% !important\n\n.w-5\n width: 41.6667% !important\n\n.w-6\n width: 50% !important\n\n.w-7\n width: 58.3333% !important\n\n.w-8\n width: 66.6667% !important\n\n.w-9\n width: 75% !important\n\n.w-10\n width: 83.3333% !important\n\n.w-11\n width: 91.6667% !important\n\n.w-12\n width: 100% !important\n\n.w-1rem\n width: 1rem !important\n\n.w-2rem\n width: 2rem !important\n\n.w-3rem\n width: 3rem !important\n\n.w-4rem\n width: 4rem !important\n\n.w-5rem\n width: 5rem !important\n\n.w-6rem\n width: 6rem !important\n\n.w-7rem\n width: 7rem !important\n\n.w-8rem\n width: 8rem !important\n\n.w-9rem\n width: 9rem !important\n\n.w-10rem\n width: 10rem !important\n\n.w-11rem\n width: 11rem !important\n\n.w-12rem\n width: 12rem !important\n\n.w-13rem\n width: 13rem !important\n\n.w-14rem\n width: 14rem !important\n\n.w-15rem\n width: 15rem !important\n\n.w-16rem\n width: 16rem !important\n\n.w-17rem\n width: 17rem !important\n\n.w-18rem\n width: 18rem !important\n\n.w-19rem\n width: 19rem !important\n\n.w-20rem\n width: 20rem !important\n\n.w-21rem\n width: 21rem !important\n\n.w-22rem\n width: 22rem !important\n\n.w-23rem\n width: 23rem !important\n\n.w-24rem\n width: 24rem !important\n\n.w-25rem\n width: 25rem !important\n\n.w-26rem\n width: 26rem !important\n\n.w-27rem\n width: 27rem !important\n\n.w-28rem\n width: 28rem !important\n\n.w-29rem\n width: 29rem !important\n\n.w-30rem\n width: 30rem !important\n\n+mobile\n .mobile\\:w-full\n width: 100% !important\n\n .mobile\\:w-screen\n width: 100vw !important\n\n .mobile\\:w-auto\n width: auto !important\n\n .mobile\\:w-min\n width: min-content !important\n\n .mobile\\:w-max\n width: max-content !important\n\n .mobile\\:w-fit\n width: fit-content !important\n\n .mobile\\:w-1\n width: 8.3333% !important\n\n .mobile\\:w-2\n width: 16.6667% !important\n\n .mobile\\:w-3\n width: 25% !important\n\n .mobile\\:w-4\n width: 33.3333% !important\n\n .mobile\\:w-5\n width: 41.6667% !important\n\n .mobile\\:w-6\n width: 50% !important\n\n .mobile\\:w-7\n width: 58.3333% !important\n\n .mobile\\:w-8\n width: 66.6667% !important\n\n .mobile\\:w-9\n width: 75% !important\n\n .mobile\\:w-10\n width: 83.3333% !important\n\n .mobile\\:w-11\n width: 91.6667% !important\n\n .mobile\\:w-12\n width: 100% !important\n\n .mobile\\:w-1rem\n width: 1rem !important\n\n .mobile\\:w-2rem\n width: 2rem !important\n\n .mobile\\:w-3rem\n width: 3rem !important\n\n .mobile\\:w-4rem\n width: 4rem !important\n\n .mobile\\:w-5rem\n width: 5rem !important\n\n .mobile\\:w-6rem\n width: 6rem !important\n\n .mobile\\:w-7rem\n width: 7rem !important\n\n .mobile\\:w-8rem\n width: 8rem !important\n\n .mobile\\:w-9rem\n width: 9rem !important\n\n .mobile\\:w-10rem\n width: 10rem !important\n\n .mobile\\:w-11rem\n width: 11rem !important\n\n .mobile\\:w-12rem\n width: 12rem !important\n\n .mobile\\:w-13rem\n width: 13rem !important\n\n .mobile\\:w-14rem\n width: 14rem !important\n\n .mobile\\:w-15rem\n width: 15rem !important\n\n .mobile\\:w-16rem\n width: 16rem !important\n\n .mobile\\:w-17rem\n width: 17rem !important\n\n .mobile\\:w-18rem\n width: 18rem !important\n\n .mobile\\:w-19rem\n width: 19rem !important\n\n .mobile\\:w-20rem\n width: 20rem !important\n\n .mobile\\:w-21rem\n width: 21rem !important\n\n .mobile\\:w-22rem\n width: 22rem !important\n\n .mobile\\:w-23rem\n width: 23rem !important\n\n .mobile\\:w-24rem\n width: 24rem !important\n\n .mobile\\:w-25rem\n width: 25rem !important\n\n .mobile\\:w-26rem\n width: 26rem !important\n\n .mobile\\:w-27rem\n width: 27rem !important\n\n .mobile\\:w-28rem\n width: 28rem !important\n\n .mobile\\:w-29rem\n width: 29rem !important\n\n .mobile\\:w-30rem\n width: 30rem !important\n\n+tablet\n .tablet\\:w-full\n width: 100% !important\n\n .tablet\\:w-screen\n width: 100vw !important\n\n .tablet\\:w-auto\n width: auto !important\n\n .tablet\\:w-min\n width: min-content !important\n\n .tablet\\:w-max\n width: max-content !important\n\n .tablet\\:w-fit\n width: fit-content !important\n\n .tablet\\:w-1\n width: 8.3333% !important\n\n .tablet\\:w-2\n width: 16.6667% !important\n\n .tablet\\:w-3\n width: 25% !important\n\n .tablet\\:w-4\n width: 33.3333% !important\n\n .tablet\\:w-5\n width: 41.6667% !important\n\n .tablet\\:w-6\n width: 50% !important\n\n .tablet\\:w-7\n width: 58.3333% !important\n\n .tablet\\:w-8\n width: 66.6667% !important\n\n .tablet\\:w-9\n width: 75% !important\n\n .tablet\\:w-10\n width: 83.3333% !important\n\n .tablet\\:w-11\n width: 91.6667% !important\n\n .tablet\\:w-12\n width: 100% !important\n\n .tablet\\:w-1rem\n width: 1rem !important\n\n .tablet\\:w-2rem\n width: 2rem !important\n\n .tablet\\:w-3rem\n width: 3rem !important\n\n .tablet\\:w-4rem\n width: 4rem !important\n\n .tablet\\:w-5rem\n width: 5rem !important\n\n .tablet\\:w-6rem\n width: 6rem !important\n\n .tablet\\:w-7rem\n width: 7rem !important\n\n .tablet\\:w-8rem\n width: 8rem !important\n\n .tablet\\:w-9rem\n width: 9rem !important\n\n .tablet\\:w-10rem\n width: 10rem !important\n\n .tablet\\:w-11rem\n width: 11rem !important\n\n .tablet\\:w-12rem\n width: 12rem !important\n\n .tablet\\:w-13rem\n width: 13rem !important\n\n .tablet\\:w-14rem\n width: 14rem !important\n\n .tablet\\:w-15rem\n width: 15rem !important\n\n .tablet\\:w-16rem\n width: 16rem !important\n\n .tablet\\:w-17rem\n width: 17rem !important\n\n .tablet\\:w-18rem\n width: 18rem !important\n\n .tablet\\:w-19rem\n width: 19rem !important\n\n .tablet\\:w-20rem\n width: 20rem !important\n\n .tablet\\:w-21rem\n width: 21rem !important\n\n .tablet\\:w-22rem\n width: 22rem !important\n\n .tablet\\:w-23rem\n width: 23rem !important\n\n .tablet\\:w-24rem\n width: 24rem !important\n\n .tablet\\:w-25rem\n width: 25rem !important\n\n .tablet\\:w-26rem\n width: 26rem !important\n\n .tablet\\:w-27rem\n width: 27rem !important\n\n .tablet\\:w-28rem\n width: 28rem !important\n\n .tablet\\:w-29rem\n width: 29rem !important\n\n .tablet\\:w-30rem\n width: 30rem !important\n\n+desktop\n .desktop\\:w-full\n width: 100% !important\n\n .desktop\\:w-screen\n width: 100vw !important\n\n .desktop\\:w-auto\n width: auto !important\n\n .desktop\\:w-min\n width: min-content !important\n\n .desktop\\:w-max\n width: max-content !important\n\n .desktop\\:w-fit\n width: fit-content !important\n\n .desktop\\:w-1\n width: 8.3333% !important\n\n .desktop\\:w-2\n width: 16.6667% !important\n\n .desktop\\:w-3\n width: 25% !important\n\n .desktop\\:w-4\n width: 33.3333% !important\n\n .desktop\\:w-5\n width: 41.6667% !important\n\n .desktop\\:w-6\n width: 50% !important\n\n .desktop\\:w-7\n width: 58.3333% !important\n\n .desktop\\:w-8\n width: 66.6667% !important\n\n .desktop\\:w-9\n width: 75% !important\n\n .desktop\\:w-10\n width: 83.3333% !important\n\n .desktop\\:w-11\n width: 91.6667% !important\n\n .desktop\\:w-12\n width: 100% !important\n\n .desktop\\:w-1rem\n width: 1rem !important\n\n .desktop\\:w-2rem\n width: 2rem !important\n\n .desktop\\:w-3rem\n width: 3rem !important\n\n .desktop\\:w-4rem\n width: 4rem !important\n\n .desktop\\:w-5rem\n width: 5rem !important\n\n .desktop\\:w-6rem\n width: 6rem !important\n\n .desktop\\:w-7rem\n width: 7rem !important\n\n .desktop\\:w-8rem\n width: 8rem !important\n\n .desktop\\:w-9rem\n width: 9rem !important\n\n .desktop\\:w-10rem\n width: 10rem !important\n\n .desktop\\:w-11rem\n width: 11rem !important\n\n .desktop\\:w-12rem\n width: 12rem !important\n\n .desktop\\:w-13rem\n width: 13rem !important\n\n .desktop\\:w-14rem\n width: 14rem !important\n\n .desktop\\:w-15rem\n width: 15rem !important\n\n .desktop\\:w-16rem\n width: 16rem !important\n\n .desktop\\:w-17rem\n width: 17rem !important\n\n .desktop\\:w-18rem\n width: 18rem !important\n\n .desktop\\:w-19rem\n width: 19rem !important\n\n .desktop\\:w-20rem\n width: 20rem !important\n\n .desktop\\:w-21rem\n width: 21rem !important\n\n .desktop\\:w-22rem\n width: 22rem !important\n\n .desktop\\:w-23rem\n width: 23rem !important\n\n .desktop\\:w-24rem\n width: 24rem !important\n\n .desktop\\:w-25rem\n width: 25rem !important\n\n .desktop\\:w-26rem\n width: 26rem !important\n\n .desktop\\:w-27rem\n width: 27rem !important\n\n .desktop\\:w-28rem\n width: 28rem !important\n\n .desktop\\:w-29rem\n width: 29rem !important\n\n .desktop\\:w-30rem\n width: 30rem !important\n\n+widescreen\n .widescreen\\:w-full\n width: 100% !important\n\n .widescreen\\:w-screen\n width: 100vw !important\n\n .widescreen\\:w-auto\n width: auto !important\n\n .widescreen\\:w-min\n width: min-content !important\n\n .widescreen\\:w-max\n width: max-content !important\n\n .widescreen\\:w-fit\n width: fit-content !important\n\n .widescreen\\:w-1\n width: 8.3333% !important\n\n .widescreen\\:w-2\n width: 16.6667% !important\n\n .widescreen\\:w-3\n width: 25% !important\n\n .widescreen\\:w-4\n width: 33.3333% !important\n\n .widescreen\\:w-5\n width: 41.6667% !important\n\n .widescreen\\:w-6\n width: 50% !important\n\n .widescreen\\:w-7\n width: 58.3333% !important\n\n .widescreen\\:w-8\n width: 66.6667% !important\n\n .widescreen\\:w-9\n width: 75% !important\n\n .widescreen\\:w-10\n width: 83.3333% !important\n\n .widescreen\\:w-11\n width: 91.6667% !important\n\n .widescreen\\:w-12\n width: 100% !important\n\n .widescreen\\:w-1rem\n width: 1rem !important\n\n .widescreen\\:w-2rem\n width: 2rem !important\n\n .widescreen\\:w-3rem\n width: 3rem !important\n\n .widescreen\\:w-4rem\n width: 4rem !important\n\n .widescreen\\:w-5rem\n width: 5rem !important\n\n .widescreen\\:w-6rem\n width: 6rem !important\n\n .widescreen\\:w-7rem\n width: 7rem !important\n\n .widescreen\\:w-8rem\n width: 8rem !important\n\n .widescreen\\:w-9rem\n width: 9rem !important\n\n .widescreen\\:w-10rem\n width: 10rem !important\n\n .widescreen\\:w-11rem\n width: 11rem !important\n\n .widescreen\\:w-12rem\n width: 12rem !important\n\n .widescreen\\:w-13rem\n width: 13rem !important\n\n .widescreen\\:w-14rem\n width: 14rem !important\n\n .widescreen\\:w-15rem\n width: 15rem !important\n\n .widescreen\\:w-16rem\n width: 16rem !important\n\n .widescreen\\:w-17rem\n width: 17rem !important\n\n .widescreen\\:w-18rem\n width: 18rem !important\n\n .widescreen\\:w-19rem\n width: 19rem !important\n\n .widescreen\\:w-20rem\n width: 20rem !important\n\n .widescreen\\:w-21rem\n width: 21rem !important\n\n .widescreen\\:w-22rem\n width: 22rem !important\n\n .widescreen\\:w-23rem\n width: 23rem !important\n\n .widescreen\\:w-24rem\n width: 24rem !important\n\n .widescreen\\:w-25rem\n width: 25rem !important\n\n .widescreen\\:w-26rem\n width: 26rem !important\n\n .widescreen\\:w-27rem\n width: 27rem !important\n\n .widescreen\\:w-28rem\n width: 28rem !important\n\n .widescreen\\:w-29rem\n width: 29rem !important\n\n .widescreen\\:w-30rem\n width: 30rem !important\n\n.min-h-auto\n min-height: auto !important\n\n.min-h-0\n min-height: 0px !important\n\n.min-h-full\n min-height: 100% !important\n\n.min-h-screen\n min-height: 100vh !important\n\n.min-h-min\n min-height: min-content !important\n\n.min-h-max\n min-height: max-content !important\n\n.min-h-fit\n min-height: fit-content !important\n\n+mobile\n .mobile\\:min-h-auto\n min-height: auto !important\n\n .mobile\\:min-h-0\n min-height: 0px !important\n\n .mobile\\:min-h-full\n min-height: 100% !important\n\n .mobile\\:min-h-screen\n min-height: 100vh !important\n\n .mobile\\:min-h-min\n min-height: min-content !important\n\n .mobile\\:min-h-max\n min-height: max-content !important\n\n .mobile\\:min-h-fit\n min-height: fit-content !important\n\n+tablet\n .tablet\\:min-h-auto\n min-height: auto !important\n\n .tablet\\:min-h-0\n min-height: 0px !important\n\n .tablet\\:min-h-full\n min-height: 100% !important\n\n .tablet\\:min-h-screen\n min-height: 100vh !important\n\n .tablet\\:min-h-min\n min-height: min-content !important\n\n .tablet\\:min-h-max\n min-height: max-content !important\n\n .tablet\\:min-h-fit\n min-height: fit-content !important\n\n+desktop\n .desktop\\:min-h-auto\n min-height: auto !important\n\n .desktop\\:min-h-0\n min-height: 0px !important\n\n .desktop\\:min-h-full\n min-height: 100% !important\n\n .desktop\\:min-h-screen\n min-height: 100vh !important\n\n .desktop\\:min-h-min\n min-height: min-content !important\n\n .desktop\\:min-h-max\n min-height: max-content !important\n\n .desktop\\:min-h-fit\n min-height: fit-content !important\n\n+widescreen\n .widescreen\\:min-h-auto\n min-height: auto !important\n\n .widescreen\\:min-h-0\n min-height: 0px !important\n\n .widescreen\\:min-h-full\n min-height: 100% !important\n\n .widescreen\\:min-h-screen\n min-height: 100vh !important\n\n .widescreen\\:min-h-min\n min-height: min-content !important\n\n .widescreen\\:min-h-max\n min-height: max-content !important\n\n .widescreen\\:min-h-fit\n min-height: fit-content !important\n\n.min-w-auto\n min-width: auto !important\n\n.min-w-0\n min-width: 0px !important\n\n.min-w-full\n min-width: 100% !important\n\n.min-w-screen\n min-width: 100vw !important\n\n.min-w-min\n min-width: min-content !important\n\n.min-w-max\n min-width: max-content !important\n\n.min-w-fit\n min-width: fit-content !important\n\n+mobile\n .mobile\\:min-w-auto\n min-width: auto !important\n\n .mobile\\:min-w-0\n min-width: 0px !important\n\n .mobile\\:min-w-full\n min-width: 100% !important\n\n .mobile\\:min-w-screen\n min-width: 100vw !important\n\n .mobile\\:min-w-min\n min-width: min-content !important\n\n .mobile\\:min-w-max\n min-width: max-content !important\n\n .mobile\\:min-w-fit\n min-width: fit-content !important\n\n+tablet\n .tablet\\:min-w-auto\n min-width: auto !important\n\n .tablet\\:min-w-0\n min-width: 0px !important\n\n .tablet\\:min-w-full\n min-width: 100% !important\n\n .tablet\\:min-w-screen\n min-width: 100vw !important\n\n .tablet\\:min-w-min\n min-width: min-content !important\n\n .tablet\\:min-w-max\n min-width: max-content !important\n\n .tablet\\:min-w-fit\n min-width: fit-content !important\n\n+desktop\n .desktop\\:min-w-auto\n min-width: auto !important\n\n .desktop\\:min-w-0\n min-width: 0px !important\n\n .desktop\\:min-w-full\n min-width: 100% !important\n\n .desktop\\:min-w-screen\n min-width: 100vw !important\n\n .desktop\\:min-w-min\n min-width: min-content !important\n\n .desktop\\:min-w-max\n min-width: max-content !important\n\n .desktop\\:min-w-fit\n min-width: fit-content !important\n\n+widescreen\n .widescreen\\:min-w-auto\n min-width: auto !important\n\n .widescreen\\:min-w-0\n min-width: 0px !important\n\n .widescreen\\:min-w-full\n min-width: 100% !important\n\n .widescreen\\:min-w-screen\n min-width: 100vw !important\n\n .widescreen\\:min-w-min\n min-width: min-content !important\n\n .widescreen\\:min-w-max\n min-width: max-content !important\n\n .widescreen\\:min-w-fit\n min-width: fit-content !important\n\n.max-h-auto\n max-height: auto !important\n\n.max-h-0\n max-height: 0px !important\n\n.max-h-full\n max-height: 100% !important\n\n.max-h-screen\n max-height: 100vh !important\n\n.min-h-min\n max-height: min-content !important\n\n.min-h-max\n max-height: max-content !important\n\n.min-h-fit\n max-height: fit-content !important\n\n+mobile\n .mobile\\:max-h-auto\n max-height: auto !important\n\n .mobile\\:max-h-0\n max-height: 0px !important\n\n .mobile\\:max-h-full\n max-height: 100% !important\n\n .mobile\\:max-h-screen\n max-height: 100vh !important\n\n .mobile\\:min-h-min\n max-height: min-content !important\n\n .mobile\\:min-h-max\n max-height: max-content !important\n\n .mobile\\:min-h-fit\n max-height: fit-content !important\n\n+tablet\n .tablet\\:max-h-auto\n max-height: auto !important\n\n .tablet\\:max-h-0\n max-height: 0px !important\n\n .tablet\\:max-h-full\n max-height: 100% !important\n\n .tablet\\:max-h-screen\n max-height: 100vh !important\n\n .tablet\\:min-h-min\n max-height: min-content !important\n\n .tablet\\:min-h-max\n max-height: max-content !important\n\n .tablet\\:min-h-fit\n max-height: fit-content !important\n\n+desktop\n .desktop\\:max-h-auto\n max-height: auto !important\n\n .desktop\\:max-h-0\n max-height: 0px !important\n\n .desktop\\:max-h-full\n max-height: 100% !important\n\n .desktop\\:max-h-screen\n max-height: 100vh !important\n\n .desktop\\:min-h-min\n max-height: min-content !important\n\n .desktop\\:min-h-max\n max-height: max-content !important\n\n .desktop\\:min-h-fit\n max-height: fit-content !important\n\n+widescreen\n .widescreen\\:max-h-auto\n max-height: auto !important\n\n .widescreen\\:max-h-0\n max-height: 0px !important\n\n .widescreen\\:max-h-full\n max-height: 100% !important\n\n .widescreen\\:max-h-screen\n max-height: 100vh !important\n\n .widescreen\\:min-h-min\n max-height: min-content !important\n\n .widescreen\\:min-h-max\n max-height: max-content !important\n\n .widescreen\\:min-h-fit\n max-height: fit-content !important\n\n.max-w-auto\n max-width: auto !important\n\n.max-w-0\n max-width: 0px !important\n\n.max-w-full\n max-width: 100% !important\n\n.max-w-screen\n max-width: 100vw !important\n\n.max-w-min\n max-width: min-content !important\n\n.max-w-max\n max-width: max-content !important\n\n.max-w-fit\n max-width: fit-content !important\n\n+mobile\n .mobile\\:max-w-auto\n max-width: auto !important\n\n .mobile\\:max-w-0\n max-width: 0px !important\n\n .mobile\\:max-w-full\n max-width: 100% !important\n\n .mobile\\:max-w-screen\n max-width: 100vw !important\n\n .mobile\\:max-w-min\n max-width: min-content !important\n\n .mobile\\:max-w-max\n max-width: max-content !important\n\n .mobile\\:max-w-fit\n max-width: fit-content !important\n\n+tablet\n .tablet\\:max-w-auto\n max-width: auto !important\n\n .tablet\\:max-w-0\n max-width: 0px !important\n\n .tablet\\:max-w-full\n max-width: 100% !important\n\n .tablet\\:max-w-screen\n max-width: 100vw !important\n\n .tablet\\:max-w-min\n max-width: min-content !important\n\n .tablet\\:max-w-max\n max-width: max-content !important\n\n .tablet\\:max-w-fit\n max-width: fit-content !important\n\n+desktop\n .desktop\\:max-w-auto\n max-width: auto !important\n\n .desktop\\:max-w-0\n max-width: 0px !important\n\n .desktop\\:max-w-full\n max-width: 100% !important\n\n .desktop\\:max-w-screen\n max-width: 100vw !important\n\n .desktop\\:max-w-min\n max-width: min-content !important\n\n .desktop\\:max-w-max\n max-width: max-content !important\n\n .desktop\\:max-w-fit\n max-width: fit-content !important\n\n+widescreen\n .widescreen\\:max-w-auto\n max-width: auto !important\n\n .widescreen\\:max-w-0\n max-width: 0px !important\n\n .widescreen\\:max-w-full\n max-width: 100% !important\n\n .widescreen\\:max-w-screen\n max-width: 100vw !important\n\n .widescreen\\:max-w-min\n max-width: min-content !important\n\n .widescreen\\:max-w-max\n max-width: max-content !important\n\n .widescreen\\:max-w-fit\n max-width: fit-content !important\n","=from($device)\n @media screen and (min-width: $device)\n @content\n\n=until($device)\n @media screen and (max-width: $device - 1px)\n @content\n\n=between($min-device, $max-device)\n @media screen and (min-width: $min-device) and (max-width: $max-device - 1px)\n @content\n\n=mobile\n @media screen and (max-width: $bal-breakpoint-tablet - 1px)\n @content\n\n=tablet\n @media screen and (min-width: $bal-breakpoint-tablet), print\n @content\n\n=tablet-only\n @media screen and (min-width: $bal-breakpoint-tablet) and (max-width: $bal-breakpoint-desktop - 1px)\n @content\n\n=touch\n @media screen and (max-width: $bal-breakpoint-desktop - 1px)\n @content\n\n=desktop\n @media screen and (min-width: $bal-breakpoint-desktop)\n @content\n\n=desktop-only\n @media screen and (min-width: $bal-breakpoint-desktop) and (max-width: $bal-breakpoint-high-definition - 1px)\n @content\n\n=high-definition\n @media screen and (min-width: $bal-breakpoint-high-definition)\n @content\n\n=high-definition-only\n @media screen and (min-width: $bal-breakpoint-high-definition) and (max-width: $bal-breakpoint-widescreen - 1px)\n @content\n\n=until-high-definition\n @media screen and (max-width: $bal-breakpoint-high-definition - 1px)\n @content\n\n=until-widescreen\n @media screen and (max-width: $bal-breakpoint-widescreen - 1px)\n @content\n\n=widescreen\n @media screen and (min-width: $bal-breakpoint-widescreen)\n @content\n\n=widescreen-only\n @media screen and (min-width: $bal-breakpoint-widescreen) and (max-width: $bal-breakpoint-fullhd - 1px)\n @content\n\n=until-fullhd\n @media screen and (max-width: $bal-breakpoint-fullhd - 1px)\n @content\n\n=fullhd\n @media screen and (min-width: $bal-breakpoint-fullhd)\n @content\n"]}
@@ -0,0 +1 @@
1
+ .h-full{height:100%!important}.h-screen{height:100vh!important}.h-auto{height:auto!important}.h-min{height:-moz-min-content!important;height:min-content!important}.h-max{height:-moz-max-content!important;height:max-content!important}.h-fit{height:-moz-fit-content!important;height:fit-content!important}.h-1rem{height:1rem!important}.h-2rem{height:2rem!important}.h-3rem{height:3rem!important}.h-4rem{height:4rem!important}.h-5rem{height:5rem!important}.h-6rem{height:6rem!important}.h-7rem{height:7rem!important}.h-8rem{height:8rem!important}.h-9rem{height:9rem!important}.h-10rem{height:10rem!important}.h-11rem{height:11rem!important}.h-12rem{height:12rem!important}.h-13rem{height:13rem!important}.h-14rem{height:14rem!important}.h-15rem{height:15rem!important}.h-16rem{height:16rem!important}.h-17rem{height:17rem!important}.h-18rem{height:18rem!important}.h-19rem{height:19rem!important}.h-20rem{height:20rem!important}.h-21rem{height:21rem!important}.h-22rem{height:22rem!important}.h-23rem{height:23rem!important}.h-24rem{height:24rem!important}.h-25rem{height:25rem!important}.h-26rem{height:26rem!important}.h-27rem{height:27rem!important}.h-28rem{height:28rem!important}.h-29rem{height:29rem!important}.h-30rem{height:30rem!important}.w-full{width:100%!important}.w-screen{width:100vw!important}.w-auto{width:auto!important}.w-min{width:-moz-min-content!important;width:min-content!important}.w-max{width:-moz-max-content!important;width:max-content!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-1{width:8.3333%!important}.w-2{width:16.6667%!important}.w-3{width:25%!important}.w-4{width:33.3333%!important}.w-5{width:41.6667%!important}.w-6{width:50%!important}.w-7{width:58.3333%!important}.w-8{width:66.6667%!important}.w-9{width:75%!important}.w-10{width:83.3333%!important}.w-11{width:91.6667%!important}.w-12{width:100%!important}.w-1rem{width:1rem!important}.w-2rem{width:2rem!important}.w-3rem{width:3rem!important}.w-4rem{width:4rem!important}.w-5rem{width:5rem!important}.w-6rem{width:6rem!important}.w-7rem{width:7rem!important}.w-8rem{width:8rem!important}.w-9rem{width:9rem!important}.w-10rem{width:10rem!important}.w-11rem{width:11rem!important}.w-12rem{width:12rem!important}.w-13rem{width:13rem!important}.w-14rem{width:14rem!important}.w-15rem{width:15rem!important}.w-16rem{width:16rem!important}.w-17rem{width:17rem!important}.w-18rem{width:18rem!important}.w-19rem{width:19rem!important}.w-20rem{width:20rem!important}.w-21rem{width:21rem!important}.w-22rem{width:22rem!important}.w-23rem{width:23rem!important}.w-24rem{width:24rem!important}.w-25rem{width:25rem!important}.w-26rem{width:26rem!important}.w-27rem{width:27rem!important}.w-28rem{width:28rem!important}.w-29rem{width:29rem!important}.w-30rem{width:30rem!important}.min-h-auto{min-height:auto!important}.min-h-0{min-height:0!important}.min-h-full{min-height:100%!important}.min-h-screen{min-height:100vh!important}.min-h-min{min-height:-moz-min-content!important;min-height:min-content!important}.min-h-max{min-height:-moz-max-content!important;min-height:max-content!important}.min-h-fit{min-height:-moz-fit-content!important;min-height:fit-content!important}.min-w-auto{min-width:auto!important}.min-w-0{min-width:0!important}.min-w-full{min-width:100%!important}.min-w-screen{min-width:100vw!important}.min-w-min{min-width:-moz-min-content!important;min-width:min-content!important}.min-w-max{min-width:-moz-max-content!important;min-width:max-content!important}.min-w-fit{min-width:-moz-fit-content!important;min-width:fit-content!important}.max-h-auto{max-height:auto!important}.max-h-0{max-height:0!important}.max-h-full{max-height:100%!important}.max-h-screen{max-height:100vh!important}.min-h-min{max-height:-moz-min-content!important;max-height:min-content!important}.min-h-max{max-height:-moz-max-content!important;max-height:max-content!important}.min-h-fit{max-height:-moz-fit-content!important;max-height:fit-content!important}.max-w-auto{max-width:auto!important}.max-w-0{max-width:0!important}.max-w-full{max-width:100%!important}.max-w-screen{max-width:100vw!important}.max-w-min{max-width:-moz-min-content!important;max-width:min-content!important}.max-w-max{max-width:-moz-max-content!important;max-width:max-content!important}.max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}@media screen and (max-width:768px){.mobile\:h-full{height:100%!important}.mobile\:h-screen{height:100vh!important}.mobile\:h-auto{height:auto!important}.mobile\:h-min{height:-moz-min-content!important;height:min-content!important}.mobile\:h-max{height:-moz-max-content!important;height:max-content!important}.mobile\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.mobile\:h-1rem{height:1rem!important}.mobile\:h-2rem{height:2rem!important}.mobile\:h-3rem{height:3rem!important}.mobile\:h-4rem{height:4rem!important}.mobile\:h-5rem{height:5rem!important}.mobile\:h-6rem{height:6rem!important}.mobile\:h-7rem{height:7rem!important}.mobile\:h-8rem{height:8rem!important}.mobile\:h-9rem{height:9rem!important}.mobile\:h-10rem{height:10rem!important}.mobile\:h-11rem{height:11rem!important}.mobile\:h-12rem{height:12rem!important}.mobile\:h-13rem{height:13rem!important}.mobile\:h-14rem{height:14rem!important}.mobile\:h-15rem{height:15rem!important}.mobile\:h-16rem{height:16rem!important}.mobile\:h-17rem{height:17rem!important}.mobile\:h-18rem{height:18rem!important}.mobile\:h-19rem{height:19rem!important}.mobile\:h-20rem{height:20rem!important}.mobile\:h-21rem{height:21rem!important}.mobile\:h-22rem{height:22rem!important}.mobile\:h-23rem{height:23rem!important}.mobile\:h-24rem{height:24rem!important}.mobile\:h-25rem{height:25rem!important}.mobile\:h-26rem{height:26rem!important}.mobile\:h-27rem{height:27rem!important}.mobile\:h-28rem{height:28rem!important}.mobile\:h-29rem{height:29rem!important}.mobile\:h-30rem{height:30rem!important}.mobile\:w-full{width:100%!important}.mobile\:w-screen{width:100vw!important}.mobile\:w-auto{width:auto!important}.mobile\:w-min{width:-moz-min-content!important;width:min-content!important}.mobile\:w-max{width:-moz-max-content!important;width:max-content!important}.mobile\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.mobile\:w-1{width:8.3333%!important}.mobile\:w-2{width:16.6667%!important}.mobile\:w-3{width:25%!important}.mobile\:w-4{width:33.3333%!important}.mobile\:w-5{width:41.6667%!important}.mobile\:w-6{width:50%!important}.mobile\:w-7{width:58.3333%!important}.mobile\:w-8{width:66.6667%!important}.mobile\:w-9{width:75%!important}.mobile\:w-10{width:83.3333%!important}.mobile\:w-11{width:91.6667%!important}.mobile\:w-12{width:100%!important}.mobile\:w-1rem{width:1rem!important}.mobile\:w-2rem{width:2rem!important}.mobile\:w-3rem{width:3rem!important}.mobile\:w-4rem{width:4rem!important}.mobile\:w-5rem{width:5rem!important}.mobile\:w-6rem{width:6rem!important}.mobile\:w-7rem{width:7rem!important}.mobile\:w-8rem{width:8rem!important}.mobile\:w-9rem{width:9rem!important}.mobile\:w-10rem{width:10rem!important}.mobile\:w-11rem{width:11rem!important}.mobile\:w-12rem{width:12rem!important}.mobile\:w-13rem{width:13rem!important}.mobile\:w-14rem{width:14rem!important}.mobile\:w-15rem{width:15rem!important}.mobile\:w-16rem{width:16rem!important}.mobile\:w-17rem{width:17rem!important}.mobile\:w-18rem{width:18rem!important}.mobile\:w-19rem{width:19rem!important}.mobile\:w-20rem{width:20rem!important}.mobile\:w-21rem{width:21rem!important}.mobile\:w-22rem{width:22rem!important}.mobile\:w-23rem{width:23rem!important}.mobile\:w-24rem{width:24rem!important}.mobile\:w-25rem{width:25rem!important}.mobile\:w-26rem{width:26rem!important}.mobile\:w-27rem{width:27rem!important}.mobile\:w-28rem{width:28rem!important}.mobile\:w-29rem{width:29rem!important}.mobile\:w-30rem{width:30rem!important}.mobile\:min-h-auto{min-height:auto!important}.mobile\:min-h-0{min-height:0!important}.mobile\:min-h-full{min-height:100%!important}.mobile\:min-h-screen{min-height:100vh!important}.mobile\:min-h-min{min-height:-moz-min-content!important;min-height:min-content!important}.mobile\:min-h-max{min-height:-moz-max-content!important;min-height:max-content!important}.mobile\:min-w-auto{min-width:auto!important}.mobile\:min-w-0{min-width:0!important}.mobile\:min-w-full{min-width:100%!important}.mobile\:min-w-screen{min-width:100vw!important}.mobile\:min-w-min{min-width:-moz-min-content!important;min-width:min-content!important}.mobile\:min-w-max{min-width:-moz-max-content!important;min-width:max-content!important}.mobile\:min-w-fit{min-width:-moz-fit-content!important;min-width:fit-content!important}.mobile\:max-h-auto{max-height:auto!important}.mobile\:max-h-0{max-height:0!important}.mobile\:max-h-full{max-height:100%!important}.mobile\:max-h-screen{max-height:100vh!important}.mobile\:min-h-min{max-height:-moz-min-content!important;max-height:min-content!important}.mobile\:min-h-max{max-height:-moz-max-content!important;max-height:max-content!important}.mobile\:min-h-fit{min-height:-moz-fit-content!important;min-height:fit-content!important;max-height:-moz-fit-content!important;max-height:fit-content!important}.mobile\:max-w-auto{max-width:auto!important}.mobile\:max-w-0{max-width:0!important}.mobile\:max-w-full{max-width:100%!important}.mobile\:max-w-screen{max-width:100vw!important}.mobile\:max-w-min{max-width:-moz-min-content!important;max-width:min-content!important}.mobile\:max-w-max{max-width:-moz-max-content!important;max-width:max-content!important}.mobile\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}}@media screen and (min-width:769px),print{.tablet\:h-full{height:100%!important}.tablet\:h-screen{height:100vh!important}.tablet\:h-auto{height:auto!important}.tablet\:h-min{height:-moz-min-content!important;height:min-content!important}.tablet\:h-max{height:-moz-max-content!important;height:max-content!important}.tablet\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.tablet\:h-1rem{height:1rem!important}.tablet\:h-2rem{height:2rem!important}.tablet\:h-3rem{height:3rem!important}.tablet\:h-4rem{height:4rem!important}.tablet\:h-5rem{height:5rem!important}.tablet\:h-6rem{height:6rem!important}.tablet\:h-7rem{height:7rem!important}.tablet\:h-8rem{height:8rem!important}.tablet\:h-9rem{height:9rem!important}.tablet\:h-10rem{height:10rem!important}.tablet\:h-11rem{height:11rem!important}.tablet\:h-12rem{height:12rem!important}.tablet\:h-13rem{height:13rem!important}.tablet\:h-14rem{height:14rem!important}.tablet\:h-15rem{height:15rem!important}.tablet\:h-16rem{height:16rem!important}.tablet\:h-17rem{height:17rem!important}.tablet\:h-18rem{height:18rem!important}.tablet\:h-19rem{height:19rem!important}.tablet\:h-20rem{height:20rem!important}.tablet\:h-21rem{height:21rem!important}.tablet\:h-22rem{height:22rem!important}.tablet\:h-23rem{height:23rem!important}.tablet\:h-24rem{height:24rem!important}.tablet\:h-25rem{height:25rem!important}.tablet\:h-26rem{height:26rem!important}.tablet\:h-27rem{height:27rem!important}.tablet\:h-28rem{height:28rem!important}.tablet\:h-29rem{height:29rem!important}.tablet\:h-30rem{height:30rem!important}.tablet\:w-full{width:100%!important}.tablet\:w-screen{width:100vw!important}.tablet\:w-auto{width:auto!important}.tablet\:w-min{width:-moz-min-content!important;width:min-content!important}.tablet\:w-max{width:-moz-max-content!important;width:max-content!important}.tablet\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.tablet\:w-1{width:8.3333%!important}.tablet\:w-2{width:16.6667%!important}.tablet\:w-3{width:25%!important}.tablet\:w-4{width:33.3333%!important}.tablet\:w-5{width:41.6667%!important}.tablet\:w-6{width:50%!important}.tablet\:w-7{width:58.3333%!important}.tablet\:w-8{width:66.6667%!important}.tablet\:w-9{width:75%!important}.tablet\:w-10{width:83.3333%!important}.tablet\:w-11{width:91.6667%!important}.tablet\:w-12{width:100%!important}.tablet\:w-1rem{width:1rem!important}.tablet\:w-2rem{width:2rem!important}.tablet\:w-3rem{width:3rem!important}.tablet\:w-4rem{width:4rem!important}.tablet\:w-5rem{width:5rem!important}.tablet\:w-6rem{width:6rem!important}.tablet\:w-7rem{width:7rem!important}.tablet\:w-8rem{width:8rem!important}.tablet\:w-9rem{width:9rem!important}.tablet\:w-10rem{width:10rem!important}.tablet\:w-11rem{width:11rem!important}.tablet\:w-12rem{width:12rem!important}.tablet\:w-13rem{width:13rem!important}.tablet\:w-14rem{width:14rem!important}.tablet\:w-15rem{width:15rem!important}.tablet\:w-16rem{width:16rem!important}.tablet\:w-17rem{width:17rem!important}.tablet\:w-18rem{width:18rem!important}.tablet\:w-19rem{width:19rem!important}.tablet\:w-20rem{width:20rem!important}.tablet\:w-21rem{width:21rem!important}.tablet\:w-22rem{width:22rem!important}.tablet\:w-23rem{width:23rem!important}.tablet\:w-24rem{width:24rem!important}.tablet\:w-25rem{width:25rem!important}.tablet\:w-26rem{width:26rem!important}.tablet\:w-27rem{width:27rem!important}.tablet\:w-28rem{width:28rem!important}.tablet\:w-29rem{width:29rem!important}.tablet\:w-30rem{width:30rem!important}.tablet\:min-h-auto{min-height:auto!important}.tablet\:min-h-0{min-height:0!important}.tablet\:min-h-full{min-height:100%!important}.tablet\:min-h-screen{min-height:100vh!important}.tablet\:min-h-min{min-height:-moz-min-content!important;min-height:min-content!important}.tablet\:min-h-max{min-height:-moz-max-content!important;min-height:max-content!important}.tablet\:min-w-auto{min-width:auto!important}.tablet\:min-w-0{min-width:0!important}.tablet\:min-w-full{min-width:100%!important}.tablet\:min-w-screen{min-width:100vw!important}.tablet\:min-w-min{min-width:-moz-min-content!important;min-width:min-content!important}.tablet\:min-w-max{min-width:-moz-max-content!important;min-width:max-content!important}.tablet\:min-w-fit{min-width:-moz-fit-content!important;min-width:fit-content!important}.tablet\:max-h-auto{max-height:auto!important}.tablet\:max-h-0{max-height:0!important}.tablet\:max-h-full{max-height:100%!important}.tablet\:max-h-screen{max-height:100vh!important}.tablet\:min-h-min{max-height:-moz-min-content!important;max-height:min-content!important}.tablet\:min-h-max{max-height:-moz-max-content!important;max-height:max-content!important}.tablet\:min-h-fit{min-height:-moz-fit-content!important;min-height:fit-content!important;max-height:-moz-fit-content!important;max-height:fit-content!important}.tablet\:max-w-auto{max-width:auto!important}.tablet\:max-w-0{max-width:0!important}.tablet\:max-w-full{max-width:100%!important}.tablet\:max-w-screen{max-width:100vw!important}.tablet\:max-w-min{max-width:-moz-min-content!important;max-width:min-content!important}.tablet\:max-w-max{max-width:-moz-max-content!important;max-width:max-content!important}.tablet\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}}@media screen and (min-width:1024px){.desktop\:h-full{height:100%!important}.desktop\:h-screen{height:100vh!important}.desktop\:h-auto{height:auto!important}.desktop\:h-min{height:-moz-min-content!important;height:min-content!important}.desktop\:h-max{height:-moz-max-content!important;height:max-content!important}.desktop\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.desktop\:h-1rem{height:1rem!important}.desktop\:h-2rem{height:2rem!important}.desktop\:h-3rem{height:3rem!important}.desktop\:h-4rem{height:4rem!important}.desktop\:h-5rem{height:5rem!important}.desktop\:h-6rem{height:6rem!important}.desktop\:h-7rem{height:7rem!important}.desktop\:h-8rem{height:8rem!important}.desktop\:h-9rem{height:9rem!important}.desktop\:h-10rem{height:10rem!important}.desktop\:h-11rem{height:11rem!important}.desktop\:h-12rem{height:12rem!important}.desktop\:h-13rem{height:13rem!important}.desktop\:h-14rem{height:14rem!important}.desktop\:h-15rem{height:15rem!important}.desktop\:h-16rem{height:16rem!important}.desktop\:h-17rem{height:17rem!important}.desktop\:h-18rem{height:18rem!important}.desktop\:h-19rem{height:19rem!important}.desktop\:h-20rem{height:20rem!important}.desktop\:h-21rem{height:21rem!important}.desktop\:h-22rem{height:22rem!important}.desktop\:h-23rem{height:23rem!important}.desktop\:h-24rem{height:24rem!important}.desktop\:h-25rem{height:25rem!important}.desktop\:h-26rem{height:26rem!important}.desktop\:h-27rem{height:27rem!important}.desktop\:h-28rem{height:28rem!important}.desktop\:h-29rem{height:29rem!important}.desktop\:h-30rem{height:30rem!important}.desktop\:w-full{width:100%!important}.desktop\:w-screen{width:100vw!important}.desktop\:w-auto{width:auto!important}.desktop\:w-min{width:-moz-min-content!important;width:min-content!important}.desktop\:w-max{width:-moz-max-content!important;width:max-content!important}.desktop\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.desktop\:w-1{width:8.3333%!important}.desktop\:w-2{width:16.6667%!important}.desktop\:w-3{width:25%!important}.desktop\:w-4{width:33.3333%!important}.desktop\:w-5{width:41.6667%!important}.desktop\:w-6{width:50%!important}.desktop\:w-7{width:58.3333%!important}.desktop\:w-8{width:66.6667%!important}.desktop\:w-9{width:75%!important}.desktop\:w-10{width:83.3333%!important}.desktop\:w-11{width:91.6667%!important}.desktop\:w-12{width:100%!important}.desktop\:w-1rem{width:1rem!important}.desktop\:w-2rem{width:2rem!important}.desktop\:w-3rem{width:3rem!important}.desktop\:w-4rem{width:4rem!important}.desktop\:w-5rem{width:5rem!important}.desktop\:w-6rem{width:6rem!important}.desktop\:w-7rem{width:7rem!important}.desktop\:w-8rem{width:8rem!important}.desktop\:w-9rem{width:9rem!important}.desktop\:w-10rem{width:10rem!important}.desktop\:w-11rem{width:11rem!important}.desktop\:w-12rem{width:12rem!important}.desktop\:w-13rem{width:13rem!important}.desktop\:w-14rem{width:14rem!important}.desktop\:w-15rem{width:15rem!important}.desktop\:w-16rem{width:16rem!important}.desktop\:w-17rem{width:17rem!important}.desktop\:w-18rem{width:18rem!important}.desktop\:w-19rem{width:19rem!important}.desktop\:w-20rem{width:20rem!important}.desktop\:w-21rem{width:21rem!important}.desktop\:w-22rem{width:22rem!important}.desktop\:w-23rem{width:23rem!important}.desktop\:w-24rem{width:24rem!important}.desktop\:w-25rem{width:25rem!important}.desktop\:w-26rem{width:26rem!important}.desktop\:w-27rem{width:27rem!important}.desktop\:w-28rem{width:28rem!important}.desktop\:w-29rem{width:29rem!important}.desktop\:w-30rem{width:30rem!important}.desktop\:min-h-auto{min-height:auto!important}.desktop\:min-h-0{min-height:0!important}.desktop\:min-h-full{min-height:100%!important}.desktop\:min-h-screen{min-height:100vh!important}.desktop\:min-h-min{min-height:-moz-min-content!important;min-height:min-content!important}.desktop\:min-h-max{min-height:-moz-max-content!important;min-height:max-content!important}.desktop\:min-w-auto{min-width:auto!important}.desktop\:min-w-0{min-width:0!important}.desktop\:min-w-full{min-width:100%!important}.desktop\:min-w-screen{min-width:100vw!important}.desktop\:min-w-min{min-width:-moz-min-content!important;min-width:min-content!important}.desktop\:min-w-max{min-width:-moz-max-content!important;min-width:max-content!important}.desktop\:min-w-fit{min-width:-moz-fit-content!important;min-width:fit-content!important}.desktop\:max-h-auto{max-height:auto!important}.desktop\:max-h-0{max-height:0!important}.desktop\:max-h-full{max-height:100%!important}.desktop\:max-h-screen{max-height:100vh!important}.desktop\:min-h-min{max-height:-moz-min-content!important;max-height:min-content!important}.desktop\:min-h-max{max-height:-moz-max-content!important;max-height:max-content!important}.desktop\:min-h-fit{min-height:-moz-fit-content!important;min-height:fit-content!important;max-height:-moz-fit-content!important;max-height:fit-content!important}.desktop\:max-w-auto{max-width:auto!important}.desktop\:max-w-0{max-width:0!important}.desktop\:max-w-full{max-width:100%!important}.desktop\:max-w-screen{max-width:100vw!important}.desktop\:max-w-min{max-width:-moz-min-content!important;max-width:min-content!important}.desktop\:max-w-max{max-width:-moz-max-content!important;max-width:max-content!important}.desktop\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}}@media screen and (min-width:1440px){.widescreen\:h-full{height:100%!important}.widescreen\:h-screen{height:100vh!important}.widescreen\:h-auto{height:auto!important}.widescreen\:h-min{height:-moz-min-content!important;height:min-content!important}.widescreen\:h-max{height:-moz-max-content!important;height:max-content!important}.widescreen\:h-fit{height:-moz-fit-content!important;height:fit-content!important}.widescreen\:h-1rem{height:1rem!important}.widescreen\:h-2rem{height:2rem!important}.widescreen\:h-3rem{height:3rem!important}.widescreen\:h-4rem{height:4rem!important}.widescreen\:h-5rem{height:5rem!important}.widescreen\:h-6rem{height:6rem!important}.widescreen\:h-7rem{height:7rem!important}.widescreen\:h-8rem{height:8rem!important}.widescreen\:h-9rem{height:9rem!important}.widescreen\:h-10rem{height:10rem!important}.widescreen\:h-11rem{height:11rem!important}.widescreen\:h-12rem{height:12rem!important}.widescreen\:h-13rem{height:13rem!important}.widescreen\:h-14rem{height:14rem!important}.widescreen\:h-15rem{height:15rem!important}.widescreen\:h-16rem{height:16rem!important}.widescreen\:h-17rem{height:17rem!important}.widescreen\:h-18rem{height:18rem!important}.widescreen\:h-19rem{height:19rem!important}.widescreen\:h-20rem{height:20rem!important}.widescreen\:h-21rem{height:21rem!important}.widescreen\:h-22rem{height:22rem!important}.widescreen\:h-23rem{height:23rem!important}.widescreen\:h-24rem{height:24rem!important}.widescreen\:h-25rem{height:25rem!important}.widescreen\:h-26rem{height:26rem!important}.widescreen\:h-27rem{height:27rem!important}.widescreen\:h-28rem{height:28rem!important}.widescreen\:h-29rem{height:29rem!important}.widescreen\:h-30rem{height:30rem!important}.widescreen\:w-full{width:100%!important}.widescreen\:w-screen{width:100vw!important}.widescreen\:w-auto{width:auto!important}.widescreen\:w-min{width:-moz-min-content!important;width:min-content!important}.widescreen\:w-max{width:-moz-max-content!important;width:max-content!important}.widescreen\:w-fit{width:-moz-fit-content!important;width:fit-content!important}.widescreen\:w-1{width:8.3333%!important}.widescreen\:w-2{width:16.6667%!important}.widescreen\:w-3{width:25%!important}.widescreen\:w-4{width:33.3333%!important}.widescreen\:w-5{width:41.6667%!important}.widescreen\:w-6{width:50%!important}.widescreen\:w-7{width:58.3333%!important}.widescreen\:w-8{width:66.6667%!important}.widescreen\:w-9{width:75%!important}.widescreen\:w-10{width:83.3333%!important}.widescreen\:w-11{width:91.6667%!important}.widescreen\:w-12{width:100%!important}.widescreen\:w-1rem{width:1rem!important}.widescreen\:w-2rem{width:2rem!important}.widescreen\:w-3rem{width:3rem!important}.widescreen\:w-4rem{width:4rem!important}.widescreen\:w-5rem{width:5rem!important}.widescreen\:w-6rem{width:6rem!important}.widescreen\:w-7rem{width:7rem!important}.widescreen\:w-8rem{width:8rem!important}.widescreen\:w-9rem{width:9rem!important}.widescreen\:w-10rem{width:10rem!important}.widescreen\:w-11rem{width:11rem!important}.widescreen\:w-12rem{width:12rem!important}.widescreen\:w-13rem{width:13rem!important}.widescreen\:w-14rem{width:14rem!important}.widescreen\:w-15rem{width:15rem!important}.widescreen\:w-16rem{width:16rem!important}.widescreen\:w-17rem{width:17rem!important}.widescreen\:w-18rem{width:18rem!important}.widescreen\:w-19rem{width:19rem!important}.widescreen\:w-20rem{width:20rem!important}.widescreen\:w-21rem{width:21rem!important}.widescreen\:w-22rem{width:22rem!important}.widescreen\:w-23rem{width:23rem!important}.widescreen\:w-24rem{width:24rem!important}.widescreen\:w-25rem{width:25rem!important}.widescreen\:w-26rem{width:26rem!important}.widescreen\:w-27rem{width:27rem!important}.widescreen\:w-28rem{width:28rem!important}.widescreen\:w-29rem{width:29rem!important}.widescreen\:w-30rem{width:30rem!important}.widescreen\:min-h-auto{min-height:auto!important}.widescreen\:min-h-0{min-height:0!important}.widescreen\:min-h-full{min-height:100%!important}.widescreen\:min-h-screen{min-height:100vh!important}.widescreen\:min-h-min{min-height:-moz-min-content!important;min-height:min-content!important}.widescreen\:min-h-max{min-height:-moz-max-content!important;min-height:max-content!important}.widescreen\:min-w-auto{min-width:auto!important}.widescreen\:min-w-0{min-width:0!important}.widescreen\:min-w-full{min-width:100%!important}.widescreen\:min-w-screen{min-width:100vw!important}.widescreen\:min-w-min{min-width:-moz-min-content!important;min-width:min-content!important}.widescreen\:min-w-max{min-width:-moz-max-content!important;min-width:max-content!important}.widescreen\:min-w-fit{min-width:-moz-fit-content!important;min-width:fit-content!important}.widescreen\:max-h-auto{max-height:auto!important}.widescreen\:max-h-0{max-height:0!important}.widescreen\:max-h-full{max-height:100%!important}.widescreen\:max-h-screen{max-height:100vh!important}.widescreen\:min-h-min{max-height:-moz-min-content!important;max-height:min-content!important}.widescreen\:min-h-max{max-height:-moz-max-content!important;max-height:max-content!important}.widescreen\:min-h-fit{min-height:-moz-fit-content!important;min-height:fit-content!important;max-height:-moz-fit-content!important;max-height:fit-content!important}.widescreen\:max-w-auto{max-width:auto!important}.widescreen\:max-w-0{max-width:0!important}.widescreen\:max-w-full{max-width:100%!important}.widescreen\:max-w-screen{max-width:100vw!important}.widescreen\:max-w-min{max-width:-moz-min-content!important;max-width:min-content!important}.widescreen\:max-w-max{max-width:-moz-max-content!important;max-width:max-content!important}.widescreen\:max-w-fit{max-width:-moz-fit-content!important;max-width:fit-content!important}}