@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.
- package/LICENSE +201 -0
- package/README.md +40 -0
- package/bin/index.mjs +1333 -0
- package/css/all.css +18468 -0
- package/css/all.css.map +1 -0
- package/css/all.min.css +1 -0
- package/css/baloise-design-system.css +18468 -0
- package/css/baloise-design-system.css.map +1 -0
- package/css/baloise-design-system.min.css +1 -0
- package/css/core.css +4423 -0
- package/css/core.css.map +1 -0
- package/css/core.min.css +1 -0
- package/css/font.css +29 -0
- package/css/font.css.map +1 -0
- package/css/font.min.css +1 -0
- package/css/mixins.css +2 -0
- package/css/mixins.css.map +1 -0
- package/css/mixins.min.css +0 -0
- package/css/normalize.css +351 -0
- package/css/normalize.css.map +1 -0
- package/css/normalize.min.css +1 -0
- package/css/structure.css +147 -0
- package/css/structure.css.map +1 -0
- package/css/structure.min.css +1 -0
- package/css/themes/compact.css +30 -0
- package/css/themes/compact.css.map +1 -0
- package/css/themes/compact.min.css +1 -0
- package/css/utilities/all.css +13112 -0
- package/css/utilities/all.css.map +1 -0
- package/css/utilities/all.min.css +1 -0
- package/css/utilities/background.css +1460 -0
- package/css/utilities/background.css.map +1 -0
- package/css/utilities/background.min.css +1 -0
- package/css/utilities/border.css +4697 -0
- package/css/utilities/border.css.map +1 -0
- package/css/utilities/border.min.css +1 -0
- package/css/utilities/elevation.css +317 -0
- package/css/utilities/elevation.css.map +1 -0
- package/css/utilities/elevation.min.css +1 -0
- package/css/utilities/flex.css +969 -0
- package/css/utilities/flex.css.map +1 -0
- package/css/utilities/flex.min.css +1 -0
- package/css/utilities/grid.css +1209 -0
- package/css/utilities/grid.css.map +1 -0
- package/css/utilities/grid.min.css +1 -0
- package/css/utilities/interaction.css +44 -0
- package/css/utilities/interaction.css.map +1 -0
- package/css/utilities/interaction.min.css +1 -0
- package/css/utilities/layout.css +1055 -0
- package/css/utilities/layout.css.map +1 -0
- package/css/utilities/layout.min.css +1 -0
- package/css/utilities/sizing.css +1931 -0
- package/css/utilities/sizing.css.map +1 -0
- package/css/utilities/sizing.min.css +1 -0
- package/css/utilities/spacing.css +1881 -0
- package/css/utilities/spacing.css.map +1 -0
- package/css/utilities/spacing.min.css +1 -0
- package/css/utilities/typography.css +763 -0
- package/css/utilities/typography.css.map +1 -0
- package/css/utilities/typography.min.css +1 -0
- package/package.json +36 -0
- package/sass/all.sass +6 -0
- package/sass/baloise-design-system.sass +1 -0
- package/sass/core.sass +37 -0
- package/sass/font.sass +1 -0
- package/sass/mixins.sass +3 -0
- package/sass/normalize.sass +359 -0
- package/sass/structure.sass +113 -0
- package/sass/themes/compact.sass +28 -0
- package/sass/utilities/all.sass +9 -0
- package/sass/utilities/background.sass +5 -0
- package/sass/utilities/border.sass +2 -0
- package/sass/utilities/elevation.sass +2 -0
- package/sass/utilities/flex.sass +2 -0
- package/sass/utilities/grid.sass +2 -0
- package/sass/utilities/interaction.sass +2 -0
- package/sass/utilities/layout.sass +12 -0
- package/sass/utilities/sizing.sass +2 -0
- package/sass/utilities/spacing.sass +2 -0
- package/sass/utilities/typography.sass +127 -0
- package/src/core/_all.sass +18 -0
- package/src/core/container.sass +23 -0
- package/src/core/form/_all.sass +6 -0
- package/src/core/form/button.sass +532 -0
- package/src/core/form/file.sass +139 -0
- package/src/core/form/input-textarea.sass +80 -0
- package/src/core/form/select.sass +111 -0
- package/src/core/form/shared.sass +69 -0
- package/src/core/form/tools.sass +209 -0
- package/src/core/grid.sass +477 -0
- package/src/core/link.sass +64 -0
- package/src/core/list.sass +85 -0
- package/src/core/table.sass +134 -0
- package/src/core/typography.sass +33 -0
- package/src/core/vars/_all.sass +7 -0
- package/src/core/vars/button.vars.sass +282 -0
- package/src/core/vars/form.vars.sass +137 -0
- package/src/core/vars/link.vars.sass +36 -0
- package/src/core/vars/list.vars.sass +20 -0
- package/src/core/vars/structure.vars.sass +47 -0
- package/src/core/vars/table.vars.sass +55 -0
- package/src/core/vars/typography.vars.sass +12 -0
- package/src/generated/background.sass +1091 -0
- package/src/generated/border.sass +3943 -0
- package/src/generated/elevation.sass +283 -0
- package/src/generated/flex.sass +831 -0
- package/src/generated/interaction.sass +26 -0
- package/src/generated/layout.sass +948 -0
- package/src/generated/sizing.sass +1703 -0
- package/src/generated/spacing.sass +1683 -0
- package/src/generated/typography.sass +453 -0
- package/src/mixins/_all.sass +7 -0
- package/src/mixins/bem.mixin.sass +39 -0
- package/src/mixins/breakpoint.mixin.sass +67 -0
- package/src/mixins/extends.sass +32 -0
- package/src/mixins/general.mixin.sass +95 -0
- 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/spacing.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;;;ACjBA;EDoBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC1CF;ED6CA;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;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AC3IA;ED8IA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AChLF;EDmLA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AAEJ;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AC7RA;EDgSA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AClUF;EDqUA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;ACnaA;EDsaA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC5bF;ED+bA;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;;;ACjhBA;EDohBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AC1iBF;ED6iBA;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;;;AC/nBA;EDkoBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACxpBF;ED2pBA;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;;;AC7uBA;EDgvBA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACtwBF;EDywBA;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;;;AC31BA;ED81BA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACp3BF;EDu3BA;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;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;ACr9BA;EDw9BA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AC1/BF;ED6/BA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AAEJ;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;AAEF;EACE;EACA;;;ACvmCA;ED0mCA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AC5oCF;ED+oCA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AAEJ;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AC7uCA;EDgvCA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACtwCF;EDywCA;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;;;AC31CA;ED81CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACp3CF;EDu3CA;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;;;ACz8CA;ED48CA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;ACl+CF;EDq+CA;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;;;ACvjDA;ED0jDA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AChlDF;EDmlDA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE","sourcesContent":[".m-none\n margin: 0 !important\n\n.m-auto\n margin: auto !important\n\n.m-xx-small\n margin: var(--bal-space-xx-small) !important\n\n.m-x-small\n margin: var(--bal-space-x-small) !important\n\n.m-small\n margin: var(--bal-space-small) !important\n\n.m-normal\n margin: var(--bal-space-normal) !important\n\n.m-medium\n margin: var(--bal-space-medium) !important\n\n.m-large\n margin: var(--bal-space-large) !important\n\n.m-x-large\n margin: var(--bal-space-x-large) !important\n\n.m-xx-large\n margin: var(--bal-space-xx-large) !important\n\n.m-xxx-large\n margin: var(--bal-space-xxx-large) !important\n\n.m-xxxx-large\n margin: var(--bal-space-xxxx-large) !important\n\n+tablet\n .m-none\n margin: 0 !important\n\n .m-auto\n margin: auto !important\n\n .m-xx-small\n margin: var(--bal-space-xx-small-tablet) !important\n\n .m-x-small\n margin: var(--bal-space-x-small-tablet) !important\n\n .m-small\n margin: var(--bal-space-small-tablet) !important\n\n .m-normal\n margin: var(--bal-space-normal-tablet) !important\n\n .m-medium\n margin: var(--bal-space-medium-tablet) !important\n\n .m-large\n margin: var(--bal-space-large-tablet) !important\n\n .m-x-large\n margin: var(--bal-space-x-large-tablet) !important\n\n .m-xx-large\n margin: var(--bal-space-xx-large-tablet) !important\n\n .m-xxx-large\n margin: var(--bal-space-xxx-large-tablet) !important\n\n .m-xxxx-large\n margin: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .m-none\n margin: 0 !important\n\n .m-auto\n margin: auto !important\n\n .m-xx-small\n margin: var(--bal-space-xx-small-desktop) !important\n\n .m-x-small\n margin: var(--bal-space-x-small-desktop) !important\n\n .m-small\n margin: var(--bal-space-small-desktop) !important\n\n .m-normal\n margin: var(--bal-space-normal-desktop) !important\n\n .m-medium\n margin: var(--bal-space-medium-desktop) !important\n\n .m-large\n margin: var(--bal-space-large-desktop) !important\n\n .m-x-large\n margin: var(--bal-space-x-large-desktop) !important\n\n .m-xx-large\n margin: var(--bal-space-xx-large-desktop) !important\n\n .m-xxx-large\n margin: var(--bal-space-xxx-large-desktop) !important\n\n .m-xxxx-large\n margin: var(--bal-space-xxxx-large-desktop) !important\n\n.mx-none\n margin-left: 0 !important\n margin-right: 0 !important\n\n.mx-auto\n margin-left: auto !important\n margin-right: auto !important\n\n.mx-xx-small\n margin-left: var(--bal-space-xx-small) !important\n margin-right: var(--bal-space-xx-small) !important\n\n.mx-x-small\n margin-left: var(--bal-space-x-small) !important\n margin-right: var(--bal-space-x-small) !important\n\n.mx-small\n margin-left: var(--bal-space-small) !important\n margin-right: var(--bal-space-small) !important\n\n.mx-normal\n margin-left: var(--bal-space-normal) !important\n margin-right: var(--bal-space-normal) !important\n\n.mx-medium\n margin-left: var(--bal-space-medium) !important\n margin-right: var(--bal-space-medium) !important\n\n.mx-large\n margin-left: var(--bal-space-large) !important\n margin-right: var(--bal-space-large) !important\n\n.mx-x-large\n margin-left: var(--bal-space-x-large) !important\n margin-right: var(--bal-space-x-large) !important\n\n.mx-xx-large\n margin-left: var(--bal-space-xx-large) !important\n margin-right: var(--bal-space-xx-large) !important\n\n.mx-xxx-large\n margin-left: var(--bal-space-xxx-large) !important\n margin-right: var(--bal-space-xxx-large) !important\n\n.mx-xxxx-large\n margin-left: var(--bal-space-xxxx-large) !important\n margin-right: var(--bal-space-xxxx-large) !important\n\n+tablet\n .mx-none\n margin-left: 0 !important\n margin-right: 0 !important\n\n .mx-auto\n margin-left: auto !important\n margin-right: auto !important\n\n .mx-xx-small\n margin-left: var(--bal-space-xx-small-tablet) !important\n margin-right: var(--bal-space-xx-small-tablet) !important\n\n .mx-x-small\n margin-left: var(--bal-space-x-small-tablet) !important\n margin-right: var(--bal-space-x-small-tablet) !important\n\n .mx-small\n margin-left: var(--bal-space-small-tablet) !important\n margin-right: var(--bal-space-small-tablet) !important\n\n .mx-normal\n margin-left: var(--bal-space-normal-tablet) !important\n margin-right: var(--bal-space-normal-tablet) !important\n\n .mx-medium\n margin-left: var(--bal-space-medium-tablet) !important\n margin-right: var(--bal-space-medium-tablet) !important\n\n .mx-large\n margin-left: var(--bal-space-large-tablet) !important\n margin-right: var(--bal-space-large-tablet) !important\n\n .mx-x-large\n margin-left: var(--bal-space-x-large-tablet) !important\n margin-right: var(--bal-space-x-large-tablet) !important\n\n .mx-xx-large\n margin-left: var(--bal-space-xx-large-tablet) !important\n margin-right: var(--bal-space-xx-large-tablet) !important\n\n .mx-xxx-large\n margin-left: var(--bal-space-xxx-large-tablet) !important\n margin-right: var(--bal-space-xxx-large-tablet) !important\n\n .mx-xxxx-large\n margin-left: var(--bal-space-xxxx-large-tablet) !important\n margin-right: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .mx-none\n margin-left: 0 !important\n margin-right: 0 !important\n\n .mx-auto\n margin-left: auto !important\n margin-right: auto !important\n\n .mx-xx-small\n margin-left: var(--bal-space-xx-small-desktop) !important\n margin-right: var(--bal-space-xx-small-desktop) !important\n\n .mx-x-small\n margin-left: var(--bal-space-x-small-desktop) !important\n margin-right: var(--bal-space-x-small-desktop) !important\n\n .mx-small\n margin-left: var(--bal-space-small-desktop) !important\n margin-right: var(--bal-space-small-desktop) !important\n\n .mx-normal\n margin-left: var(--bal-space-normal-desktop) !important\n margin-right: var(--bal-space-normal-desktop) !important\n\n .mx-medium\n margin-left: var(--bal-space-medium-desktop) !important\n margin-right: var(--bal-space-medium-desktop) !important\n\n .mx-large\n margin-left: var(--bal-space-large-desktop) !important\n margin-right: var(--bal-space-large-desktop) !important\n\n .mx-x-large\n margin-left: var(--bal-space-x-large-desktop) !important\n margin-right: var(--bal-space-x-large-desktop) !important\n\n .mx-xx-large\n margin-left: var(--bal-space-xx-large-desktop) !important\n margin-right: var(--bal-space-xx-large-desktop) !important\n\n .mx-xxx-large\n margin-left: var(--bal-space-xxx-large-desktop) !important\n margin-right: var(--bal-space-xxx-large-desktop) !important\n\n .mx-xxxx-large\n margin-left: var(--bal-space-xxxx-large-desktop) !important\n margin-right: var(--bal-space-xxxx-large-desktop) !important\n\n.my-none\n margin-top: 0 !important\n margin-bottom: 0 !important\n\n.my-auto\n margin-top: auto !important\n margin-bottom: auto !important\n\n.my-xx-small\n margin-top: var(--bal-space-xx-small) !important\n margin-bottom: var(--bal-space-xx-small) !important\n\n.my-x-small\n margin-top: var(--bal-space-x-small) !important\n margin-bottom: var(--bal-space-x-small) !important\n\n.my-small\n margin-top: var(--bal-space-small) !important\n margin-bottom: var(--bal-space-small) !important\n\n.my-normal\n margin-top: var(--bal-space-normal) !important\n margin-bottom: var(--bal-space-normal) !important\n\n.my-medium\n margin-top: var(--bal-space-medium) !important\n margin-bottom: var(--bal-space-medium) !important\n\n.my-large\n margin-top: var(--bal-space-large) !important\n margin-bottom: var(--bal-space-large) !important\n\n.my-x-large\n margin-top: var(--bal-space-x-large) !important\n margin-bottom: var(--bal-space-x-large) !important\n\n.my-xx-large\n margin-top: var(--bal-space-xx-large) !important\n margin-bottom: var(--bal-space-xx-large) !important\n\n.my-xxx-large\n margin-top: var(--bal-space-xxx-large) !important\n margin-bottom: var(--bal-space-xxx-large) !important\n\n.my-xxxx-large\n margin-top: var(--bal-space-xxxx-large) !important\n margin-bottom: var(--bal-space-xxxx-large) !important\n\n+tablet\n .my-none\n margin-top: 0 !important\n margin-bottom: 0 !important\n\n .my-auto\n margin-top: auto !important\n margin-bottom: auto !important\n\n .my-xx-small\n margin-top: var(--bal-space-xx-small-tablet) !important\n margin-bottom: var(--bal-space-xx-small-tablet) !important\n\n .my-x-small\n margin-top: var(--bal-space-x-small-tablet) !important\n margin-bottom: var(--bal-space-x-small-tablet) !important\n\n .my-small\n margin-top: var(--bal-space-small-tablet) !important\n margin-bottom: var(--bal-space-small-tablet) !important\n\n .my-normal\n margin-top: var(--bal-space-normal-tablet) !important\n margin-bottom: var(--bal-space-normal-tablet) !important\n\n .my-medium\n margin-top: var(--bal-space-medium-tablet) !important\n margin-bottom: var(--bal-space-medium-tablet) !important\n\n .my-large\n margin-top: var(--bal-space-large-tablet) !important\n margin-bottom: var(--bal-space-large-tablet) !important\n\n .my-x-large\n margin-top: var(--bal-space-x-large-tablet) !important\n margin-bottom: var(--bal-space-x-large-tablet) !important\n\n .my-xx-large\n margin-top: var(--bal-space-xx-large-tablet) !important\n margin-bottom: var(--bal-space-xx-large-tablet) !important\n\n .my-xxx-large\n margin-top: var(--bal-space-xxx-large-tablet) !important\n margin-bottom: var(--bal-space-xxx-large-tablet) !important\n\n .my-xxxx-large\n margin-top: var(--bal-space-xxxx-large-tablet) !important\n margin-bottom: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .my-none\n margin-top: 0 !important\n margin-bottom: 0 !important\n\n .my-auto\n margin-top: auto !important\n margin-bottom: auto !important\n\n .my-xx-small\n margin-top: var(--bal-space-xx-small-desktop) !important\n margin-bottom: var(--bal-space-xx-small-desktop) !important\n\n .my-x-small\n margin-top: var(--bal-space-x-small-desktop) !important\n margin-bottom: var(--bal-space-x-small-desktop) !important\n\n .my-small\n margin-top: var(--bal-space-small-desktop) !important\n margin-bottom: var(--bal-space-small-desktop) !important\n\n .my-normal\n margin-top: var(--bal-space-normal-desktop) !important\n margin-bottom: var(--bal-space-normal-desktop) !important\n\n .my-medium\n margin-top: var(--bal-space-medium-desktop) !important\n margin-bottom: var(--bal-space-medium-desktop) !important\n\n .my-large\n margin-top: var(--bal-space-large-desktop) !important\n margin-bottom: var(--bal-space-large-desktop) !important\n\n .my-x-large\n margin-top: var(--bal-space-x-large-desktop) !important\n margin-bottom: var(--bal-space-x-large-desktop) !important\n\n .my-xx-large\n margin-top: var(--bal-space-xx-large-desktop) !important\n margin-bottom: var(--bal-space-xx-large-desktop) !important\n\n .my-xxx-large\n margin-top: var(--bal-space-xxx-large-desktop) !important\n margin-bottom: var(--bal-space-xxx-large-desktop) !important\n\n .my-xxxx-large\n margin-top: var(--bal-space-xxxx-large-desktop) !important\n margin-bottom: var(--bal-space-xxxx-large-desktop) !important\n\n.mt-none\n margin-top: 0 !important\n\n.mt-auto\n margin-top: auto !important\n\n.mt-xx-small\n margin-top: var(--bal-space-xx-small) !important\n\n.mt-x-small\n margin-top: var(--bal-space-x-small) !important\n\n.mt-small\n margin-top: var(--bal-space-small) !important\n\n.mt-normal\n margin-top: var(--bal-space-normal) !important\n\n.mt-medium\n margin-top: var(--bal-space-medium) !important\n\n.mt-large\n margin-top: var(--bal-space-large) !important\n\n.mt-x-large\n margin-top: var(--bal-space-x-large) !important\n\n.mt-xx-large\n margin-top: var(--bal-space-xx-large) !important\n\n.mt-xxx-large\n margin-top: var(--bal-space-xxx-large) !important\n\n.mt-xxxx-large\n margin-top: var(--bal-space-xxxx-large) !important\n\n+tablet\n .mt-none\n margin-top: 0 !important\n\n .mt-auto\n margin-top: auto !important\n\n .mt-xx-small\n margin-top: var(--bal-space-xx-small-tablet) !important\n\n .mt-x-small\n margin-top: var(--bal-space-x-small-tablet) !important\n\n .mt-small\n margin-top: var(--bal-space-small-tablet) !important\n\n .mt-normal\n margin-top: var(--bal-space-normal-tablet) !important\n\n .mt-medium\n margin-top: var(--bal-space-medium-tablet) !important\n\n .mt-large\n margin-top: var(--bal-space-large-tablet) !important\n\n .mt-x-large\n margin-top: var(--bal-space-x-large-tablet) !important\n\n .mt-xx-large\n margin-top: var(--bal-space-xx-large-tablet) !important\n\n .mt-xxx-large\n margin-top: var(--bal-space-xxx-large-tablet) !important\n\n .mt-xxxx-large\n margin-top: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .mt-none\n margin-top: 0 !important\n\n .mt-auto\n margin-top: auto !important\n\n .mt-xx-small\n margin-top: var(--bal-space-xx-small-desktop) !important\n\n .mt-x-small\n margin-top: var(--bal-space-x-small-desktop) !important\n\n .mt-small\n margin-top: var(--bal-space-small-desktop) !important\n\n .mt-normal\n margin-top: var(--bal-space-normal-desktop) !important\n\n .mt-medium\n margin-top: var(--bal-space-medium-desktop) !important\n\n .mt-large\n margin-top: var(--bal-space-large-desktop) !important\n\n .mt-x-large\n margin-top: var(--bal-space-x-large-desktop) !important\n\n .mt-xx-large\n margin-top: var(--bal-space-xx-large-desktop) !important\n\n .mt-xxx-large\n margin-top: var(--bal-space-xxx-large-desktop) !important\n\n .mt-xxxx-large\n margin-top: var(--bal-space-xxxx-large-desktop) !important\n\n.mr-none\n margin-right: 0 !important\n\n.mr-auto\n margin-right: auto !important\n\n.mr-xx-small\n margin-right: var(--bal-space-xx-small) !important\n\n.mr-x-small\n margin-right: var(--bal-space-x-small) !important\n\n.mr-small\n margin-right: var(--bal-space-small) !important\n\n.mr-normal\n margin-right: var(--bal-space-normal) !important\n\n.mr-medium\n margin-right: var(--bal-space-medium) !important\n\n.mr-large\n margin-right: var(--bal-space-large) !important\n\n.mr-x-large\n margin-right: var(--bal-space-x-large) !important\n\n.mr-xx-large\n margin-right: var(--bal-space-xx-large) !important\n\n.mr-xxx-large\n margin-right: var(--bal-space-xxx-large) !important\n\n.mr-xxxx-large\n margin-right: var(--bal-space-xxxx-large) !important\n\n+tablet\n .mr-none\n margin-right: 0 !important\n\n .mr-auto\n margin-right: auto !important\n\n .mr-xx-small\n margin-right: var(--bal-space-xx-small-tablet) !important\n\n .mr-x-small\n margin-right: var(--bal-space-x-small-tablet) !important\n\n .mr-small\n margin-right: var(--bal-space-small-tablet) !important\n\n .mr-normal\n margin-right: var(--bal-space-normal-tablet) !important\n\n .mr-medium\n margin-right: var(--bal-space-medium-tablet) !important\n\n .mr-large\n margin-right: var(--bal-space-large-tablet) !important\n\n .mr-x-large\n margin-right: var(--bal-space-x-large-tablet) !important\n\n .mr-xx-large\n margin-right: var(--bal-space-xx-large-tablet) !important\n\n .mr-xxx-large\n margin-right: var(--bal-space-xxx-large-tablet) !important\n\n .mr-xxxx-large\n margin-right: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .mr-none\n margin-right: 0 !important\n\n .mr-auto\n margin-right: auto !important\n\n .mr-xx-small\n margin-right: var(--bal-space-xx-small-desktop) !important\n\n .mr-x-small\n margin-right: var(--bal-space-x-small-desktop) !important\n\n .mr-small\n margin-right: var(--bal-space-small-desktop) !important\n\n .mr-normal\n margin-right: var(--bal-space-normal-desktop) !important\n\n .mr-medium\n margin-right: var(--bal-space-medium-desktop) !important\n\n .mr-large\n margin-right: var(--bal-space-large-desktop) !important\n\n .mr-x-large\n margin-right: var(--bal-space-x-large-desktop) !important\n\n .mr-xx-large\n margin-right: var(--bal-space-xx-large-desktop) !important\n\n .mr-xxx-large\n margin-right: var(--bal-space-xxx-large-desktop) !important\n\n .mr-xxxx-large\n margin-right: var(--bal-space-xxxx-large-desktop) !important\n\n.mb-none\n margin-bottom: 0 !important\n\n.mb-auto\n margin-bottom: auto !important\n\n.mb-xx-small\n margin-bottom: var(--bal-space-xx-small) !important\n\n.mb-x-small\n margin-bottom: var(--bal-space-x-small) !important\n\n.mb-small\n margin-bottom: var(--bal-space-small) !important\n\n.mb-normal\n margin-bottom: var(--bal-space-normal) !important\n\n.mb-medium\n margin-bottom: var(--bal-space-medium) !important\n\n.mb-large\n margin-bottom: var(--bal-space-large) !important\n\n.mb-x-large\n margin-bottom: var(--bal-space-x-large) !important\n\n.mb-xx-large\n margin-bottom: var(--bal-space-xx-large) !important\n\n.mb-xxx-large\n margin-bottom: var(--bal-space-xxx-large) !important\n\n.mb-xxxx-large\n margin-bottom: var(--bal-space-xxxx-large) !important\n\n+tablet\n .mb-none\n margin-bottom: 0 !important\n\n .mb-auto\n margin-bottom: auto !important\n\n .mb-xx-small\n margin-bottom: var(--bal-space-xx-small-tablet) !important\n\n .mb-x-small\n margin-bottom: var(--bal-space-x-small-tablet) !important\n\n .mb-small\n margin-bottom: var(--bal-space-small-tablet) !important\n\n .mb-normal\n margin-bottom: var(--bal-space-normal-tablet) !important\n\n .mb-medium\n margin-bottom: var(--bal-space-medium-tablet) !important\n\n .mb-large\n margin-bottom: var(--bal-space-large-tablet) !important\n\n .mb-x-large\n margin-bottom: var(--bal-space-x-large-tablet) !important\n\n .mb-xx-large\n margin-bottom: var(--bal-space-xx-large-tablet) !important\n\n .mb-xxx-large\n margin-bottom: var(--bal-space-xxx-large-tablet) !important\n\n .mb-xxxx-large\n margin-bottom: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .mb-none\n margin-bottom: 0 !important\n\n .mb-auto\n margin-bottom: auto !important\n\n .mb-xx-small\n margin-bottom: var(--bal-space-xx-small-desktop) !important\n\n .mb-x-small\n margin-bottom: var(--bal-space-x-small-desktop) !important\n\n .mb-small\n margin-bottom: var(--bal-space-small-desktop) !important\n\n .mb-normal\n margin-bottom: var(--bal-space-normal-desktop) !important\n\n .mb-medium\n margin-bottom: var(--bal-space-medium-desktop) !important\n\n .mb-large\n margin-bottom: var(--bal-space-large-desktop) !important\n\n .mb-x-large\n margin-bottom: var(--bal-space-x-large-desktop) !important\n\n .mb-xx-large\n margin-bottom: var(--bal-space-xx-large-desktop) !important\n\n .mb-xxx-large\n margin-bottom: var(--bal-space-xxx-large-desktop) !important\n\n .mb-xxxx-large\n margin-bottom: var(--bal-space-xxxx-large-desktop) !important\n\n.ml-none\n margin-left: 0 !important\n\n.ml-auto\n margin-left: auto !important\n\n.ml-xx-small\n margin-left: var(--bal-space-xx-small) !important\n\n.ml-x-small\n margin-left: var(--bal-space-x-small) !important\n\n.ml-small\n margin-left: var(--bal-space-small) !important\n\n.ml-normal\n margin-left: var(--bal-space-normal) !important\n\n.ml-medium\n margin-left: var(--bal-space-medium) !important\n\n.ml-large\n margin-left: var(--bal-space-large) !important\n\n.ml-x-large\n margin-left: var(--bal-space-x-large) !important\n\n.ml-xx-large\n margin-left: var(--bal-space-xx-large) !important\n\n.ml-xxx-large\n margin-left: var(--bal-space-xxx-large) !important\n\n.ml-xxxx-large\n margin-left: var(--bal-space-xxxx-large) !important\n\n+tablet\n .ml-none\n margin-left: 0 !important\n\n .ml-auto\n margin-left: auto !important\n\n .ml-xx-small\n margin-left: var(--bal-space-xx-small-tablet) !important\n\n .ml-x-small\n margin-left: var(--bal-space-x-small-tablet) !important\n\n .ml-small\n margin-left: var(--bal-space-small-tablet) !important\n\n .ml-normal\n margin-left: var(--bal-space-normal-tablet) !important\n\n .ml-medium\n margin-left: var(--bal-space-medium-tablet) !important\n\n .ml-large\n margin-left: var(--bal-space-large-tablet) !important\n\n .ml-x-large\n margin-left: var(--bal-space-x-large-tablet) !important\n\n .ml-xx-large\n margin-left: var(--bal-space-xx-large-tablet) !important\n\n .ml-xxx-large\n margin-left: var(--bal-space-xxx-large-tablet) !important\n\n .ml-xxxx-large\n margin-left: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .ml-none\n margin-left: 0 !important\n\n .ml-auto\n margin-left: auto !important\n\n .ml-xx-small\n margin-left: var(--bal-space-xx-small-desktop) !important\n\n .ml-x-small\n margin-left: var(--bal-space-x-small-desktop) !important\n\n .ml-small\n margin-left: var(--bal-space-small-desktop) !important\n\n .ml-normal\n margin-left: var(--bal-space-normal-desktop) !important\n\n .ml-medium\n margin-left: var(--bal-space-medium-desktop) !important\n\n .ml-large\n margin-left: var(--bal-space-large-desktop) !important\n\n .ml-x-large\n margin-left: var(--bal-space-x-large-desktop) !important\n\n .ml-xx-large\n margin-left: var(--bal-space-xx-large-desktop) !important\n\n .ml-xxx-large\n margin-left: var(--bal-space-xxx-large-desktop) !important\n\n .ml-xxxx-large\n margin-left: var(--bal-space-xxxx-large-desktop) !important\n\n.p-none\n padding: 0 !important\n\n.p-auto\n padding: auto !important\n\n.p-xx-small\n padding: var(--bal-space-xx-small) !important\n\n.p-x-small\n padding: var(--bal-space-x-small) !important\n\n.p-small\n padding: var(--bal-space-small) !important\n\n.p-normal\n padding: var(--bal-space-normal) !important\n\n.p-medium\n padding: var(--bal-space-medium) !important\n\n.p-large\n padding: var(--bal-space-large) !important\n\n.p-x-large\n padding: var(--bal-space-x-large) !important\n\n.p-xx-large\n padding: var(--bal-space-xx-large) !important\n\n.p-xxx-large\n padding: var(--bal-space-xxx-large) !important\n\n.p-xxxx-large\n padding: var(--bal-space-xxxx-large) !important\n\n+tablet\n .p-none\n padding: 0 !important\n\n .p-auto\n padding: auto !important\n\n .p-xx-small\n padding: var(--bal-space-xx-small-tablet) !important\n\n .p-x-small\n padding: var(--bal-space-x-small-tablet) !important\n\n .p-small\n padding: var(--bal-space-small-tablet) !important\n\n .p-normal\n padding: var(--bal-space-normal-tablet) !important\n\n .p-medium\n padding: var(--bal-space-medium-tablet) !important\n\n .p-large\n padding: var(--bal-space-large-tablet) !important\n\n .p-x-large\n padding: var(--bal-space-x-large-tablet) !important\n\n .p-xx-large\n padding: var(--bal-space-xx-large-tablet) !important\n\n .p-xxx-large\n padding: var(--bal-space-xxx-large-tablet) !important\n\n .p-xxxx-large\n padding: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .p-none\n padding: 0 !important\n\n .p-auto\n padding: auto !important\n\n .p-xx-small\n padding: var(--bal-space-xx-small-desktop) !important\n\n .p-x-small\n padding: var(--bal-space-x-small-desktop) !important\n\n .p-small\n padding: var(--bal-space-small-desktop) !important\n\n .p-normal\n padding: var(--bal-space-normal-desktop) !important\n\n .p-medium\n padding: var(--bal-space-medium-desktop) !important\n\n .p-large\n padding: var(--bal-space-large-desktop) !important\n\n .p-x-large\n padding: var(--bal-space-x-large-desktop) !important\n\n .p-xx-large\n padding: var(--bal-space-xx-large-desktop) !important\n\n .p-xxx-large\n padding: var(--bal-space-xxx-large-desktop) !important\n\n .p-xxxx-large\n padding: var(--bal-space-xxxx-large-desktop) !important\n\n.px-none\n padding-left: 0 !important\n padding-right: 0 !important\n\n.px-auto\n padding-left: auto !important\n padding-right: auto !important\n\n.px-xx-small\n padding-left: var(--bal-space-xx-small) !important\n padding-right: var(--bal-space-xx-small) !important\n\n.px-x-small\n padding-left: var(--bal-space-x-small) !important\n padding-right: var(--bal-space-x-small) !important\n\n.px-small\n padding-left: var(--bal-space-small) !important\n padding-right: var(--bal-space-small) !important\n\n.px-normal\n padding-left: var(--bal-space-normal) !important\n padding-right: var(--bal-space-normal) !important\n\n.px-medium\n padding-left: var(--bal-space-medium) !important\n padding-right: var(--bal-space-medium) !important\n\n.px-large\n padding-left: var(--bal-space-large) !important\n padding-right: var(--bal-space-large) !important\n\n.px-x-large\n padding-left: var(--bal-space-x-large) !important\n padding-right: var(--bal-space-x-large) !important\n\n.px-xx-large\n padding-left: var(--bal-space-xx-large) !important\n padding-right: var(--bal-space-xx-large) !important\n\n.px-xxx-large\n padding-left: var(--bal-space-xxx-large) !important\n padding-right: var(--bal-space-xxx-large) !important\n\n.px-xxxx-large\n padding-left: var(--bal-space-xxxx-large) !important\n padding-right: var(--bal-space-xxxx-large) !important\n\n+tablet\n .px-none\n padding-left: 0 !important\n padding-right: 0 !important\n\n .px-auto\n padding-left: auto !important\n padding-right: auto !important\n\n .px-xx-small\n padding-left: var(--bal-space-xx-small-tablet) !important\n padding-right: var(--bal-space-xx-small-tablet) !important\n\n .px-x-small\n padding-left: var(--bal-space-x-small-tablet) !important\n padding-right: var(--bal-space-x-small-tablet) !important\n\n .px-small\n padding-left: var(--bal-space-small-tablet) !important\n padding-right: var(--bal-space-small-tablet) !important\n\n .px-normal\n padding-left: var(--bal-space-normal-tablet) !important\n padding-right: var(--bal-space-normal-tablet) !important\n\n .px-medium\n padding-left: var(--bal-space-medium-tablet) !important\n padding-right: var(--bal-space-medium-tablet) !important\n\n .px-large\n padding-left: var(--bal-space-large-tablet) !important\n padding-right: var(--bal-space-large-tablet) !important\n\n .px-x-large\n padding-left: var(--bal-space-x-large-tablet) !important\n padding-right: var(--bal-space-x-large-tablet) !important\n\n .px-xx-large\n padding-left: var(--bal-space-xx-large-tablet) !important\n padding-right: var(--bal-space-xx-large-tablet) !important\n\n .px-xxx-large\n padding-left: var(--bal-space-xxx-large-tablet) !important\n padding-right: var(--bal-space-xxx-large-tablet) !important\n\n .px-xxxx-large\n padding-left: var(--bal-space-xxxx-large-tablet) !important\n padding-right: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .px-none\n padding-left: 0 !important\n padding-right: 0 !important\n\n .px-auto\n padding-left: auto !important\n padding-right: auto !important\n\n .px-xx-small\n padding-left: var(--bal-space-xx-small-desktop) !important\n padding-right: var(--bal-space-xx-small-desktop) !important\n\n .px-x-small\n padding-left: var(--bal-space-x-small-desktop) !important\n padding-right: var(--bal-space-x-small-desktop) !important\n\n .px-small\n padding-left: var(--bal-space-small-desktop) !important\n padding-right: var(--bal-space-small-desktop) !important\n\n .px-normal\n padding-left: var(--bal-space-normal-desktop) !important\n padding-right: var(--bal-space-normal-desktop) !important\n\n .px-medium\n padding-left: var(--bal-space-medium-desktop) !important\n padding-right: var(--bal-space-medium-desktop) !important\n\n .px-large\n padding-left: var(--bal-space-large-desktop) !important\n padding-right: var(--bal-space-large-desktop) !important\n\n .px-x-large\n padding-left: var(--bal-space-x-large-desktop) !important\n padding-right: var(--bal-space-x-large-desktop) !important\n\n .px-xx-large\n padding-left: var(--bal-space-xx-large-desktop) !important\n padding-right: var(--bal-space-xx-large-desktop) !important\n\n .px-xxx-large\n padding-left: var(--bal-space-xxx-large-desktop) !important\n padding-right: var(--bal-space-xxx-large-desktop) !important\n\n .px-xxxx-large\n padding-left: var(--bal-space-xxxx-large-desktop) !important\n padding-right: var(--bal-space-xxxx-large-desktop) !important\n\n.py-none\n padding-top: 0 !important\n padding-bottom: 0 !important\n\n.py-auto\n padding-top: auto !important\n padding-bottom: auto !important\n\n.py-xx-small\n padding-top: var(--bal-space-xx-small) !important\n padding-bottom: var(--bal-space-xx-small) !important\n\n.py-x-small\n padding-top: var(--bal-space-x-small) !important\n padding-bottom: var(--bal-space-x-small) !important\n\n.py-small\n padding-top: var(--bal-space-small) !important\n padding-bottom: var(--bal-space-small) !important\n\n.py-normal\n padding-top: var(--bal-space-normal) !important\n padding-bottom: var(--bal-space-normal) !important\n\n.py-medium\n padding-top: var(--bal-space-medium) !important\n padding-bottom: var(--bal-space-medium) !important\n\n.py-large\n padding-top: var(--bal-space-large) !important\n padding-bottom: var(--bal-space-large) !important\n\n.py-x-large\n padding-top: var(--bal-space-x-large) !important\n padding-bottom: var(--bal-space-x-large) !important\n\n.py-xx-large\n padding-top: var(--bal-space-xx-large) !important\n padding-bottom: var(--bal-space-xx-large) !important\n\n.py-xxx-large\n padding-top: var(--bal-space-xxx-large) !important\n padding-bottom: var(--bal-space-xxx-large) !important\n\n.py-xxxx-large\n padding-top: var(--bal-space-xxxx-large) !important\n padding-bottom: var(--bal-space-xxxx-large) !important\n\n+tablet\n .py-none\n padding-top: 0 !important\n padding-bottom: 0 !important\n\n .py-auto\n padding-top: auto !important\n padding-bottom: auto !important\n\n .py-xx-small\n padding-top: var(--bal-space-xx-small-tablet) !important\n padding-bottom: var(--bal-space-xx-small-tablet) !important\n\n .py-x-small\n padding-top: var(--bal-space-x-small-tablet) !important\n padding-bottom: var(--bal-space-x-small-tablet) !important\n\n .py-small\n padding-top: var(--bal-space-small-tablet) !important\n padding-bottom: var(--bal-space-small-tablet) !important\n\n .py-normal\n padding-top: var(--bal-space-normal-tablet) !important\n padding-bottom: var(--bal-space-normal-tablet) !important\n\n .py-medium\n padding-top: var(--bal-space-medium-tablet) !important\n padding-bottom: var(--bal-space-medium-tablet) !important\n\n .py-large\n padding-top: var(--bal-space-large-tablet) !important\n padding-bottom: var(--bal-space-large-tablet) !important\n\n .py-x-large\n padding-top: var(--bal-space-x-large-tablet) !important\n padding-bottom: var(--bal-space-x-large-tablet) !important\n\n .py-xx-large\n padding-top: var(--bal-space-xx-large-tablet) !important\n padding-bottom: var(--bal-space-xx-large-tablet) !important\n\n .py-xxx-large\n padding-top: var(--bal-space-xxx-large-tablet) !important\n padding-bottom: var(--bal-space-xxx-large-tablet) !important\n\n .py-xxxx-large\n padding-top: var(--bal-space-xxxx-large-tablet) !important\n padding-bottom: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .py-none\n padding-top: 0 !important\n padding-bottom: 0 !important\n\n .py-auto\n padding-top: auto !important\n padding-bottom: auto !important\n\n .py-xx-small\n padding-top: var(--bal-space-xx-small-desktop) !important\n padding-bottom: var(--bal-space-xx-small-desktop) !important\n\n .py-x-small\n padding-top: var(--bal-space-x-small-desktop) !important\n padding-bottom: var(--bal-space-x-small-desktop) !important\n\n .py-small\n padding-top: var(--bal-space-small-desktop) !important\n padding-bottom: var(--bal-space-small-desktop) !important\n\n .py-normal\n padding-top: var(--bal-space-normal-desktop) !important\n padding-bottom: var(--bal-space-normal-desktop) !important\n\n .py-medium\n padding-top: var(--bal-space-medium-desktop) !important\n padding-bottom: var(--bal-space-medium-desktop) !important\n\n .py-large\n padding-top: var(--bal-space-large-desktop) !important\n padding-bottom: var(--bal-space-large-desktop) !important\n\n .py-x-large\n padding-top: var(--bal-space-x-large-desktop) !important\n padding-bottom: var(--bal-space-x-large-desktop) !important\n\n .py-xx-large\n padding-top: var(--bal-space-xx-large-desktop) !important\n padding-bottom: var(--bal-space-xx-large-desktop) !important\n\n .py-xxx-large\n padding-top: var(--bal-space-xxx-large-desktop) !important\n padding-bottom: var(--bal-space-xxx-large-desktop) !important\n\n .py-xxxx-large\n padding-top: var(--bal-space-xxxx-large-desktop) !important\n padding-bottom: var(--bal-space-xxxx-large-desktop) !important\n\n.pt-none\n padding-top: 0 !important\n\n.pt-auto\n padding-top: auto !important\n\n.pt-xx-small\n padding-top: var(--bal-space-xx-small) !important\n\n.pt-x-small\n padding-top: var(--bal-space-x-small) !important\n\n.pt-small\n padding-top: var(--bal-space-small) !important\n\n.pt-normal\n padding-top: var(--bal-space-normal) !important\n\n.pt-medium\n padding-top: var(--bal-space-medium) !important\n\n.pt-large\n padding-top: var(--bal-space-large) !important\n\n.pt-x-large\n padding-top: var(--bal-space-x-large) !important\n\n.pt-xx-large\n padding-top: var(--bal-space-xx-large) !important\n\n.pt-xxx-large\n padding-top: var(--bal-space-xxx-large) !important\n\n.pt-xxxx-large\n padding-top: var(--bal-space-xxxx-large) !important\n\n+tablet\n .pt-none\n padding-top: 0 !important\n\n .pt-auto\n padding-top: auto !important\n\n .pt-xx-small\n padding-top: var(--bal-space-xx-small-tablet) !important\n\n .pt-x-small\n padding-top: var(--bal-space-x-small-tablet) !important\n\n .pt-small\n padding-top: var(--bal-space-small-tablet) !important\n\n .pt-normal\n padding-top: var(--bal-space-normal-tablet) !important\n\n .pt-medium\n padding-top: var(--bal-space-medium-tablet) !important\n\n .pt-large\n padding-top: var(--bal-space-large-tablet) !important\n\n .pt-x-large\n padding-top: var(--bal-space-x-large-tablet) !important\n\n .pt-xx-large\n padding-top: var(--bal-space-xx-large-tablet) !important\n\n .pt-xxx-large\n padding-top: var(--bal-space-xxx-large-tablet) !important\n\n .pt-xxxx-large\n padding-top: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .pt-none\n padding-top: 0 !important\n\n .pt-auto\n padding-top: auto !important\n\n .pt-xx-small\n padding-top: var(--bal-space-xx-small-desktop) !important\n\n .pt-x-small\n padding-top: var(--bal-space-x-small-desktop) !important\n\n .pt-small\n padding-top: var(--bal-space-small-desktop) !important\n\n .pt-normal\n padding-top: var(--bal-space-normal-desktop) !important\n\n .pt-medium\n padding-top: var(--bal-space-medium-desktop) !important\n\n .pt-large\n padding-top: var(--bal-space-large-desktop) !important\n\n .pt-x-large\n padding-top: var(--bal-space-x-large-desktop) !important\n\n .pt-xx-large\n padding-top: var(--bal-space-xx-large-desktop) !important\n\n .pt-xxx-large\n padding-top: var(--bal-space-xxx-large-desktop) !important\n\n .pt-xxxx-large\n padding-top: var(--bal-space-xxxx-large-desktop) !important\n\n.pr-none\n padding-right: 0 !important\n\n.pr-auto\n padding-right: auto !important\n\n.pr-xx-small\n padding-right: var(--bal-space-xx-small) !important\n\n.pr-x-small\n padding-right: var(--bal-space-x-small) !important\n\n.pr-small\n padding-right: var(--bal-space-small) !important\n\n.pr-normal\n padding-right: var(--bal-space-normal) !important\n\n.pr-medium\n padding-right: var(--bal-space-medium) !important\n\n.pr-large\n padding-right: var(--bal-space-large) !important\n\n.pr-x-large\n padding-right: var(--bal-space-x-large) !important\n\n.pr-xx-large\n padding-right: var(--bal-space-xx-large) !important\n\n.pr-xxx-large\n padding-right: var(--bal-space-xxx-large) !important\n\n.pr-xxxx-large\n padding-right: var(--bal-space-xxxx-large) !important\n\n+tablet\n .pr-none\n padding-right: 0 !important\n\n .pr-auto\n padding-right: auto !important\n\n .pr-xx-small\n padding-right: var(--bal-space-xx-small-tablet) !important\n\n .pr-x-small\n padding-right: var(--bal-space-x-small-tablet) !important\n\n .pr-small\n padding-right: var(--bal-space-small-tablet) !important\n\n .pr-normal\n padding-right: var(--bal-space-normal-tablet) !important\n\n .pr-medium\n padding-right: var(--bal-space-medium-tablet) !important\n\n .pr-large\n padding-right: var(--bal-space-large-tablet) !important\n\n .pr-x-large\n padding-right: var(--bal-space-x-large-tablet) !important\n\n .pr-xx-large\n padding-right: var(--bal-space-xx-large-tablet) !important\n\n .pr-xxx-large\n padding-right: var(--bal-space-xxx-large-tablet) !important\n\n .pr-xxxx-large\n padding-right: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .pr-none\n padding-right: 0 !important\n\n .pr-auto\n padding-right: auto !important\n\n .pr-xx-small\n padding-right: var(--bal-space-xx-small-desktop) !important\n\n .pr-x-small\n padding-right: var(--bal-space-x-small-desktop) !important\n\n .pr-small\n padding-right: var(--bal-space-small-desktop) !important\n\n .pr-normal\n padding-right: var(--bal-space-normal-desktop) !important\n\n .pr-medium\n padding-right: var(--bal-space-medium-desktop) !important\n\n .pr-large\n padding-right: var(--bal-space-large-desktop) !important\n\n .pr-x-large\n padding-right: var(--bal-space-x-large-desktop) !important\n\n .pr-xx-large\n padding-right: var(--bal-space-xx-large-desktop) !important\n\n .pr-xxx-large\n padding-right: var(--bal-space-xxx-large-desktop) !important\n\n .pr-xxxx-large\n padding-right: var(--bal-space-xxxx-large-desktop) !important\n\n.pb-none\n padding-bottom: 0 !important\n\n.pb-auto\n padding-bottom: auto !important\n\n.pb-xx-small\n padding-bottom: var(--bal-space-xx-small) !important\n\n.pb-x-small\n padding-bottom: var(--bal-space-x-small) !important\n\n.pb-small\n padding-bottom: var(--bal-space-small) !important\n\n.pb-normal\n padding-bottom: var(--bal-space-normal) !important\n\n.pb-medium\n padding-bottom: var(--bal-space-medium) !important\n\n.pb-large\n padding-bottom: var(--bal-space-large) !important\n\n.pb-x-large\n padding-bottom: var(--bal-space-x-large) !important\n\n.pb-xx-large\n padding-bottom: var(--bal-space-xx-large) !important\n\n.pb-xxx-large\n padding-bottom: var(--bal-space-xxx-large) !important\n\n.pb-xxxx-large\n padding-bottom: var(--bal-space-xxxx-large) !important\n\n+tablet\n .pb-none\n padding-bottom: 0 !important\n\n .pb-auto\n padding-bottom: auto !important\n\n .pb-xx-small\n padding-bottom: var(--bal-space-xx-small-tablet) !important\n\n .pb-x-small\n padding-bottom: var(--bal-space-x-small-tablet) !important\n\n .pb-small\n padding-bottom: var(--bal-space-small-tablet) !important\n\n .pb-normal\n padding-bottom: var(--bal-space-normal-tablet) !important\n\n .pb-medium\n padding-bottom: var(--bal-space-medium-tablet) !important\n\n .pb-large\n padding-bottom: var(--bal-space-large-tablet) !important\n\n .pb-x-large\n padding-bottom: var(--bal-space-x-large-tablet) !important\n\n .pb-xx-large\n padding-bottom: var(--bal-space-xx-large-tablet) !important\n\n .pb-xxx-large\n padding-bottom: var(--bal-space-xxx-large-tablet) !important\n\n .pb-xxxx-large\n padding-bottom: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .pb-none\n padding-bottom: 0 !important\n\n .pb-auto\n padding-bottom: auto !important\n\n .pb-xx-small\n padding-bottom: var(--bal-space-xx-small-desktop) !important\n\n .pb-x-small\n padding-bottom: var(--bal-space-x-small-desktop) !important\n\n .pb-small\n padding-bottom: var(--bal-space-small-desktop) !important\n\n .pb-normal\n padding-bottom: var(--bal-space-normal-desktop) !important\n\n .pb-medium\n padding-bottom: var(--bal-space-medium-desktop) !important\n\n .pb-large\n padding-bottom: var(--bal-space-large-desktop) !important\n\n .pb-x-large\n padding-bottom: var(--bal-space-x-large-desktop) !important\n\n .pb-xx-large\n padding-bottom: var(--bal-space-xx-large-desktop) !important\n\n .pb-xxx-large\n padding-bottom: var(--bal-space-xxx-large-desktop) !important\n\n .pb-xxxx-large\n padding-bottom: var(--bal-space-xxxx-large-desktop) !important\n\n.pl-none\n padding-left: 0 !important\n\n.pl-auto\n padding-left: auto !important\n\n.pl-xx-small\n padding-left: var(--bal-space-xx-small) !important\n\n.pl-x-small\n padding-left: var(--bal-space-x-small) !important\n\n.pl-small\n padding-left: var(--bal-space-small) !important\n\n.pl-normal\n padding-left: var(--bal-space-normal) !important\n\n.pl-medium\n padding-left: var(--bal-space-medium) !important\n\n.pl-large\n padding-left: var(--bal-space-large) !important\n\n.pl-x-large\n padding-left: var(--bal-space-x-large) !important\n\n.pl-xx-large\n padding-left: var(--bal-space-xx-large) !important\n\n.pl-xxx-large\n padding-left: var(--bal-space-xxx-large) !important\n\n.pl-xxxx-large\n padding-left: var(--bal-space-xxxx-large) !important\n\n+tablet\n .pl-none\n padding-left: 0 !important\n\n .pl-auto\n padding-left: auto !important\n\n .pl-xx-small\n padding-left: var(--bal-space-xx-small-tablet) !important\n\n .pl-x-small\n padding-left: var(--bal-space-x-small-tablet) !important\n\n .pl-small\n padding-left: var(--bal-space-small-tablet) !important\n\n .pl-normal\n padding-left: var(--bal-space-normal-tablet) !important\n\n .pl-medium\n padding-left: var(--bal-space-medium-tablet) !important\n\n .pl-large\n padding-left: var(--bal-space-large-tablet) !important\n\n .pl-x-large\n padding-left: var(--bal-space-x-large-tablet) !important\n\n .pl-xx-large\n padding-left: var(--bal-space-xx-large-tablet) !important\n\n .pl-xxx-large\n padding-left: var(--bal-space-xxx-large-tablet) !important\n\n .pl-xxxx-large\n padding-left: var(--bal-space-xxxx-large-tablet) !important\n\n+desktop\n .pl-none\n padding-left: 0 !important\n\n .pl-auto\n padding-left: auto !important\n\n .pl-xx-small\n padding-left: var(--bal-space-xx-small-desktop) !important\n\n .pl-x-small\n padding-left: var(--bal-space-x-small-desktop) !important\n\n .pl-small\n padding-left: var(--bal-space-small-desktop) !important\n\n .pl-normal\n padding-left: var(--bal-space-normal-desktop) !important\n\n .pl-medium\n padding-left: var(--bal-space-medium-desktop) !important\n\n .pl-large\n padding-left: var(--bal-space-large-desktop) !important\n\n .pl-x-large\n padding-left: var(--bal-space-x-large-desktop) !important\n\n .pl-xx-large\n padding-left: var(--bal-space-xx-large-desktop) !important\n\n .pl-xxx-large\n padding-left: var(--bal-space-xxx-large-desktop) !important\n\n .pl-xxxx-large\n padding-left: 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
|
+
.m-none{margin:0!important}.m-auto{margin:auto!important}.m-xx-small{margin:var(--bal-space-xx-small)!important}.m-x-small{margin:var(--bal-space-x-small)!important}.m-small{margin:var(--bal-space-small)!important}.m-normal{margin:var(--bal-space-normal)!important}.m-medium{margin:var(--bal-space-medium)!important}.m-large{margin:var(--bal-space-large)!important}.m-x-large{margin:var(--bal-space-x-large)!important}.m-xx-large{margin:var(--bal-space-xx-large)!important}.m-xxx-large{margin:var(--bal-space-xxx-large)!important}.m-xxxx-large{margin:var(--bal-space-xxxx-large)!important}@media screen and (min-width:769px),print{.m-none{margin:0!important}.m-auto{margin:auto!important}.m-xx-small{margin:var(--bal-space-xx-small-tablet)!important}.m-x-small{margin:var(--bal-space-x-small-tablet)!important}.m-small{margin:var(--bal-space-small-tablet)!important}.m-normal{margin:var(--bal-space-normal-tablet)!important}.m-medium{margin:var(--bal-space-medium-tablet)!important}.m-large{margin:var(--bal-space-large-tablet)!important}.m-x-large{margin:var(--bal-space-x-large-tablet)!important}.m-xx-large{margin:var(--bal-space-xx-large-tablet)!important}.m-xxx-large{margin:var(--bal-space-xxx-large-tablet)!important}.m-xxxx-large{margin:var(--bal-space-xxxx-large-tablet)!important}}@media screen and (min-width:1024px){.m-none{margin:0!important}.m-auto{margin:auto!important}.m-xx-small{margin:var(--bal-space-xx-small-desktop)!important}.m-x-small{margin:var(--bal-space-x-small-desktop)!important}.m-small{margin:var(--bal-space-small-desktop)!important}.m-normal{margin:var(--bal-space-normal-desktop)!important}.m-medium{margin:var(--bal-space-medium-desktop)!important}.m-large{margin:var(--bal-space-large-desktop)!important}.m-x-large{margin:var(--bal-space-x-large-desktop)!important}.m-xx-large{margin:var(--bal-space-xx-large-desktop)!important}.m-xxx-large{margin:var(--bal-space-xxx-large-desktop)!important}.m-xxxx-large{margin:var(--bal-space-xxxx-large-desktop)!important}}.mx-none{margin-left:0!important;margin-right:0!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mx-xx-small{margin-left:var(--bal-space-xx-small)!important;margin-right:var(--bal-space-xx-small)!important}.mx-x-small{margin-left:var(--bal-space-x-small)!important;margin-right:var(--bal-space-x-small)!important}.mx-small{margin-left:var(--bal-space-small)!important;margin-right:var(--bal-space-small)!important}.mx-normal{margin-left:var(--bal-space-normal)!important;margin-right:var(--bal-space-normal)!important}.mx-medium{margin-left:var(--bal-space-medium)!important;margin-right:var(--bal-space-medium)!important}.mx-large{margin-left:var(--bal-space-large)!important;margin-right:var(--bal-space-large)!important}.mx-x-large{margin-left:var(--bal-space-x-large)!important;margin-right:var(--bal-space-x-large)!important}.mx-xx-large{margin-left:var(--bal-space-xx-large)!important;margin-right:var(--bal-space-xx-large)!important}.mx-xxx-large{margin-left:var(--bal-space-xxx-large)!important;margin-right:var(--bal-space-xxx-large)!important}.mx-xxxx-large{margin-left:var(--bal-space-xxxx-large)!important;margin-right:var(--bal-space-xxxx-large)!important}.my-none{margin-top:0!important;margin-bottom:0!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.my-xx-small{margin-top:var(--bal-space-xx-small)!important;margin-bottom:var(--bal-space-xx-small)!important}.my-x-small{margin-top:var(--bal-space-x-small)!important;margin-bottom:var(--bal-space-x-small)!important}.my-small{margin-top:var(--bal-space-small)!important;margin-bottom:var(--bal-space-small)!important}.my-normal{margin-top:var(--bal-space-normal)!important;margin-bottom:var(--bal-space-normal)!important}.my-medium{margin-top:var(--bal-space-medium)!important;margin-bottom:var(--bal-space-medium)!important}.my-large{margin-top:var(--bal-space-large)!important;margin-bottom:var(--bal-space-large)!important}.my-x-large{margin-top:var(--bal-space-x-large)!important;margin-bottom:var(--bal-space-x-large)!important}.my-xx-large{margin-top:var(--bal-space-xx-large)!important;margin-bottom:var(--bal-space-xx-large)!important}.my-xxx-large{margin-top:var(--bal-space-xxx-large)!important;margin-bottom:var(--bal-space-xxx-large)!important}.my-xxxx-large{margin-top:var(--bal-space-xxxx-large)!important;margin-bottom:var(--bal-space-xxxx-large)!important}@media screen and (min-width:769px),print{.mx-none{margin-left:0!important;margin-right:0!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mx-xx-small{margin-left:var(--bal-space-xx-small-tablet)!important;margin-right:var(--bal-space-xx-small-tablet)!important}.mx-x-small{margin-left:var(--bal-space-x-small-tablet)!important;margin-right:var(--bal-space-x-small-tablet)!important}.mx-small{margin-left:var(--bal-space-small-tablet)!important;margin-right:var(--bal-space-small-tablet)!important}.mx-normal{margin-left:var(--bal-space-normal-tablet)!important;margin-right:var(--bal-space-normal-tablet)!important}.mx-medium{margin-left:var(--bal-space-medium-tablet)!important;margin-right:var(--bal-space-medium-tablet)!important}.mx-large{margin-left:var(--bal-space-large-tablet)!important;margin-right:var(--bal-space-large-tablet)!important}.mx-x-large{margin-left:var(--bal-space-x-large-tablet)!important;margin-right:var(--bal-space-x-large-tablet)!important}.mx-xx-large{margin-left:var(--bal-space-xx-large-tablet)!important;margin-right:var(--bal-space-xx-large-tablet)!important}.mx-xxx-large{margin-left:var(--bal-space-xxx-large-tablet)!important;margin-right:var(--bal-space-xxx-large-tablet)!important}.mx-xxxx-large{margin-left:var(--bal-space-xxxx-large-tablet)!important;margin-right:var(--bal-space-xxxx-large-tablet)!important}.my-none{margin-top:0!important;margin-bottom:0!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.my-xx-small{margin-top:var(--bal-space-xx-small-tablet)!important;margin-bottom:var(--bal-space-xx-small-tablet)!important}.my-x-small{margin-top:var(--bal-space-x-small-tablet)!important;margin-bottom:var(--bal-space-x-small-tablet)!important}.my-small{margin-top:var(--bal-space-small-tablet)!important;margin-bottom:var(--bal-space-small-tablet)!important}.my-normal{margin-top:var(--bal-space-normal-tablet)!important;margin-bottom:var(--bal-space-normal-tablet)!important}.my-medium{margin-top:var(--bal-space-medium-tablet)!important;margin-bottom:var(--bal-space-medium-tablet)!important}.my-large{margin-top:var(--bal-space-large-tablet)!important;margin-bottom:var(--bal-space-large-tablet)!important}.my-x-large{margin-top:var(--bal-space-x-large-tablet)!important;margin-bottom:var(--bal-space-x-large-tablet)!important}.my-xx-large{margin-top:var(--bal-space-xx-large-tablet)!important;margin-bottom:var(--bal-space-xx-large-tablet)!important}.my-xxx-large{margin-top:var(--bal-space-xxx-large-tablet)!important;margin-bottom:var(--bal-space-xxx-large-tablet)!important}.my-xxxx-large{margin-top:var(--bal-space-xxxx-large-tablet)!important;margin-bottom:var(--bal-space-xxxx-large-tablet)!important}}@media screen and (min-width:1024px){.mx-none{margin-left:0!important;margin-right:0!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.mx-xx-small{margin-left:var(--bal-space-xx-small-desktop)!important;margin-right:var(--bal-space-xx-small-desktop)!important}.mx-x-small{margin-left:var(--bal-space-x-small-desktop)!important;margin-right:var(--bal-space-x-small-desktop)!important}.mx-small{margin-left:var(--bal-space-small-desktop)!important;margin-right:var(--bal-space-small-desktop)!important}.mx-normal{margin-left:var(--bal-space-normal-desktop)!important;margin-right:var(--bal-space-normal-desktop)!important}.mx-medium{margin-left:var(--bal-space-medium-desktop)!important;margin-right:var(--bal-space-medium-desktop)!important}.mx-large{margin-left:var(--bal-space-large-desktop)!important;margin-right:var(--bal-space-large-desktop)!important}.mx-x-large{margin-left:var(--bal-space-x-large-desktop)!important;margin-right:var(--bal-space-x-large-desktop)!important}.mx-xx-large{margin-left:var(--bal-space-xx-large-desktop)!important;margin-right:var(--bal-space-xx-large-desktop)!important}.mx-xxx-large{margin-left:var(--bal-space-xxx-large-desktop)!important;margin-right:var(--bal-space-xxx-large-desktop)!important}.mx-xxxx-large{margin-left:var(--bal-space-xxxx-large-desktop)!important;margin-right:var(--bal-space-xxxx-large-desktop)!important}.my-none{margin-top:0!important;margin-bottom:0!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.my-xx-small{margin-top:var(--bal-space-xx-small-desktop)!important;margin-bottom:var(--bal-space-xx-small-desktop)!important}.my-x-small{margin-top:var(--bal-space-x-small-desktop)!important;margin-bottom:var(--bal-space-x-small-desktop)!important}.my-small{margin-top:var(--bal-space-small-desktop)!important;margin-bottom:var(--bal-space-small-desktop)!important}.my-normal{margin-top:var(--bal-space-normal-desktop)!important;margin-bottom:var(--bal-space-normal-desktop)!important}.my-medium{margin-top:var(--bal-space-medium-desktop)!important;margin-bottom:var(--bal-space-medium-desktop)!important}.my-large{margin-top:var(--bal-space-large-desktop)!important;margin-bottom:var(--bal-space-large-desktop)!important}.my-x-large{margin-top:var(--bal-space-x-large-desktop)!important;margin-bottom:var(--bal-space-x-large-desktop)!important}.my-xx-large{margin-top:var(--bal-space-xx-large-desktop)!important;margin-bottom:var(--bal-space-xx-large-desktop)!important}.my-xxx-large{margin-top:var(--bal-space-xxx-large-desktop)!important;margin-bottom:var(--bal-space-xxx-large-desktop)!important}.my-xxxx-large{margin-top:var(--bal-space-xxxx-large-desktop)!important;margin-bottom:var(--bal-space-xxxx-large-desktop)!important}}.mt-none{margin-top:0!important}.mt-auto{margin-top:auto!important}.mt-xx-small{margin-top:var(--bal-space-xx-small)!important}.mt-x-small{margin-top:var(--bal-space-x-small)!important}.mt-small{margin-top:var(--bal-space-small)!important}.mt-normal{margin-top:var(--bal-space-normal)!important}.mt-medium{margin-top:var(--bal-space-medium)!important}.mt-large{margin-top:var(--bal-space-large)!important}.mt-x-large{margin-top:var(--bal-space-x-large)!important}.mt-xx-large{margin-top:var(--bal-space-xx-large)!important}.mt-xxx-large{margin-top:var(--bal-space-xxx-large)!important}.mt-xxxx-large{margin-top:var(--bal-space-xxxx-large)!important}.mr-none{margin-right:0!important}.mr-auto{margin-right:auto!important}.mr-xx-small{margin-right:var(--bal-space-xx-small)!important}.mr-x-small{margin-right:var(--bal-space-x-small)!important}.mr-small{margin-right:var(--bal-space-small)!important}.mr-normal{margin-right:var(--bal-space-normal)!important}.mr-medium{margin-right:var(--bal-space-medium)!important}.mr-large{margin-right:var(--bal-space-large)!important}.mr-x-large{margin-right:var(--bal-space-x-large)!important}.mr-xx-large{margin-right:var(--bal-space-xx-large)!important}.mr-xxx-large{margin-right:var(--bal-space-xxx-large)!important}.mr-xxxx-large{margin-right:var(--bal-space-xxxx-large)!important}.mb-none{margin-bottom:0!important}.mb-auto{margin-bottom:auto!important}.mb-xx-small{margin-bottom:var(--bal-space-xx-small)!important}.mb-x-small{margin-bottom:var(--bal-space-x-small)!important}.mb-small{margin-bottom:var(--bal-space-small)!important}.mb-normal{margin-bottom:var(--bal-space-normal)!important}.mb-medium{margin-bottom:var(--bal-space-medium)!important}.mb-large{margin-bottom:var(--bal-space-large)!important}.mb-x-large{margin-bottom:var(--bal-space-x-large)!important}.mb-xx-large{margin-bottom:var(--bal-space-xx-large)!important}.mb-xxx-large{margin-bottom:var(--bal-space-xxx-large)!important}.mb-xxxx-large{margin-bottom:var(--bal-space-xxxx-large)!important}.ml-none{margin-left:0!important}.ml-auto{margin-left:auto!important}.ml-xx-small{margin-left:var(--bal-space-xx-small)!important}.ml-x-small{margin-left:var(--bal-space-x-small)!important}.ml-small{margin-left:var(--bal-space-small)!important}.ml-normal{margin-left:var(--bal-space-normal)!important}.ml-medium{margin-left:var(--bal-space-medium)!important}.ml-large{margin-left:var(--bal-space-large)!important}.ml-x-large{margin-left:var(--bal-space-x-large)!important}.ml-xx-large{margin-left:var(--bal-space-xx-large)!important}.ml-xxx-large{margin-left:var(--bal-space-xxx-large)!important}.ml-xxxx-large{margin-left:var(--bal-space-xxxx-large)!important}.p-none{padding:0!important}.p-auto{padding:auto!important}.p-xx-small{padding:var(--bal-space-xx-small)!important}.p-x-small{padding:var(--bal-space-x-small)!important}.p-small{padding:var(--bal-space-small)!important}.p-normal{padding:var(--bal-space-normal)!important}.p-medium{padding:var(--bal-space-medium)!important}.p-large{padding:var(--bal-space-large)!important}.p-x-large{padding:var(--bal-space-x-large)!important}.p-xx-large{padding:var(--bal-space-xx-large)!important}.p-xxx-large{padding:var(--bal-space-xxx-large)!important}.p-xxxx-large{padding:var(--bal-space-xxxx-large)!important}@media screen and (min-width:769px),print{.mt-none{margin-top:0!important}.mt-auto{margin-top:auto!important}.mt-xx-small{margin-top:var(--bal-space-xx-small-tablet)!important}.mt-x-small{margin-top:var(--bal-space-x-small-tablet)!important}.mt-small{margin-top:var(--bal-space-small-tablet)!important}.mt-normal{margin-top:var(--bal-space-normal-tablet)!important}.mt-medium{margin-top:var(--bal-space-medium-tablet)!important}.mt-large{margin-top:var(--bal-space-large-tablet)!important}.mt-x-large{margin-top:var(--bal-space-x-large-tablet)!important}.mt-xx-large{margin-top:var(--bal-space-xx-large-tablet)!important}.mt-xxx-large{margin-top:var(--bal-space-xxx-large-tablet)!important}.mt-xxxx-large{margin-top:var(--bal-space-xxxx-large-tablet)!important}.mr-none{margin-right:0!important}.mr-auto{margin-right:auto!important}.mr-xx-small{margin-right:var(--bal-space-xx-small-tablet)!important}.mr-x-small{margin-right:var(--bal-space-x-small-tablet)!important}.mr-small{margin-right:var(--bal-space-small-tablet)!important}.mr-normal{margin-right:var(--bal-space-normal-tablet)!important}.mr-medium{margin-right:var(--bal-space-medium-tablet)!important}.mr-large{margin-right:var(--bal-space-large-tablet)!important}.mr-x-large{margin-right:var(--bal-space-x-large-tablet)!important}.mr-xx-large{margin-right:var(--bal-space-xx-large-tablet)!important}.mr-xxx-large{margin-right:var(--bal-space-xxx-large-tablet)!important}.mr-xxxx-large{margin-right:var(--bal-space-xxxx-large-tablet)!important}.mb-none{margin-bottom:0!important}.mb-auto{margin-bottom:auto!important}.mb-xx-small{margin-bottom:var(--bal-space-xx-small-tablet)!important}.mb-x-small{margin-bottom:var(--bal-space-x-small-tablet)!important}.mb-small{margin-bottom:var(--bal-space-small-tablet)!important}.mb-normal{margin-bottom:var(--bal-space-normal-tablet)!important}.mb-medium{margin-bottom:var(--bal-space-medium-tablet)!important}.mb-large{margin-bottom:var(--bal-space-large-tablet)!important}.mb-x-large{margin-bottom:var(--bal-space-x-large-tablet)!important}.mb-xx-large{margin-bottom:var(--bal-space-xx-large-tablet)!important}.mb-xxx-large{margin-bottom:var(--bal-space-xxx-large-tablet)!important}.mb-xxxx-large{margin-bottom:var(--bal-space-xxxx-large-tablet)!important}.ml-none{margin-left:0!important}.ml-auto{margin-left:auto!important}.ml-xx-small{margin-left:var(--bal-space-xx-small-tablet)!important}.ml-x-small{margin-left:var(--bal-space-x-small-tablet)!important}.ml-small{margin-left:var(--bal-space-small-tablet)!important}.ml-normal{margin-left:var(--bal-space-normal-tablet)!important}.ml-medium{margin-left:var(--bal-space-medium-tablet)!important}.ml-large{margin-left:var(--bal-space-large-tablet)!important}.ml-x-large{margin-left:var(--bal-space-x-large-tablet)!important}.ml-xx-large{margin-left:var(--bal-space-xx-large-tablet)!important}.ml-xxx-large{margin-left:var(--bal-space-xxx-large-tablet)!important}.ml-xxxx-large{margin-left:var(--bal-space-xxxx-large-tablet)!important}.p-none{padding:0!important}.p-auto{padding:auto!important}.p-xx-small{padding:var(--bal-space-xx-small-tablet)!important}.p-x-small{padding:var(--bal-space-x-small-tablet)!important}.p-small{padding:var(--bal-space-small-tablet)!important}.p-normal{padding:var(--bal-space-normal-tablet)!important}.p-medium{padding:var(--bal-space-medium-tablet)!important}.p-large{padding:var(--bal-space-large-tablet)!important}.p-x-large{padding:var(--bal-space-x-large-tablet)!important}.p-xx-large{padding:var(--bal-space-xx-large-tablet)!important}.p-xxx-large{padding:var(--bal-space-xxx-large-tablet)!important}.p-xxxx-large{padding:var(--bal-space-xxxx-large-tablet)!important}}@media screen and (min-width:1024px){.mt-none{margin-top:0!important}.mt-auto{margin-top:auto!important}.mt-xx-small{margin-top:var(--bal-space-xx-small-desktop)!important}.mt-x-small{margin-top:var(--bal-space-x-small-desktop)!important}.mt-small{margin-top:var(--bal-space-small-desktop)!important}.mt-normal{margin-top:var(--bal-space-normal-desktop)!important}.mt-medium{margin-top:var(--bal-space-medium-desktop)!important}.mt-large{margin-top:var(--bal-space-large-desktop)!important}.mt-x-large{margin-top:var(--bal-space-x-large-desktop)!important}.mt-xx-large{margin-top:var(--bal-space-xx-large-desktop)!important}.mt-xxx-large{margin-top:var(--bal-space-xxx-large-desktop)!important}.mt-xxxx-large{margin-top:var(--bal-space-xxxx-large-desktop)!important}.mr-none{margin-right:0!important}.mr-auto{margin-right:auto!important}.mr-xx-small{margin-right:var(--bal-space-xx-small-desktop)!important}.mr-x-small{margin-right:var(--bal-space-x-small-desktop)!important}.mr-small{margin-right:var(--bal-space-small-desktop)!important}.mr-normal{margin-right:var(--bal-space-normal-desktop)!important}.mr-medium{margin-right:var(--bal-space-medium-desktop)!important}.mr-large{margin-right:var(--bal-space-large-desktop)!important}.mr-x-large{margin-right:var(--bal-space-x-large-desktop)!important}.mr-xx-large{margin-right:var(--bal-space-xx-large-desktop)!important}.mr-xxx-large{margin-right:var(--bal-space-xxx-large-desktop)!important}.mr-xxxx-large{margin-right:var(--bal-space-xxxx-large-desktop)!important}.mb-none{margin-bottom:0!important}.mb-auto{margin-bottom:auto!important}.mb-xx-small{margin-bottom:var(--bal-space-xx-small-desktop)!important}.mb-x-small{margin-bottom:var(--bal-space-x-small-desktop)!important}.mb-small{margin-bottom:var(--bal-space-small-desktop)!important}.mb-normal{margin-bottom:var(--bal-space-normal-desktop)!important}.mb-medium{margin-bottom:var(--bal-space-medium-desktop)!important}.mb-large{margin-bottom:var(--bal-space-large-desktop)!important}.mb-x-large{margin-bottom:var(--bal-space-x-large-desktop)!important}.mb-xx-large{margin-bottom:var(--bal-space-xx-large-desktop)!important}.mb-xxx-large{margin-bottom:var(--bal-space-xxx-large-desktop)!important}.mb-xxxx-large{margin-bottom:var(--bal-space-xxxx-large-desktop)!important}.ml-none{margin-left:0!important}.ml-auto{margin-left:auto!important}.ml-xx-small{margin-left:var(--bal-space-xx-small-desktop)!important}.ml-x-small{margin-left:var(--bal-space-x-small-desktop)!important}.ml-small{margin-left:var(--bal-space-small-desktop)!important}.ml-normal{margin-left:var(--bal-space-normal-desktop)!important}.ml-medium{margin-left:var(--bal-space-medium-desktop)!important}.ml-large{margin-left:var(--bal-space-large-desktop)!important}.ml-x-large{margin-left:var(--bal-space-x-large-desktop)!important}.ml-xx-large{margin-left:var(--bal-space-xx-large-desktop)!important}.ml-xxx-large{margin-left:var(--bal-space-xxx-large-desktop)!important}.ml-xxxx-large{margin-left:var(--bal-space-xxxx-large-desktop)!important}.p-none{padding:0!important}.p-auto{padding:auto!important}.p-xx-small{padding:var(--bal-space-xx-small-desktop)!important}.p-x-small{padding:var(--bal-space-x-small-desktop)!important}.p-small{padding:var(--bal-space-small-desktop)!important}.p-normal{padding:var(--bal-space-normal-desktop)!important}.p-medium{padding:var(--bal-space-medium-desktop)!important}.p-large{padding:var(--bal-space-large-desktop)!important}.p-x-large{padding:var(--bal-space-x-large-desktop)!important}.p-xx-large{padding:var(--bal-space-xx-large-desktop)!important}.p-xxx-large{padding:var(--bal-space-xxx-large-desktop)!important}.p-xxxx-large{padding:var(--bal-space-xxxx-large-desktop)!important}}.px-none{padding-left:0!important;padding-right:0!important}.px-auto{padding-left:auto!important;padding-right:auto!important}.px-xx-small{padding-left:var(--bal-space-xx-small)!important;padding-right:var(--bal-space-xx-small)!important}.px-x-small{padding-left:var(--bal-space-x-small)!important;padding-right:var(--bal-space-x-small)!important}.px-small{padding-left:var(--bal-space-small)!important;padding-right:var(--bal-space-small)!important}.px-normal{padding-left:var(--bal-space-normal)!important;padding-right:var(--bal-space-normal)!important}.px-medium{padding-left:var(--bal-space-medium)!important;padding-right:var(--bal-space-medium)!important}.px-large{padding-left:var(--bal-space-large)!important;padding-right:var(--bal-space-large)!important}.px-x-large{padding-left:var(--bal-space-x-large)!important;padding-right:var(--bal-space-x-large)!important}.px-xx-large{padding-left:var(--bal-space-xx-large)!important;padding-right:var(--bal-space-xx-large)!important}.px-xxx-large{padding-left:var(--bal-space-xxx-large)!important;padding-right:var(--bal-space-xxx-large)!important}.px-xxxx-large{padding-left:var(--bal-space-xxxx-large)!important;padding-right:var(--bal-space-xxxx-large)!important}.py-none{padding-top:0!important;padding-bottom:0!important}.py-auto{padding-top:auto!important;padding-bottom:auto!important}.py-xx-small{padding-top:var(--bal-space-xx-small)!important;padding-bottom:var(--bal-space-xx-small)!important}.py-x-small{padding-top:var(--bal-space-x-small)!important;padding-bottom:var(--bal-space-x-small)!important}.py-small{padding-top:var(--bal-space-small)!important;padding-bottom:var(--bal-space-small)!important}.py-normal{padding-top:var(--bal-space-normal)!important;padding-bottom:var(--bal-space-normal)!important}.py-medium{padding-top:var(--bal-space-medium)!important;padding-bottom:var(--bal-space-medium)!important}.py-large{padding-top:var(--bal-space-large)!important;padding-bottom:var(--bal-space-large)!important}.py-x-large{padding-top:var(--bal-space-x-large)!important;padding-bottom:var(--bal-space-x-large)!important}.py-xx-large{padding-top:var(--bal-space-xx-large)!important;padding-bottom:var(--bal-space-xx-large)!important}.py-xxx-large{padding-top:var(--bal-space-xxx-large)!important;padding-bottom:var(--bal-space-xxx-large)!important}.py-xxxx-large{padding-top:var(--bal-space-xxxx-large)!important;padding-bottom:var(--bal-space-xxxx-large)!important}@media screen and (min-width:769px),print{.px-none{padding-left:0!important;padding-right:0!important}.px-auto{padding-left:auto!important;padding-right:auto!important}.px-xx-small{padding-left:var(--bal-space-xx-small-tablet)!important;padding-right:var(--bal-space-xx-small-tablet)!important}.px-x-small{padding-left:var(--bal-space-x-small-tablet)!important;padding-right:var(--bal-space-x-small-tablet)!important}.px-small{padding-left:var(--bal-space-small-tablet)!important;padding-right:var(--bal-space-small-tablet)!important}.px-normal{padding-left:var(--bal-space-normal-tablet)!important;padding-right:var(--bal-space-normal-tablet)!important}.px-medium{padding-left:var(--bal-space-medium-tablet)!important;padding-right:var(--bal-space-medium-tablet)!important}.px-large{padding-left:var(--bal-space-large-tablet)!important;padding-right:var(--bal-space-large-tablet)!important}.px-x-large{padding-left:var(--bal-space-x-large-tablet)!important;padding-right:var(--bal-space-x-large-tablet)!important}.px-xx-large{padding-left:var(--bal-space-xx-large-tablet)!important;padding-right:var(--bal-space-xx-large-tablet)!important}.px-xxx-large{padding-left:var(--bal-space-xxx-large-tablet)!important;padding-right:var(--bal-space-xxx-large-tablet)!important}.px-xxxx-large{padding-left:var(--bal-space-xxxx-large-tablet)!important;padding-right:var(--bal-space-xxxx-large-tablet)!important}.py-none{padding-top:0!important;padding-bottom:0!important}.py-auto{padding-top:auto!important;padding-bottom:auto!important}.py-xx-small{padding-top:var(--bal-space-xx-small-tablet)!important;padding-bottom:var(--bal-space-xx-small-tablet)!important}.py-x-small{padding-top:var(--bal-space-x-small-tablet)!important;padding-bottom:var(--bal-space-x-small-tablet)!important}.py-small{padding-top:var(--bal-space-small-tablet)!important;padding-bottom:var(--bal-space-small-tablet)!important}.py-normal{padding-top:var(--bal-space-normal-tablet)!important;padding-bottom:var(--bal-space-normal-tablet)!important}.py-medium{padding-top:var(--bal-space-medium-tablet)!important;padding-bottom:var(--bal-space-medium-tablet)!important}.py-large{padding-top:var(--bal-space-large-tablet)!important;padding-bottom:var(--bal-space-large-tablet)!important}.py-x-large{padding-top:var(--bal-space-x-large-tablet)!important;padding-bottom:var(--bal-space-x-large-tablet)!important}.py-xx-large{padding-top:var(--bal-space-xx-large-tablet)!important;padding-bottom:var(--bal-space-xx-large-tablet)!important}.py-xxx-large{padding-top:var(--bal-space-xxx-large-tablet)!important;padding-bottom:var(--bal-space-xxx-large-tablet)!important}.py-xxxx-large{padding-top:var(--bal-space-xxxx-large-tablet)!important;padding-bottom:var(--bal-space-xxxx-large-tablet)!important}}@media screen and (min-width:1024px){.px-none{padding-left:0!important;padding-right:0!important}.px-auto{padding-left:auto!important;padding-right:auto!important}.px-xx-small{padding-left:var(--bal-space-xx-small-desktop)!important;padding-right:var(--bal-space-xx-small-desktop)!important}.px-x-small{padding-left:var(--bal-space-x-small-desktop)!important;padding-right:var(--bal-space-x-small-desktop)!important}.px-small{padding-left:var(--bal-space-small-desktop)!important;padding-right:var(--bal-space-small-desktop)!important}.px-normal{padding-left:var(--bal-space-normal-desktop)!important;padding-right:var(--bal-space-normal-desktop)!important}.px-medium{padding-left:var(--bal-space-medium-desktop)!important;padding-right:var(--bal-space-medium-desktop)!important}.px-large{padding-left:var(--bal-space-large-desktop)!important;padding-right:var(--bal-space-large-desktop)!important}.px-x-large{padding-left:var(--bal-space-x-large-desktop)!important;padding-right:var(--bal-space-x-large-desktop)!important}.px-xx-large{padding-left:var(--bal-space-xx-large-desktop)!important;padding-right:var(--bal-space-xx-large-desktop)!important}.px-xxx-large{padding-left:var(--bal-space-xxx-large-desktop)!important;padding-right:var(--bal-space-xxx-large-desktop)!important}.px-xxxx-large{padding-left:var(--bal-space-xxxx-large-desktop)!important;padding-right:var(--bal-space-xxxx-large-desktop)!important}.py-none{padding-top:0!important;padding-bottom:0!important}.py-auto{padding-top:auto!important;padding-bottom:auto!important}.py-xx-small{padding-top:var(--bal-space-xx-small-desktop)!important;padding-bottom:var(--bal-space-xx-small-desktop)!important}.py-x-small{padding-top:var(--bal-space-x-small-desktop)!important;padding-bottom:var(--bal-space-x-small-desktop)!important}.py-small{padding-top:var(--bal-space-small-desktop)!important;padding-bottom:var(--bal-space-small-desktop)!important}.py-normal{padding-top:var(--bal-space-normal-desktop)!important;padding-bottom:var(--bal-space-normal-desktop)!important}.py-medium{padding-top:var(--bal-space-medium-desktop)!important;padding-bottom:var(--bal-space-medium-desktop)!important}.py-large{padding-top:var(--bal-space-large-desktop)!important;padding-bottom:var(--bal-space-large-desktop)!important}.py-x-large{padding-top:var(--bal-space-x-large-desktop)!important;padding-bottom:var(--bal-space-x-large-desktop)!important}.py-xx-large{padding-top:var(--bal-space-xx-large-desktop)!important;padding-bottom:var(--bal-space-xx-large-desktop)!important}.py-xxx-large{padding-top:var(--bal-space-xxx-large-desktop)!important;padding-bottom:var(--bal-space-xxx-large-desktop)!important}.py-xxxx-large{padding-top:var(--bal-space-xxxx-large-desktop)!important;padding-bottom:var(--bal-space-xxxx-large-desktop)!important}}.pt-none{padding-top:0!important}.pt-auto{padding-top:auto!important}.pt-xx-small{padding-top:var(--bal-space-xx-small)!important}.pt-x-small{padding-top:var(--bal-space-x-small)!important}.pt-small{padding-top:var(--bal-space-small)!important}.pt-normal{padding-top:var(--bal-space-normal)!important}.pt-medium{padding-top:var(--bal-space-medium)!important}.pt-large{padding-top:var(--bal-space-large)!important}.pt-x-large{padding-top:var(--bal-space-x-large)!important}.pt-xx-large{padding-top:var(--bal-space-xx-large)!important}.pt-xxx-large{padding-top:var(--bal-space-xxx-large)!important}.pt-xxxx-large{padding-top:var(--bal-space-xxxx-large)!important}.pr-none{padding-right:0!important}.pr-auto{padding-right:auto!important}.pr-xx-small{padding-right:var(--bal-space-xx-small)!important}.pr-x-small{padding-right:var(--bal-space-x-small)!important}.pr-small{padding-right:var(--bal-space-small)!important}.pr-normal{padding-right:var(--bal-space-normal)!important}.pr-medium{padding-right:var(--bal-space-medium)!important}.pr-large{padding-right:var(--bal-space-large)!important}.pr-x-large{padding-right:var(--bal-space-x-large)!important}.pr-xx-large{padding-right:var(--bal-space-xx-large)!important}.pr-xxx-large{padding-right:var(--bal-space-xxx-large)!important}.pr-xxxx-large{padding-right:var(--bal-space-xxxx-large)!important}.pb-none{padding-bottom:0!important}.pb-auto{padding-bottom:auto!important}.pb-xx-small{padding-bottom:var(--bal-space-xx-small)!important}.pb-x-small{padding-bottom:var(--bal-space-x-small)!important}.pb-small{padding-bottom:var(--bal-space-small)!important}.pb-normal{padding-bottom:var(--bal-space-normal)!important}.pb-medium{padding-bottom:var(--bal-space-medium)!important}.pb-large{padding-bottom:var(--bal-space-large)!important}.pb-x-large{padding-bottom:var(--bal-space-x-large)!important}.pb-xx-large{padding-bottom:var(--bal-space-xx-large)!important}.pb-xxx-large{padding-bottom:var(--bal-space-xxx-large)!important}.pb-xxxx-large{padding-bottom:var(--bal-space-xxxx-large)!important}.pl-none{padding-left:0!important}.pl-auto{padding-left:auto!important}.pl-xx-small{padding-left:var(--bal-space-xx-small)!important}.pl-x-small{padding-left:var(--bal-space-x-small)!important}.pl-small{padding-left:var(--bal-space-small)!important}.pl-normal{padding-left:var(--bal-space-normal)!important}.pl-medium{padding-left:var(--bal-space-medium)!important}.pl-large{padding-left:var(--bal-space-large)!important}.pl-x-large{padding-left:var(--bal-space-x-large)!important}.pl-xx-large{padding-left:var(--bal-space-xx-large)!important}.pl-xxx-large{padding-left:var(--bal-space-xxx-large)!important}.pl-xxxx-large{padding-left:var(--bal-space-xxxx-large)!important}@media screen and (min-width:769px),print{.pt-none{padding-top:0!important}.pt-auto{padding-top:auto!important}.pt-xx-small{padding-top:var(--bal-space-xx-small-tablet)!important}.pt-x-small{padding-top:var(--bal-space-x-small-tablet)!important}.pt-small{padding-top:var(--bal-space-small-tablet)!important}.pt-normal{padding-top:var(--bal-space-normal-tablet)!important}.pt-medium{padding-top:var(--bal-space-medium-tablet)!important}.pt-large{padding-top:var(--bal-space-large-tablet)!important}.pt-x-large{padding-top:var(--bal-space-x-large-tablet)!important}.pt-xx-large{padding-top:var(--bal-space-xx-large-tablet)!important}.pt-xxx-large{padding-top:var(--bal-space-xxx-large-tablet)!important}.pt-xxxx-large{padding-top:var(--bal-space-xxxx-large-tablet)!important}.pr-none{padding-right:0!important}.pr-auto{padding-right:auto!important}.pr-xx-small{padding-right:var(--bal-space-xx-small-tablet)!important}.pr-x-small{padding-right:var(--bal-space-x-small-tablet)!important}.pr-small{padding-right:var(--bal-space-small-tablet)!important}.pr-normal{padding-right:var(--bal-space-normal-tablet)!important}.pr-medium{padding-right:var(--bal-space-medium-tablet)!important}.pr-large{padding-right:var(--bal-space-large-tablet)!important}.pr-x-large{padding-right:var(--bal-space-x-large-tablet)!important}.pr-xx-large{padding-right:var(--bal-space-xx-large-tablet)!important}.pr-xxx-large{padding-right:var(--bal-space-xxx-large-tablet)!important}.pr-xxxx-large{padding-right:var(--bal-space-xxxx-large-tablet)!important}.pb-none{padding-bottom:0!important}.pb-auto{padding-bottom:auto!important}.pb-xx-small{padding-bottom:var(--bal-space-xx-small-tablet)!important}.pb-x-small{padding-bottom:var(--bal-space-x-small-tablet)!important}.pb-small{padding-bottom:var(--bal-space-small-tablet)!important}.pb-normal{padding-bottom:var(--bal-space-normal-tablet)!important}.pb-medium{padding-bottom:var(--bal-space-medium-tablet)!important}.pb-large{padding-bottom:var(--bal-space-large-tablet)!important}.pb-x-large{padding-bottom:var(--bal-space-x-large-tablet)!important}.pb-xx-large{padding-bottom:var(--bal-space-xx-large-tablet)!important}.pb-xxx-large{padding-bottom:var(--bal-space-xxx-large-tablet)!important}.pb-xxxx-large{padding-bottom:var(--bal-space-xxxx-large-tablet)!important}.pl-none{padding-left:0!important}.pl-auto{padding-left:auto!important}.pl-xx-small{padding-left:var(--bal-space-xx-small-tablet)!important}.pl-x-small{padding-left:var(--bal-space-x-small-tablet)!important}.pl-small{padding-left:var(--bal-space-small-tablet)!important}.pl-normal{padding-left:var(--bal-space-normal-tablet)!important}.pl-medium{padding-left:var(--bal-space-medium-tablet)!important}.pl-large{padding-left:var(--bal-space-large-tablet)!important}.pl-x-large{padding-left:var(--bal-space-x-large-tablet)!important}.pl-xx-large{padding-left:var(--bal-space-xx-large-tablet)!important}.pl-xxx-large{padding-left:var(--bal-space-xxx-large-tablet)!important}.pl-xxxx-large{padding-left:var(--bal-space-xxxx-large-tablet)!important}}@media screen and (min-width:1024px){.pt-none{padding-top:0!important}.pt-auto{padding-top:auto!important}.pt-xx-small{padding-top:var(--bal-space-xx-small-desktop)!important}.pt-x-small{padding-top:var(--bal-space-x-small-desktop)!important}.pt-small{padding-top:var(--bal-space-small-desktop)!important}.pt-normal{padding-top:var(--bal-space-normal-desktop)!important}.pt-medium{padding-top:var(--bal-space-medium-desktop)!important}.pt-large{padding-top:var(--bal-space-large-desktop)!important}.pt-x-large{padding-top:var(--bal-space-x-large-desktop)!important}.pt-xx-large{padding-top:var(--bal-space-xx-large-desktop)!important}.pt-xxx-large{padding-top:var(--bal-space-xxx-large-desktop)!important}.pt-xxxx-large{padding-top:var(--bal-space-xxxx-large-desktop)!important}.pr-none{padding-right:0!important}.pr-auto{padding-right:auto!important}.pr-xx-small{padding-right:var(--bal-space-xx-small-desktop)!important}.pr-x-small{padding-right:var(--bal-space-x-small-desktop)!important}.pr-small{padding-right:var(--bal-space-small-desktop)!important}.pr-normal{padding-right:var(--bal-space-normal-desktop)!important}.pr-medium{padding-right:var(--bal-space-medium-desktop)!important}.pr-large{padding-right:var(--bal-space-large-desktop)!important}.pr-x-large{padding-right:var(--bal-space-x-large-desktop)!important}.pr-xx-large{padding-right:var(--bal-space-xx-large-desktop)!important}.pr-xxx-large{padding-right:var(--bal-space-xxx-large-desktop)!important}.pr-xxxx-large{padding-right:var(--bal-space-xxxx-large-desktop)!important}.pb-none{padding-bottom:0!important}.pb-auto{padding-bottom:auto!important}.pb-xx-small{padding-bottom:var(--bal-space-xx-small-desktop)!important}.pb-x-small{padding-bottom:var(--bal-space-x-small-desktop)!important}.pb-small{padding-bottom:var(--bal-space-small-desktop)!important}.pb-normal{padding-bottom:var(--bal-space-normal-desktop)!important}.pb-medium{padding-bottom:var(--bal-space-medium-desktop)!important}.pb-large{padding-bottom:var(--bal-space-large-desktop)!important}.pb-x-large{padding-bottom:var(--bal-space-x-large-desktop)!important}.pb-xx-large{padding-bottom:var(--bal-space-xx-large-desktop)!important}.pb-xxx-large{padding-bottom:var(--bal-space-xxx-large-desktop)!important}.pb-xxxx-large{padding-bottom:var(--bal-space-xxxx-large-desktop)!important}.pl-none{padding-left:0!important}.pl-auto{padding-left:auto!important}.pl-xx-small{padding-left:var(--bal-space-xx-small-desktop)!important}.pl-x-small{padding-left:var(--bal-space-x-small-desktop)!important}.pl-small{padding-left:var(--bal-space-small-desktop)!important}.pl-normal{padding-left:var(--bal-space-normal-desktop)!important}.pl-medium{padding-left:var(--bal-space-medium-desktop)!important}.pl-large{padding-left:var(--bal-space-large-desktop)!important}.pl-x-large{padding-left:var(--bal-space-x-large-desktop)!important}.pl-xx-large{padding-left:var(--bal-space-xx-large-desktop)!important}.pl-xxx-large{padding-left:var(--bal-space-xxx-large-desktop)!important}.pl-xxxx-large{padding-left:var(--bal-space-xxxx-large-desktop)!important}}
|