@baloise/ds-styles 0.0.5-nightly.20240301

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 +40 -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/flex.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;;;ACNA;EDSA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACxBF;ED2BA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AClCF;EDqCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AChCF;EDmCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AC7GA;EDgHA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACzHF;ED4HA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC7HF;EDgIA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACrHF;EDwHA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AC5LA;ED+LA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACxMF;ED2MA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC5MF;ED+MA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACpMF;EDuMA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACxQA;ED2QA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACjRF;EDoRA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AClRF;EDqRA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACvQF;ED0QA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACxUA;ED2UA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACjVF;EDoVA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AClVF;EDqVA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACvUF;ED0UA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AC9YA;EDiZA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC7ZF;EDgaA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACpaF;EDuaA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC/ZF;EDkaA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACneA;EDseA;IACE;;EAEF;IACE;;EAEF;IACE;;;ACzeF;ED4eA;IACE;;EAEF;IACE;;EAEF;IACE;;;ACveF;ED0eA;IACE;;EAEF;IACE;;EAEF;IACE;;;ACzdF;ED4dA;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;;;ACnnBA;EDsnBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AClpBF;EDqpBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACjrBF;EDorBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACpsBF;EDusBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACnuBF;EDsuBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AClwBF;EDqwBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE","sourcesContent":[".align-content-start\n align-content: flex-start !important\n\n.align-content-end\n align-content: flex-end !important\n\n.align-content-center\n align-content: center !important\n\n.align-content-baseline\n align-content: baseline !important\n\n.align-content-space-between\n align-content: space-between !important\n\n.align-content-space-around\n align-content: space-around !important\n\n.align-content-space-evenly\n align-content: space-evenly !important\n\n+mobile\n .mobile\\:align-content-start\n align-content: flex-start !important\n\n .mobile\\:align-content-end\n align-content: flex-end !important\n\n .mobile\\:align-content-center\n align-content: center !important\n\n .mobile\\:align-content-baseline\n align-content: baseline !important\n\n .mobile\\:align-content-space-between\n align-content: space-between !important\n\n .mobile\\:align-content-space-around\n align-content: space-around !important\n\n .mobile\\:align-content-space-evenly\n align-content: space-evenly !important\n\n+tablet\n .tablet\\:align-content-start\n align-content: flex-start !important\n\n .tablet\\:align-content-end\n align-content: flex-end !important\n\n .tablet\\:align-content-center\n align-content: center !important\n\n .tablet\\:align-content-baseline\n align-content: baseline !important\n\n .tablet\\:align-content-space-between\n align-content: space-between !important\n\n .tablet\\:align-content-space-around\n align-content: space-around !important\n\n .tablet\\:align-content-space-evenly\n align-content: space-evenly !important\n\n+desktop\n .desktop\\:align-content-start\n align-content: flex-start !important\n\n .desktop\\:align-content-end\n align-content: flex-end !important\n\n .desktop\\:align-content-center\n align-content: center !important\n\n .desktop\\:align-content-baseline\n align-content: baseline !important\n\n .desktop\\:align-content-space-between\n align-content: space-between !important\n\n .desktop\\:align-content-space-around\n align-content: space-around !important\n\n .desktop\\:align-content-space-evenly\n align-content: space-evenly !important\n\n+widescreen\n .widescreen\\:align-content-start\n align-content: flex-start !important\n\n .widescreen\\:align-content-end\n align-content: flex-end !important\n\n .widescreen\\:align-content-center\n align-content: center !important\n\n .widescreen\\:align-content-baseline\n align-content: baseline !important\n\n .widescreen\\:align-content-space-between\n align-content: space-between !important\n\n .widescreen\\:align-content-space-around\n align-content: space-around !important\n\n .widescreen\\:align-content-space-evenly\n align-content: space-evenly !important\n\n.align-items-start\n align-items: flex-start !important\n\n.align-items-end\n align-items: flex-end !important\n\n.align-items-center\n align-items: center !important\n\n.align-items-stretch\n align-items: stretch !important\n\n.align-items-baseline\n align-items: baseline !important\n\n+mobile\n .mobile\\:align-items-start\n align-items: flex-start !important\n\n .mobile\\:align-items-end\n align-items: flex-end !important\n\n .mobile\\:align-items-center\n align-items: center !important\n\n .mobile\\:align-items-stretch\n align-items: stretch !important\n\n .mobile\\:align-items-baseline\n align-items: baseline !important\n\n+tablet\n .tablet\\:align-items-start\n align-items: flex-start !important\n\n .tablet\\:align-items-end\n align-items: flex-end !important\n\n .tablet\\:align-items-center\n align-items: center !important\n\n .tablet\\:align-items-stretch\n align-items: stretch !important\n\n .tablet\\:align-items-baseline\n align-items: baseline !important\n\n+desktop\n .desktop\\:align-items-start\n align-items: flex-start !important\n\n .desktop\\:align-items-end\n align-items: flex-end !important\n\n .desktop\\:align-items-center\n align-items: center !important\n\n .desktop\\:align-items-stretch\n align-items: stretch !important\n\n .desktop\\:align-items-baseline\n align-items: baseline !important\n\n+widescreen\n .widescreen\\:align-items-start\n align-items: flex-start !important\n\n .widescreen\\:align-items-end\n align-items: flex-end !important\n\n .widescreen\\:align-items-center\n align-items: center !important\n\n .widescreen\\:align-items-stretch\n align-items: stretch !important\n\n .widescreen\\:align-items-baseline\n align-items: baseline !important\n\n.align-self-start\n align-self: flex-start !important\n\n.align-self-end\n align-self: flex-end !important\n\n.align-self-center\n align-self: center !important\n\n.align-self-stretch\n align-self: stretch !important\n\n.align-self-baseline\n align-self: baseline !important\n\n+mobile\n .mobile\\:align-self-start\n align-self: flex-start !important\n\n .mobile\\:align-self-end\n align-self: flex-end !important\n\n .mobile\\:align-self-center\n align-self: center !important\n\n .mobile\\:align-self-stretch\n align-self: stretch !important\n\n .mobile\\:align-self-baseline\n align-self: baseline !important\n\n+tablet\n .tablet\\:align-self-start\n align-self: flex-start !important\n\n .tablet\\:align-self-end\n align-self: flex-end !important\n\n .tablet\\:align-self-center\n align-self: center !important\n\n .tablet\\:align-self-stretch\n align-self: stretch !important\n\n .tablet\\:align-self-baseline\n align-self: baseline !important\n\n+desktop\n .desktop\\:align-self-start\n align-self: flex-start !important\n\n .desktop\\:align-self-end\n align-self: flex-end !important\n\n .desktop\\:align-self-center\n align-self: center !important\n\n .desktop\\:align-self-stretch\n align-self: stretch !important\n\n .desktop\\:align-self-baseline\n align-self: baseline !important\n\n+widescreen\n .widescreen\\:align-self-start\n align-self: flex-start !important\n\n .widescreen\\:align-self-end\n align-self: flex-end !important\n\n .widescreen\\:align-self-center\n align-self: center !important\n\n .widescreen\\:align-self-stretch\n align-self: stretch !important\n\n .widescreen\\:align-self-baseline\n align-self: baseline !important\n\n.flex-direction-row\n flex-direction: row !important\n\n.flex-direction-row-reverse\n flex-direction: row-reverse !important\n\n.flex-direction-column\n flex-direction: column !important\n\n.flex-direction-column-reverse\n flex-direction: column-reverse !important\n\n+mobile\n .mobile\\:flex-direction-row\n flex-direction: row !important\n\n .mobile\\:flex-direction-row-reverse\n flex-direction: row-reverse !important\n\n .mobile\\:flex-direction-column\n flex-direction: column !important\n\n .mobile\\:flex-direction-column-reverse\n flex-direction: column-reverse !important\n\n+tablet\n .tablet\\:flex-direction-row\n flex-direction: row !important\n\n .tablet\\:flex-direction-row-reverse\n flex-direction: row-reverse !important\n\n .tablet\\:flex-direction-column\n flex-direction: column !important\n\n .tablet\\:flex-direction-column-reverse\n flex-direction: column-reverse !important\n\n+desktop\n .desktop\\:flex-direction-row\n flex-direction: row !important\n\n .desktop\\:flex-direction-row-reverse\n flex-direction: row-reverse !important\n\n .desktop\\:flex-direction-column\n flex-direction: column !important\n\n .desktop\\:flex-direction-column-reverse\n flex-direction: column-reverse !important\n\n+widescreen\n .widescreen\\:flex-direction-row\n flex-direction: row !important\n\n .widescreen\\:flex-direction-row-reverse\n flex-direction: row-reverse !important\n\n .widescreen\\:flex-direction-column\n flex-direction: column !important\n\n .widescreen\\:flex-direction-column-reverse\n flex-direction: column-reverse !important\n\n.flex-1\n flex: 1 1 0% !important\n\n.flex-auto\n flex: 1 1 auto !important\n\n.flex-initial\n flex: 0 1 auto !important\n\n.flex-none\n flex: none !important\n\n+mobile\n .mobile\\:flex-1\n flex: 1 1 0% !important\n\n .mobile\\:flex-auto\n flex: 1 1 auto !important\n\n .mobile\\:flex-initial\n flex: 0 1 auto !important\n\n .mobile\\:flex-none\n flex: none !important\n\n+tablet\n .tablet\\:flex-1\n flex: 1 1 0% !important\n\n .tablet\\:flex-auto\n flex: 1 1 auto !important\n\n .tablet\\:flex-initial\n flex: 0 1 auto !important\n\n .tablet\\:flex-none\n flex: none !important\n\n+desktop\n .desktop\\:flex-1\n flex: 1 1 0% !important\n\n .desktop\\:flex-auto\n flex: 1 1 auto !important\n\n .desktop\\:flex-initial\n flex: 0 1 auto !important\n\n .desktop\\:flex-none\n flex: none !important\n\n+widescreen\n .widescreen\\:flex-1\n flex: 1 1 0% !important\n\n .widescreen\\:flex-auto\n flex: 1 1 auto !important\n\n .widescreen\\:flex-initial\n flex: 0 1 auto !important\n\n .widescreen\\:flex-none\n flex: none !important\n\n.justify-content-start\n justify-content: flex-start !important\n\n.justify-content-end\n justify-content: flex-end !important\n\n.justify-content-center\n justify-content: center !important\n\n.justify-content-space-between\n justify-content: space-between !important\n\n.justify-content-space-around\n justify-content: space-around !important\n\n.justify-content-space-evenly\n justify-content: space-evenly !important\n\n+mobile\n .mobile\\:justify-content-start\n justify-content: flex-start !important\n\n .mobile\\:justify-content-end\n justify-content: flex-end !important\n\n .mobile\\:justify-content-center\n justify-content: center !important\n\n .mobile\\:justify-content-space-between\n justify-content: space-between !important\n\n .mobile\\:justify-content-space-around\n justify-content: space-around !important\n\n .mobile\\:justify-content-space-evenly\n justify-content: space-evenly !important\n\n+tablet\n .tablet\\:justify-content-start\n justify-content: flex-start !important\n\n .tablet\\:justify-content-end\n justify-content: flex-end !important\n\n .tablet\\:justify-content-center\n justify-content: center !important\n\n .tablet\\:justify-content-space-between\n justify-content: space-between !important\n\n .tablet\\:justify-content-space-around\n justify-content: space-around !important\n\n .tablet\\:justify-content-space-evenly\n justify-content: space-evenly !important\n\n+desktop\n .desktop\\:justify-content-start\n justify-content: flex-start !important\n\n .desktop\\:justify-content-end\n justify-content: flex-end !important\n\n .desktop\\:justify-content-center\n justify-content: center !important\n\n .desktop\\:justify-content-space-between\n justify-content: space-between !important\n\n .desktop\\:justify-content-space-around\n justify-content: space-around !important\n\n .desktop\\:justify-content-space-evenly\n justify-content: space-evenly !important\n\n+widescreen\n .widescreen\\:justify-content-start\n justify-content: flex-start !important\n\n .widescreen\\:justify-content-end\n justify-content: flex-end !important\n\n .widescreen\\:justify-content-center\n justify-content: center !important\n\n .widescreen\\:justify-content-space-between\n justify-content: space-between !important\n\n .widescreen\\:justify-content-space-around\n justify-content: space-around !important\n\n .widescreen\\:justify-content-space-evenly\n justify-content: space-evenly !important\n\n.flex-nowrap\n flex-wrap: nowrap !important\n\n.flex-wrap\n flex-wrap: wrap !important\n\n.flex-wrap-reverse\n flex-wrap: wrap-reverse !important\n\n+mobile\n .mobile\\:flex-nowrap\n flex-wrap: nowrap !important\n\n .mobile\\:flex-wrap\n flex-wrap: wrap !important\n\n .mobile\\:flex-wrap-reverse\n flex-wrap: wrap-reverse !important\n\n+tablet\n .tablet\\:flex-nowrap\n flex-wrap: nowrap !important\n\n .tablet\\:flex-wrap\n flex-wrap: wrap !important\n\n .tablet\\:flex-wrap-reverse\n flex-wrap: wrap-reverse !important\n\n+desktop\n .desktop\\:flex-nowrap\n flex-wrap: nowrap !important\n\n .desktop\\:flex-wrap\n flex-wrap: wrap !important\n\n .desktop\\:flex-wrap-reverse\n flex-wrap: wrap-reverse !important\n\n+widescreen\n .widescreen\\:flex-nowrap\n flex-wrap: nowrap !important\n\n .widescreen\\:flex-wrap\n flex-wrap: wrap !important\n\n .widescreen\\:flex-wrap-reverse\n flex-wrap: wrap-reverse !important\n\n.gap-none\n gap: 0 !important\n\n.gap-auto\n gap: auto !important\n\n.gap-xx-small\n gap: var(--bal-space-xx-small) !important\n\n.gap-x-small\n gap: var(--bal-space-x-small) !important\n\n.gap-small\n gap: var(--bal-space-small) !important\n\n.gap-normal\n gap: var(--bal-space-normal) !important\n\n.gap-medium\n gap: var(--bal-space-medium) !important\n\n.gap-large\n gap: var(--bal-space-large) !important\n\n.gap-x-large\n gap: var(--bal-space-x-large) !important\n\n.gap-xx-large\n gap: var(--bal-space-xx-large) !important\n\n.gap-xxx-large\n gap: var(--bal-space-xxx-large) !important\n\n.gap-xxxx-large\n gap: var(--bal-space-xxxx-large) !important\n\n.row-gap-none\n row-gap: 0 !important\n\n.row-gap-auto\n row-gap: auto !important\n\n.row-gap-xx-small\n row-gap: var(--bal-space-xx-small) !important\n\n.row-gap-x-small\n row-gap: var(--bal-space-x-small) !important\n\n.row-gap-small\n row-gap: var(--bal-space-small) !important\n\n.row-gap-normal\n row-gap: var(--bal-space-normal) !important\n\n.row-gap-medium\n row-gap: var(--bal-space-medium) !important\n\n.row-gap-large\n row-gap: var(--bal-space-large) !important\n\n.row-gap-x-large\n row-gap: var(--bal-space-x-large) !important\n\n.row-gap-xx-large\n row-gap: var(--bal-space-xx-large) !important\n\n.row-gap-xxx-large\n row-gap: var(--bal-space-xxx-large) !important\n\n.row-gap-xxxx-large\n row-gap: var(--bal-space-xxxx-large) !important\n\n.column-gap-none\n column-gap: 0 !important\n\n.column-gap-auto\n column-gap: auto !important\n\n.column-gap-xx-small\n column-gap: var(--bal-space-xx-small) !important\n\n.column-gap-x-small\n column-gap: var(--bal-space-x-small) !important\n\n.column-gap-small\n column-gap: var(--bal-space-small) !important\n\n.column-gap-normal\n column-gap: var(--bal-space-normal) !important\n\n.column-gap-medium\n column-gap: var(--bal-space-medium) !important\n\n.column-gap-large\n column-gap: var(--bal-space-large) !important\n\n.column-gap-x-large\n column-gap: var(--bal-space-x-large) !important\n\n.column-gap-xx-large\n column-gap: var(--bal-space-xx-large) !important\n\n.column-gap-xxx-large\n column-gap: var(--bal-space-xxx-large) !important\n\n.column-gap-xxxx-large\n column-gap: var(--bal-space-xxxx-large) !important\n\n+tablet\n .gap-xx-small\n gap: var(--bal-space-xx-small-tablet) !important\n\n .gap-x-small\n gap: var(--bal-space-x-small-tablet) !important\n\n .gap-small\n gap: var(--bal-space-small-tablet) !important\n\n .gap-normal\n gap: var(--bal-space-normal-tablet) !important\n\n .gap-medium\n gap: var(--bal-space-medium-tablet) !important\n\n .gap-large\n gap: var(--bal-space-large-tablet) !important\n\n .gap-x-large\n gap: var(--bal-space-x-large-tablet) !important\n\n .gap-xx-large\n gap: var(--bal-space-xx-large-tablet) !important\n\n .gap-xxx-large\n gap: var(--bal-space-xxx-large-tablet) !important\n\n .gap-xxxx-large\n gap: var(--bal-space-xxxx-large-tablet) !important\n\n+tablet\n .row-gap-xx-small\n row-gap: var(--bal-space-xx-small-tablet) !important\n\n .row-gap-x-small\n row-gap: var(--bal-space-x-small-tablet) !important\n\n .row-gap-small\n row-gap: var(--bal-space-small-tablet) !important\n\n .row-gap-normal\n row-gap: var(--bal-space-normal-tablet) !important\n\n .row-gap-medium\n row-gap: var(--bal-space-medium-tablet) !important\n\n .row-gap-large\n row-gap: var(--bal-space-large-tablet) !important\n\n .row-gap-x-large\n row-gap: var(--bal-space-x-large-tablet) !important\n\n .row-gap-xx-large\n row-gap: var(--bal-space-xx-large-tablet) !important\n\n .row-gap-xxx-large\n row-gap: var(--bal-space-xxx-large-tablet) !important\n\n .row-gap-xxxx-large\n row-gap: var(--bal-space-xxxx-large-tablet) !important\n\n+tablet\n .column-gap-xx-small\n column-gap: var(--bal-space-xx-small-tablet) !important\n\n .column-gap-x-small\n column-gap: var(--bal-space-x-small-tablet) !important\n\n .column-gap-small\n column-gap: var(--bal-space-small-tablet) !important\n\n .column-gap-normal\n column-gap: var(--bal-space-normal-tablet) !important\n\n .column-gap-medium\n column-gap: var(--bal-space-medium-tablet) !important\n\n .column-gap-large\n column-gap: var(--bal-space-large-tablet) !important\n\n .column-gap-x-large\n column-gap: var(--bal-space-x-large-tablet) !important\n\n .column-gap-xx-large\n column-gap: var(--bal-space-xx-large-tablet) !important\n\n .column-gap-xxx-large\n column-gap: var(--bal-space-xxx-large-tablet) !important\n\n .column-gap-xxxx-large\n column-gap: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .gap-xx-small\n gap: var(--bal-space-xx-small-desktop) !important\n\n .gap-x-small\n gap: var(--bal-space-x-small-desktop) !important\n\n .gap-small\n gap: var(--bal-space-small-desktop) !important\n\n .gap-normal\n gap: var(--bal-space-normal-desktop) !important\n\n .gap-medium\n gap: var(--bal-space-medium-desktop) !important\n\n .gap-large\n gap: var(--bal-space-large-desktop) !important\n\n .gap-x-large\n gap: var(--bal-space-x-large-desktop) !important\n\n .gap-xx-large\n gap: var(--bal-space-xx-large-desktop) !important\n\n .gap-xxx-large\n gap: var(--bal-space-xxx-large-desktop) !important\n\n .gap-xxxx-large\n gap: var(--bal-space-xxxx-large-desktop) !important\n\n+desktop\n .row-gap-xx-small\n row-gap: var(--bal-space-xx-small-desktop) !important\n\n .row-gap-x-small\n row-gap: var(--bal-space-x-small-desktop) !important\n\n .row-gap-small\n row-gap: var(--bal-space-small-desktop) !important\n\n .row-gap-normal\n row-gap: var(--bal-space-normal-desktop) !important\n\n .row-gap-medium\n row-gap: var(--bal-space-medium-desktop) !important\n\n .row-gap-large\n row-gap: var(--bal-space-large-desktop) !important\n\n .row-gap-x-large\n row-gap: var(--bal-space-x-large-desktop) !important\n\n .row-gap-xx-large\n row-gap: var(--bal-space-xx-large-desktop) !important\n\n .row-gap-xxx-large\n row-gap: var(--bal-space-xxx-large-desktop) !important\n\n .row-gap-xxxx-large\n row-gap: var(--bal-space-xxxx-large-desktop) !important\n\n+desktop\n .column-gap-xx-small\n column-gap: var(--bal-space-xx-small-desktop) !important\n\n .column-gap-x-small\n column-gap: var(--bal-space-x-small-desktop) !important\n\n .column-gap-small\n column-gap: var(--bal-space-small-desktop) !important\n\n .column-gap-normal\n column-gap: var(--bal-space-normal-desktop) !important\n\n .column-gap-medium\n column-gap: var(--bal-space-medium-desktop) !important\n\n .column-gap-large\n column-gap: var(--bal-space-large-desktop) !important\n\n .column-gap-x-large\n column-gap: var(--bal-space-x-large-desktop) !important\n\n .column-gap-xx-large\n column-gap: var(--bal-space-xx-large-desktop) !important\n\n .column-gap-xxx-large\n column-gap: var(--bal-space-xxx-large-desktop) !important\n\n .column-gap-xxxx-large\n column-gap: var(--bal-space-xxxx-large-desktop) !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
+ .align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-baseline{align-content:baseline!important}.align-content-space-between{align-content:space-between!important}.align-content-space-around{align-content:space-around!important}.align-content-space-evenly{align-content:space-evenly!important}@media screen and (max-width:768px){.mobile\:align-content-start{align-content:flex-start!important}.mobile\:align-content-end{align-content:flex-end!important}.mobile\:align-content-center{align-content:center!important}.mobile\:align-content-baseline{align-content:baseline!important}.mobile\:align-content-space-between{align-content:space-between!important}.mobile\:align-content-space-around{align-content:space-around!important}.mobile\:align-content-space-evenly{align-content:space-evenly!important}}@media screen and (min-width:769px),print{.tablet\:align-content-start{align-content:flex-start!important}.tablet\:align-content-end{align-content:flex-end!important}.tablet\:align-content-center{align-content:center!important}.tablet\:align-content-baseline{align-content:baseline!important}.tablet\:align-content-space-between{align-content:space-between!important}.tablet\:align-content-space-around{align-content:space-around!important}.tablet\:align-content-space-evenly{align-content:space-evenly!important}}@media screen and (min-width:1024px){.desktop\:align-content-start{align-content:flex-start!important}.desktop\:align-content-end{align-content:flex-end!important}.desktop\:align-content-center{align-content:center!important}.desktop\:align-content-baseline{align-content:baseline!important}.desktop\:align-content-space-between{align-content:space-between!important}.desktop\:align-content-space-around{align-content:space-around!important}.desktop\:align-content-space-evenly{align-content:space-evenly!important}}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-stretch{align-items:stretch!important}.align-items-baseline{align-items:baseline!important}@media screen and (max-width:768px){.mobile\:align-items-start{align-items:flex-start!important}.mobile\:align-items-end{align-items:flex-end!important}.mobile\:align-items-center{align-items:center!important}.mobile\:align-items-stretch{align-items:stretch!important}.mobile\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width:769px),print{.tablet\:align-items-start{align-items:flex-start!important}.tablet\:align-items-end{align-items:flex-end!important}.tablet\:align-items-center{align-items:center!important}.tablet\:align-items-stretch{align-items:stretch!important}.tablet\:align-items-baseline{align-items:baseline!important}}@media screen and (min-width:1024px){.desktop\:align-items-start{align-items:flex-start!important}.desktop\:align-items-end{align-items:flex-end!important}.desktop\:align-items-center{align-items:center!important}.desktop\:align-items-stretch{align-items:stretch!important}.desktop\:align-items-baseline{align-items:baseline!important}}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important}.align-self-baseline{align-self:baseline!important}@media screen and (max-width:768px){.mobile\:align-self-start{align-self:flex-start!important}.mobile\:align-self-end{align-self:flex-end!important}.mobile\:align-self-center{align-self:center!important}.mobile\:align-self-stretch{align-self:stretch!important}.mobile\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width:769px),print{.tablet\:align-self-start{align-self:flex-start!important}.tablet\:align-self-end{align-self:flex-end!important}.tablet\:align-self-center{align-self:center!important}.tablet\:align-self-stretch{align-self:stretch!important}.tablet\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width:1024px){.desktop\:align-self-start{align-self:flex-start!important}.desktop\:align-self-end{align-self:flex-end!important}.desktop\:align-self-center{align-self:center!important}.desktop\:align-self-stretch{align-self:stretch!important}.desktop\:align-self-baseline{align-self:baseline!important}}@media screen and (min-width:1440px){.widescreen\:align-content-start{align-content:flex-start!important}.widescreen\:align-content-end{align-content:flex-end!important}.widescreen\:align-content-center{align-content:center!important}.widescreen\:align-content-baseline{align-content:baseline!important}.widescreen\:align-content-space-between{align-content:space-between!important}.widescreen\:align-content-space-around{align-content:space-around!important}.widescreen\:align-content-space-evenly{align-content:space-evenly!important}.widescreen\:align-items-start{align-items:flex-start!important}.widescreen\:align-items-end{align-items:flex-end!important}.widescreen\:align-items-center{align-items:center!important}.widescreen\:align-items-stretch{align-items:stretch!important}.widescreen\:align-items-baseline{align-items:baseline!important}.widescreen\:align-self-start{align-self:flex-start!important}.widescreen\:align-self-end{align-self:flex-end!important}.widescreen\:align-self-center{align-self:center!important}.widescreen\:align-self-stretch{align-self:stretch!important}.widescreen\:align-self-baseline{align-self:baseline!important}}.flex-direction-row{flex-direction:row!important}.flex-direction-row-reverse{flex-direction:row-reverse!important}.flex-direction-column{flex-direction:column!important}.flex-direction-column-reverse{flex-direction:column-reverse!important}@media screen and (max-width:768px){.mobile\:flex-direction-row{flex-direction:row!important}.mobile\:flex-direction-row-reverse{flex-direction:row-reverse!important}.mobile\:flex-direction-column{flex-direction:column!important}.mobile\:flex-direction-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width:769px),print{.tablet\:flex-direction-row{flex-direction:row!important}.tablet\:flex-direction-row-reverse{flex-direction:row-reverse!important}.tablet\:flex-direction-column{flex-direction:column!important}.tablet\:flex-direction-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width:1024px){.desktop\:flex-direction-row{flex-direction:row!important}.desktop\:flex-direction-row-reverse{flex-direction:row-reverse!important}.desktop\:flex-direction-column{flex-direction:column!important}.desktop\:flex-direction-column-reverse{flex-direction:column-reverse!important}}@media screen and (min-width:1440px){.widescreen\:flex-direction-row{flex-direction:row!important}.widescreen\:flex-direction-row-reverse{flex-direction:row-reverse!important}.widescreen\:flex-direction-column{flex-direction:column!important}.widescreen\:flex-direction-column-reverse{flex-direction:column-reverse!important}}.flex-1{flex:1 1 0%!important}.flex-auto{flex:1 1 auto!important}.flex-initial{flex:0 1 auto!important}.flex-none{flex:none!important}@media screen and (max-width:768px){.mobile\:flex-1{flex:1 1 0%!important}.mobile\:flex-auto{flex:1 1 auto!important}.mobile\:flex-initial{flex:0 1 auto!important}.mobile\:flex-none{flex:none!important}}@media screen and (min-width:769px),print{.tablet\:flex-1{flex:1 1 0%!important}.tablet\:flex-auto{flex:1 1 auto!important}.tablet\:flex-initial{flex:0 1 auto!important}.tablet\:flex-none{flex:none!important}}@media screen and (min-width:1024px){.desktop\:flex-1{flex:1 1 0%!important}.desktop\:flex-auto{flex:1 1 auto!important}.desktop\:flex-initial{flex:0 1 auto!important}.desktop\:flex-none{flex:none!important}}@media screen and (min-width:1440px){.widescreen\:flex-1{flex:1 1 0%!important}.widescreen\:flex-auto{flex:1 1 auto!important}.widescreen\:flex-initial{flex:0 1 auto!important}.widescreen\:flex-none{flex:none!important}}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-space-between{justify-content:space-between!important}.justify-content-space-around{justify-content:space-around!important}.justify-content-space-evenly{justify-content:space-evenly!important}@media screen and (max-width:768px){.mobile\:justify-content-start{justify-content:flex-start!important}.mobile\:justify-content-end{justify-content:flex-end!important}.mobile\:justify-content-center{justify-content:center!important}.mobile\:justify-content-space-between{justify-content:space-between!important}.mobile\:justify-content-space-around{justify-content:space-around!important}.mobile\:justify-content-space-evenly{justify-content:space-evenly!important}}@media screen and (min-width:769px),print{.tablet\:justify-content-start{justify-content:flex-start!important}.tablet\:justify-content-end{justify-content:flex-end!important}.tablet\:justify-content-center{justify-content:center!important}.tablet\:justify-content-space-between{justify-content:space-between!important}.tablet\:justify-content-space-around{justify-content:space-around!important}.tablet\:justify-content-space-evenly{justify-content:space-evenly!important}}@media screen and (min-width:1024px){.desktop\:justify-content-start{justify-content:flex-start!important}.desktop\:justify-content-end{justify-content:flex-end!important}.desktop\:justify-content-center{justify-content:center!important}.desktop\:justify-content-space-between{justify-content:space-between!important}.desktop\:justify-content-space-around{justify-content:space-around!important}.desktop\:justify-content-space-evenly{justify-content:space-evenly!important}}@media screen and (min-width:1440px){.widescreen\:justify-content-start{justify-content:flex-start!important}.widescreen\:justify-content-end{justify-content:flex-end!important}.widescreen\:justify-content-center{justify-content:center!important}.widescreen\:justify-content-space-between{justify-content:space-between!important}.widescreen\:justify-content-space-around{justify-content:space-around!important}.widescreen\:justify-content-space-evenly{justify-content:space-evenly!important}}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}@media screen and (max-width:768px){.mobile\:flex-nowrap{flex-wrap:nowrap!important}.mobile\:flex-wrap{flex-wrap:wrap!important}.mobile\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}}@media screen and (min-width:769px),print{.tablet\:flex-nowrap{flex-wrap:nowrap!important}.tablet\:flex-wrap{flex-wrap:wrap!important}.tablet\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}}@media screen and (min-width:1024px){.desktop\:flex-nowrap{flex-wrap:nowrap!important}.desktop\:flex-wrap{flex-wrap:wrap!important}.desktop\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}}@media screen and (min-width:1440px){.widescreen\:flex-nowrap{flex-wrap:nowrap!important}.widescreen\:flex-wrap{flex-wrap:wrap!important}.widescreen\:flex-wrap-reverse{flex-wrap:wrap-reverse!important}}.gap-none{gap:0!important}.gap-auto{gap:auto!important}.gap-xx-small{gap:var(--bal-space-xx-small)!important}.gap-x-small{gap:var(--bal-space-x-small)!important}.gap-small{gap:var(--bal-space-small)!important}.gap-normal{gap:var(--bal-space-normal)!important}.gap-medium{gap:var(--bal-space-medium)!important}.gap-large{gap:var(--bal-space-large)!important}.gap-x-large{gap:var(--bal-space-x-large)!important}.gap-xx-large{gap:var(--bal-space-xx-large)!important}.gap-xxx-large{gap:var(--bal-space-xxx-large)!important}.gap-xxxx-large{gap:var(--bal-space-xxxx-large)!important}.row-gap-none{row-gap:0!important}.row-gap-auto{row-gap:auto!important}.row-gap-xx-small{row-gap:var(--bal-space-xx-small)!important}.row-gap-x-small{row-gap:var(--bal-space-x-small)!important}.row-gap-small{row-gap:var(--bal-space-small)!important}.row-gap-normal{row-gap:var(--bal-space-normal)!important}.row-gap-medium{row-gap:var(--bal-space-medium)!important}.row-gap-large{row-gap:var(--bal-space-large)!important}.row-gap-x-large{row-gap:var(--bal-space-x-large)!important}.row-gap-xx-large{row-gap:var(--bal-space-xx-large)!important}.row-gap-xxx-large{row-gap:var(--bal-space-xxx-large)!important}.row-gap-xxxx-large{row-gap:var(--bal-space-xxxx-large)!important}.column-gap-none{-moz-column-gap:0!important;column-gap:0!important}.column-gap-auto{-moz-column-gap:auto!important;column-gap:auto!important}.column-gap-xx-small{-moz-column-gap:var(--bal-space-xx-small)!important;column-gap:var(--bal-space-xx-small)!important}.column-gap-x-small{-moz-column-gap:var(--bal-space-x-small)!important;column-gap:var(--bal-space-x-small)!important}.column-gap-small{-moz-column-gap:var(--bal-space-small)!important;column-gap:var(--bal-space-small)!important}.column-gap-normal{-moz-column-gap:var(--bal-space-normal)!important;column-gap:var(--bal-space-normal)!important}.column-gap-medium{-moz-column-gap:var(--bal-space-medium)!important;column-gap:var(--bal-space-medium)!important}.column-gap-large{-moz-column-gap:var(--bal-space-large)!important;column-gap:var(--bal-space-large)!important}.column-gap-x-large{-moz-column-gap:var(--bal-space-x-large)!important;column-gap:var(--bal-space-x-large)!important}.column-gap-xx-large{-moz-column-gap:var(--bal-space-xx-large)!important;column-gap:var(--bal-space-xx-large)!important}.column-gap-xxx-large{-moz-column-gap:var(--bal-space-xxx-large)!important;column-gap:var(--bal-space-xxx-large)!important}.column-gap-xxxx-large{-moz-column-gap:var(--bal-space-xxxx-large)!important;column-gap:var(--bal-space-xxxx-large)!important}@media screen and (min-width:769px),print{.gap-xx-small{gap:var(--bal-space-xx-small-tablet)!important}.gap-x-small{gap:var(--bal-space-x-small-tablet)!important}.gap-small{gap:var(--bal-space-small-tablet)!important}.gap-normal{gap:var(--bal-space-normal-tablet)!important}.gap-medium{gap:var(--bal-space-medium-tablet)!important}.gap-large{gap:var(--bal-space-large-tablet)!important}.gap-x-large{gap:var(--bal-space-x-large-tablet)!important}.gap-xx-large{gap:var(--bal-space-xx-large-tablet)!important}.gap-xxx-large{gap:var(--bal-space-xxx-large-tablet)!important}.gap-xxxx-large{gap:var(--bal-space-xxxx-large-tablet)!important}.row-gap-xx-small{row-gap:var(--bal-space-xx-small-tablet)!important}.row-gap-x-small{row-gap:var(--bal-space-x-small-tablet)!important}.row-gap-small{row-gap:var(--bal-space-small-tablet)!important}.row-gap-normal{row-gap:var(--bal-space-normal-tablet)!important}.row-gap-medium{row-gap:var(--bal-space-medium-tablet)!important}.row-gap-large{row-gap:var(--bal-space-large-tablet)!important}.row-gap-x-large{row-gap:var(--bal-space-x-large-tablet)!important}.row-gap-xx-large{row-gap:var(--bal-space-xx-large-tablet)!important}.row-gap-xxx-large{row-gap:var(--bal-space-xxx-large-tablet)!important}.row-gap-xxxx-large{row-gap:var(--bal-space-xxxx-large-tablet)!important}.column-gap-xx-small{-moz-column-gap:var(--bal-space-xx-small-tablet)!important;column-gap:var(--bal-space-xx-small-tablet)!important}.column-gap-x-small{-moz-column-gap:var(--bal-space-x-small-tablet)!important;column-gap:var(--bal-space-x-small-tablet)!important}.column-gap-small{-moz-column-gap:var(--bal-space-small-tablet)!important;column-gap:var(--bal-space-small-tablet)!important}.column-gap-normal{-moz-column-gap:var(--bal-space-normal-tablet)!important;column-gap:var(--bal-space-normal-tablet)!important}.column-gap-medium{-moz-column-gap:var(--bal-space-medium-tablet)!important;column-gap:var(--bal-space-medium-tablet)!important}.column-gap-large{-moz-column-gap:var(--bal-space-large-tablet)!important;column-gap:var(--bal-space-large-tablet)!important}.column-gap-x-large{-moz-column-gap:var(--bal-space-x-large-tablet)!important;column-gap:var(--bal-space-x-large-tablet)!important}.column-gap-xx-large{-moz-column-gap:var(--bal-space-xx-large-tablet)!important;column-gap:var(--bal-space-xx-large-tablet)!important}.column-gap-xxx-large{-moz-column-gap:var(--bal-space-xxx-large-tablet)!important;column-gap:var(--bal-space-xxx-large-tablet)!important}.column-gap-xxxx-large{-moz-column-gap:var(--bal-space-xxxx-large-tablet)!important;column-gap:var(--bal-space-xxxx-large-tablet)!important}}@media screen and (min-width:1024px){.gap-xx-small{gap:var(--bal-space-xx-small-desktop)!important}.gap-x-small{gap:var(--bal-space-x-small-desktop)!important}.gap-small{gap:var(--bal-space-small-desktop)!important}.gap-normal{gap:var(--bal-space-normal-desktop)!important}.gap-medium{gap:var(--bal-space-medium-desktop)!important}.gap-large{gap:var(--bal-space-large-desktop)!important}.gap-x-large{gap:var(--bal-space-x-large-desktop)!important}.gap-xx-large{gap:var(--bal-space-xx-large-desktop)!important}.gap-xxx-large{gap:var(--bal-space-xxx-large-desktop)!important}.gap-xxxx-large{gap:var(--bal-space-xxxx-large-desktop)!important}.row-gap-xx-small{row-gap:var(--bal-space-xx-small-desktop)!important}.row-gap-x-small{row-gap:var(--bal-space-x-small-desktop)!important}.row-gap-small{row-gap:var(--bal-space-small-desktop)!important}.row-gap-normal{row-gap:var(--bal-space-normal-desktop)!important}.row-gap-medium{row-gap:var(--bal-space-medium-desktop)!important}.row-gap-large{row-gap:var(--bal-space-large-desktop)!important}.row-gap-x-large{row-gap:var(--bal-space-x-large-desktop)!important}.row-gap-xx-large{row-gap:var(--bal-space-xx-large-desktop)!important}.row-gap-xxx-large{row-gap:var(--bal-space-xxx-large-desktop)!important}.row-gap-xxxx-large{row-gap:var(--bal-space-xxxx-large-desktop)!important}.column-gap-xx-small{-moz-column-gap:var(--bal-space-xx-small-desktop)!important;column-gap:var(--bal-space-xx-small-desktop)!important}.column-gap-x-small{-moz-column-gap:var(--bal-space-x-small-desktop)!important;column-gap:var(--bal-space-x-small-desktop)!important}.column-gap-small{-moz-column-gap:var(--bal-space-small-desktop)!important;column-gap:var(--bal-space-small-desktop)!important}.column-gap-normal{-moz-column-gap:var(--bal-space-normal-desktop)!important;column-gap:var(--bal-space-normal-desktop)!important}.column-gap-medium{-moz-column-gap:var(--bal-space-medium-desktop)!important;column-gap:var(--bal-space-medium-desktop)!important}.column-gap-large{-moz-column-gap:var(--bal-space-large-desktop)!important;column-gap:var(--bal-space-large-desktop)!important}.column-gap-x-large{-moz-column-gap:var(--bal-space-x-large-desktop)!important;column-gap:var(--bal-space-x-large-desktop)!important}.column-gap-xx-large{-moz-column-gap:var(--bal-space-xx-large-desktop)!important;column-gap:var(--bal-space-xx-large-desktop)!important}.column-gap-xxx-large{-moz-column-gap:var(--bal-space-xxx-large-desktop)!important;column-gap:var(--bal-space-xxx-large-desktop)!important}.column-gap-xxxx-large{-moz-column-gap:var(--bal-space-xxxx-large-desktop)!important;column-gap:var(--bal-space-xxxx-large-desktop)!important}}