@baloise/ds-styles 0.0.5-nightly.e56f740

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +45 -0
  3. package/bin/index.mjs +1333 -0
  4. package/css/all.css +18468 -0
  5. package/css/all.css.map +1 -0
  6. package/css/all.min.css +1 -0
  7. package/css/baloise-design-system.css +18468 -0
  8. package/css/baloise-design-system.css.map +1 -0
  9. package/css/baloise-design-system.min.css +1 -0
  10. package/css/core.css +4423 -0
  11. package/css/core.css.map +1 -0
  12. package/css/core.min.css +1 -0
  13. package/css/font.css +29 -0
  14. package/css/font.css.map +1 -0
  15. package/css/font.min.css +1 -0
  16. package/css/mixins.css +2 -0
  17. package/css/mixins.css.map +1 -0
  18. package/css/mixins.min.css +0 -0
  19. package/css/normalize.css +351 -0
  20. package/css/normalize.css.map +1 -0
  21. package/css/normalize.min.css +1 -0
  22. package/css/structure.css +147 -0
  23. package/css/structure.css.map +1 -0
  24. package/css/structure.min.css +1 -0
  25. package/css/themes/compact.css +30 -0
  26. package/css/themes/compact.css.map +1 -0
  27. package/css/themes/compact.min.css +1 -0
  28. package/css/utilities/all.css +13112 -0
  29. package/css/utilities/all.css.map +1 -0
  30. package/css/utilities/all.min.css +1 -0
  31. package/css/utilities/background.css +1460 -0
  32. package/css/utilities/background.css.map +1 -0
  33. package/css/utilities/background.min.css +1 -0
  34. package/css/utilities/border.css +4697 -0
  35. package/css/utilities/border.css.map +1 -0
  36. package/css/utilities/border.min.css +1 -0
  37. package/css/utilities/elevation.css +317 -0
  38. package/css/utilities/elevation.css.map +1 -0
  39. package/css/utilities/elevation.min.css +1 -0
  40. package/css/utilities/flex.css +969 -0
  41. package/css/utilities/flex.css.map +1 -0
  42. package/css/utilities/flex.min.css +1 -0
  43. package/css/utilities/grid.css +1209 -0
  44. package/css/utilities/grid.css.map +1 -0
  45. package/css/utilities/grid.min.css +1 -0
  46. package/css/utilities/interaction.css +44 -0
  47. package/css/utilities/interaction.css.map +1 -0
  48. package/css/utilities/interaction.min.css +1 -0
  49. package/css/utilities/layout.css +1055 -0
  50. package/css/utilities/layout.css.map +1 -0
  51. package/css/utilities/layout.min.css +1 -0
  52. package/css/utilities/sizing.css +1931 -0
  53. package/css/utilities/sizing.css.map +1 -0
  54. package/css/utilities/sizing.min.css +1 -0
  55. package/css/utilities/spacing.css +1881 -0
  56. package/css/utilities/spacing.css.map +1 -0
  57. package/css/utilities/spacing.min.css +1 -0
  58. package/css/utilities/typography.css +763 -0
  59. package/css/utilities/typography.css.map +1 -0
  60. package/css/utilities/typography.min.css +1 -0
  61. package/package.json +36 -0
  62. package/sass/all.sass +6 -0
  63. package/sass/baloise-design-system.sass +1 -0
  64. package/sass/core.sass +37 -0
  65. package/sass/font.sass +1 -0
  66. package/sass/mixins.sass +3 -0
  67. package/sass/normalize.sass +359 -0
  68. package/sass/structure.sass +113 -0
  69. package/sass/themes/compact.sass +28 -0
  70. package/sass/utilities/all.sass +9 -0
  71. package/sass/utilities/background.sass +5 -0
  72. package/sass/utilities/border.sass +2 -0
  73. package/sass/utilities/elevation.sass +2 -0
  74. package/sass/utilities/flex.sass +2 -0
  75. package/sass/utilities/grid.sass +2 -0
  76. package/sass/utilities/interaction.sass +2 -0
  77. package/sass/utilities/layout.sass +12 -0
  78. package/sass/utilities/sizing.sass +2 -0
  79. package/sass/utilities/spacing.sass +2 -0
  80. package/sass/utilities/typography.sass +127 -0
  81. package/src/core/_all.sass +18 -0
  82. package/src/core/container.sass +23 -0
  83. package/src/core/form/_all.sass +6 -0
  84. package/src/core/form/button.sass +532 -0
  85. package/src/core/form/file.sass +139 -0
  86. package/src/core/form/input-textarea.sass +80 -0
  87. package/src/core/form/select.sass +111 -0
  88. package/src/core/form/shared.sass +69 -0
  89. package/src/core/form/tools.sass +209 -0
  90. package/src/core/grid.sass +477 -0
  91. package/src/core/link.sass +64 -0
  92. package/src/core/list.sass +85 -0
  93. package/src/core/table.sass +134 -0
  94. package/src/core/typography.sass +33 -0
  95. package/src/core/vars/_all.sass +7 -0
  96. package/src/core/vars/button.vars.sass +282 -0
  97. package/src/core/vars/form.vars.sass +137 -0
  98. package/src/core/vars/link.vars.sass +36 -0
  99. package/src/core/vars/list.vars.sass +20 -0
  100. package/src/core/vars/structure.vars.sass +47 -0
  101. package/src/core/vars/table.vars.sass +55 -0
  102. package/src/core/vars/typography.vars.sass +12 -0
  103. package/src/generated/background.sass +1091 -0
  104. package/src/generated/border.sass +3943 -0
  105. package/src/generated/elevation.sass +283 -0
  106. package/src/generated/flex.sass +831 -0
  107. package/src/generated/interaction.sass +26 -0
  108. package/src/generated/layout.sass +948 -0
  109. package/src/generated/sizing.sass +1703 -0
  110. package/src/generated/spacing.sass +1683 -0
  111. package/src/generated/typography.sass +453 -0
  112. package/src/mixins/_all.sass +7 -0
  113. package/src/mixins/bem.mixin.sass +39 -0
  114. package/src/mixins/breakpoint.mixin.sass +67 -0
  115. package/src/mixins/extends.sass +32 -0
  116. package/src/mixins/general.mixin.sass +95 -0
  117. package/src/mixins/svg.mixin.sass +6 -0
package/css/core.css ADDED
@@ -0,0 +1,4423 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Thu, 29 Feb 2024 06:13:56 GMT
4
+ */
5
+ :root {
6
+ --bal-text-shadow-normal: 0px 0px 4px rgba(0, 0, 0, 0.15), 0px 4px 12px rgba(0, 0, 0, 0.25), 0px 0px 80px rgba(0, 0, 0, 0.5); /* Increases readability when used on a image background. */
7
+ --bal-opacity-100: 1;
8
+ --bal-opacity-80: 0.8;
9
+ --bal-opacity-60: 0.6;
10
+ --bal-opacity-50: 0.5;
11
+ --bal-opacity-40: 0.4;
12
+ --bal-opacity-30: 0.3;
13
+ --bal-opacity-0: 0;
14
+ --bal-font-family-text: BaloiseCreateText, Arial, sans-serif;
15
+ --bal-font-family-title: BaloiseCreateHeadline, Arial, sans-serif;
16
+ --bal-shadow-large: 0 0 30px 0 rgba(0, 7, 57, 0.15); /* Large shadow are used for hover effects. */
17
+ --bal-shadow-normal: 0 0 10px 0 rgba(0, 7, 57, 0.15); /* Default shadow size to elevate an element. */
18
+ --bal-shadow-small: 0px 2px 5px 1px rgba(0, 7, 57, 0.12);
19
+ --bal-animation-transition-easing: cubic-bezier(0.25, 0.8, 0.5, 1);
20
+ --bal-animation-transition-duration: 300ms;
21
+ --bal-z-index-tooltip: 1300; /* Default z-index for tooltips. */
22
+ --bal-z-index-toast: 1200; /* Default z-index for toast and snackbar messages. */
23
+ --bal-z-index-modal: 1100; /* Default z-index for modals that stacks on top of overlays and other elements, but still allows popups to be visible. */
24
+ --bal-z-index-popup: 1000; /* Default z-index for popups that stacks on top of all other elements. */
25
+ --bal-z-index-navigation: 400; /* Default z-index for navigation. */
26
+ --bal-z-index-sticky: 300; /* Default z-index for sticky interface elements. */
27
+ --bal-z-index-mask: 200; /* Default z-index for masking interface elements. */
28
+ --bal-z-index-masked: 100; /* Default z-index for masked interface elements. */
29
+ --bal-z-index: 1; /* The default z-index for components and elements inside components. */
30
+ --bal-z-index-deep: -999999; /* Deep z-index is used to stack something behind everything else. */
31
+ --bal-text-line-height-text: 1.5; /* Default line height for all text elements. */
32
+ --bal-text-line-height-title: 1.3; /* Standard line-height for the headings. */
33
+ --bal-text-size-xxxxx-large-tablet: 5rem;
34
+ --bal-text-size-xxxxx-large: 3rem; /* Should only be uses to illustrate large stage areas. */
35
+ --bal-text-size-xxxx-large-tablet: 3rem;
36
+ --bal-text-size-xxxx-large: 2rem; /* Should only be uses to illustrate large stage areas. */
37
+ --bal-text-size-xxx-large-tablet: 2.5rem;
38
+ --bal-text-size-xxx-large: 1.75rem; /* Should only be used for stage titles and headings of level 1. */
39
+ --bal-text-size-xx-large-tablet: 2rem;
40
+ --bal-text-size-xx-large: 1.5rem; /* Should only be used for content titles and headings of level 2. */
41
+ --bal-text-size-x-large-tablet: 1.5rem;
42
+ --bal-text-size-x-large: 1.25rem; /* Should only be used for form titles, quick link navigation's and headings of level 3. */
43
+ --bal-text-size-large-tablet: 1.25rem;
44
+ --bal-text-size-large: 1.125rem; /* Should only be used for standard card titles and headings of level 4 or for lead text/paragraphs after a heading. */
45
+ --bal-text-size-medium-tablet: 1.125rem;
46
+ --bal-text-size-medium: 1rem; /* Should only be used in a 2/3 grid column to improve readability. */
47
+ --bal-text-size-normal: 1rem; /* Should only be used for label texts. */
48
+ --bal-text-size-small: 0.875rem; /* Should only be used for label texts. */
49
+ --bal-text-size-x-small: 0.75rem; /* Should only be used for helper texts or validation messages of a form control. */
50
+ --bal-font-weight-light: 300; /* Can be used for secondary headings. Only available with the font BaloiseCreateHeadline. */
51
+ --bal-font-weight-regular: 400; /* Default width of paragraphs. Only available with the font BaloiseCreateText. */
52
+ --bal-font-weight-bold: 700; /* Bold is used for headings, links and buttons. */
53
+ --bal-space-xxxx-large-desktop: 8rem;
54
+ --bal-space-xxxx-large-tablet: 6rem;
55
+ --bal-space-xxxx-large: 4rem; /* Space between sections */
56
+ --bal-space-xxx-large-desktop: 6rem;
57
+ --bal-space-xxx-large-tablet: 4.5rem;
58
+ --bal-space-xxx-large: 3.5rem; /* Footer bottom padding */
59
+ --bal-space-xx-large-desktop: 4rem;
60
+ --bal-space-xx-large-tablet: 3.5rem;
61
+ --bal-space-xx-large: 3rem;
62
+ --bal-space-x-large-desktop: 3rem;
63
+ --bal-space-x-large-tablet: 2.5rem;
64
+ --bal-space-x-large: 2rem; /* Space between heading and card */
65
+ --bal-space-large-desktop: 2rem;
66
+ --bal-space-large: 1.5rem; /* Space between cards */
67
+ --bal-space-medium-desktop: 1.5rem;
68
+ --bal-space-medium: 1.25rem; /* Inner padding of cards */
69
+ --bal-space-normal: 1rem; /* Space between large headings and content. */
70
+ --bal-space-small: 0.75rem;
71
+ --bal-space-x-small: 0.5rem; /* Space between text and icons or headings and content or clickable elements */
72
+ --bal-space-xx-small: 0.25rem; /* Minimum space between two elements */
73
+ --bal-radius-rounded: 9999px; /* The rounded radius token embraces a curvier design language, introducing a high degree of softness and fluidity to your elements. */
74
+ --bal-radius-large: 0.75rem; /* The large radius token makes a bold visual statement by significantly rounding the corners of elements. */
75
+ --bal-radius-normal: 0.25rem; /* The normal radius token strikes a balance between softness and structure. */
76
+ --bal-container-size-fluid: 100%; /* The container for fullscreen application with a large table for example. */
77
+ --bal-container-size-normal: 1496px; /* The default container size is versatile and suitable for various applications and website pages. */
78
+ --bal-container-size-compact: 896px; /* Tailored container size designed for form wizard applications or pages. */
79
+ --bal-container-size-detail-page: 744px; /* Deprecated container size for the website */
80
+ --bal-breakpoint-fullhd: 1920px; /* Crafted for Full HD displays, this breakpoint strikes a balance between detail and performance. */
81
+ --bal-breakpoint-widescreen: 1440px; /* Tailored for widescreen monitors, this breakpoint offers a panoramic view that accommodates expansive content layouts. */
82
+ --bal-breakpoint-high-definition: 1280px; /* Designed for high-definition displays, this breakpoint elevates your interface to a level of visual richness and clarity. */
83
+ --bal-breakpoint-desktop: 1024px; /* Optimized for desktop screens, this breakpoint provides a spacious canvas for your design, allowing for more intricate layouts and detailed content presentation. */
84
+ --bal-breakpoint-tablet: 769px; /* Tailored for tablet devices, this breakpoint ensures a seamless and optimized user experience on medium-sized screens. */
85
+ --bal-border-width-large: 0.25rem; /* The large border size makes a bold statement, creating strong visual contrasts and emphasizing key elements within your interface. */
86
+ --bal-border-width-normal: 0.125rem; /* The normal border size strikes a harmonious balance, offering a versatile choice for defining boundaries within your design. */
87
+ --bal-border-width-small: 0.063rem; /* The small border size is crafted for subtle, refined delineation. */
88
+ --bal-color-danger-6: #a01100;
89
+ --bal-color-danger-5: #cb1501;
90
+ --bal-color-danger-4: #ea1800;
91
+ --bal-color-danger-3: #f05d4d;
92
+ --bal-color-danger-2: #f7a299;
93
+ --bal-color-danger-1: #fce8e6;
94
+ --bal-color-warning-6: #c97612;
95
+ --bal-color-warning-5: #f99319;
96
+ --bal-color-warning-4: #ffbe19;
97
+ --bal-color-warning-3: #ffd25e;
98
+ --bal-color-warning-2: #ffe5a3;
99
+ --bal-color-warning-1: #fff9e8;
100
+ --bal-color-success-6: #0b5227;
101
+ --bal-color-success-5: #116b34;
102
+ --bal-color-success-4: #168741;
103
+ --bal-color-success-3: #5bab7a;
104
+ --bal-color-success-2: #a1cfb3;
105
+ --bal-color-success-1: #e8f3ec;
106
+ --bal-color-info-6: #0e457b;
107
+ --bal-color-info-5: #155ba3;
108
+ --bal-color-info-4: #1c77d2;
109
+ --bal-color-info-3: #60a0e0;
110
+ --bal-color-info-2: #a4c9ed;
111
+ --bal-color-info-1: #e8f1fb;
112
+ --bal-color-light-blue-6: #000a55;
113
+ --bal-color-light-blue-5: #0014aa;
114
+ --bal-color-light-blue-4: #6672cc;
115
+ --bal-color-light-blue-3: #56a7f5;
116
+ --bal-color-light-blue-2: #a7d1fa;
117
+ --bal-color-light-blue-1: #e5f1fe;
118
+ --bal-color-black: #000000;
119
+ --bal-color-grey-6: #313131;
120
+ --bal-color-grey-5: #747474;
121
+ --bal-color-grey-4: #b6b6b6;
122
+ --bal-color-grey-3: #e8e8e8;
123
+ --bal-color-grey-2: #f6f6f6;
124
+ --bal-color-grey-1: #fafafa;
125
+ --bal-color-red-6: #99172d;
126
+ --bal-color-red-5: #d9304c;
127
+ --bal-color-red-4: #ff596f;
128
+ --bal-color-red-3: #ffaca6;
129
+ --bal-color-red-2: #ffd7d7;
130
+ --bal-color-red-1: #ffeef1;
131
+ --bal-color-yellow-6: #b24a00;
132
+ --bal-color-yellow-5: #fa9319;
133
+ --bal-color-yellow-4: #ffbe19;
134
+ --bal-color-yellow-3: #fae052;
135
+ --bal-color-yellow-2: #ffecbc;
136
+ --bal-color-yellow-1: #fff9e8;
137
+ --bal-color-purple-6: #6c2273;
138
+ --bal-color-purple-5: #9f52cc;
139
+ --bal-color-purple-4: #be82fa;
140
+ --bal-color-purple-3: #b8b2ff;
141
+ --bal-color-purple-2: #e1d9ff;
142
+ --bal-color-purple-1: #f9f3ff;
143
+ --bal-color-green-6: #1b5951;
144
+ --bal-color-green-5: #00b28f;
145
+ --bal-color-green-4: #21d9ac;
146
+ --bal-color-green-3: #94e3d4;
147
+ --bal-color-green-2: #cbf2ec;
148
+ --bal-color-green-1: #e9fbf7;
149
+ --bal-color-white: #ffffff;
150
+ --bal-color-primary-6: #000739;
151
+ --bal-color-primary-5: #000d6e;
152
+ --bal-color-primary-4: #293485;
153
+ --bal-color-primary-3: #656ea8;
154
+ --bal-color-primary-2: #b3b6d4;
155
+ --bal-color-primary-1: #e5e7f0;
156
+ --bal-text-size-xxxxx-large-desktop: var(--bal-text-size-xxxxx-large-tablet);
157
+ --bal-text-size-xxxx-large-desktop: var(--bal-text-size-xxxx-large-tablet);
158
+ --bal-text-size-xxx-large-desktop: var(--bal-text-size-xxx-large-tablet);
159
+ --bal-text-size-xx-large-desktop: var(--bal-text-size-xx-large-tablet);
160
+ --bal-text-size-x-large-desktop: var(--bal-text-size-x-large-tablet);
161
+ --bal-text-size-large-desktop: var(--bal-text-size-large-tablet);
162
+ --bal-text-size-medium-desktop: var(--bal-text-size-medium-tablet);
163
+ --bal-text-size-normal-desktop: var(--bal-text-size-normal);
164
+ --bal-text-size-normal-tablet: var(--bal-text-size-normal);
165
+ --bal-text-size-small-desktop: var(--bal-text-size-small);
166
+ --bal-text-size-small-tablet: var(--bal-text-size-small);
167
+ --bal-text-size-x-small-desktop: var(--bal-text-size-x-small);
168
+ --bal-text-size-x-small-tablet: var(--bal-text-size-x-small);
169
+ --bal-space-large-tablet: var(--bal-space-large);
170
+ --bal-space-medium-tablet: var(--bal-space-medium);
171
+ --bal-space-normal-desktop: var(--bal-space-normal);
172
+ --bal-space-normal-tablet: var(--bal-space-normal);
173
+ --bal-space-small-desktop: var(--bal-space-small);
174
+ --bal-space-small-tablet: var(--bal-space-small);
175
+ --bal-space-x-small-desktop: var(--bal-space-x-small);
176
+ --bal-space-x-small-tablet: var(--bal-space-x-small);
177
+ --bal-space-xx-small-desktop: var(--bal-space-xx-small);
178
+ --bal-space-xx-small-tablet: var(--bal-space-xx-small);
179
+ --bal-column-gap: var(--bal-space-normal);
180
+ --bal-container-space-desktop: var(--bal-space-x-large-desktop); /* Default space on desktops of a container to left and right side. */
181
+ --bal-container-space-tablet: var(--bal-space-x-large-tablet); /* Default space on tablets of a container to left and right side. */
182
+ --bal-container-space: var(--bal-space-normal); /* Default space of a container to left and right side. */
183
+ --bal-color-text-inverted-pressed: var(--bal-color-info-3);
184
+ --bal-color-text-inverted-hovered: var(--bal-color-light-blue-2);
185
+ --bal-color-text-inverted-disabled: var(--bal-color-primary-3);
186
+ --bal-color-text-inverted: var(--bal-color-white);
187
+ --bal-color-text-danger-pressed: var(--bal-color-danger-6);
188
+ --bal-color-text-danger-hovered: var(--bal-color-danger-5);
189
+ --bal-color-text-primary-pressed: var(--bal-color-primary-6);
190
+ --bal-color-text-primary-hovered: var(--bal-color-light-blue-5);
191
+ --bal-color-text-black: var(--bal-color-black);
192
+ --bal-color-text-danger: var(--bal-color-danger-4);
193
+ --bal-color-text-success: var(--bal-color-success-4);
194
+ --bal-color-text-warning: var(--bal-color-warning-5);
195
+ --bal-color-text-info: var(--bal-color-info-4);
196
+ --bal-color-text-grey-dark: var(--bal-color-grey-6); /* Font color for disabled elements */
197
+ --bal-color-text-grey: var(--bal-color-grey-5); /* Font color for placeholders */
198
+ --bal-color-text-grey-light: var(--bal-color-grey-4); /* Font color for disabled texts */
199
+ --bal-color-text-white: var(--bal-color-white); /* Main font color for all headings and paragraphs on a dark background. */
200
+ --bal-color-text-primary-light: var(--bal-color-primary-3); /* Secondary font color for help messages. */
201
+ --bal-color-text-primary: var(--bal-color-primary-5); /* Main font color for all headings and paragraphs. */
202
+ --bal-color-shadow-focus-inverted-end: var(--bal-color-yellow-3);
203
+ --bal-color-shadow-focus-inverted-start: var(--bal-color-white);
204
+ --bal-color-shadow-focus-end: var(--bal-color-purple-6);
205
+ --bal-color-shadow-focus-start: var(--bal-color-white);
206
+ --bal-color-danger: var(--bal-color-danger-3);
207
+ --bal-color-warning: var(--bal-color-warning-3);
208
+ --bal-color-success: var(--bal-color-success-3);
209
+ --bal-color-info: var(--bal-color-info-3);
210
+ --bal-color-red: var(--bal-color-red-3);
211
+ --bal-color-yellow: var(--bal-color-yellow-3);
212
+ --bal-color-green: var(--bal-color-green-3);
213
+ --bal-color-purple: var(--bal-color-purple-3);
214
+ --bal-color-light-blue: var(--bal-color-light-blue-1);
215
+ --bal-color-grey: var(--bal-color-grey-3);
216
+ --bal-color-primary: var(--bal-color-primary-5);
217
+ --bal-color-border-inverted-primary-pressed: var(--bal-color-light-blue-4);
218
+ --bal-color-border-inverted-primary-hovered: var(--bal-color-light-blue-2);
219
+ --bal-color-border-inverted-primary: var(--bal-color-primary-4);
220
+ --bal-color-border-inverted-disabled: var(--bal-color-primary-3); /* Disabled. */
221
+ --bal-color-border-inverted: var(--bal-color-white); /* Default color on dark backgrounds. */
222
+ --bal-color-border-yellow-pressed: var(--bal-color-yellow-6);
223
+ --bal-color-border-yellow-hovered: var(--bal-color-yellow-5);
224
+ --bal-color-border-red-pressed: var(--bal-color-red-6);
225
+ --bal-color-border-red-hovered: var(--bal-color-red-5);
226
+ --bal-color-border-purple-pressed: var(--bal-color-purple-6);
227
+ --bal-color-border-purple-hovered: var(--bal-color-purple-5);
228
+ --bal-color-border-green-pressed: var(--bal-color-green-6);
229
+ --bal-color-border-green-hovered: var(--bal-color-green-5);
230
+ --bal-color-border-danger-pressed: var(--bal-color-danger-6);
231
+ --bal-color-border-danger-hovered: var(--bal-color-danger-5);
232
+ --bal-color-border-warning-pressed: var(--bal-color-warning-6);
233
+ --bal-color-border-warning-hovered: var(--bal-color-warning-5);
234
+ --bal-color-border-success-pressed: var(--bal-color-success-6);
235
+ --bal-color-border-success-hovered: var(--bal-color-success-5);
236
+ --bal-color-border-primary-pressed: var(--bal-color-primary-6);
237
+ --bal-color-border-primary-hovered: var(--bal-color-light-blue-5);
238
+ --bal-color-border-info-pressed: var(--bal-color-info-6);
239
+ --bal-color-border-info-hovered: var(--bal-color-info-5);
240
+ --bal-color-border-danger: var(--bal-color-danger-4); /* Use for invalid state. */
241
+ --bal-color-border-warning: var(--bal-color-warning-5); /* Use for warning/hint state. */
242
+ --bal-color-border-success: var(--bal-color-success-4); /* Use for valid state. */
243
+ --bal-color-border-info: var(--bal-color-info-4);
244
+ --bal-color-border-white: var(--bal-color-white); /* Default color on dark backgrounds. */
245
+ --bal-color-border-grey-dark: var(--bal-color-grey-4); /* Use for disabled state. */
246
+ --bal-color-border-grey: var(--bal-color-grey-3); /* Default border color */
247
+ --bal-color-border-grey-light: var(--bal-color-grey-2); /* Default input color or can be use for a divider */
248
+ --bal-color-border-primary-light: var(--bal-color-primary-3); /* Disabled or secondary color on dark backgrounds */
249
+ --bal-color-border-primary: var(--bal-color-primary-5); /* Use for focused or selected state. */
250
+ --bal-color-border: var(--bal-color-grey-3); /* Default border color */
251
+ --bal-color-background-danger: var(--bal-color-danger-3);
252
+ --bal-color-background-warning: var(--bal-color-warning-3);
253
+ --bal-color-background-success: var(--bal-color-success-3);
254
+ --bal-color-background-info: var(--bal-color-info-3);
255
+ --bal-color-background-disabled: var(--bal-color-grey-3);
256
+ --bal-color-background-grey: var(--bal-color-grey-3);
257
+ --bal-color-background-grey-light: var(--bal-color-grey-2);
258
+ --bal-color-background-white: var(--bal-color-white);
259
+ --bal-color-background-red: var(--bal-color-red-3); /* Use this background for call to action sections */
260
+ --bal-color-background-red-light: var(--bal-color-red-1); /* Default brand background color to use */
261
+ --bal-color-background-yellow: var(--bal-color-yellow-3); /* Use this background for call to action sections */
262
+ --bal-color-background-yellow-light: var(--bal-color-yellow-1); /* Default brand background color to use */
263
+ --bal-color-background-purple: var(--bal-color-purple-3); /* Use this background for call to action sections */
264
+ --bal-color-background-purple-light: var(--bal-color-purple-1); /* Default brand background color to use */
265
+ --bal-color-background-green: var(--bal-color-green-3); /* Use this background for call to action sections */
266
+ --bal-color-background-green-light: var(--bal-color-green-1); /* Default brand background color to use */
267
+ --bal-color-background-primary: var(--bal-color-primary-5); /* Blue is our accent color and it is present on every touchpoint. Our logo, text, buttons and links are blue. */
268
+ }
269
+
270
+ :root {
271
+ --bal-line-height-x-small: 1.125rem;
272
+ --bal-line-height-small: 1.25rem;
273
+ --bal-line-height-normal: 1.5rem;
274
+ --bal-line-height-medium: 1.5rem;
275
+ --bal-line-height-large: 1.5rem;
276
+ --bal-line-height-x-large: 2rem;
277
+ --bal-line-height-xx-large: 2rem;
278
+ --bal-line-height-xxx-large: 2rem;
279
+ --bal-line-height-xxxx-large: 2.5rem;
280
+ --bal-line-height-xxxxx-large: 3.5rem;
281
+ --bal-line-height-tablet-x-small: 1.125rem;
282
+ --bal-line-height-tablet-small: 1.25rem;
283
+ --bal-line-height-tablet-normal: 1.5rem;
284
+ --bal-line-height-tablet-medium: 1.625rem;
285
+ --bal-line-height-tablet-large: 2rem;
286
+ --bal-line-height-tablet-x-large: 2rem;
287
+ --bal-line-height-tablet-xx-large: 2.5rem;
288
+ --bal-line-height-tablet-xxx-large: 3rem;
289
+ --bal-line-height-tablet-xxxx-large: 3.5rem;
290
+ --bal-line-height-tablet-xxxxx-large: 6rem;
291
+ --bal-line-height-desktop-x-small: 1.125rem;
292
+ --bal-line-height-desktop-small: 1.25rem;
293
+ --bal-line-height-desktop-normal: 1.5rem;
294
+ --bal-line-height-desktop-medium: 1.625rem;
295
+ --bal-line-height-desktop-large: 2rem;
296
+ --bal-line-height-desktop-x-large: 2rem;
297
+ --bal-line-height-desktop-xx-large: 2.5rem;
298
+ --bal-line-height-desktop-xxx-large: 3rem;
299
+ --bal-line-height-desktop-xxxx-large: 3.5rem;
300
+ --bal-line-height-desktop-xxxxx-large: 6rem;
301
+ }
302
+
303
+ .table-container:not(:last-child), .table:not(:last-child) {
304
+ margin-bottom: 0.25rem;
305
+ }
306
+
307
+ @media (hover: hover) and (pointer: fine) {
308
+ a.link:not(.button):focus-visible,
309
+ a.is-link:not(.button):focus-visible, .button:focus-visible:not(:active), .button.is-focused:not(:active) {
310
+ box-shadow: var(--bal-focus-shadow) !important;
311
+ }
312
+ }
313
+
314
+ @media (hover: hover) and (pointer: fine) {
315
+ a.link:not(.button).is-light:focus-visible,
316
+ a.is-link:not(.button).is-light:focus-visible, a.link:not(.button).is-inverted:focus-visible,
317
+ a.is-link:not(.button).is-inverted:focus-visible, .button.is-inverted.is-light:focus-visible:not(:active), .button.is-inverted.is-light.is-focused:not(:active), .button.is-inverted:focus-visible:not(:active), .button.is-inverted.is-focused:not(:active), .button.is-light:focus-visible:not(:active), .button.is-light.is-focused:not(:active) {
318
+ box-shadow: var(--bal-focus-shadow-inverted) !important;
319
+ }
320
+ }
321
+
322
+ .button.is-disabled.is-inverted, .button.is-disabled, .button.is-disabled:hover, .button.is-disabled:active, .button.is-disabled:focus, .button.is-inverted:disabled, .button:disabled, .file.is-disabled .file-label,
323
+ .file.is-disabled .file-cta {
324
+ cursor: default !important;
325
+ pointer-events: none !important;
326
+ }
327
+
328
+ .button, .file {
329
+ -webkit-touch-callout: none;
330
+ -webkit-user-select: none;
331
+ -moz-user-select: none;
332
+ user-select: none;
333
+ }
334
+
335
+ .button {
336
+ -moz-osx-font-smoothing: grayscale;
337
+ -webkit-font-smoothing: antialiased;
338
+ }
339
+
340
+ /**
341
+ * * @prop --bal-body-background: Body background color
342
+ * * @prop --bal-body-font-family: Body font family
343
+ * * @prop --bal-body-color: Body text color
344
+ * * @prop --bal-body-font-weight: Body text weight
345
+ * * @prop --bal-body-font-size: Body font size
346
+ * * @prop --bal-body-line-height: Body line height
347
+ * * @prop --bal-divider-background: Divider background color
348
+ * * @prop --bal-focus-shadow-start-color: Focus shadow start color
349
+ * * @prop --bal-focus-shadow-end-color: Focus shadow start end
350
+ * * @prop --bal-focus-shadow: Focus shadow
351
+ * * @prop --bal-focus-shadow-inset: Focus shadow inset
352
+ * * @prop --bal-focus-shadow-inverted-start-color: Focus shadow start color
353
+ * * @prop --bal-focus-shadow-inverted-end-color: Focus shadow end color
354
+ * * @prop --bal-focus-shadow-inverted: Focus shadow on a dark background
355
+ * * @prop --bal-focus-shadow-inverted-inset: Focus shadow on a dark background inset
356
+ * * @prop --bal-small-font-size: TBD
357
+ * * @prop --bal-strong-color: TBD
358
+ * * @prop --bal-strong-font-weight: TBD
359
+ * */
360
+ :root {
361
+ --bal-body-background: var(--bal-color-text-white);
362
+ --bal-body-font-family: var(--bal-font-family-text);
363
+ --bal-body-color: var(--bal-color-text-primary);
364
+ --bal-body-font-weight: var(--bal-font-weight-regular);
365
+ --bal-body-font-size: 16px;
366
+ --bal-body-line-height: var(--bal-line-height-normal);
367
+ --bal-small-font-size: var(--bal-text-size-small);
368
+ --bal-strong-color: var(--bal-color-text-primary);
369
+ --bal-strong-font-weight: var(--bal-font-weight-bold);
370
+ --bal-divider-background: var(--bal-color-primary-2);
371
+ --bal-focus-shadow-start-color: var(--bal-color-white);
372
+ --bal-focus-shadow-end-color: var(--bal-color-purple-6);
373
+ --bal-focus-shadow: var(--bal-focus-shadow-start-color) 0 0 0 2px, var(--bal-focus-shadow-end-color) 0 0 0 5px;
374
+ --bal-focus-shadow-inset: inset var(--bal-focus-shadow-end-color) 0 0 0 3px, inset var(--bal-focus-shadow-start-color) 0 0 0 5px;
375
+ --bal-focus-shadow-inverted-start-color: var(--bal-color-white);
376
+ --bal-focus-shadow-inverted-end-color: var(--bal-color-yellow);
377
+ --bal-focus-shadow-inverted: var(--bal-focus-shadow-inverted-start-color) 0 0 0 2px, var(--bal-focus-shadow-inverted-end-color) 0 0 0 5px;
378
+ --bal-focus-shadow-inverted-inset: inset var(--bal-focus-shadow-inverted-end-color) 0 0 0 3px, inset var(--bal-focus-shadow-inverted-start-color) 0 0 0 5px;
379
+ }
380
+
381
+ /**
382
+ * * @prop --bal-title-font-family: Title font family
383
+ * * @prop --bal-title-font-weight: Title font weight
384
+ * * @prop --bal-subtitle-font-family: Subtitle font family
385
+ * * @prop --bal-subtitle-font-weight: Subtitle font weight
386
+ * */
387
+ :root {
388
+ --bal-title-font-family: var(--bal-font-family-title);
389
+ --bal-title-font-weight: var(--bal-font-weight-bold);
390
+ --bal-subtitle-font-family: var(--bal-font-family-title);
391
+ --bal-subtitle-font-weight: var(--bal-font-weight-light);
392
+ }
393
+
394
+ /**
395
+ * * @prop --bal-link-color: Default link color
396
+ * * @prop --bal-link-color-hover: Link color on hover
397
+ * * @prop --bal-link-color-active: Link color on pressed
398
+ * * @prop --bal-link-font-weight: Default link font weight
399
+ * * @prop --bal-link-radius: Default link border radius
400
+ * * @prop --bal-link-text-decoration: Link text decoration
401
+ * * @prop --bal-link-text-underline-offset: Link decoration underline-offset 0.25rem
402
+ * * @prop --bal-link-text-decoration-thickness: Link decoration thickness 2px
403
+ * * @prop --bal-link-inverted-color: Link color on dark background
404
+ * * @prop --bal-link-inverted-color-hover: Link color on dark background when hovering
405
+ * * @prop --bal-link-inverted-color-active: Link color on dark background when pressing
406
+ * * @prop --bal-link-inverted-light-font-weight: Link font weight on dark background
407
+ * * @prop --bal-link-inverted-light-text-decoration: Link text-decoration on dark background
408
+ * */
409
+ :root {
410
+ --bal-link-color: var(--bal-color-text-primary);
411
+ --bal-link-color-hover: var(--bal-color-text-primary-hovered);
412
+ --bal-link-color-active: var(--bal-color-text-primary-pressed);
413
+ --bal-link-font-weight: var(--bal-font-weight-bold);
414
+ --bal-link-radius: var(--bal-radius-normal);
415
+ --bal-link-background: transparent;
416
+ --bal-link-border-color: transparent;
417
+ --bal-link-text-decoration: underline;
418
+ --bal-link-text-underline-offset: 0.25rem;
419
+ --bal-link-text-decoration-thickness: var(--bal-border-width-normal);
420
+ --bal-link-inverted-color: var(--bal-color-text-inverted);
421
+ --bal-link-inverted-color-hover: var(--bal-color-text-inverted-hovered);
422
+ --bal-link-inverted-color-active: var(--bal-color-text-inverted-pressed);
423
+ --bal-link-inverted-light-font-weight: var(--bal-font-weight-regular);
424
+ --bal-link-inverted-light-text-decoration: none;
425
+ }
426
+
427
+ /**
428
+ * * @prop --bal-button-font-size: TBD
429
+ * * @prop --bal-button-line-height: TBD
430
+ * * @prop --bal-button-font-family: TBD
431
+ * * @prop --bal-button-font-weight: TBD
432
+ * * @prop --bal-button-radius: TBD
433
+ * * @prop --bal-button-border-style: TBD
434
+ * * @prop --bal-button-border-width: TBD
435
+ * * @prop --bal-button-border-color: TBD
436
+ * * @prop --bal-button-border-color-hover: TBD
437
+ * * @prop --bal-button-border-color-active: TBD
438
+ * * @prop --bal-button-color: TBD
439
+ * * @prop --bal-button-color-hover: TBD
440
+ * * @prop --bal-button-color-active: TBD
441
+ * * @prop --bal-button-background: TBD
442
+ * * @prop --bal-button-background-hover: TBD
443
+ * * @prop --bal-button-background-active: TBD
444
+ * * @prop --bal-button-small-font-size: TBD
445
+ * * @prop --bal-button-primary-color: TBD
446
+ * * @prop --bal-button-primary-color-hover: TBD
447
+ * * @prop --bal-button-primary-color-active: TBD
448
+ * * @prop --bal-button-primary-border-color: TBD
449
+ * * @prop --bal-button-primary-border-color-hover: TBD
450
+ * * @prop --bal-button-primary-border-color-active: TBD
451
+ * * @prop --bal-button-primary-background: TBD
452
+ * * @prop --bal-button-primary-background-hover: TBD
453
+ * * @prop --bal-button-primary-background-active: TBD
454
+ * * @prop --bal-button-text-border-color-hover: TBD
455
+ * * @prop --bal-button-text-border-color-active: TBD
456
+ * * @prop --bal-button-text-background-hover: TBD
457
+ * * @prop --bal-button-text-background-active: TBD
458
+ * * @prop --bal-button-light-color: TBD
459
+ * * @prop --bal-button-light-color-hover: TBD
460
+ * * @prop --bal-button-light-color-active: TBD
461
+ * * @prop --bal-button-light-border-color: TBD
462
+ * * @prop --bal-button-light-border-color-hover: TBD
463
+ * * @prop --bal-button-light-border-color-active: TBD
464
+ * * @prop --bal-button-light-background: TBD
465
+ * * @prop --bal-button-light-background-hover: TBD
466
+ * * @prop --bal-button-light-background-active: TBD
467
+ * * @prop --bal-button-success-color: TBD
468
+ * * @prop --bal-button-success-color-hover: TBD
469
+ * * @prop --bal-button-success-color-active: TBD
470
+ * * @prop --bal-button-success-border-color: TBD
471
+ * * @prop --bal-button-success-border-color-hover: TBD
472
+ * * @prop --bal-button-success-border-color-active: TBD
473
+ * * @prop --bal-button-success-background: TBD
474
+ * * @prop --bal-button-success-background-hover: TBD
475
+ * * @prop --bal-button-success-background-active: TBD
476
+ * * @prop --bal-button-warning-color: TBD
477
+ * * @prop --bal-button-warning-color-hover: TBD
478
+ * * @prop --bal-button-warning-color-active: TBD
479
+ * * @prop --bal-button-warning-border-color: TBD
480
+ * * @prop --bal-button-warning-border-color-hover: TBD
481
+ * * @prop --bal-button-warning-border-color-active: TBD
482
+ * * @prop --bal-button-warning-background: TBD
483
+ * * @prop --bal-button-warning-background-hover: TBD
484
+ * * @prop --bal-button-warning-background-active: TBD
485
+ * * @prop --bal-button-danger-color: TBD
486
+ * * @prop --bal-button-danger-color-hover: TBD
487
+ * * @prop --bal-button-danger-color-active: TBD
488
+ * * @prop --bal-button-danger-border-color: TBD
489
+ * * @prop --bal-button-danger-border-color-hover: TBD
490
+ * * @prop --bal-button-danger-border-color-active: TBD
491
+ * * @prop --bal-button-danger-background: TBD
492
+ * * @prop --bal-button-danger-background-hover: TBD
493
+ * * @prop --bal-button-danger-background-active: TBD
494
+ * * @prop --bal-button-disablde-color: TBD
495
+ * * @prop --bal-button-disablde-border-color: TBD
496
+ * * @prop --bal-button-disablde-background: TBD
497
+ * * @prop --bal-button-inverted-color: TBD
498
+ * * @prop --bal-button-inverted-color-hover: TBD
499
+ * * @prop --bal-button-inverted-color-active: TBD
500
+ * * @prop --bal-button-inverted-border-color: TBD
501
+ * * @prop --bal-button-inverted-border-color-hover: TBD
502
+ * * @prop --bal-button-inverted-border-color-active: TBD
503
+ * * @prop --bal-button-inverted-background: TBD
504
+ * * @prop --bal-button-inverted-background-hover: TBD
505
+ * * @prop --bal-button-inverted-background-active: TBD
506
+ * * @prop --bal-button-inverted-primary-color: TBD
507
+ * * @prop --bal-button-inverted-primary-color-hover: TBD
508
+ * * @prop --bal-button-inverted-primary-color-active: TBD
509
+ * * @prop --bal-button-inverted-primary-border-color: TBD
510
+ * * @prop --bal-button-inverted-primary-border-color-hover: TBD
511
+ * * @prop --bal-button-inverted-primary-border-color-active: TBD
512
+ * * @prop --bal-button-inverted-primary-background: TBD
513
+ * * @prop --bal-button-inverted-primary-background-hover: TBD
514
+ * * @prop --bal-button-inverted-primary-background-active: TBD
515
+ * * @prop --bal-button-inverted-text-color: TBD
516
+ * * @prop --bal-button-inverted-text-color-hover: TBD
517
+ * * @prop --bal-button-inverted-text-color-active: TBD
518
+ * * @prop --bal-button-inverted-text-border-color: TBD
519
+ * * @prop --bal-button-inverted-text-border-color-hover: TBD
520
+ * * @prop --bal-button-inverted-text-border-color-active: TBD
521
+ * * @prop --bal-button-inverted-text-background: TBD
522
+ * * @prop --bal-button-inverted-text-background-hover: TBD
523
+ * * @prop --bal-button-inverted-text-background-active: TBD
524
+ * * @prop --bal-button-inverted-light-color: TBD
525
+ * * @prop --bal-button-inverted-light-color-hover: TBD
526
+ * * @prop --bal-button-inverted-light-color-active: TBD
527
+ * * @prop --bal-button-inverted-light-border-color: TBD
528
+ * * @prop --bal-button-inverted-light-border-color-hover: TBD
529
+ * * @prop --bal-button-inverted-light-border-color-active: TBD
530
+ * * @prop --bal-button-inverted-light-background: TBD
531
+ * * @prop --bal-button-inverted-light-background-hover: TBD
532
+ * * @prop --bal-button-inverted-light-background-active: TBD
533
+ * */
534
+ :root {
535
+ --bal-button-font-size: var(--bal-text-size-normal);
536
+ --bal-button-line-height: var(--bal-line-height-normal);
537
+ --bal-button-font-family: var(--bal-font-family-title);
538
+ --bal-button-font-weight: var(--bal-font-weight-bold);
539
+ --bal-button-radius: var(--bal-radius-normal);
540
+ --bal-button-border-style: solid;
541
+ --bal-button-border-width: var(--bal-border-width-normal);
542
+ --bal-button-border-color: var(--bal-color-border-primary);
543
+ --bal-button-border-color-hover: var(--bal-color-border-primary-hovered);
544
+ --bal-button-border-color-active: var(--bal-color-border-primary-pressed);
545
+ --bal-button-color: var(--bal-color-text-primary);
546
+ --bal-button-color-hover: var(--bal-color-text-primary-hovered);
547
+ --bal-button-color-active: var(--bal-color-text-primary-pressed);
548
+ --bal-button-background: transparent;
549
+ --bal-button-background-hover: var(--bal-color-light-blue);
550
+ --bal-button-background-active: var(--bal-color-light-blue);
551
+ --bal-button-small-font-size: var(--bal-text-size-small);
552
+ --bal-button-primary-color: var(--bal-color-text-white);
553
+ --bal-button-primary-color-hover: var(--bal-color-text-white);
554
+ --bal-button-primary-color-active: var(--bal-color-text-white);
555
+ --bal-button-primary-border-color: var(--bal-color-border-primary);
556
+ --bal-button-primary-border-color-hover: var(--bal-color-border-primary-hovered);
557
+ --bal-button-primary-border-color-active: var(--bal-color-border-primary-pressed);
558
+ --bal-button-primary-background: var(--bal-color-primary);
559
+ --bal-button-primary-background-hover: var(--bal-color-light-blue-5);
560
+ --bal-button-primary-background-active: var(--bal-color-primary-6);
561
+ --bal-button-text-border-color-hover: var(--bal-color-light-blue);
562
+ --bal-button-text-border-color-active: var(--bal-color-light-blue);
563
+ --bal-button-text-background-hover: var(--bal-color-light-blue);
564
+ --bal-button-text-background-active: var(--bal-color-light-blue);
565
+ --bal-button-light-color: var(--bal-color-text-primary);
566
+ --bal-button-light-color-hover: var(--bal-color-text-primary);
567
+ --bal-button-light-color-active: var(--bal-color-text-primary);
568
+ --bal-button-light-border-color: var(--bal-color-grey-2);
569
+ --bal-button-light-border-color-hover: var(--bal-color-light-blue-1);
570
+ --bal-button-light-border-color-active: var(--bal-color-light-blue-2);
571
+ --bal-button-light-background: var(--bal-color-grey-2);
572
+ --bal-button-light-background-hover: var(--bal-color-light-blue-1);
573
+ --bal-button-light-background-active: var(--bal-color-light-blue-2);
574
+ --bal-button-tertiary-purple-color: var(--bal-color-text-primary);
575
+ --bal-button-tertiary-purple-color-hover: var(--bal-color-text-primary);
576
+ --bal-button-tertiary-purple-color-active: var(--bal-color-text-primary-pressed);
577
+ --bal-button-tertiary-purple-border-color: var(--bal-color-purple-1);
578
+ --bal-button-tertiary-purple-border-color-hover: var(--bal-color-purple-5);
579
+ --bal-button-tertiary-purple-border-color-active: var(--bal-color-purple-6);
580
+ --bal-button-tertiary-purple-background: var(--bal-color-purple-1);
581
+ --bal-button-tertiary-purple-background-hover: var(--bal-color-purple-1);
582
+ --bal-button-tertiary-purple-background-active: var(--bal-color-purple-1);
583
+ --bal-button-tertiary-red-color: var(--bal-color-text-primary);
584
+ --bal-button-tertiary-red-color-hover: var(--bal-color-text-primary);
585
+ --bal-button-tertiary-red-color-active: var(--bal-color-text-primary-pressed);
586
+ --bal-button-tertiary-red-border-color: var(--bal-color-red-1);
587
+ --bal-button-tertiary-red-border-color-hover: var(--bal-color-red-5);
588
+ --bal-button-tertiary-red-border-color-active: var(--bal-color-red-6);
589
+ --bal-button-tertiary-red-background: var(--bal-color-red-1);
590
+ --bal-button-tertiary-red-background-hover: var(--bal-color-red-1);
591
+ --bal-button-tertiary-red-background-active: var(--bal-color-red-1);
592
+ --bal-button-tertiary-yellow-color: var(--bal-color-text-primary);
593
+ --bal-button-tertiary-yellow-color-hover: var(--bal-color-text-primary);
594
+ --bal-button-tertiary-yellow-color-active: var(--bal-color-text-primary-pressed);
595
+ --bal-button-tertiary-yellow-border-color: var(--bal-color-yellow-1);
596
+ --bal-button-tertiary-yellow-border-color-hover: var(--bal-color-yellow-5);
597
+ --bal-button-tertiary-yellow-border-color-active: var(--bal-color-yellow-6);
598
+ --bal-button-tertiary-yellow-background: var(--bal-color-yellow-1);
599
+ --bal-button-tertiary-yellow-background-hover: var(--bal-color-yellow-1);
600
+ --bal-button-tertiary-yellow-background-active: var(--bal-color-yellow-1);
601
+ --bal-button-tertiary-green-color: var(--bal-color-text-primary);
602
+ --bal-button-tertiary-green-color-hover: var(--bal-color-text-primary);
603
+ --bal-button-tertiary-green-color-active: var(--bal-color-text-primary-pressed);
604
+ --bal-button-tertiary-green-border-color: var(--bal-color-green-1);
605
+ --bal-button-tertiary-green-border-color-hover: var(--bal-color-green-5);
606
+ --bal-button-tertiary-green-border-color-active: var(--bal-color-green-6);
607
+ --bal-button-tertiary-green-background: var(--bal-color-green-1);
608
+ --bal-button-tertiary-green-background-hover: var(--bal-color-green-1);
609
+ --bal-button-tertiary-green-background-active: var(--bal-color-green-1);
610
+ --bal-button-success-color: var(--bal-color-text-primary);
611
+ --bal-button-success-color-hover: var(--bal-color-text-white);
612
+ --bal-button-success-color-active: var(--bal-color-text-white);
613
+ --bal-button-success-border-color: var(--bal-color-success-5);
614
+ --bal-button-success-border-color-hover: var(--bal-color-success-5);
615
+ --bal-button-success-border-color-active: var(--bal-color-success-6);
616
+ --bal-button-success-background: var(--bal-color-success-1);
617
+ --bal-button-success-background-hover: var(--bal-color-success-5);
618
+ --bal-button-success-background-active: var(--bal-color-success-6);
619
+ --bal-button-warning-color: var(--bal-color-text-primary);
620
+ --bal-button-warning-color-hover: var(--bal-color-text-primary);
621
+ --bal-button-warning-color-active: var(--bal-color-text-primary);
622
+ --bal-button-warning-border-color: var(--bal-color-warning-5);
623
+ --bal-button-warning-border-color-hover: var(--bal-color-warning-3);
624
+ --bal-button-warning-border-color-active: var(--bal-color-warning-4);
625
+ --bal-button-warning-background: var(--bal-color-warning-1);
626
+ --bal-button-warning-background-hover: var(--bal-color-warning-3);
627
+ --bal-button-warning-background-active: var(--bal-color-warning-4);
628
+ --bal-button-danger-color: var(--bal-color-text-primary);
629
+ --bal-button-danger-color-hover: var(--bal-color-text-white);
630
+ --bal-button-danger-color-active: var(--bal-color-text-white);
631
+ --bal-button-danger-border-color: var(--bal-color-danger-5);
632
+ --bal-button-danger-border-color-hover: var(--bal-color-danger-5);
633
+ --bal-button-danger-border-color-active: var(--bal-color-danger-6);
634
+ --bal-button-danger-background: var(--bal-color-danger-1);
635
+ --bal-button-danger-background-hover: var(--bal-color-danger-5);
636
+ --bal-button-danger-background-active: var(--bal-color-danger-6);
637
+ --bal-button-disablde-color: var(--bal-color-text-grey);
638
+ --bal-button-disablde-border-color: var(--bal-color-grey);
639
+ --bal-button-disablde-background: var(--bal-color-grey);
640
+ --bal-button-inverted-color: var(--bal-color-text-white);
641
+ --bal-button-inverted-color-hover: var(--bal-color-text-white);
642
+ --bal-button-inverted-color-active: var(--bal-color-text-white);
643
+ --bal-button-inverted-border-color: var(--bal-color-border-inverted);
644
+ --bal-button-inverted-border-color-hover: var(--bal-color-light-blue-3);
645
+ --bal-button-inverted-border-color-active: var(--bal-color-light-blue-5);
646
+ --bal-button-inverted-background: transparent;
647
+ --bal-button-inverted-background-hover: var(--bal-color-primary-3);
648
+ --bal-button-inverted-background-active: var(--bal-color-primary-3);
649
+ --bal-button-inverted-primary-color: var(--bal-color-text-primary);
650
+ --bal-button-inverted-primary-color-hover: var(--bal-color-text-primary);
651
+ --bal-button-inverted-primary-color-active: var(--bal-color-text-white);
652
+ --bal-button-inverted-primary-border-color: var(--bal-color-border-inverted);
653
+ --bal-button-inverted-primary-border-color-hover: var(--bal-color-light-blue-2);
654
+ --bal-button-inverted-primary-border-color-active: var(--bal-color-light-blue-5);
655
+ --bal-button-inverted-primary-background: var(--bal-color-white);
656
+ --bal-button-inverted-primary-background-hover: var(--bal-color-light-blue-2);
657
+ --bal-button-inverted-primary-background-active: var(--bal-color-light-blue-5);
658
+ --bal-button-inverted-text-color: var(--bal-color-text-white);
659
+ --bal-button-inverted-text-color-hover: var(--bal-color-light-blue-2);
660
+ --bal-button-inverted-text-color-active: var(--bal-color-info-3);
661
+ --bal-button-inverted-text-border-color: transparent;
662
+ --bal-button-inverted-text-border-color-hover: transparent;
663
+ --bal-button-inverted-text-border-color-active: transparent;
664
+ --bal-button-inverted-text-background: transparent;
665
+ --bal-button-inverted-text-background-hover: transparent;
666
+ --bal-button-inverted-text-background-active: transparent;
667
+ --bal-button-inverted-light-color: var(--bal-color-text-white);
668
+ --bal-button-inverted-light-color-hover: var(--bal-color-text-primary);
669
+ --bal-button-inverted-light-color-active: var(--bal-color-text-primary);
670
+ --bal-button-inverted-light-border-color: var(--bal-color-primary-4);
671
+ --bal-button-inverted-light-border-color-hover: var(--bal-color-light-blue-2);
672
+ --bal-button-inverted-light-border-color-active: var(--bal-color-white);
673
+ --bal-button-inverted-light-background: var(--bal-color-primary-4);
674
+ --bal-button-inverted-light-background-hover: var(--bal-color-light-blue-2);
675
+ --bal-button-inverted-light-background-active: var(--bal-color-white);
676
+ }
677
+
678
+ /**
679
+ * * @prop --bal-form-field-control-font-size: TBD
680
+ * * @prop --bal-form-field-control-font-family: TBD
681
+ * * @prop --bal-form-field-control-color: TBD
682
+ * * @prop --bal-form-field-control-placeholder-color: TBD
683
+ * * @prop --bal-form-field-control-radius: TBD
684
+ * * @prop --bal-form-field-control-background: TBD
685
+ * * @prop --bal-form-field-control-background-hover: TBD
686
+ * * @prop --bal-form-field-control-background-active: TBD
687
+ * * @prop --bal-form-field-control-border-width: TBD
688
+ * * @prop --bal-form-field-control-border-style: TBD
689
+ * * @prop --bal-form-field-control-border-color: TBD
690
+ * * @prop --bal-form-field-control-border-color-hover: TBD
691
+ * * @prop --bal-form-field-control-border-color-active: TBD
692
+ * * @prop --bal-form-field-control-success-background: TBD
693
+ * * @prop --bal-form-field-control-success-background-hover: TBD
694
+ * * @prop --bal-form-field-control-success-background-active: TBD
695
+ * * @prop --bal-form-field-control-success-border-color: TBD
696
+ * * @prop --bal-form-field-control-success-border-color-hover: TBD
697
+ * * @prop --bal-form-field-control-success-border-color-active: TBD
698
+ * * @prop --bal-form-field-control-danger-background: TBD
699
+ * * @prop --bal-form-field-control-danger-background-hover: TBD
700
+ * * @prop --bal-form-field-control-danger-background-active: TBD
701
+ * * @prop --bal-form-field-control-danger-border-color: TBD
702
+ * * @prop --bal-form-field-control-danger-border-color-hover: TBD
703
+ * * @prop --bal-form-field-control-danger-border-color-active: TBD
704
+ * * @prop --bal-form-field-control-disabled-color: TBD
705
+ * * @prop --bal-form-field-control-disabled-background: TBD
706
+ * * @prop --bal-form-field-control-disabled-border-color: TBD
707
+ * * @prop --bal-form-field-label-font-size: TBD
708
+ * * @prop --bal-form-field-label-line-height: TBD
709
+ * * @prop --bal-form-field-label-font-weight: TBD
710
+ * * @prop --bal-form-field-label-font-family: TBD
711
+ * * @prop --bal-form-field-label-margin-bottom: TBD
712
+ * * @prop --bal-form-field-label-color-hover: TBD
713
+ * * @prop --bal-form-field-label-color-active: TBD
714
+ * * @prop --bal-form-field-label-success-color: TBD
715
+ * * @prop --bal-form-field-label-danger-color: TBD
716
+ * * @prop --bal-form-field-label-danger-color-hover: TBD
717
+ * * @prop --bal-form-field-label-danger-color-active: TBD
718
+ * * @prop --bal-form-field-label-disabled-color TBD
719
+ * * @prop --bal-form-field-message-font-size: TBD
720
+ * * @prop --bal-form-field-message-font-weight: TBD
721
+ * * @prop --bal-form-field-message-color: TBD
722
+ * * @prop --bal-form-field-message-color-hover: TBD
723
+ * * @prop --bal-form-field-message-color-active: TBD
724
+ * * @prop --bal-form-field-message-font-weight: TBD
725
+ * * @prop --bal-form-field-message-success-color: TBD
726
+ * * @prop --bal-form-field-message-danger-color: TBD
727
+ * * @prop --bal-form-field-message-disabled-color: TBD
728
+ * * @prop --bal-form-field-icon-color: TBD
729
+ * * @prop --bal-form-field-icon-color-hover: TBD
730
+ * * @prop --bal-form-field-icon-color-active: TBD
731
+ * * @prop --bal-form-field-icon-success-color: TBD
732
+ * * @prop --bal-form-field-icon-danger-color: TBD
733
+ * * @prop --bal-form-field-icon-disabled-color: TBD
734
+ * * @prop --bal-file-label-color: TBD
735
+ * * @prop --bal-file-label-color-hover: TBD
736
+ * * @prop --bal-file-label-color-active: TBD
737
+ * * @prop --bal-file-border-style: TBD
738
+ * * @prop --bal-file-label-disabled-color: TBD
739
+ * */
740
+ :root {
741
+ --bal-form-field-control-font-size: var(--bal-text-size-normal);
742
+ --bal-form-field-control-font-family: var(--bal-font-family-text);
743
+ --bal-form-field-control-color: var(--bal-color-text-primary);
744
+ --bal-form-field-control-placeholder-color: var(--bal-color-text-primary-light);
745
+ --bal-form-field-control-radius: var(--bal-radius-normal);
746
+ --bal-form-field-control-background: var(--bal-color-white);
747
+ --bal-form-field-control-background-hover: var(--bal-color-grey-1);
748
+ --bal-form-field-control-background-active: var(--bal-color-grey-1);
749
+ --bal-form-field-control-border-width: var(--bal-border-width-normal);
750
+ --bal-form-field-control-border-style: solid;
751
+ --bal-form-field-control-border-color: var(--bal-color-border);
752
+ --bal-form-field-control-border-color-hover: var(--bal-form-field-control-border-color);
753
+ --bal-form-field-control-border-color-active: var(--bal-color-border-primary);
754
+ --bal-form-field-control-success-background: var(--bal-color-success-1);
755
+ --bal-form-field-control-success-background-hover: var(--bal-color-success-1);
756
+ --bal-form-field-control-success-background-active: var(--bal-color-success-1);
757
+ --bal-form-field-control-success-border-color: var(--bal-color-border-success);
758
+ --bal-form-field-control-success-border-color-hover: var(--bal-form-field-control-border-color);
759
+ --bal-form-field-control-success-border-color-active: var(--bal-color-border-primary);
760
+ --bal-form-field-control-danger-background: var(--bal-color-danger-1);
761
+ --bal-form-field-control-danger-background-hover: var(--bal-color-danger-1);
762
+ --bal-form-field-control-danger-background-active: var(--bal-color-danger-1);
763
+ --bal-form-field-control-danger-border-color: var(--bal-color-border-danger);
764
+ --bal-form-field-control-danger-border-color-hover: var(--bal-form-field-control-border-color);
765
+ --bal-form-field-control-danger-border-color-active: var(--bal-color-border-primary);
766
+ --bal-form-field-control-disabled-color: var(--bal-color-text-grey-dark);
767
+ --bal-form-field-control-disabled-background: var(--bal-color-grey-2);
768
+ --bal-form-field-control-disabled-border-color: var(--bal-color-border-grey-dark);
769
+ --bal-form-field-label-font-size: var(--bal-text-size-small);
770
+ --bal-form-field-label-line-height: var(--bal-line-height-small);
771
+ --bal-form-field-label-font-weight: var(--bal-font-weight-bold);
772
+ --bal-form-field-label-font-family: var(--bal-font-family-text);
773
+ --bal-form-field-label-margin-bottom: 0.25rem;
774
+ --bal-form-field-label-color-hover: var(--bal-link-color-hover);
775
+ --bal-form-field-label-color-active: var(--bal-link-color-active);
776
+ --bal-form-field-label-success-color: var(--bal-color-text-success);
777
+ --bal-form-field-label-danger-color: var(--bal-color-text-danger);
778
+ --bal-form-field-label-danger-color-hover: var(--bal-color-text-danger-hovered);
779
+ --bal-form-field-label-danger-color-active: var(--bal-color-text-danger-pressed);
780
+ --bal-form-field-label-disabled-color: var(--bal-color-text-grey);
781
+ --bal-form-field-message-font-size: var(--bal-text-size-x-small);
782
+ --bal-form-field-message-font-weight: var(--bal-font-weight-regular);
783
+ --bal-form-field-message-color: var(--bal-color-text-primary-light);
784
+ --bal-form-field-message-color-hover: var(--bal-link-color-hover);
785
+ --bal-form-field-message-color-active: var(--bal-link-color-active);
786
+ --bal-form-field-message-font-weight: var(--bal-font-weight-regular);
787
+ --bal-form-field-message-success-color: var(--bal-color-text-success);
788
+ --bal-form-field-message-danger-color: var(--bal-color-text-danger);
789
+ --bal-form-field-message-disabled-color: var(--bal-color-text-grey);
790
+ --bal-form-field-icon-color: var(--bal-link-color);
791
+ --bal-form-field-icon-color-hover: var(--bal-link-color-hover);
792
+ --bal-form-field-icon-color-active: var(--bal-link-color-active);
793
+ --bal-form-field-icon-success-color: var(--bal-color-text-success);
794
+ --bal-form-field-icon-danger-color: var(--bal-color-text-danger);
795
+ --bal-form-field-icon-disabled-color: var(--bal-color-text-grey);
796
+ --bal-file-label-color: var(--bal-link-color);
797
+ --bal-file-label-color-hover: var(--bal-link-color-hover);
798
+ --bal-file-label-color-active: var(--bal-link-color-active);
799
+ --bal-file-border-style: dashed;
800
+ --bal-file-label-disabled-color: var(--bal-color-text-grey-dark);
801
+ }
802
+
803
+ /**
804
+ * * @prop --bal-list-marker-color: Color of the list marker symbol
805
+ * * @prop --bal-list-marker-inverted-color: Color of the list marker symbol on a dark background
806
+ * * @prop --bal-list-bullet-radius: Radius of the custom bullet
807
+ * * @prop --bal-list-bullet-background: Background color of the custom bullet
808
+ * * @prop --bal-list-bullet-background-green: Green background color of the custom bullet
809
+ * * @prop --bal-list-bullet-background-red: Red background color of the custom bullet
810
+ * * @prop --bal-list-bullet-background-yellow: Yellow background color of the custom bullet
811
+ * * @prop --bal-list-bullet-background-purple: Purple background color of the custom bullet
812
+ * */
813
+ :root {
814
+ --bal-list-marker-color: var(--bal-color-primary);
815
+ --bal-list-marker-inverted-color: var(--bal-color-white);
816
+ --bal-list-bullet-radius: var(--bal-radius-rounded);
817
+ --bal-list-bullet-background: var(--bal-color-green-3);
818
+ --bal-list-bullet-background-green: var(--bal-color-green-3);
819
+ --bal-list-bullet-background-red: var(--bal-color-red-3);
820
+ --bal-list-bullet-background-yellow: var(--bal-color-yellow-3);
821
+ --bal-list-bullet-background-purple: var(--bal-color-purple-3);
822
+ }
823
+
824
+ /**
825
+ * * @prop --bal-table-color: Tables default font color
826
+ * * @prop --bal-table-background-color: Tables default background color
827
+ * * @prop --bal-table-body-background-color: Table body background
828
+ * * @prop --bal-table-cell-border: Table cell border
829
+ * * @prop --bal-table-cell-border-width: Table cell border width
830
+ * * @prop --bal-table-cell-padding: Table cell padding
831
+ * * @prop --bal-table-cell-heading-color: Table cell heading color
832
+ * * @prop --bal-table-head-cell-border-width: Table head cell border width
833
+ * * @prop --bal-table-head-cell-border-color: Table head cell border color
834
+ * * @prop --bal-table-head-cell-color: Table head cell color
835
+ * * @prop --bal-table-head-background-color: Table head cell background
836
+ * * @prop --bal-table-head-font-size: Table head cell font size backgound
837
+ * * @prop --bal-table-head-font-family: Table head cell font family
838
+ * * @prop --bal-table-foot-cell-border-width: Table foot cell border width
839
+ * * @prop --bal-table-foot-cell-color: Table foot cell color
840
+ * * @prop --bal-table-foot-background-color: Table foot cell background
841
+ * * @prop --bal-table-row-background-color-hover: Table row hover background
842
+ * * @prop --bal-table-row-background-color-active: Table row pressed background
843
+ * * @prop --bal-table-row-color-active: Table row pressed font color
844
+ * * @prop --bal-table-striped-row-even-background-color: Table row striped background
845
+ * * @prop --bal-table-striped-row-even-background-color-hover: Table row striped background on hover
846
+ * */
847
+ :root {
848
+ --bal-table-color: var(--bal-color-primary);
849
+ --bal-table-background-color: var(--bal-color-white);
850
+ --bal-table-body-background-color: transparent;
851
+ --bal-table-cell-border-color: var(--bal-color-border);
852
+ --bal-table-cell-border: 2px solid var(--bal-table-cell-border-color);
853
+ --bal-table-cell-border-width: 0 0 2px;
854
+ --bal-table-cell-padding: 0.5em 0.75em;
855
+ --bal-table-cell-heading-color: var(--bal-color-primary);
856
+ --bal-table-head-cell-border-width: 0 0 1px;
857
+ --bal-table-head-cell-border-color: var(--bal-color-primary);
858
+ --bal-table-head-cell-color: var(--bal-color-primary);
859
+ --bal-table-head-background-color: transparent;
860
+ --bal-table-head-font-size: var(--bal-text-size-normal);
861
+ --bal-table-head-font-family: var(--bal-font-family-text);
862
+ --bal-table-foot-cell-border-width: 0 0 0;
863
+ --bal-table-foot-cell-color: var(--bal-color-primary);
864
+ --bal-table-foot-background-color: transparent;
865
+ --bal-table-row-background-color-hover: var(--bal-color-grey-2);
866
+ --bal-table-row-background-color-active: var(--bal-color-primary-1);
867
+ --bal-table-row-color-active: var(--bal-color-primary);
868
+ --bal-table-striped-row-even-background-color: var(--bal-color-grey-1);
869
+ --bal-table-striped-row-even-background-color-hover: var(--bal-color-grey-2);
870
+ }
871
+
872
+ .select select, .textarea, .input {
873
+ justify-content: flex-start;
874
+ background-color: var(--bal-form-field-control-background);
875
+ border-color: var(--bal-form-field-control-border-color);
876
+ border-style: var(--bal-form-field-control-border-style);
877
+ border-radius: var(--bal-form-field-control-radius);
878
+ color: var(--bal-form-field-control-color);
879
+ }
880
+ .select select::-moz-placeholder, .textarea::-moz-placeholder, .input::-moz-placeholder {
881
+ color: var(--bal-form-field-control-placeholder-color);
882
+ }
883
+ .select select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .input::-webkit-input-placeholder {
884
+ color: var(--bal-form-field-control-placeholder-color);
885
+ }
886
+ .select select:-moz-placeholder, .textarea:-moz-placeholder, .input:-moz-placeholder {
887
+ color: var(--bal-form-field-control-placeholder-color);
888
+ }
889
+ .select select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .input:-ms-input-placeholder {
890
+ color: var(--bal-form-field-control-placeholder-color);
891
+ }
892
+ @media (hover: hover) and (pointer: fine) {
893
+ .select select:hover, .textarea:hover, .input:hover, .select select.is-hovered, .is-hovered.textarea, .is-hovered.input {
894
+ border-color: var(--bal-form-field-control-border-color-hover);
895
+ background-color: var(--bal-form-field-control-background-hover);
896
+ }
897
+ }
898
+ .select select.bal-focused, .bal-focused.textarea, .bal-focused.input, .select select:focus, .textarea:focus, .input:focus, .select select.is-focused, .is-focused.textarea, .is-focused.input, .select select:active, .textarea:active, .input:active, .select select.is-active, .is-active.textarea, .is-active.input {
899
+ border-color: var(--bal-form-field-control-border-color-active);
900
+ background-color: var(--bal-form-field-control-background-active);
901
+ }
902
+ .select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input {
903
+ background-color: var(--bal-form-field-control-disabled-background);
904
+ border-color: var(--bal-form-field-control-disabled-border-color);
905
+ box-shadow: none;
906
+ color: var(--bal-form-field-control-disabled-color);
907
+ }
908
+ .select select[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, [disabled].input::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder {
909
+ color: var(--bal-form-field-control-disabled-color);
910
+ }
911
+ .select select[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder {
912
+ color: var(--bal-form-field-control-disabled-color);
913
+ }
914
+ .select select[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, [disabled].input:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder {
915
+ color: var(--bal-form-field-control-disabled-color);
916
+ }
917
+ .select select[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder {
918
+ color: var(--bal-form-field-control-disabled-color);
919
+ }
920
+
921
+ .file-cta, .select select, .textarea, .input {
922
+ -moz-appearance: none !important;
923
+ -webkit-appearance: none !important;
924
+ align-items: center;
925
+ border-width: var(--bal-border-width-normal);
926
+ border-color: var(--bal-color-border);
927
+ border-radius: var(--bal-radius-normal);
928
+ box-shadow: none;
929
+ display: inline-flex;
930
+ font-size: var(--bal-text-size-normal);
931
+ min-height: 3rem;
932
+ height: 3rem;
933
+ line-height: 1.5;
934
+ padding-left: calc(0.75em - var(--bal-border-width-normal));
935
+ padding-right: calc(0.75em - var(--bal-border-width-normal));
936
+ position: relative;
937
+ vertical-align: top;
938
+ }
939
+ .file-cta:focus, .select select:focus, .textarea:focus, .input:focus, .is-focused.file-cta, .select select.is-focused, .is-focused.textarea, .is-focused.input, .file-cta:active, .select select:active, .textarea:active, .input:active, .is-active.file-cta, .select select.is-active, .is-active.textarea, .is-active.input {
940
+ outline: none;
941
+ }
942
+ [disabled].file-cta, .select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .file-cta, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input {
943
+ cursor: default;
944
+ }
945
+
946
+ .textarea, .input {
947
+ max-width: 100%;
948
+ width: 100%;
949
+ }
950
+ [readonly].textarea, [readonly].input {
951
+ box-shadow: none;
952
+ }
953
+ .is-fullwidth.textarea, .is-fullwidth.input {
954
+ display: block;
955
+ width: 100%;
956
+ }
957
+ .is-inline.textarea, .is-inline.input {
958
+ display: inline;
959
+ width: auto;
960
+ }
961
+
962
+ .textarea {
963
+ display: block;
964
+ max-width: 100%;
965
+ min-width: 100%;
966
+ resize: vertical;
967
+ padding: calc(0.75em - 2px);
968
+ }
969
+ .textarea:not([rows]) {
970
+ max-height: 40em;
971
+ min-height: 8em;
972
+ }
973
+ .textarea[rows] {
974
+ height: initial;
975
+ }
976
+ .textarea.has-fixed-size {
977
+ resize: none;
978
+ }
979
+
980
+ input.input,
981
+ textarea.textarea {
982
+ border-width: 2px;
983
+ border-radius: var(--bal-form-field-control-radius);
984
+ font-size: var(--bal-form-field-control-font-size);
985
+ font-family: var(--bal-form-field-control-font-family);
986
+ color: var(--bal-form-field-control-color);
987
+ outline: none;
988
+ box-shadow: none;
989
+ }
990
+ input.input.is-danger,
991
+ textarea.textarea.is-danger {
992
+ border-color: var(--bal-form-field-control-danger-border-color);
993
+ background: var(--bal-form-field-control-danger-background);
994
+ }
995
+ input.input.is-danger.bal-focused, input.input.is-danger:focus, input.input.is-danger.is-focused, input.input.is-danger:active, input.input.is-danger.is-active,
996
+ textarea.textarea.is-danger.bal-focused,
997
+ textarea.textarea.is-danger:focus,
998
+ textarea.textarea.is-danger.is-focused,
999
+ textarea.textarea.is-danger:active,
1000
+ textarea.textarea.is-danger.is-active {
1001
+ border-color: var(--bal-form-field-control-border-color-active);
1002
+ }
1003
+ input.input.is-success,
1004
+ textarea.textarea.is-success {
1005
+ border-color: var(--bal-form-field-control-success-border-color);
1006
+ background: var(--bal-form-field-control-success-background);
1007
+ }
1008
+ input.input.is-success.bal-focused, input.input.is-success:focus, input.input.is-success.is-focused, input.input.is-success:active, input.input.is-success.is-active,
1009
+ textarea.textarea.is-success.bal-focused,
1010
+ textarea.textarea.is-success:focus,
1011
+ textarea.textarea.is-success.is-focused,
1012
+ textarea.textarea.is-success:active,
1013
+ textarea.textarea.is-success.is-active {
1014
+ border-color: var(--bal-form-field-control-border-color-active);
1015
+ }
1016
+ input.input.is-warning,
1017
+ textarea.textarea.is-warning {
1018
+ border-color: var(--bal-color-border-warning);
1019
+ background: var(--bal-color-warning-1);
1020
+ }
1021
+ input.input.is-warning.bal-focused, input.input.is-warning:focus, input.input.is-warning.is-focused, input.input.is-warning:active, input.input.is-warning.is-active,
1022
+ textarea.textarea.is-warning.bal-focused,
1023
+ textarea.textarea.is-warning:focus,
1024
+ textarea.textarea.is-warning.is-focused,
1025
+ textarea.textarea.is-warning:active,
1026
+ textarea.textarea.is-warning.is-active {
1027
+ border-color: var(--bal-form-field-control-border-color-active);
1028
+ }
1029
+ input.input.is-disabled,
1030
+ textarea.textarea.is-disabled {
1031
+ color: var(--bal-form-field-control-disabled-color);
1032
+ border-color: var(--bal-form-field-control-disabled-border-color);
1033
+ background: var(--bal-form-field-control-disabled-background);
1034
+ }
1035
+
1036
+ input.is-grouped {
1037
+ background: none !important;
1038
+ border: none !important;
1039
+ box-shadow: none !important;
1040
+ }
1041
+
1042
+ .select {
1043
+ display: inline-block;
1044
+ max-width: 100%;
1045
+ width: 100%;
1046
+ position: relative;
1047
+ vertical-align: top;
1048
+ }
1049
+ .select:not(.is-multiple) {
1050
+ height: 3rem;
1051
+ }
1052
+ .select:not(.is-multiple):not(.is-loading)::after {
1053
+ border: 3px solid var(--bal-form-field-icon-color);
1054
+ border-radius: 2px;
1055
+ border-right: 0;
1056
+ border-top: 0;
1057
+ content: " ";
1058
+ display: block;
1059
+ height: 0.625em;
1060
+ margin-top: -0.4rem;
1061
+ pointer-events: none;
1062
+ position: absolute;
1063
+ top: 50%;
1064
+ transform: rotate(-45deg);
1065
+ transform-origin: center;
1066
+ width: 0.625em;
1067
+ right: 1.125em;
1068
+ z-index: 4;
1069
+ }
1070
+ .select select {
1071
+ cursor: pointer;
1072
+ display: block;
1073
+ font-size: 1em;
1074
+ max-width: 100%;
1075
+ width: 100%;
1076
+ outline: none;
1077
+ border-radius: var(--bal-form-field-control-radius);
1078
+ }
1079
+ .select select::-ms-expand {
1080
+ display: none;
1081
+ }
1082
+ .select select[disabled]:hover, fieldset[disabled] .select select:hover {
1083
+ border-color: var(--bal-form-field-control-disabled-border-color);
1084
+ }
1085
+ .select select:not([multiple]) {
1086
+ padding-right: 2.5em;
1087
+ }
1088
+ .select select[multiple] {
1089
+ height: auto;
1090
+ padding: 0;
1091
+ }
1092
+ .select select[multiple] option {
1093
+ padding: 0.5em 1em;
1094
+ }
1095
+ .select:not(.is-multiple):not(.is-loading):hover::after {
1096
+ border-color: var(--bal-form-field-label-color-hover);
1097
+ }
1098
+ .select:not(.is-multiple):not(.is-loading):active::after {
1099
+ border-color: var(--bal-form-field-label-color-active);
1100
+ }
1101
+ .select.is-disabled::after {
1102
+ border-color: var(--bal-form-field-control-disabled-border-color) !important;
1103
+ }
1104
+ .select.is-success select {
1105
+ border-color: var(--bal-form-field-control-success-border-color);
1106
+ background: var(--bal-form-field-control-success-background);
1107
+ }
1108
+ .select.is-success select.bal-focused, .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
1109
+ border-color: var(--bal-form-field-control-success-border-color-active);
1110
+ }
1111
+ .select.is-success::after {
1112
+ border-color: var(--bal-form-field-control-success-border-color) !important;
1113
+ }
1114
+ .select.is-success:focus::after, .select.is-success:active::after, .select.is-success:focus-within::after {
1115
+ border-color: var(--bal-form-field-control-success-border-color-active) !important;
1116
+ }
1117
+ .select.is-danger select {
1118
+ border-color: var(--bal-form-field-control-danger-border-color);
1119
+ background: var(--bal-form-field-control-danger-background);
1120
+ }
1121
+ .select.is-danger select.bal-focused, .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
1122
+ border-color: var(--bal-form-field-control-danger-border-color-active);
1123
+ }
1124
+ .select.is-danger::after {
1125
+ border-color: var(--bal-form-field-control-danger-border-color) !important;
1126
+ }
1127
+ .select.is-danger:focus::after, .select.is-danger:active::after, .select.is-danger:focus-within::after {
1128
+ border-color: var(--bal-form-field-control-danger-border-color-active) !important;
1129
+ }
1130
+ .select.is-warning select {
1131
+ border-color: var(--bal-color-border-warning);
1132
+ background: var(--bal-color-warning-1);
1133
+ }
1134
+ .select.is-warning select.bal-focused, .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
1135
+ border-color: var(--bal-color-border-primary);
1136
+ }
1137
+ .select.is-warning::after {
1138
+ border-color: var(--bal-color-border-warning) !important;
1139
+ }
1140
+ .select.is-warning:focus::after, .select.is-warning:active::after, .select.is-warning:focus-within::after {
1141
+ border-color: var(--bal-color-border-primary) !important;
1142
+ }
1143
+ .select.is-fullwidth {
1144
+ width: 100%;
1145
+ }
1146
+ .select.is-fullwidth select {
1147
+ width: 100%;
1148
+ }
1149
+
1150
+ .file {
1151
+ align-items: stretch;
1152
+ display: flex;
1153
+ justify-content: flex-start;
1154
+ position: relative;
1155
+ width: 100%;
1156
+ font-size: var(--bal-form-field-control-font-size);
1157
+ justify-content: center;
1158
+ }
1159
+ .file .file-label {
1160
+ width: 100%;
1161
+ flex-direction: column;
1162
+ }
1163
+ .file .file-cta {
1164
+ flex-direction: column;
1165
+ height: auto;
1166
+ padding: 1em 3em;
1167
+ }
1168
+ .file .file-icon {
1169
+ height: 1.5em;
1170
+ width: 1.5em;
1171
+ }
1172
+
1173
+ .file-label {
1174
+ align-items: stretch;
1175
+ display: flex;
1176
+ cursor: pointer;
1177
+ justify-content: flex-start;
1178
+ overflow: hidden;
1179
+ position: relative;
1180
+ gap: 0.5rem;
1181
+ font-weight: var(--bal-form-field-label-font-weight);
1182
+ color: var(--bal-form-field-label-color);
1183
+ text-align: center;
1184
+ -webkit-hyphens: auto;
1185
+ hyphens: auto;
1186
+ }
1187
+ .file-label:hover .file-cta,
1188
+ .file-label:hover .file-label {
1189
+ color: var(--bal-form-field-label-color-hover);
1190
+ }
1191
+ .file-label:hover .file-cta {
1192
+ background-color: var(--bal-form-field-control-background-hover);
1193
+ border-color: var(--bal-form-field-control-border-color-hover);
1194
+ }
1195
+ .file-label:active .file-cta,
1196
+ .file-label:active .file-label, .file-label:focus-within .file-cta,
1197
+ .file-label:focus-within .file-label {
1198
+ color: var(--bal-form-field-label-color-active);
1199
+ }
1200
+ .file-label:active .file-cta, .file-label:focus-within .file-cta {
1201
+ background-color: var(--bal-form-field-control-background-active);
1202
+ border-color: var(--bal-form-field-control-border-color-active);
1203
+ }
1204
+
1205
+ .file-input {
1206
+ height: 100%;
1207
+ left: 0;
1208
+ opacity: 0;
1209
+ outline: none;
1210
+ position: absolute;
1211
+ top: 0;
1212
+ width: 100%;
1213
+ }
1214
+
1215
+ .file-cta {
1216
+ justify-content: flex-start;
1217
+ border-style: var(--bal-file-border-style);
1218
+ border-color: var(--bal-form-field-control-border-color);
1219
+ border-radius: var(--bal-form-field-control-radius);
1220
+ background: var(--bal-form-field-control-background);
1221
+ font-size: 1em;
1222
+ padding-left: 1em;
1223
+ padding-right: 1em;
1224
+ white-space: nowrap;
1225
+ gap: 0.5rem;
1226
+ }
1227
+
1228
+ .file-cta {
1229
+ background-color: var(--bal-form-field-control-background);
1230
+ color: var(--bal-form-field-control-color);
1231
+ }
1232
+
1233
+ .file-icon {
1234
+ align-items: center;
1235
+ display: flex;
1236
+ height: 1em;
1237
+ justify-content: center;
1238
+ margin-right: 0.5em;
1239
+ width: 1em;
1240
+ }
1241
+
1242
+ .file.is-success .file-label,
1243
+ .file.is-success .file-cta {
1244
+ color: var(--bal-form-field-label-success-color);
1245
+ }
1246
+ .file.is-success .file-cta {
1247
+ border-color: var(--bal-form-field-control-success-border-color);
1248
+ background: var(--bal-form-field-control-success-background);
1249
+ }
1250
+ .file.is-success .file-label:active .file-cta, .file.is-success .file-label:focus-within .file-cta {
1251
+ border-color: var(--bal-form-field-control-border-color-active);
1252
+ color: var(--bal-link-color-active);
1253
+ }
1254
+ .file.is-success .file-label:active .file-cta .file-label, .file.is-success .file-label:focus-within .file-cta .file-label {
1255
+ color: var(--bal-link-color-active);
1256
+ }
1257
+
1258
+ .file.is-danger .file-label,
1259
+ .file.is-danger .file-cta {
1260
+ color: var(--bal-form-field-label-danger-color);
1261
+ }
1262
+ .file.is-danger .file-cta {
1263
+ border-color: var(--bal-form-field-control-danger-border-color);
1264
+ background: var(--bal-form-field-control-danger-background);
1265
+ }
1266
+ .file.is-danger .file-label:active .file-cta, .file.is-danger .file-label:focus-within .file-cta {
1267
+ border-color: var(--bal-form-field-control-border-color-active);
1268
+ color: var(--bal-link-color-active);
1269
+ }
1270
+ .file.is-danger .file-label:active .file-cta .file-label, .file.is-danger .file-label:focus-within .file-cta .file-label {
1271
+ color: var(--bal-link-color-active);
1272
+ }
1273
+
1274
+ .file.is-warning .file-label,
1275
+ .file.is-warning .file-cta {
1276
+ color: var(--bal-color-text-warning);
1277
+ }
1278
+ .file.is-warning .file-cta {
1279
+ border-color: var(--bal-color-border-warning);
1280
+ background: var(--bal-color-warning-1);
1281
+ }
1282
+ .file.is-warning .file-label:active .file-cta, .file.is-warning .file-label:focus-within .file-cta {
1283
+ border-color: var(--bal-form-field-control-border-color-active);
1284
+ color: var(--bal-link-color-active);
1285
+ }
1286
+ .file.is-warning .file-label:active .file-cta .file-label, .file.is-warning .file-label:focus-within .file-cta .file-label {
1287
+ color: var(--bal-link-color-active);
1288
+ }
1289
+
1290
+ .file.is-disabled .file-label,
1291
+ .file.is-disabled .file-cta {
1292
+ color: var(--bal-file-label-disabled-color);
1293
+ }
1294
+ .file.is-disabled .file-cta {
1295
+ border-color: var(--bal-form-field-control-disabled-border-color);
1296
+ background: var(--bal-form-field-control-disabled-background);
1297
+ }
1298
+
1299
+ @keyframes spinAround {
1300
+ from {
1301
+ transform: rotate(0deg);
1302
+ }
1303
+ to {
1304
+ transform: rotate(359deg);
1305
+ }
1306
+ }
1307
+ .label {
1308
+ display: block;
1309
+ font-size: var(--bal-form-field-label-font-size);
1310
+ line-height: var(--bal-form-field-label-line-height);
1311
+ font-weight: var(--bal-form-field-label-font-weight);
1312
+ font-family: var(--bal-form-field-label-font-family);
1313
+ -webkit-hyphens: auto;
1314
+ hyphens: auto;
1315
+ }
1316
+ .label:not(:last-child) {
1317
+ margin-bottom: var(--bal-form-field-label-margin-bottom);
1318
+ }
1319
+ .label.is-danger {
1320
+ color: var(--bal-form-field-label-danger-color);
1321
+ }
1322
+ .label.is-success {
1323
+ color: var(--bal-form-field-label-success-color);
1324
+ }
1325
+ .label.is-warning {
1326
+ color: var(--bal-color-text-warning);
1327
+ }
1328
+ .label.is-disabled {
1329
+ color: var(--bal-form-field-label-disabled-color);
1330
+ }
1331
+
1332
+ .help {
1333
+ display: block;
1334
+ margin-top: -2px;
1335
+ color: var(--bal-form-field-message-color);
1336
+ font-size: var(--bal-form-field-message-font-size);
1337
+ font-weight: var(--bal-form-field-message-font-weight);
1338
+ -webkit-hyphens: auto;
1339
+ hyphens: auto;
1340
+ }
1341
+ .help.is-danger {
1342
+ color: var(--bal-form-field-message-danger-color);
1343
+ }
1344
+ .help.is-success {
1345
+ color: var(--bal-form-field-message-success-color);
1346
+ }
1347
+ .help.is-warning {
1348
+ color: var(--bal-color-text-warning);
1349
+ }
1350
+ .help.is-disabled {
1351
+ color: var(--bal-form-field-message-disabled-color);
1352
+ }
1353
+
1354
+ .field:not(:last-child) {
1355
+ margin-bottom: 0.75rem;
1356
+ }
1357
+ .field.has-addons {
1358
+ display: flex;
1359
+ justify-content: flex-start;
1360
+ }
1361
+ .field.has-addons .control:not(:last-child) {
1362
+ margin-right: -1px;
1363
+ }
1364
+ .field.has-addons .control:not(:first-child):not(:last-child) .button,
1365
+ .field.has-addons .control:not(:first-child):not(:last-child) .input,
1366
+ .field.has-addons .control:not(:first-child):not(:last-child) .select select {
1367
+ border-radius: 0;
1368
+ }
1369
+ .field.has-addons .control:first-child:not(:only-child) .button,
1370
+ .field.has-addons .control:first-child:not(:only-child) .input,
1371
+ .field.has-addons .control:first-child:not(:only-child) .select select {
1372
+ border-bottom-right-radius: 0;
1373
+ border-top-right-radius: 0;
1374
+ }
1375
+ .field.has-addons .control:last-child:not(:only-child) .button,
1376
+ .field.has-addons .control:last-child:not(:only-child) .input,
1377
+ .field.has-addons .control:last-child:not(:only-child) .select select {
1378
+ border-bottom-left-radius: 0;
1379
+ border-top-left-radius: 0;
1380
+ }
1381
+ .field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered,
1382
+ .field.has-addons .control .input:not([disabled]):hover,
1383
+ .field.has-addons .control .input:not([disabled]).is-hovered,
1384
+ .field.has-addons .control .select select:not([disabled]):hover,
1385
+ .field.has-addons .control .select select:not([disabled]).is-hovered {
1386
+ z-index: 2;
1387
+ }
1388
+ .field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active,
1389
+ .field.has-addons .control .input:not([disabled]):focus,
1390
+ .field.has-addons .control .input:not([disabled]).is-focused,
1391
+ .field.has-addons .control .input:not([disabled]):active,
1392
+ .field.has-addons .control .input:not([disabled]).is-active,
1393
+ .field.has-addons .control .select select:not([disabled]):focus,
1394
+ .field.has-addons .control .select select:not([disabled]).is-focused,
1395
+ .field.has-addons .control .select select:not([disabled]):active,
1396
+ .field.has-addons .control .select select:not([disabled]).is-active {
1397
+ z-index: 3;
1398
+ }
1399
+ .field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover,
1400
+ .field.has-addons .control .input:not([disabled]):focus:hover,
1401
+ .field.has-addons .control .input:not([disabled]).is-focused:hover,
1402
+ .field.has-addons .control .input:not([disabled]):active:hover,
1403
+ .field.has-addons .control .input:not([disabled]).is-active:hover,
1404
+ .field.has-addons .control .select select:not([disabled]):focus:hover,
1405
+ .field.has-addons .control .select select:not([disabled]).is-focused:hover,
1406
+ .field.has-addons .control .select select:not([disabled]):active:hover,
1407
+ .field.has-addons .control .select select:not([disabled]).is-active:hover {
1408
+ z-index: 4;
1409
+ }
1410
+ .field.has-addons .control.is-expanded {
1411
+ flex-grow: 1;
1412
+ flex-shrink: 1;
1413
+ }
1414
+ .field.has-addons.has-addons-centered {
1415
+ justify-content: center;
1416
+ }
1417
+ .field.has-addons.has-addons-right {
1418
+ justify-content: flex-end;
1419
+ }
1420
+ .field.has-addons.has-addons-fullwidth .control {
1421
+ flex-grow: 1;
1422
+ flex-shrink: 0;
1423
+ }
1424
+ .field.is-grouped {
1425
+ display: flex;
1426
+ justify-content: flex-start;
1427
+ }
1428
+ .field.is-grouped > .control {
1429
+ flex-shrink: 0;
1430
+ }
1431
+ .field.is-grouped > .control:not(:last-child) {
1432
+ margin-bottom: 0;
1433
+ }
1434
+ .field.is-grouped > .control.is-expanded {
1435
+ flex-grow: 1;
1436
+ flex-shrink: 1;
1437
+ }
1438
+ .field.is-grouped.is-grouped-centered {
1439
+ justify-content: center;
1440
+ }
1441
+ .field.is-grouped.is-grouped-right {
1442
+ justify-content: flex-end;
1443
+ }
1444
+ .field.is-grouped.is-grouped-multiline {
1445
+ flex-wrap: wrap;
1446
+ }
1447
+ .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
1448
+ margin-bottom: 0.75rem;
1449
+ }
1450
+ .field.is-grouped.is-grouped-multiline:last-child {
1451
+ margin-bottom: -0.75rem;
1452
+ }
1453
+ .field.is-grouped.is-grouped-multiline:not(:last-child) {
1454
+ margin-bottom: 0;
1455
+ }
1456
+ @media screen and (min-width: 769px), print {
1457
+ .field.is-horizontal {
1458
+ display: flex;
1459
+ }
1460
+ }
1461
+
1462
+ .field-label .label {
1463
+ font-size: inherit;
1464
+ }
1465
+ @media screen and (max-width: 768px) {
1466
+ .field-label {
1467
+ margin-bottom: 0.5rem;
1468
+ }
1469
+ }
1470
+ @media screen and (min-width: 769px), print {
1471
+ .field-label {
1472
+ flex-basis: 0;
1473
+ flex-grow: 1;
1474
+ flex-shrink: 0;
1475
+ margin-right: 1.5rem;
1476
+ text-align: right;
1477
+ }
1478
+ .field-label.is-small {
1479
+ font-size: var(--bal-text-size-small);
1480
+ padding-top: 0.375em;
1481
+ }
1482
+ .field-label.is-normal {
1483
+ padding-top: 0.375em;
1484
+ }
1485
+ }
1486
+
1487
+ .field-body .field .field {
1488
+ margin-bottom: 0;
1489
+ }
1490
+ @media screen and (min-width: 769px), print {
1491
+ .field-body {
1492
+ display: flex;
1493
+ flex-basis: 0;
1494
+ flex-grow: 5;
1495
+ flex-shrink: 1;
1496
+ }
1497
+ .field-body .field {
1498
+ margin-bottom: 0;
1499
+ }
1500
+ .field-body > .field {
1501
+ flex-shrink: 1;
1502
+ }
1503
+ .field-body > .field:not(.is-narrow) {
1504
+ flex-grow: 1;
1505
+ }
1506
+ .field-body > .field:not(:last-child) {
1507
+ margin-right: 0.75rem;
1508
+ }
1509
+ }
1510
+
1511
+ .control {
1512
+ box-sizing: border-box;
1513
+ clear: both;
1514
+ font-size: var(--bal-form-field-control-font-size);
1515
+ position: relative;
1516
+ text-align: inherit;
1517
+ }
1518
+ .control.is-loading::after {
1519
+ animation: spinAround 500ms infinite linear;
1520
+ border: 2px solid var(--bal-form-field-control-border-color-active);
1521
+ border-radius: var(--bal-radius-rounded);
1522
+ border-right-color: transparent;
1523
+ border-top-color: transparent;
1524
+ content: "";
1525
+ display: block;
1526
+ height: 1.125em;
1527
+ width: 1.125em;
1528
+ position: absolute !important;
1529
+ right: 0.875rem;
1530
+ top: 0.875rem;
1531
+ z-index: 4;
1532
+ }
1533
+
1534
+ .control.has-icons-right::after {
1535
+ right: 2.3rem;
1536
+ }
1537
+
1538
+ .field.is-grouped {
1539
+ gap: calc(var(--bal-column-gap) / 2);
1540
+ }
1541
+
1542
+ .field.has-direction-row.is-grouped {
1543
+ flex-direction: row;
1544
+ }
1545
+
1546
+ .field.has-direction-column.is-grouped {
1547
+ flex-direction: column;
1548
+ width: -moz-fit-content;
1549
+ width: fit-content;
1550
+ }
1551
+ .field.has-direction-column.is-grouped .button {
1552
+ width: 100%;
1553
+ }
1554
+ .field.has-direction-column.is-grouped .bal-button {
1555
+ margin: 0 !important;
1556
+ }
1557
+
1558
+ @media screen and (max-width: 768px) {
1559
+ .field.has-direction-auto.is-grouped {
1560
+ flex-wrap: wrap;
1561
+ flex-direction: column;
1562
+ width: 100%;
1563
+ }
1564
+ .field.has-direction-auto.is-grouped .control {
1565
+ flex-grow: 1;
1566
+ flex-shrink: 1;
1567
+ min-width: 100%;
1568
+ margin-right: 0 !important;
1569
+ }
1570
+ .field.has-direction-auto.is-grouped .control .button {
1571
+ min-width: 100%;
1572
+ }
1573
+ .field.has-direction-auto.is-grouped.is-reverse {
1574
+ flex-direction: column-reverse;
1575
+ }
1576
+ }
1577
+ .button {
1578
+ -moz-appearance: none !important;
1579
+ -webkit-appearance: none !important;
1580
+ position: relative;
1581
+ display: inline-flex;
1582
+ border-radius: var(--bal-button-radius);
1583
+ border-style: var(--bal-button-border-style);
1584
+ border-color: var(--bal-button-border-color);
1585
+ border-width: var(--bal-button-border-width);
1586
+ color: var(--bal-button-color);
1587
+ font-family: var(--bal-button-font-family);
1588
+ font-size: var(--bal-button-font-size);
1589
+ line-height: var(--bal-button-line-height);
1590
+ font-weight: var(--bal-button-font-weight);
1591
+ background-color: var(--bal-button-background);
1592
+ cursor: pointer;
1593
+ justify-content: center;
1594
+ align-items: center;
1595
+ vertical-align: top;
1596
+ padding: 0.625rem 1.5rem;
1597
+ min-height: 3rem;
1598
+ height: auto;
1599
+ text-align: left;
1600
+ word-break: break-word;
1601
+ box-shadow: none;
1602
+ outline: none;
1603
+ box-sizing: border-box;
1604
+ appearance: none;
1605
+ text-decoration: none;
1606
+ -webkit-user-select: none;
1607
+ -moz-user-select: none;
1608
+ user-select: none;
1609
+ touch-action: manipulation;
1610
+ }
1611
+ .button svg,
1612
+ .button g,
1613
+ .button path,
1614
+ .button circle {
1615
+ fill: var(--bal-button-color);
1616
+ }
1617
+ .button:focus, .button.is-focused, .button:active, .button.is-active {
1618
+ outline: none;
1619
+ }
1620
+ .button[disabled], fieldset[disabled] .button {
1621
+ cursor: default;
1622
+ }
1623
+ .button > span, .button > strong {
1624
+ color: inherit;
1625
+ font-family: var(--bal-button-font-family);
1626
+ font-weight: var(--bal-button-font-weight);
1627
+ -webkit-hyphens: auto;
1628
+ hyphens: auto;
1629
+ text-align: center;
1630
+ }
1631
+ .button::-moz-focus-inner {
1632
+ border: 0;
1633
+ }
1634
+ .button.has-no-wrap {
1635
+ text-overflow: ellipsis;
1636
+ overflow: hidden;
1637
+ white-space: nowrap;
1638
+ }
1639
+ .button.is-rounded {
1640
+ border-radius: var(--bal-radius-rounded);
1641
+ }
1642
+ .button.has-blur-shadow:not(.button.is-link) {
1643
+ box-shadow: var(--bal-text-shadow-normal);
1644
+ }
1645
+ .button.has-blur-shadow.is-link {
1646
+ text-shadow: var(--bal-text-shadow-normal);
1647
+ }
1648
+ .button .icon-left,
1649
+ .button .icon-right {
1650
+ align-items: center;
1651
+ display: inline-flex;
1652
+ justify-content: center;
1653
+ }
1654
+ .button .icon-left {
1655
+ margin-right: 0.5rem;
1656
+ }
1657
+ .button .icon-right {
1658
+ margin-left: 0.5rem;
1659
+ }
1660
+ .button.is-fullwidth {
1661
+ width: 100%;
1662
+ }
1663
+ .button.is-square {
1664
+ width: 3rem;
1665
+ padding: 0;
1666
+ }
1667
+ .button.is-square .icon-left {
1668
+ margin: 0;
1669
+ }
1670
+ .button.is-flat {
1671
+ padding: 0;
1672
+ min-height: 1.5rem;
1673
+ }
1674
+ .button.is-small {
1675
+ min-height: 2rem;
1676
+ max-height: 2rem;
1677
+ min-width: 2rem;
1678
+ padding-left: 0.75rem;
1679
+ padding-right: 0.75rem;
1680
+ padding-top: 0px;
1681
+ padding-bottom: 0px;
1682
+ font-size: var(--bal-button-small-font-size);
1683
+ line-height: 1.25rem;
1684
+ }
1685
+ .button.is-small.is-square {
1686
+ width: 2rem;
1687
+ padding: 0;
1688
+ }
1689
+ .button.is-large {
1690
+ min-height: 3.5rem;
1691
+ }
1692
+ .button.is-large.is-square {
1693
+ width: 3.5rem;
1694
+ padding: 0;
1695
+ }
1696
+ @media (hover: hover) and (pointer: fine) {
1697
+ .button:hover, .button.is-hovered {
1698
+ background: var(--bal-button-background-hover);
1699
+ border-color: var(--bal-button-border-color-hover);
1700
+ color: var(--bal-button-color-hover);
1701
+ }
1702
+ .button:hover svg,
1703
+ .button:hover g,
1704
+ .button:hover path,
1705
+ .button:hover circle, .button.is-hovered svg,
1706
+ .button.is-hovered g,
1707
+ .button.is-hovered path,
1708
+ .button.is-hovered circle {
1709
+ fill: var(--bal-button-color-hover);
1710
+ }
1711
+ }
1712
+ .button:active, .button.is-active {
1713
+ background: var(--bal-button-background-active);
1714
+ border-color: var(--bal-button-border-color-active);
1715
+ color: var(--bal-button-color-active);
1716
+ }
1717
+ .button:active svg,
1718
+ .button:active g,
1719
+ .button:active path,
1720
+ .button:active circle, .button.is-active svg,
1721
+ .button.is-active g,
1722
+ .button.is-active path,
1723
+ .button.is-active circle {
1724
+ fill: var(--bal-button-color-active);
1725
+ }
1726
+ .button.is-primary {
1727
+ background: var(--bal-button-primary-background);
1728
+ border-color: var(--bal-button-primary-border-color);
1729
+ color: var(--bal-button-primary-color);
1730
+ }
1731
+ .button.is-primary svg,
1732
+ .button.is-primary g,
1733
+ .button.is-primary path,
1734
+ .button.is-primary circle {
1735
+ fill: var(--bal-button-primary-color);
1736
+ }
1737
+ @media (hover: hover) and (pointer: fine) {
1738
+ .button.is-primary:hover, .button.is-primary.is-hovered {
1739
+ background: var(--bal-button-primary-background-hover);
1740
+ border-color: var(--bal-button-primary-border-color-hover);
1741
+ color: var(--bal-button-primary-color-hover);
1742
+ }
1743
+ .button.is-primary:hover svg,
1744
+ .button.is-primary:hover g,
1745
+ .button.is-primary:hover path,
1746
+ .button.is-primary:hover circle, .button.is-primary.is-hovered svg,
1747
+ .button.is-primary.is-hovered g,
1748
+ .button.is-primary.is-hovered path,
1749
+ .button.is-primary.is-hovered circle {
1750
+ fill: var(--bal-button-primary-color-hover);
1751
+ }
1752
+ }
1753
+ .button.is-primary:active, .button.is-primary.is-active {
1754
+ background: var(--bal-button-primary-background-active);
1755
+ border-color: var(--bal-button-primary-border-color-active);
1756
+ color: var(--bal-button-primary-color-active);
1757
+ }
1758
+ .button.is-primary:active svg,
1759
+ .button.is-primary:active g,
1760
+ .button.is-primary:active path,
1761
+ .button.is-primary:active circle, .button.is-primary.is-active svg,
1762
+ .button.is-primary.is-active g,
1763
+ .button.is-primary.is-active path,
1764
+ .button.is-primary.is-active circle {
1765
+ fill: var(--bal-button-primary-color-active);
1766
+ }
1767
+ .button.is-tertiary-purple {
1768
+ background: var(--bal-button-tertiary-purple-background);
1769
+ border-color: var(--bal-button-tertiary-purple-border-color);
1770
+ color: var(--bal-button-tertiary-purple-color);
1771
+ }
1772
+ .button.is-tertiary-purple svg,
1773
+ .button.is-tertiary-purple g,
1774
+ .button.is-tertiary-purple path,
1775
+ .button.is-tertiary-purple circle {
1776
+ fill: var(--bal-button-tertiary-purple-color);
1777
+ }
1778
+ @media (hover: hover) and (pointer: fine) {
1779
+ .button.is-tertiary-purple:hover, .button.is-tertiary-purple.is-hovered {
1780
+ background: var(--bal-button-tertiary-purple-background-hover);
1781
+ border-color: var(--bal-button-tertiary-purple-border-color-hover);
1782
+ color: var(--bal-button--tertiary-purple-color-hover);
1783
+ }
1784
+ .button.is-tertiary-purple:hover svg,
1785
+ .button.is-tertiary-purple:hover g,
1786
+ .button.is-tertiary-purple:hover path,
1787
+ .button.is-tertiary-purple:hover circle, .button.is-tertiary-purple.is-hovered svg,
1788
+ .button.is-tertiary-purple.is-hovered g,
1789
+ .button.is-tertiary-purple.is-hovered path,
1790
+ .button.is-tertiary-purple.is-hovered circle {
1791
+ fill: var(--bal-button-tertiary-purple-color-hover);
1792
+ }
1793
+ }
1794
+ .button.is-tertiary-purple:active, .button.is-tertiary-purple.is-active {
1795
+ background: var(--bal-button-tertiary-purple-background-active);
1796
+ border-color: var(--bal-button-tertiary-purple-border-color-active);
1797
+ color: var(--bal-button-tertiary-purple-color-active);
1798
+ }
1799
+ .button.is-tertiary-purple:active svg,
1800
+ .button.is-tertiary-purple:active g,
1801
+ .button.is-tertiary-purple:active path,
1802
+ .button.is-tertiary-purple:active circle, .button.is-tertiary-purple.is-active svg,
1803
+ .button.is-tertiary-purple.is-active g,
1804
+ .button.is-tertiary-purple.is-active path,
1805
+ .button.is-tertiary-purple.is-active circle {
1806
+ fill: var(--bal-button-tertiary-purple-color-active);
1807
+ }
1808
+ .button.is-tertiary-red {
1809
+ background: var(--bal-button-tertiary-red-background);
1810
+ border-color: var(--bal-button-tertiary-red-border-color);
1811
+ color: var(--bal-button-tertiary-red-color);
1812
+ }
1813
+ .button.is-tertiary-red svg,
1814
+ .button.is-tertiary-red g,
1815
+ .button.is-tertiary-red path,
1816
+ .button.is-tertiary-red circle {
1817
+ fill: var(--bal-button-tertiary-red-color);
1818
+ }
1819
+ @media (hover: hover) and (pointer: fine) {
1820
+ .button.is-tertiary-red:hover, .button.is-tertiary-red.is-hovered {
1821
+ background: var(--bal-button-tertiary-red-background-hover);
1822
+ border-color: var(--bal-button-tertiary-red-border-color-hover);
1823
+ color: var(--bal-button--tertiary-red-color-hover);
1824
+ }
1825
+ .button.is-tertiary-red:hover svg,
1826
+ .button.is-tertiary-red:hover g,
1827
+ .button.is-tertiary-red:hover path,
1828
+ .button.is-tertiary-red:hover circle, .button.is-tertiary-red.is-hovered svg,
1829
+ .button.is-tertiary-red.is-hovered g,
1830
+ .button.is-tertiary-red.is-hovered path,
1831
+ .button.is-tertiary-red.is-hovered circle {
1832
+ fill: var(--bal-button-tertiary-red-color-hover);
1833
+ }
1834
+ }
1835
+ .button.is-tertiary-red:active, .button.is-tertiary-red.is-active {
1836
+ background: var(--bal-button-tertiary-red-background-active);
1837
+ border-color: var(--bal-button-tertiary-red-border-color-active);
1838
+ color: var(--bal-button-tertiary-red-color-active);
1839
+ }
1840
+ .button.is-tertiary-red:active svg,
1841
+ .button.is-tertiary-red:active g,
1842
+ .button.is-tertiary-red:active path,
1843
+ .button.is-tertiary-red:active circle, .button.is-tertiary-red.is-active svg,
1844
+ .button.is-tertiary-red.is-active g,
1845
+ .button.is-tertiary-red.is-active path,
1846
+ .button.is-tertiary-red.is-active circle {
1847
+ fill: var(--bal-button-tertiary-red-color-active);
1848
+ }
1849
+ .button.is-tertiary-yellow {
1850
+ background: var(--bal-button-tertiary-yellow-background);
1851
+ border-color: var(--bal-button-tertiary-yellow-border-color);
1852
+ color: var(--bal-button-tertiary-yellow-color);
1853
+ }
1854
+ .button.is-tertiary-yellow svg,
1855
+ .button.is-tertiary-yellow g,
1856
+ .button.is-tertiary-yellow path,
1857
+ .button.is-tertiary-yellow circle {
1858
+ fill: var(--bal-button-tertiary-yellow-color);
1859
+ }
1860
+ @media (hover: hover) and (pointer: fine) {
1861
+ .button.is-tertiary-yellow:hover, .button.is-tertiary-yellow.is-hovered {
1862
+ background: var(--bal-button-tertiary-yellow-background-hover);
1863
+ border-color: var(--bal-button-tertiary-yellow-border-color-hover);
1864
+ color: var(--bal-button--tertiary-yellow-color-hover);
1865
+ }
1866
+ .button.is-tertiary-yellow:hover svg,
1867
+ .button.is-tertiary-yellow:hover g,
1868
+ .button.is-tertiary-yellow:hover path,
1869
+ .button.is-tertiary-yellow:hover circle, .button.is-tertiary-yellow.is-hovered svg,
1870
+ .button.is-tertiary-yellow.is-hovered g,
1871
+ .button.is-tertiary-yellow.is-hovered path,
1872
+ .button.is-tertiary-yellow.is-hovered circle {
1873
+ fill: var(--bal-button-tertiary-yellow-color-hover);
1874
+ }
1875
+ }
1876
+ .button.is-tertiary-yellow:active, .button.is-tertiary-yellow.is-active {
1877
+ background: var(--bal-button-tertiary-yellow-background-active);
1878
+ border-color: var(--bal-button-tertiary-yellow-border-color-active);
1879
+ color: var(--bal-button-tertiary-yellow-color-active);
1880
+ }
1881
+ .button.is-tertiary-yellow:active svg,
1882
+ .button.is-tertiary-yellow:active g,
1883
+ .button.is-tertiary-yellow:active path,
1884
+ .button.is-tertiary-yellow:active circle, .button.is-tertiary-yellow.is-active svg,
1885
+ .button.is-tertiary-yellow.is-active g,
1886
+ .button.is-tertiary-yellow.is-active path,
1887
+ .button.is-tertiary-yellow.is-active circle {
1888
+ fill: var(--bal-button-tertiary-yellow-color-active);
1889
+ }
1890
+ .button.is-tertiary-green {
1891
+ background: var(--bal-button-tertiary-green-background);
1892
+ border-color: var(--bal-button-tertiary-green-border-color);
1893
+ color: var(--bal-button-tertiary-green-color);
1894
+ }
1895
+ .button.is-tertiary-green svg,
1896
+ .button.is-tertiary-green g,
1897
+ .button.is-tertiary-green path,
1898
+ .button.is-tertiary-green circle {
1899
+ fill: var(--bal-button-tertiary-green-color);
1900
+ }
1901
+ @media (hover: hover) and (pointer: fine) {
1902
+ .button.is-tertiary-green:hover, .button.is-tertiary-green.is-hovered {
1903
+ background: var(--bal-button-tertiary-green-background-hover);
1904
+ border-color: var(--bal-button-tertiary-green-border-color-hover);
1905
+ color: var(--bal-button--tertiary-green-color-hover);
1906
+ }
1907
+ .button.is-tertiary-green:hover svg,
1908
+ .button.is-tertiary-green:hover g,
1909
+ .button.is-tertiary-green:hover path,
1910
+ .button.is-tertiary-green:hover circle, .button.is-tertiary-green.is-hovered svg,
1911
+ .button.is-tertiary-green.is-hovered g,
1912
+ .button.is-tertiary-green.is-hovered path,
1913
+ .button.is-tertiary-green.is-hovered circle {
1914
+ fill: var(--bal-button-tertiary-green-color-hover);
1915
+ }
1916
+ }
1917
+ .button.is-tertiary-green:active, .button.is-tertiary-green.is-active {
1918
+ background: var(--bal-button-tertiary-green-background-active);
1919
+ border-color: var(--bal-button-tertiary-green-border-color-active);
1920
+ color: var(--bal-button-tertiary-green-color-active);
1921
+ }
1922
+ .button.is-tertiary-green:active svg,
1923
+ .button.is-tertiary-green:active g,
1924
+ .button.is-tertiary-green:active path,
1925
+ .button.is-tertiary-green:active circle, .button.is-tertiary-green.is-active svg,
1926
+ .button.is-tertiary-green.is-active g,
1927
+ .button.is-tertiary-green.is-active path,
1928
+ .button.is-tertiary-green.is-active circle {
1929
+ fill: var(--bal-button-tertiary-green-color-active);
1930
+ }
1931
+ .button.is-tertiary, .button.is-text, .button.is-link {
1932
+ border-color: var(--bal-link-border-color);
1933
+ }
1934
+ .button.is-link {
1935
+ -webkit-text-decoration: var(--bal-link-text-decoration);
1936
+ text-decoration: var(--bal-link-text-decoration);
1937
+ text-underline-offset: var(--bal-link-text-underline-offset);
1938
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
1939
+ }
1940
+ @media (hover: hover) and (pointer: fine) {
1941
+ .button.is-link:hover, .button.is-link.is-hovered {
1942
+ -webkit-text-decoration: var(--bal-link-text-decoration);
1943
+ text-decoration: var(--bal-link-text-decoration);
1944
+ text-underline-offset: var(--bal-link-text-underline-offset);
1945
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
1946
+ background: var(--bal-link-background);
1947
+ border-color: var(--bal-link-border-color);
1948
+ color: var(--bal-link-color-hover);
1949
+ }
1950
+ .button.is-link:hover svg,
1951
+ .button.is-link:hover g,
1952
+ .button.is-link:hover path,
1953
+ .button.is-link:hover circle, .button.is-link.is-hovered svg,
1954
+ .button.is-link.is-hovered g,
1955
+ .button.is-link.is-hovered path,
1956
+ .button.is-link.is-hovered circle {
1957
+ fill: var(--bal-link-color-hover);
1958
+ }
1959
+ }
1960
+ .button.is-link:active, .button.is-link.is-active {
1961
+ -webkit-text-decoration: var(--bal-link-text-decoration);
1962
+ text-decoration: var(--bal-link-text-decoration);
1963
+ text-underline-offset: var(--bal-link-text-underline-offset);
1964
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
1965
+ background: var(--bal-link-background);
1966
+ border-color: var(--bal-link-border-color);
1967
+ color: var(--bal-link-color-active);
1968
+ }
1969
+ .button.is-link:active svg,
1970
+ .button.is-link:active g,
1971
+ .button.is-link:active path,
1972
+ .button.is-link:active circle, .button.is-link.is-active svg,
1973
+ .button.is-link.is-active g,
1974
+ .button.is-link.is-active path,
1975
+ .button.is-link.is-active circle {
1976
+ fill: var(--bal-link-color-active);
1977
+ }
1978
+ @media (hover: hover) and (pointer: fine) {
1979
+ .button.is-tertiary:hover, .button.is-tertiary.is-hovered, .button.is-text:hover, .button.is-text.is-hovered {
1980
+ background: var(--bal-button-text-background-hover);
1981
+ border-color: var(--bal-button-text-border-color-hover);
1982
+ color: var(--bal-link-color-hover);
1983
+ }
1984
+ .button.is-tertiary:hover svg,
1985
+ .button.is-tertiary:hover g,
1986
+ .button.is-tertiary:hover path,
1987
+ .button.is-tertiary:hover circle, .button.is-tertiary.is-hovered svg,
1988
+ .button.is-tertiary.is-hovered g,
1989
+ .button.is-tertiary.is-hovered path,
1990
+ .button.is-tertiary.is-hovered circle, .button.is-text:hover svg,
1991
+ .button.is-text:hover g,
1992
+ .button.is-text:hover path,
1993
+ .button.is-text:hover circle, .button.is-text.is-hovered svg,
1994
+ .button.is-text.is-hovered g,
1995
+ .button.is-text.is-hovered path,
1996
+ .button.is-text.is-hovered circle {
1997
+ fill: var(--bal-link-color-hover);
1998
+ }
1999
+ }
2000
+ .button.is-tertiary:active, .button.is-tertiary.is-active, .button.is-text:active, .button.is-text.is-active {
2001
+ background: var(--bal-button-text-background-active);
2002
+ border-color: var(--bal-button-text-border-color-active);
2003
+ color: var(--bal-link-color-active);
2004
+ }
2005
+ .button.is-tertiary:active svg,
2006
+ .button.is-tertiary:active g,
2007
+ .button.is-tertiary:active path,
2008
+ .button.is-tertiary:active circle, .button.is-tertiary.is-active svg,
2009
+ .button.is-tertiary.is-active g,
2010
+ .button.is-tertiary.is-active path,
2011
+ .button.is-tertiary.is-active circle, .button.is-text:active svg,
2012
+ .button.is-text:active g,
2013
+ .button.is-text:active path,
2014
+ .button.is-text:active circle, .button.is-text.is-active svg,
2015
+ .button.is-text.is-active g,
2016
+ .button.is-text.is-active path,
2017
+ .button.is-text.is-active circle {
2018
+ fill: var(--bal-link-color-active);
2019
+ }
2020
+ .button.is-info-light {
2021
+ background: var(--bal-color-info-1);
2022
+ border-color: var(--bal-color-info-5);
2023
+ color: var(--bal-color-primary);
2024
+ }
2025
+ .button.is-info-light svg,
2026
+ .button.is-info-light g,
2027
+ .button.is-info-light path,
2028
+ .button.is-info-light circle {
2029
+ fill: var(--bal-color-primary);
2030
+ }
2031
+ @media (hover: hover) and (pointer: fine) {
2032
+ .button.is-info-light:hover, .button.is-info-light.is-hovered {
2033
+ background: var(--bal-color-info-5);
2034
+ border-color: var(--bal-color-info-5);
2035
+ color: var(--bal-color-white);
2036
+ }
2037
+ .button.is-info-light:hover svg,
2038
+ .button.is-info-light:hover g,
2039
+ .button.is-info-light:hover path,
2040
+ .button.is-info-light:hover circle, .button.is-info-light.is-hovered svg,
2041
+ .button.is-info-light.is-hovered g,
2042
+ .button.is-info-light.is-hovered path,
2043
+ .button.is-info-light.is-hovered circle {
2044
+ fill: var(--bal-color-white);
2045
+ }
2046
+ }
2047
+ .button.is-info-light:active, .button.is-info-light.is-active {
2048
+ background: var(--bal-color-info-6);
2049
+ border-color: var(--bal-color-info-6);
2050
+ color: var(--bal-color-white);
2051
+ }
2052
+ .button.is-info-light:active svg,
2053
+ .button.is-info-light:active g,
2054
+ .button.is-info-light:active path,
2055
+ .button.is-info-light:active circle, .button.is-info-light.is-active svg,
2056
+ .button.is-info-light.is-active g,
2057
+ .button.is-info-light.is-active path,
2058
+ .button.is-info-light.is-active circle {
2059
+ fill: var(--bal-color-white);
2060
+ }
2061
+ .button.is-success {
2062
+ background: var(--bal-button-success-background);
2063
+ border-color: var(--bal-button-success-border-color);
2064
+ color: var(--bal-button-success-color);
2065
+ }
2066
+ .button.is-success svg,
2067
+ .button.is-success g,
2068
+ .button.is-success path,
2069
+ .button.is-success circle {
2070
+ fill: var(--bal-button-success-color);
2071
+ }
2072
+ @media (hover: hover) and (pointer: fine) {
2073
+ .button.is-success:hover, .button.is-success.is-hovered {
2074
+ background: var(--bal-button-success-background-hover);
2075
+ border-color: var(--bal-button-success-border-color-hover);
2076
+ color: var(--bal-button-success-color-hover);
2077
+ }
2078
+ .button.is-success:hover svg,
2079
+ .button.is-success:hover g,
2080
+ .button.is-success:hover path,
2081
+ .button.is-success:hover circle, .button.is-success.is-hovered svg,
2082
+ .button.is-success.is-hovered g,
2083
+ .button.is-success.is-hovered path,
2084
+ .button.is-success.is-hovered circle {
2085
+ fill: var(--bal-button-success-color-hover);
2086
+ }
2087
+ }
2088
+ .button.is-success:active, .button.is-success.is-active {
2089
+ background: var(--bal-button-success-background-active);
2090
+ border-color: var(--bal-button-success-background-active);
2091
+ color: var(--bal-button-success-color-active);
2092
+ }
2093
+ .button.is-success:active svg,
2094
+ .button.is-success:active g,
2095
+ .button.is-success:active path,
2096
+ .button.is-success:active circle, .button.is-success.is-active svg,
2097
+ .button.is-success.is-active g,
2098
+ .button.is-success.is-active path,
2099
+ .button.is-success.is-active circle {
2100
+ fill: var(--bal-button-success-color-active);
2101
+ }
2102
+ .button.is-warning {
2103
+ background: var(--bal-button-warning-background);
2104
+ border-color: var(--bal-button-warning-border-color);
2105
+ color: var(--bal-button-warning-color);
2106
+ }
2107
+ .button.is-warning svg,
2108
+ .button.is-warning g,
2109
+ .button.is-warning path,
2110
+ .button.is-warning circle {
2111
+ fill: var(--bal-button-warning-color);
2112
+ }
2113
+ @media (hover: hover) and (pointer: fine) {
2114
+ .button.is-warning:hover, .button.is-warning.is-hovered {
2115
+ background: var(--bal-button-warning-background-hover);
2116
+ border-color: var(--bal-button-warning-border-color-hover);
2117
+ color: var(--bal-button-warning-color-hover);
2118
+ }
2119
+ .button.is-warning:hover svg,
2120
+ .button.is-warning:hover g,
2121
+ .button.is-warning:hover path,
2122
+ .button.is-warning:hover circle, .button.is-warning.is-hovered svg,
2123
+ .button.is-warning.is-hovered g,
2124
+ .button.is-warning.is-hovered path,
2125
+ .button.is-warning.is-hovered circle {
2126
+ fill: var(--bal-button-warning-color-hover);
2127
+ }
2128
+ }
2129
+ .button.is-warning:active, .button.is-warning.is-active {
2130
+ background: var(--bal-button-warning-background-active);
2131
+ border-color: var(--bal-button-warning-background-active);
2132
+ color: var(--bal-button-warning-color-active);
2133
+ }
2134
+ .button.is-warning:active svg,
2135
+ .button.is-warning:active g,
2136
+ .button.is-warning:active path,
2137
+ .button.is-warning:active circle, .button.is-warning.is-active svg,
2138
+ .button.is-warning.is-active g,
2139
+ .button.is-warning.is-active path,
2140
+ .button.is-warning.is-active circle {
2141
+ fill: var(--bal-button-warning-color-active);
2142
+ }
2143
+ .button.is-danger {
2144
+ background: var(--bal-button-danger-background);
2145
+ border-color: var(--bal-button-danger-border-color);
2146
+ color: var(--bal-button-danger-color);
2147
+ }
2148
+ .button.is-danger svg,
2149
+ .button.is-danger g,
2150
+ .button.is-danger path,
2151
+ .button.is-danger circle {
2152
+ fill: var(--bal-button-danger-color);
2153
+ }
2154
+ @media (hover: hover) and (pointer: fine) {
2155
+ .button.is-danger:hover, .button.is-danger.is-hovered {
2156
+ background: var(--bal-button-danger-background-hover);
2157
+ border-color: var(--bal-button-danger-border-color-hover);
2158
+ color: var(--bal-button-danger-color-hover);
2159
+ }
2160
+ .button.is-danger:hover svg,
2161
+ .button.is-danger:hover g,
2162
+ .button.is-danger:hover path,
2163
+ .button.is-danger:hover circle, .button.is-danger.is-hovered svg,
2164
+ .button.is-danger.is-hovered g,
2165
+ .button.is-danger.is-hovered path,
2166
+ .button.is-danger.is-hovered circle {
2167
+ fill: var(--bal-button-danger-color-hover);
2168
+ }
2169
+ }
2170
+ .button.is-danger:active, .button.is-danger.is-active {
2171
+ background: var(--bal-button-danger-background-active);
2172
+ border-color: var(--bal-button-danger-background-active);
2173
+ color: var(--bal-button-danger-color-active);
2174
+ }
2175
+ .button.is-danger:active svg,
2176
+ .button.is-danger:active g,
2177
+ .button.is-danger:active path,
2178
+ .button.is-danger:active circle, .button.is-danger.is-active svg,
2179
+ .button.is-danger.is-active g,
2180
+ .button.is-danger.is-active path,
2181
+ .button.is-danger.is-active circle {
2182
+ fill: var(--bal-button-danger-color-active);
2183
+ }
2184
+ .button.is-light {
2185
+ background: var(--bal-button-light-background);
2186
+ border-color: var(--bal-button-light-border-color);
2187
+ color: var(--bal-button-light-color);
2188
+ }
2189
+ .button.is-light svg,
2190
+ .button.is-light g,
2191
+ .button.is-light path,
2192
+ .button.is-light circle {
2193
+ fill: var(--bal-button-light-color);
2194
+ }
2195
+ @media (hover: hover) and (pointer: fine) {
2196
+ .button.is-light:hover, .button.is-light.is-hovered {
2197
+ background: var(--bal-button-light-background-hover);
2198
+ border-color: var(--bal-button-light-border-color-hover);
2199
+ color: var(--bal-button-light-color-hover);
2200
+ }
2201
+ .button.is-light:hover svg,
2202
+ .button.is-light:hover g,
2203
+ .button.is-light:hover path,
2204
+ .button.is-light:hover circle, .button.is-light.is-hovered svg,
2205
+ .button.is-light.is-hovered g,
2206
+ .button.is-light.is-hovered path,
2207
+ .button.is-light.is-hovered circle {
2208
+ fill: var(--bal-button-light-color-hover);
2209
+ }
2210
+ }
2211
+ .button.is-light:active, .button.is-light.is-active {
2212
+ background: var(--bal-button-light-background-active);
2213
+ border-color: var(--bal-button-light-border-color-active);
2214
+ color: var(--bal-button-light-color-active);
2215
+ }
2216
+ .button.is-light:active svg,
2217
+ .button.is-light:active g,
2218
+ .button.is-light:active path,
2219
+ .button.is-light:active circle, .button.is-light.is-active svg,
2220
+ .button.is-light.is-active g,
2221
+ .button.is-light.is-active path,
2222
+ .button.is-light.is-active circle {
2223
+ fill: var(--bal-button-light-color-active);
2224
+ }
2225
+ .button.is-inverted {
2226
+ background: var(--bal-button-inverted-background);
2227
+ border-color: var(--bal-button-inverted-border-color);
2228
+ color: var(--bal-button-inverted-color);
2229
+ }
2230
+ .button.is-inverted svg,
2231
+ .button.is-inverted g,
2232
+ .button.is-inverted path,
2233
+ .button.is-inverted circle {
2234
+ fill: var(--bal-button-inverted-color);
2235
+ }
2236
+ @media (hover: hover) and (pointer: fine) {
2237
+ .button.is-inverted:hover, .button.is-inverted.is-hovered {
2238
+ background: var(--bal-button-inverted-background-hover);
2239
+ border-color: var(--bal-button-inverted-border-color-hover);
2240
+ color: var(--bal-button-inverted-color-hover);
2241
+ }
2242
+ .button.is-inverted:hover svg,
2243
+ .button.is-inverted:hover g,
2244
+ .button.is-inverted:hover path,
2245
+ .button.is-inverted:hover circle, .button.is-inverted.is-hovered svg,
2246
+ .button.is-inverted.is-hovered g,
2247
+ .button.is-inverted.is-hovered path,
2248
+ .button.is-inverted.is-hovered circle {
2249
+ fill: var(--bal-button-inverted-color-hover);
2250
+ }
2251
+ }
2252
+ .button.is-inverted:active, .button.is-inverted.is-active {
2253
+ background: var(--bal-button-inverted-background-active);
2254
+ border-color: var(--bal-button-inverted-border-color-active);
2255
+ color: var(--bal-button-inverted-color-active);
2256
+ }
2257
+ .button.is-inverted:active svg,
2258
+ .button.is-inverted:active g,
2259
+ .button.is-inverted:active path,
2260
+ .button.is-inverted:active circle, .button.is-inverted.is-active svg,
2261
+ .button.is-inverted.is-active g,
2262
+ .button.is-inverted.is-active path,
2263
+ .button.is-inverted.is-active circle {
2264
+ fill: var(--bal-button-inverted-color-active);
2265
+ }
2266
+ .button.is-inverted.is-primary {
2267
+ background: var(--bal-button-inverted-primary-background);
2268
+ border-color: var(--bal-button-inverted-primary-border-color);
2269
+ color: var(--bal-button-inverted-primary-color);
2270
+ }
2271
+ .button.is-inverted.is-primary svg,
2272
+ .button.is-inverted.is-primary g,
2273
+ .button.is-inverted.is-primary path,
2274
+ .button.is-inverted.is-primary circle {
2275
+ fill: var(--bal-button-inverted-primary-color);
2276
+ }
2277
+ @media (hover: hover) and (pointer: fine) {
2278
+ .button.is-inverted.is-primary:hover, .button.is-inverted.is-primary.is-hovered {
2279
+ background: var(--bal-button-inverted-primary-background-hover);
2280
+ border-color: var(--bal-button-inverted-primary-border-color-hover);
2281
+ color: var(--bal-button-inverted-primary-color-hover);
2282
+ }
2283
+ .button.is-inverted.is-primary:hover svg,
2284
+ .button.is-inverted.is-primary:hover g,
2285
+ .button.is-inverted.is-primary:hover path,
2286
+ .button.is-inverted.is-primary:hover circle, .button.is-inverted.is-primary.is-hovered svg,
2287
+ .button.is-inverted.is-primary.is-hovered g,
2288
+ .button.is-inverted.is-primary.is-hovered path,
2289
+ .button.is-inverted.is-primary.is-hovered circle {
2290
+ fill: var(--bal-button-inverted-primary-color-hover);
2291
+ }
2292
+ }
2293
+ .button.is-inverted.is-primary:active, .button.is-inverted.is-primary.is-active {
2294
+ background: var(--bal-button-inverted-primary-background-active);
2295
+ border-color: var(--bal-button-inverted-primary-border-color-active);
2296
+ color: var(--bal-button-inverted-primary-color-active);
2297
+ }
2298
+ .button.is-inverted.is-primary:active svg,
2299
+ .button.is-inverted.is-primary:active g,
2300
+ .button.is-inverted.is-primary:active path,
2301
+ .button.is-inverted.is-primary:active circle, .button.is-inverted.is-primary.is-active svg,
2302
+ .button.is-inverted.is-primary.is-active g,
2303
+ .button.is-inverted.is-primary.is-active path,
2304
+ .button.is-inverted.is-primary.is-active circle {
2305
+ fill: var(--bal-button-inverted-primary-color-active);
2306
+ }
2307
+ .button.is-inverted.is-tertiary, .button.is-inverted.is-tertiary-purple, .button.is-inverted.is-tertiary-red, .button.is-inverted.is-tertiary-yellow, .button.is-inverted.is-tertiary-green, .button.is-inverted.is-link, .button.is-inverted.is-text {
2308
+ background: var(--bal-button-inverted-text-background);
2309
+ border-color: var(--bal-button-inverted-text-border-color);
2310
+ color: var(--bal-button-inverted-text-color);
2311
+ }
2312
+ .button.is-inverted.is-tertiary svg,
2313
+ .button.is-inverted.is-tertiary g,
2314
+ .button.is-inverted.is-tertiary path,
2315
+ .button.is-inverted.is-tertiary circle, .button.is-inverted.is-tertiary-purple svg,
2316
+ .button.is-inverted.is-tertiary-purple g,
2317
+ .button.is-inverted.is-tertiary-purple path,
2318
+ .button.is-inverted.is-tertiary-purple circle, .button.is-inverted.is-tertiary-red svg,
2319
+ .button.is-inverted.is-tertiary-red g,
2320
+ .button.is-inverted.is-tertiary-red path,
2321
+ .button.is-inverted.is-tertiary-red circle, .button.is-inverted.is-tertiary-yellow svg,
2322
+ .button.is-inverted.is-tertiary-yellow g,
2323
+ .button.is-inverted.is-tertiary-yellow path,
2324
+ .button.is-inverted.is-tertiary-yellow circle, .button.is-inverted.is-tertiary-green svg,
2325
+ .button.is-inverted.is-tertiary-green g,
2326
+ .button.is-inverted.is-tertiary-green path,
2327
+ .button.is-inverted.is-tertiary-green circle, .button.is-inverted.is-link svg,
2328
+ .button.is-inverted.is-link g,
2329
+ .button.is-inverted.is-link path,
2330
+ .button.is-inverted.is-link circle, .button.is-inverted.is-text svg,
2331
+ .button.is-inverted.is-text g,
2332
+ .button.is-inverted.is-text path,
2333
+ .button.is-inverted.is-text circle {
2334
+ fill: var(--bal-button-inverted-text-color);
2335
+ }
2336
+ @media (hover: hover) and (pointer: fine) {
2337
+ .button.is-inverted.is-tertiary:hover, .button.is-inverted.is-tertiary.is-hovered, .button.is-inverted.is-tertiary-purple:hover, .button.is-inverted.is-tertiary-purple.is-hovered, .button.is-inverted.is-tertiary-red:hover, .button.is-inverted.is-tertiary-red.is-hovered, .button.is-inverted.is-tertiary-yellow:hover, .button.is-inverted.is-tertiary-yellow.is-hovered, .button.is-inverted.is-tertiary-green:hover, .button.is-inverted.is-tertiary-green.is-hovered, .button.is-inverted.is-link:hover, .button.is-inverted.is-link.is-hovered, .button.is-inverted.is-text:hover, .button.is-inverted.is-text.is-hovered {
2338
+ background: var(--bal-button-inverted-text-background-hover);
2339
+ border-color: var(--bal-button-inverted-text-border-color-hover);
2340
+ color: var(--bal-button-inverted-text-color-hover);
2341
+ }
2342
+ .button.is-inverted.is-tertiary:hover svg,
2343
+ .button.is-inverted.is-tertiary:hover g,
2344
+ .button.is-inverted.is-tertiary:hover path,
2345
+ .button.is-inverted.is-tertiary:hover circle, .button.is-inverted.is-tertiary.is-hovered svg,
2346
+ .button.is-inverted.is-tertiary.is-hovered g,
2347
+ .button.is-inverted.is-tertiary.is-hovered path,
2348
+ .button.is-inverted.is-tertiary.is-hovered circle, .button.is-inverted.is-tertiary-purple:hover svg,
2349
+ .button.is-inverted.is-tertiary-purple:hover g,
2350
+ .button.is-inverted.is-tertiary-purple:hover path,
2351
+ .button.is-inverted.is-tertiary-purple:hover circle, .button.is-inverted.is-tertiary-purple.is-hovered svg,
2352
+ .button.is-inverted.is-tertiary-purple.is-hovered g,
2353
+ .button.is-inverted.is-tertiary-purple.is-hovered path,
2354
+ .button.is-inverted.is-tertiary-purple.is-hovered circle, .button.is-inverted.is-tertiary-red:hover svg,
2355
+ .button.is-inverted.is-tertiary-red:hover g,
2356
+ .button.is-inverted.is-tertiary-red:hover path,
2357
+ .button.is-inverted.is-tertiary-red:hover circle, .button.is-inverted.is-tertiary-red.is-hovered svg,
2358
+ .button.is-inverted.is-tertiary-red.is-hovered g,
2359
+ .button.is-inverted.is-tertiary-red.is-hovered path,
2360
+ .button.is-inverted.is-tertiary-red.is-hovered circle, .button.is-inverted.is-tertiary-yellow:hover svg,
2361
+ .button.is-inverted.is-tertiary-yellow:hover g,
2362
+ .button.is-inverted.is-tertiary-yellow:hover path,
2363
+ .button.is-inverted.is-tertiary-yellow:hover circle, .button.is-inverted.is-tertiary-yellow.is-hovered svg,
2364
+ .button.is-inverted.is-tertiary-yellow.is-hovered g,
2365
+ .button.is-inverted.is-tertiary-yellow.is-hovered path,
2366
+ .button.is-inverted.is-tertiary-yellow.is-hovered circle, .button.is-inverted.is-tertiary-green:hover svg,
2367
+ .button.is-inverted.is-tertiary-green:hover g,
2368
+ .button.is-inverted.is-tertiary-green:hover path,
2369
+ .button.is-inverted.is-tertiary-green:hover circle, .button.is-inverted.is-tertiary-green.is-hovered svg,
2370
+ .button.is-inverted.is-tertiary-green.is-hovered g,
2371
+ .button.is-inverted.is-tertiary-green.is-hovered path,
2372
+ .button.is-inverted.is-tertiary-green.is-hovered circle, .button.is-inverted.is-link:hover svg,
2373
+ .button.is-inverted.is-link:hover g,
2374
+ .button.is-inverted.is-link:hover path,
2375
+ .button.is-inverted.is-link:hover circle, .button.is-inverted.is-link.is-hovered svg,
2376
+ .button.is-inverted.is-link.is-hovered g,
2377
+ .button.is-inverted.is-link.is-hovered path,
2378
+ .button.is-inverted.is-link.is-hovered circle, .button.is-inverted.is-text:hover svg,
2379
+ .button.is-inverted.is-text:hover g,
2380
+ .button.is-inverted.is-text:hover path,
2381
+ .button.is-inverted.is-text:hover circle, .button.is-inverted.is-text.is-hovered svg,
2382
+ .button.is-inverted.is-text.is-hovered g,
2383
+ .button.is-inverted.is-text.is-hovered path,
2384
+ .button.is-inverted.is-text.is-hovered circle {
2385
+ fill: var(--bal-button-inverted-text-color-hover);
2386
+ }
2387
+ }
2388
+ .button.is-inverted.is-tertiary:active, .button.is-inverted.is-tertiary.is-active, .button.is-inverted.is-tertiary-purple:active, .button.is-inverted.is-tertiary-purple.is-active, .button.is-inverted.is-tertiary-red:active, .button.is-inverted.is-tertiary-red.is-active, .button.is-inverted.is-tertiary-yellow:active, .button.is-inverted.is-tertiary-yellow.is-active, .button.is-inverted.is-tertiary-green:active, .button.is-inverted.is-tertiary-green.is-active, .button.is-inverted.is-link:active, .button.is-inverted.is-link.is-active, .button.is-inverted.is-text:active, .button.is-inverted.is-text.is-active {
2389
+ background: var(--bal-button-inverted-text-background-active);
2390
+ border-color: var(--bal-button-inverted-text-border-color-active);
2391
+ color: var(--bal-button-inverted-text-color-active);
2392
+ }
2393
+ .button.is-inverted.is-tertiary:active svg,
2394
+ .button.is-inverted.is-tertiary:active g,
2395
+ .button.is-inverted.is-tertiary:active path,
2396
+ .button.is-inverted.is-tertiary:active circle, .button.is-inverted.is-tertiary.is-active svg,
2397
+ .button.is-inverted.is-tertiary.is-active g,
2398
+ .button.is-inverted.is-tertiary.is-active path,
2399
+ .button.is-inverted.is-tertiary.is-active circle, .button.is-inverted.is-tertiary-purple:active svg,
2400
+ .button.is-inverted.is-tertiary-purple:active g,
2401
+ .button.is-inverted.is-tertiary-purple:active path,
2402
+ .button.is-inverted.is-tertiary-purple:active circle, .button.is-inverted.is-tertiary-purple.is-active svg,
2403
+ .button.is-inverted.is-tertiary-purple.is-active g,
2404
+ .button.is-inverted.is-tertiary-purple.is-active path,
2405
+ .button.is-inverted.is-tertiary-purple.is-active circle, .button.is-inverted.is-tertiary-red:active svg,
2406
+ .button.is-inverted.is-tertiary-red:active g,
2407
+ .button.is-inverted.is-tertiary-red:active path,
2408
+ .button.is-inverted.is-tertiary-red:active circle, .button.is-inverted.is-tertiary-red.is-active svg,
2409
+ .button.is-inverted.is-tertiary-red.is-active g,
2410
+ .button.is-inverted.is-tertiary-red.is-active path,
2411
+ .button.is-inverted.is-tertiary-red.is-active circle, .button.is-inverted.is-tertiary-yellow:active svg,
2412
+ .button.is-inverted.is-tertiary-yellow:active g,
2413
+ .button.is-inverted.is-tertiary-yellow:active path,
2414
+ .button.is-inverted.is-tertiary-yellow:active circle, .button.is-inverted.is-tertiary-yellow.is-active svg,
2415
+ .button.is-inverted.is-tertiary-yellow.is-active g,
2416
+ .button.is-inverted.is-tertiary-yellow.is-active path,
2417
+ .button.is-inverted.is-tertiary-yellow.is-active circle, .button.is-inverted.is-tertiary-green:active svg,
2418
+ .button.is-inverted.is-tertiary-green:active g,
2419
+ .button.is-inverted.is-tertiary-green:active path,
2420
+ .button.is-inverted.is-tertiary-green:active circle, .button.is-inverted.is-tertiary-green.is-active svg,
2421
+ .button.is-inverted.is-tertiary-green.is-active g,
2422
+ .button.is-inverted.is-tertiary-green.is-active path,
2423
+ .button.is-inverted.is-tertiary-green.is-active circle, .button.is-inverted.is-link:active svg,
2424
+ .button.is-inverted.is-link:active g,
2425
+ .button.is-inverted.is-link:active path,
2426
+ .button.is-inverted.is-link:active circle, .button.is-inverted.is-link.is-active svg,
2427
+ .button.is-inverted.is-link.is-active g,
2428
+ .button.is-inverted.is-link.is-active path,
2429
+ .button.is-inverted.is-link.is-active circle, .button.is-inverted.is-text:active svg,
2430
+ .button.is-inverted.is-text:active g,
2431
+ .button.is-inverted.is-text:active path,
2432
+ .button.is-inverted.is-text:active circle, .button.is-inverted.is-text.is-active svg,
2433
+ .button.is-inverted.is-text.is-active g,
2434
+ .button.is-inverted.is-text.is-active path,
2435
+ .button.is-inverted.is-text.is-active circle {
2436
+ fill: var(--bal-button-inverted-text-color-active);
2437
+ }
2438
+ .button.is-inverted.is-light {
2439
+ background: var(--bal-button-inverted-light-background);
2440
+ border-color: var(--bal-button-inverted-light-border-color);
2441
+ color: var(--bal-button-inverted-light-color);
2442
+ }
2443
+ .button.is-inverted.is-light svg,
2444
+ .button.is-inverted.is-light g,
2445
+ .button.is-inverted.is-light path,
2446
+ .button.is-inverted.is-light circle {
2447
+ fill: var(--bal-button-inverted-light-color);
2448
+ }
2449
+ @media (hover: hover) and (pointer: fine) {
2450
+ .button.is-inverted.is-light:hover, .button.is-inverted.is-light.is-hovered {
2451
+ background: var(--bal-button-inverted-light-background-hover);
2452
+ border-color: var(--bal-button-inverted-light-border-color-hover);
2453
+ color: var(--bal-button-inverted-light-color-hover);
2454
+ }
2455
+ .button.is-inverted.is-light:hover svg,
2456
+ .button.is-inverted.is-light:hover g,
2457
+ .button.is-inverted.is-light:hover path,
2458
+ .button.is-inverted.is-light:hover circle, .button.is-inverted.is-light.is-hovered svg,
2459
+ .button.is-inverted.is-light.is-hovered g,
2460
+ .button.is-inverted.is-light.is-hovered path,
2461
+ .button.is-inverted.is-light.is-hovered circle {
2462
+ fill: var(--bal-button-inverted-light-color-hover);
2463
+ }
2464
+ }
2465
+ .button.is-inverted.is-light:active, .button.is-inverted.is-light.is-active {
2466
+ background: var(--bal-button-inverted-light-background-active);
2467
+ border-color: var(--bal-button-inverted-light-border-color-active);
2468
+ color: var(--bal-button-inverted-light-color-active);
2469
+ }
2470
+ .button.is-inverted.is-light:active svg,
2471
+ .button.is-inverted.is-light:active g,
2472
+ .button.is-inverted.is-light:active path,
2473
+ .button.is-inverted.is-light:active circle, .button.is-inverted.is-light.is-active svg,
2474
+ .button.is-inverted.is-light.is-active g,
2475
+ .button.is-inverted.is-light.is-active path,
2476
+ .button.is-inverted.is-light.is-active circle {
2477
+ fill: var(--bal-button-inverted-light-color-active);
2478
+ }
2479
+ .button.is-disabled.is-inverted, .button.is-disabled, .button.is-disabled:hover, .button.is-disabled:active, .button.is-disabled:focus, .button.is-inverted:disabled, .button:disabled {
2480
+ background: var(--bal-button-disablde-background);
2481
+ border-color: var(--bal-button-disablde-border-color);
2482
+ color: var(--bal-button-disablde-color);
2483
+ opacity: 1;
2484
+ }
2485
+ .button.is-disabled.is-inverted svg,
2486
+ .button.is-disabled.is-inverted g,
2487
+ .button.is-disabled.is-inverted path,
2488
+ .button.is-disabled.is-inverted circle, .button.is-disabled svg,
2489
+ .button.is-disabled g,
2490
+ .button.is-disabled path,
2491
+ .button.is-disabled circle, .button.is-disabled:hover svg,
2492
+ .button.is-disabled:hover g,
2493
+ .button.is-disabled:hover path,
2494
+ .button.is-disabled:hover circle, .button.is-disabled:active svg,
2495
+ .button.is-disabled:active g,
2496
+ .button.is-disabled:active path,
2497
+ .button.is-disabled:active circle, .button.is-disabled:focus svg,
2498
+ .button.is-disabled:focus g,
2499
+ .button.is-disabled:focus path,
2500
+ .button.is-disabled:focus circle, .button.is-inverted:disabled svg,
2501
+ .button.is-inverted:disabled g,
2502
+ .button.is-inverted:disabled path,
2503
+ .button.is-inverted:disabled circle, .button:disabled svg,
2504
+ .button:disabled g,
2505
+ .button:disabled path,
2506
+ .button:disabled circle {
2507
+ fill: var(--bal-button-disablde-color);
2508
+ }
2509
+ .button.is-disabled.is-inverted > span::after, .button.is-disabled > span::after, .button.is-disabled:hover > span::after, .button.is-disabled:active > span::after, .button.is-disabled:focus > span::after, .button.is-inverted:disabled > span::after, .button:disabled > span::after {
2510
+ display: none;
2511
+ content: none;
2512
+ }
2513
+
2514
+ .buttons {
2515
+ align-items: center;
2516
+ display: flex;
2517
+ flex-wrap: wrap;
2518
+ justify-content: flex-start;
2519
+ }
2520
+ .buttons .button {
2521
+ margin-bottom: 0.5rem;
2522
+ }
2523
+ .buttons .button:not(:last-child):not(.is-fullwidth) {
2524
+ margin-right: 0.5rem;
2525
+ }
2526
+ .buttons:last-child {
2527
+ margin-bottom: -0.5rem;
2528
+ }
2529
+ .buttons:not(:last-child) {
2530
+ margin-bottom: 1rem;
2531
+ }
2532
+ .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded) {
2533
+ border-radius: var(--bal-button-radius);
2534
+ font-size: var(--bal-button-small-font-size);
2535
+ }
2536
+ .buttons.has-addons .button:not(:first-child) {
2537
+ border-bottom-left-radius: 0;
2538
+ border-top-left-radius: 0;
2539
+ }
2540
+ .buttons.has-addons .button:not(:last-child) {
2541
+ border-bottom-right-radius: 0;
2542
+ border-top-right-radius: 0;
2543
+ margin-right: -1px;
2544
+ }
2545
+ .buttons.has-addons .button:last-child {
2546
+ margin-right: 0;
2547
+ }
2548
+ .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
2549
+ z-index: 2;
2550
+ }
2551
+ .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
2552
+ z-index: 3;
2553
+ }
2554
+ .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
2555
+ z-index: 4;
2556
+ }
2557
+ .buttons.has-addons .button.is-expanded {
2558
+ flex-grow: 1;
2559
+ flex-shrink: 1;
2560
+ }
2561
+ .buttons.is-centered {
2562
+ justify-content: center;
2563
+ }
2564
+ .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) {
2565
+ margin-left: 0.25rem;
2566
+ margin-right: 0.25rem;
2567
+ }
2568
+ .buttons.is-right {
2569
+ justify-content: flex-end;
2570
+ }
2571
+ .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) {
2572
+ margin-left: 0.25rem;
2573
+ margin-right: 0.25rem;
2574
+ }
2575
+
2576
+ .container {
2577
+ flex-grow: 1;
2578
+ margin: 0 auto;
2579
+ position: relative;
2580
+ width: auto;
2581
+ width: 100% !important;
2582
+ padding-left: var(--bal-container-space);
2583
+ padding-right: var(--bal-container-space);
2584
+ }
2585
+ .container.is-fluid {
2586
+ max-width: var(--bal-container-size-fluid) !important;
2587
+ }
2588
+ .container.is-detail-page {
2589
+ max-width: var(--bal-container-size-detail-page) !important;
2590
+ }
2591
+ .container.is-compact {
2592
+ max-width: var(--bal-container-size-compact) !important;
2593
+ }
2594
+ .container.is-blog-page {
2595
+ max-width: var(--bal-container-size-blog-page) !important;
2596
+ }
2597
+ @media screen and (min-width: 769px), print {
2598
+ .container {
2599
+ padding-left: var(--bal-container-space-tablet);
2600
+ padding-right: var(--bal-container-space-tablet);
2601
+ }
2602
+ }
2603
+ @media screen and (min-width: 1024px) {
2604
+ .container {
2605
+ padding-left: var(--bal-container-space-desktop);
2606
+ padding-right: var(--bal-container-space-desktop);
2607
+ max-width: var(--bal-container-size-normal);
2608
+ }
2609
+ }
2610
+
2611
+ .grid {
2612
+ flex-basis: 0;
2613
+ flex-grow: 1;
2614
+ flex-shrink: 1;
2615
+ }
2616
+
2617
+ .col {
2618
+ display: block;
2619
+ flex-basis: 0;
2620
+ flex-grow: 1;
2621
+ flex-shrink: 1;
2622
+ padding: var(--bal-column-gap);
2623
+ }
2624
+ .grid.is-mobile > .col.is-narrow {
2625
+ flex: none;
2626
+ width: unset;
2627
+ }
2628
+ .grid.is-mobile > .col.is-full {
2629
+ flex: none;
2630
+ width: 100%;
2631
+ }
2632
+ .grid.is-mobile > .col.is-three-quarters {
2633
+ flex: none;
2634
+ width: 75%;
2635
+ }
2636
+ .grid.is-mobile > .col.is-two-thirds {
2637
+ flex: none;
2638
+ width: 66.6666%;
2639
+ }
2640
+ .grid.is-mobile > .col.is-half {
2641
+ flex: none;
2642
+ width: 50%;
2643
+ }
2644
+ .grid.is-mobile > .col.is-one-third {
2645
+ flex: none;
2646
+ width: 33.3333%;
2647
+ }
2648
+ .grid.is-mobile > .col.is-one-quarter {
2649
+ flex: none;
2650
+ width: 25%;
2651
+ }
2652
+ .grid.is-mobile > .col.is-one-fifth {
2653
+ flex: none;
2654
+ width: 20%;
2655
+ }
2656
+ .grid.is-mobile > .col.is-two-fifths {
2657
+ flex: none;
2658
+ width: 40%;
2659
+ }
2660
+ .grid.is-mobile > .col.is-three-fifths {
2661
+ flex: none;
2662
+ width: 60%;
2663
+ }
2664
+ .grid.is-mobile > .col.is-four-fifths {
2665
+ flex: none;
2666
+ width: 80%;
2667
+ }
2668
+ .grid.is-mobile > .col.is-offset-three-quarters {
2669
+ margin-left: 75%;
2670
+ }
2671
+ .grid.is-mobile > .col.is-offset-two-thirds {
2672
+ margin-left: 66.6666%;
2673
+ }
2674
+ .grid.is-mobile > .col.is-offset-half {
2675
+ margin-left: 50%;
2676
+ }
2677
+ .grid.is-mobile > .col.is-offset-one-third {
2678
+ margin-left: 33.3333%;
2679
+ }
2680
+ .grid.is-mobile > .col.is-offset-one-quarter {
2681
+ margin-left: 25%;
2682
+ }
2683
+ .grid.is-mobile > .col.is-offset-one-fifth {
2684
+ margin-left: 20%;
2685
+ }
2686
+ .grid.is-mobile > .col.is-offset-two-fifths {
2687
+ margin-left: 40%;
2688
+ }
2689
+ .grid.is-mobile > .col.is-offset-three-fifths {
2690
+ margin-left: 60%;
2691
+ }
2692
+ .grid.is-mobile > .col.is-offset-four-fifths {
2693
+ margin-left: 80%;
2694
+ }
2695
+ .grid.is-mobile > .col.is-0 {
2696
+ flex: none;
2697
+ width: 0%;
2698
+ }
2699
+ .grid.is-mobile > .col.is-offset-0 {
2700
+ margin-left: 0%;
2701
+ }
2702
+ .grid.is-mobile > .col.is-1 {
2703
+ flex: none;
2704
+ width: 8.3333333333%;
2705
+ }
2706
+ .grid.is-mobile > .col.is-offset-1 {
2707
+ margin-left: 8.3333333333%;
2708
+ }
2709
+ .grid.is-mobile > .col.is-2 {
2710
+ flex: none;
2711
+ width: 16.6666666667%;
2712
+ }
2713
+ .grid.is-mobile > .col.is-offset-2 {
2714
+ margin-left: 16.6666666667%;
2715
+ }
2716
+ .grid.is-mobile > .col.is-3 {
2717
+ flex: none;
2718
+ width: 25%;
2719
+ }
2720
+ .grid.is-mobile > .col.is-offset-3 {
2721
+ margin-left: 25%;
2722
+ }
2723
+ .grid.is-mobile > .col.is-4 {
2724
+ flex: none;
2725
+ width: 33.3333333333%;
2726
+ }
2727
+ .grid.is-mobile > .col.is-offset-4 {
2728
+ margin-left: 33.3333333333%;
2729
+ }
2730
+ .grid.is-mobile > .col.is-5 {
2731
+ flex: none;
2732
+ width: 41.6666666667%;
2733
+ }
2734
+ .grid.is-mobile > .col.is-offset-5 {
2735
+ margin-left: 41.6666666667%;
2736
+ }
2737
+ .grid.is-mobile > .col.is-6 {
2738
+ flex: none;
2739
+ width: 50%;
2740
+ }
2741
+ .grid.is-mobile > .col.is-offset-6 {
2742
+ margin-left: 50%;
2743
+ }
2744
+ .grid.is-mobile > .col.is-7 {
2745
+ flex: none;
2746
+ width: 58.3333333333%;
2747
+ }
2748
+ .grid.is-mobile > .col.is-offset-7 {
2749
+ margin-left: 58.3333333333%;
2750
+ }
2751
+ .grid.is-mobile > .col.is-8 {
2752
+ flex: none;
2753
+ width: 66.6666666667%;
2754
+ }
2755
+ .grid.is-mobile > .col.is-offset-8 {
2756
+ margin-left: 66.6666666667%;
2757
+ }
2758
+ .grid.is-mobile > .col.is-9 {
2759
+ flex: none;
2760
+ width: 75%;
2761
+ }
2762
+ .grid.is-mobile > .col.is-offset-9 {
2763
+ margin-left: 75%;
2764
+ }
2765
+ .grid.is-mobile > .col.is-10 {
2766
+ flex: none;
2767
+ width: 83.3333333333%;
2768
+ }
2769
+ .grid.is-mobile > .col.is-offset-10 {
2770
+ margin-left: 83.3333333333%;
2771
+ }
2772
+ .grid.is-mobile > .col.is-11 {
2773
+ flex: none;
2774
+ width: 91.6666666667%;
2775
+ }
2776
+ .grid.is-mobile > .col.is-offset-11 {
2777
+ margin-left: 91.6666666667%;
2778
+ }
2779
+ .grid.is-mobile > .col.is-12 {
2780
+ flex: none;
2781
+ width: 100%;
2782
+ }
2783
+ .grid.is-mobile > .col.is-offset-12 {
2784
+ margin-left: 100%;
2785
+ }
2786
+ @media screen and (max-width: 768px) {
2787
+ .col.mobile\:is-narrow {
2788
+ flex: none;
2789
+ width: unset;
2790
+ }
2791
+ .col.mobile\:is-full {
2792
+ flex: none;
2793
+ width: 100%;
2794
+ }
2795
+ .col.mobile\:is-three-quarters {
2796
+ flex: none;
2797
+ width: 75%;
2798
+ }
2799
+ .col.mobile\:is-two-thirds {
2800
+ flex: none;
2801
+ width: 66.6666%;
2802
+ }
2803
+ .col.mobile\:is-half {
2804
+ flex: none;
2805
+ width: 50%;
2806
+ }
2807
+ .col.mobile\:is-one-third {
2808
+ flex: none;
2809
+ width: 33.3333%;
2810
+ }
2811
+ .col.mobile\:is-one-quarter {
2812
+ flex: none;
2813
+ width: 25%;
2814
+ }
2815
+ .col.mobile\:is-one-fifth {
2816
+ flex: none;
2817
+ width: 20%;
2818
+ }
2819
+ .col.mobile\:is-two-fifths {
2820
+ flex: none;
2821
+ width: 40%;
2822
+ }
2823
+ .col.mobile\:is-three-fifths {
2824
+ flex: none;
2825
+ width: 60%;
2826
+ }
2827
+ .col.mobile\:is-four-fifths {
2828
+ flex: none;
2829
+ width: 80%;
2830
+ }
2831
+ .col.mobile\:is-offset-three-quarters {
2832
+ margin-left: 75%;
2833
+ }
2834
+ .col.mobile\:is-offset-two-thirds {
2835
+ margin-left: 66.6666%;
2836
+ }
2837
+ .col.mobile\:is-offset-half {
2838
+ margin-left: 50%;
2839
+ }
2840
+ .col.mobile\:is-offset-one-third {
2841
+ margin-left: 33.3333%;
2842
+ }
2843
+ .col.mobile\:is-offset-one-quarter {
2844
+ margin-left: 25%;
2845
+ }
2846
+ .col.mobile\:is-offset-one-fifth {
2847
+ margin-left: 20%;
2848
+ }
2849
+ .col.mobile\:is-offset-two-fifths {
2850
+ margin-left: 40%;
2851
+ }
2852
+ .col.mobile\:is-offset-three-fifths {
2853
+ margin-left: 60%;
2854
+ }
2855
+ .col.mobile-offset-four-fifths {
2856
+ margin-left: 80%;
2857
+ }
2858
+ .col.mobile\:is-0 {
2859
+ flex: none;
2860
+ width: 0%;
2861
+ }
2862
+ .col.mobile\:is-offset-0 {
2863
+ margin-left: 0%;
2864
+ }
2865
+ .col.mobile\:is-1 {
2866
+ flex: none;
2867
+ width: 8.3333333333%;
2868
+ }
2869
+ .col.mobile\:is-offset-1 {
2870
+ margin-left: 8.3333333333%;
2871
+ }
2872
+ .col.mobile\:is-2 {
2873
+ flex: none;
2874
+ width: 16.6666666667%;
2875
+ }
2876
+ .col.mobile\:is-offset-2 {
2877
+ margin-left: 16.6666666667%;
2878
+ }
2879
+ .col.mobile\:is-3 {
2880
+ flex: none;
2881
+ width: 25%;
2882
+ }
2883
+ .col.mobile\:is-offset-3 {
2884
+ margin-left: 25%;
2885
+ }
2886
+ .col.mobile\:is-4 {
2887
+ flex: none;
2888
+ width: 33.3333333333%;
2889
+ }
2890
+ .col.mobile\:is-offset-4 {
2891
+ margin-left: 33.3333333333%;
2892
+ }
2893
+ .col.mobile\:is-5 {
2894
+ flex: none;
2895
+ width: 41.6666666667%;
2896
+ }
2897
+ .col.mobile\:is-offset-5 {
2898
+ margin-left: 41.6666666667%;
2899
+ }
2900
+ .col.mobile\:is-6 {
2901
+ flex: none;
2902
+ width: 50%;
2903
+ }
2904
+ .col.mobile\:is-offset-6 {
2905
+ margin-left: 50%;
2906
+ }
2907
+ .col.mobile\:is-7 {
2908
+ flex: none;
2909
+ width: 58.3333333333%;
2910
+ }
2911
+ .col.mobile\:is-offset-7 {
2912
+ margin-left: 58.3333333333%;
2913
+ }
2914
+ .col.mobile\:is-8 {
2915
+ flex: none;
2916
+ width: 66.6666666667%;
2917
+ }
2918
+ .col.mobile\:is-offset-8 {
2919
+ margin-left: 66.6666666667%;
2920
+ }
2921
+ .col.mobile\:is-9 {
2922
+ flex: none;
2923
+ width: 75%;
2924
+ }
2925
+ .col.mobile\:is-offset-9 {
2926
+ margin-left: 75%;
2927
+ }
2928
+ .col.mobile\:is-10 {
2929
+ flex: none;
2930
+ width: 83.3333333333%;
2931
+ }
2932
+ .col.mobile\:is-offset-10 {
2933
+ margin-left: 83.3333333333%;
2934
+ }
2935
+ .col.mobile\:is-11 {
2936
+ flex: none;
2937
+ width: 91.6666666667%;
2938
+ }
2939
+ .col.mobile\:is-offset-11 {
2940
+ margin-left: 91.6666666667%;
2941
+ }
2942
+ .col.mobile\:is-12 {
2943
+ flex: none;
2944
+ width: 100%;
2945
+ }
2946
+ .col.mobile\:is-offset-12 {
2947
+ margin-left: 100%;
2948
+ }
2949
+ }
2950
+ @media screen and (min-width: 769px), print {
2951
+ .col.is-narrow, .col.tablet\:is-narrow {
2952
+ flex: none;
2953
+ width: unset;
2954
+ }
2955
+ .col.is-full, .col.tablet\:is-full {
2956
+ flex: none;
2957
+ width: 100%;
2958
+ }
2959
+ .col.is-three-quarters, .col.tablet\:is-three-quarters {
2960
+ flex: none;
2961
+ width: 75%;
2962
+ }
2963
+ .col.is-two-thirds, .col.tablet\:is-two-thirds {
2964
+ flex: none;
2965
+ width: 66.6666%;
2966
+ }
2967
+ .col.is-half, .col.tablet\:is-half {
2968
+ flex: none;
2969
+ width: 50%;
2970
+ }
2971
+ .col.is-one-third, .col.tablet\:is-one-third {
2972
+ flex: none;
2973
+ width: 33.3333%;
2974
+ }
2975
+ .col.is-one-quarter, .col.tablet\:is-one-quarter {
2976
+ flex: none;
2977
+ width: 25%;
2978
+ }
2979
+ .col.is-one-fifth, .col.tablet\:is-one-fifth {
2980
+ flex: none;
2981
+ width: 20%;
2982
+ }
2983
+ .col.is-two-fifths, .col.tablet\:is-two-fifths {
2984
+ flex: none;
2985
+ width: 40%;
2986
+ }
2987
+ .col.is-three-fifths, .col.tablet\:is-three-fifths {
2988
+ flex: none;
2989
+ width: 60%;
2990
+ }
2991
+ .col.is-four-fifths, .col.tablet\:is-four-fifths {
2992
+ flex: none;
2993
+ width: 80%;
2994
+ }
2995
+ .col.is-offset-three-quarters, .col.tablet\:is-offset-three-quarters {
2996
+ margin-left: 75%;
2997
+ }
2998
+ .col.is-offset-two-thirds, .col.tablet\:is-offset-two-thirds {
2999
+ margin-left: 66.6666%;
3000
+ }
3001
+ .col.is-offset-half, .col.tablet\:is-offset-half {
3002
+ margin-left: 50%;
3003
+ }
3004
+ .col.is-offset-one-third, .col.tablet\:is-offset-one-third {
3005
+ margin-left: 33.3333%;
3006
+ }
3007
+ .col.is-offset-one-quarter, .col.tablet\:is-offset-one-quarter {
3008
+ margin-left: 25%;
3009
+ }
3010
+ .col.is-offset-one-fifth, .col.tablet\:is-offset-one-fifth {
3011
+ margin-left: 20%;
3012
+ }
3013
+ .col.is-offset-two-fifths, .col.tablet\:is-offset-two-fifths {
3014
+ margin-left: 40%;
3015
+ }
3016
+ .col.is-offset-three-fifths, .col.tablet\:is-offset-three-fifths {
3017
+ margin-left: 60%;
3018
+ }
3019
+ .col.is-offset-four-fifths, .col.tablet\:is-offset-four-fifths {
3020
+ margin-left: 80%;
3021
+ }
3022
+ .col.is-0, .col.tablet\:is-0 {
3023
+ flex: none;
3024
+ width: 0%;
3025
+ }
3026
+ .col.is-offset-0, .col.tablet\:is-offset-0 {
3027
+ margin-left: 0%;
3028
+ }
3029
+ .col.is-1, .col.tablet\:is-1 {
3030
+ flex: none;
3031
+ width: 8.3333333333%;
3032
+ }
3033
+ .col.is-offset-1, .col.tablet\:is-offset-1 {
3034
+ margin-left: 8.3333333333%;
3035
+ }
3036
+ .col.is-2, .col.tablet\:is-2 {
3037
+ flex: none;
3038
+ width: 16.6666666667%;
3039
+ }
3040
+ .col.is-offset-2, .col.tablet\:is-offset-2 {
3041
+ margin-left: 16.6666666667%;
3042
+ }
3043
+ .col.is-3, .col.tablet\:is-3 {
3044
+ flex: none;
3045
+ width: 25%;
3046
+ }
3047
+ .col.is-offset-3, .col.tablet\:is-offset-3 {
3048
+ margin-left: 25%;
3049
+ }
3050
+ .col.is-4, .col.tablet\:is-4 {
3051
+ flex: none;
3052
+ width: 33.3333333333%;
3053
+ }
3054
+ .col.is-offset-4, .col.tablet\:is-offset-4 {
3055
+ margin-left: 33.3333333333%;
3056
+ }
3057
+ .col.is-5, .col.tablet\:is-5 {
3058
+ flex: none;
3059
+ width: 41.6666666667%;
3060
+ }
3061
+ .col.is-offset-5, .col.tablet\:is-offset-5 {
3062
+ margin-left: 41.6666666667%;
3063
+ }
3064
+ .col.is-6, .col.tablet\:is-6 {
3065
+ flex: none;
3066
+ width: 50%;
3067
+ }
3068
+ .col.is-offset-6, .col.tablet\:is-offset-6 {
3069
+ margin-left: 50%;
3070
+ }
3071
+ .col.is-7, .col.tablet\:is-7 {
3072
+ flex: none;
3073
+ width: 58.3333333333%;
3074
+ }
3075
+ .col.is-offset-7, .col.tablet\:is-offset-7 {
3076
+ margin-left: 58.3333333333%;
3077
+ }
3078
+ .col.is-8, .col.tablet\:is-8 {
3079
+ flex: none;
3080
+ width: 66.6666666667%;
3081
+ }
3082
+ .col.is-offset-8, .col.tablet\:is-offset-8 {
3083
+ margin-left: 66.6666666667%;
3084
+ }
3085
+ .col.is-9, .col.tablet\:is-9 {
3086
+ flex: none;
3087
+ width: 75%;
3088
+ }
3089
+ .col.is-offset-9, .col.tablet\:is-offset-9 {
3090
+ margin-left: 75%;
3091
+ }
3092
+ .col.is-10, .col.tablet\:is-10 {
3093
+ flex: none;
3094
+ width: 83.3333333333%;
3095
+ }
3096
+ .col.is-offset-10, .col.tablet\:is-offset-10 {
3097
+ margin-left: 83.3333333333%;
3098
+ }
3099
+ .col.is-11, .col.tablet\:is-11 {
3100
+ flex: none;
3101
+ width: 91.6666666667%;
3102
+ }
3103
+ .col.is-offset-11, .col.tablet\:is-offset-11 {
3104
+ margin-left: 91.6666666667%;
3105
+ }
3106
+ .col.is-12, .col.tablet\:is-12 {
3107
+ flex: none;
3108
+ width: 100%;
3109
+ }
3110
+ .col.is-offset-12, .col.tablet\:is-offset-12 {
3111
+ margin-left: 100%;
3112
+ }
3113
+ }
3114
+ @media screen and (max-width: 1023px) {
3115
+ .col.touch\:is-narrow {
3116
+ flex: none;
3117
+ width: unset;
3118
+ }
3119
+ .col.touch\:is-full {
3120
+ flex: none;
3121
+ width: 100%;
3122
+ }
3123
+ .col.touch\:is-three-quarters {
3124
+ flex: none;
3125
+ width: 75%;
3126
+ }
3127
+ .col.touch\:is-two-thirds {
3128
+ flex: none;
3129
+ width: 66.6666%;
3130
+ }
3131
+ .col.touch\:is-half {
3132
+ flex: none;
3133
+ width: 50%;
3134
+ }
3135
+ .col.touch\:is-one-third {
3136
+ flex: none;
3137
+ width: 33.3333%;
3138
+ }
3139
+ .col.touch\:is-one-quarter {
3140
+ flex: none;
3141
+ width: 25%;
3142
+ }
3143
+ .col.touch\:is-one-fifth {
3144
+ flex: none;
3145
+ width: 20%;
3146
+ }
3147
+ .col.touch\:is-two-fifths {
3148
+ flex: none;
3149
+ width: 40%;
3150
+ }
3151
+ .col.touch\:is-three-fifths {
3152
+ flex: none;
3153
+ width: 60%;
3154
+ }
3155
+ .col.touch\:is-four-fifths {
3156
+ flex: none;
3157
+ width: 80%;
3158
+ }
3159
+ .col.touch\:is-offset-three-quarters {
3160
+ margin-left: 75%;
3161
+ }
3162
+ .col.touch\:is-offset-two-thirds {
3163
+ margin-left: 66.6666%;
3164
+ }
3165
+ .col.touch\:is-offset-half {
3166
+ margin-left: 50%;
3167
+ }
3168
+ .col.touch\:is-offset-one-third {
3169
+ margin-left: 33.3333%;
3170
+ }
3171
+ .col.touch\:is-offset-one-quarter {
3172
+ margin-left: 25%;
3173
+ }
3174
+ .col.touch\:is-offset-one-fifth {
3175
+ margin-left: 20%;
3176
+ }
3177
+ .col.touch\:is-offset-two-fifths {
3178
+ margin-left: 40%;
3179
+ }
3180
+ .col.touch\:is-offset-three-fifths {
3181
+ margin-left: 60%;
3182
+ }
3183
+ .col.touch\:is-offset-four-fifths {
3184
+ margin-left: 80%;
3185
+ }
3186
+ .col.touch\:is-0 {
3187
+ flex: none;
3188
+ width: 0%;
3189
+ }
3190
+ .col.touch\:is-offset-0 {
3191
+ margin-left: 0%;
3192
+ }
3193
+ .col.touch\:is-1 {
3194
+ flex: none;
3195
+ width: 8.3333333333%;
3196
+ }
3197
+ .col.touch\:is-offset-1 {
3198
+ margin-left: 8.3333333333%;
3199
+ }
3200
+ .col.touch\:is-2 {
3201
+ flex: none;
3202
+ width: 16.6666666667%;
3203
+ }
3204
+ .col.touch\:is-offset-2 {
3205
+ margin-left: 16.6666666667%;
3206
+ }
3207
+ .col.touch\:is-3 {
3208
+ flex: none;
3209
+ width: 25%;
3210
+ }
3211
+ .col.touch\:is-offset-3 {
3212
+ margin-left: 25%;
3213
+ }
3214
+ .col.touch\:is-4 {
3215
+ flex: none;
3216
+ width: 33.3333333333%;
3217
+ }
3218
+ .col.touch\:is-offset-4 {
3219
+ margin-left: 33.3333333333%;
3220
+ }
3221
+ .col.touch\:is-5 {
3222
+ flex: none;
3223
+ width: 41.6666666667%;
3224
+ }
3225
+ .col.touch\:is-offset-5 {
3226
+ margin-left: 41.6666666667%;
3227
+ }
3228
+ .col.touch\:is-6 {
3229
+ flex: none;
3230
+ width: 50%;
3231
+ }
3232
+ .col.touch\:is-offset-6 {
3233
+ margin-left: 50%;
3234
+ }
3235
+ .col.touch\:is-7 {
3236
+ flex: none;
3237
+ width: 58.3333333333%;
3238
+ }
3239
+ .col.touch\:is-offset-7 {
3240
+ margin-left: 58.3333333333%;
3241
+ }
3242
+ .col.touch\:is-8 {
3243
+ flex: none;
3244
+ width: 66.6666666667%;
3245
+ }
3246
+ .col.touch\:is-offset-8 {
3247
+ margin-left: 66.6666666667%;
3248
+ }
3249
+ .col.touch\:is-9 {
3250
+ flex: none;
3251
+ width: 75%;
3252
+ }
3253
+ .col.touch\:is-offset-9 {
3254
+ margin-left: 75%;
3255
+ }
3256
+ .col.touch\:is-10 {
3257
+ flex: none;
3258
+ width: 83.3333333333%;
3259
+ }
3260
+ .col.touch\:is-offset-10 {
3261
+ margin-left: 83.3333333333%;
3262
+ }
3263
+ .col.touch\:is-11 {
3264
+ flex: none;
3265
+ width: 91.6666666667%;
3266
+ }
3267
+ .col.touch\:is-offset-11 {
3268
+ margin-left: 91.6666666667%;
3269
+ }
3270
+ .col.touch\:is-12 {
3271
+ flex: none;
3272
+ width: 100%;
3273
+ }
3274
+ .col.touch\:is-offset-12 {
3275
+ margin-left: 100%;
3276
+ }
3277
+ }
3278
+ @media screen and (min-width: 1024px) {
3279
+ .col.desktop\:is-narrow {
3280
+ flex: none;
3281
+ width: unset;
3282
+ }
3283
+ .col.desktop\:is-full {
3284
+ flex: none;
3285
+ width: 100%;
3286
+ }
3287
+ .col.desktop\:is-three-quarters {
3288
+ flex: none;
3289
+ width: 75%;
3290
+ }
3291
+ .col.desktop\:is-two-thirds {
3292
+ flex: none;
3293
+ width: 66.6666%;
3294
+ }
3295
+ .col.desktop\:is-half {
3296
+ flex: none;
3297
+ width: 50%;
3298
+ }
3299
+ .col.desktop\:is-one-third {
3300
+ flex: none;
3301
+ width: 33.3333%;
3302
+ }
3303
+ .col.desktop\:is-one-quarter {
3304
+ flex: none;
3305
+ width: 25%;
3306
+ }
3307
+ .col.desktop\:is-one-fifth {
3308
+ flex: none;
3309
+ width: 20%;
3310
+ }
3311
+ .col.desktop\:is-two-fifths {
3312
+ flex: none;
3313
+ width: 40%;
3314
+ }
3315
+ .col.desktop\:is-three-fifths {
3316
+ flex: none;
3317
+ width: 60%;
3318
+ }
3319
+ .col.desktop\:is-four-fifths {
3320
+ flex: none;
3321
+ width: 80%;
3322
+ }
3323
+ .col.desktop\:is-offset-three-quarters {
3324
+ margin-left: 75%;
3325
+ }
3326
+ .col.desktop\:is-offset-two-thirds {
3327
+ margin-left: 66.6666%;
3328
+ }
3329
+ .col.desktop\:is-offset-half {
3330
+ margin-left: 50%;
3331
+ }
3332
+ .col.desktop\:is-offset-one-third {
3333
+ margin-left: 33.3333%;
3334
+ }
3335
+ .col.desktop\:is-offset-one-quarter {
3336
+ margin-left: 25%;
3337
+ }
3338
+ .col.desktop\:is-offset-one-fifth {
3339
+ margin-left: 20%;
3340
+ }
3341
+ .col.desktop\:is-offset-two-fifths {
3342
+ margin-left: 40%;
3343
+ }
3344
+ .col.desktop\:is-offset-three-fifths {
3345
+ margin-left: 60%;
3346
+ }
3347
+ .col.desktop\:is-offset-four-fifths {
3348
+ margin-left: 80%;
3349
+ }
3350
+ .col.desktop\:is-0 {
3351
+ flex: none;
3352
+ width: 0%;
3353
+ }
3354
+ .col.desktop\:is-offset-0 {
3355
+ margin-left: 0%;
3356
+ }
3357
+ .col.desktop\:is-1 {
3358
+ flex: none;
3359
+ width: 8.3333333333%;
3360
+ }
3361
+ .col.desktop\:is-offset-1 {
3362
+ margin-left: 8.3333333333%;
3363
+ }
3364
+ .col.desktop\:is-2 {
3365
+ flex: none;
3366
+ width: 16.6666666667%;
3367
+ }
3368
+ .col.desktop\:is-offset-2 {
3369
+ margin-left: 16.6666666667%;
3370
+ }
3371
+ .col.desktop\:is-3 {
3372
+ flex: none;
3373
+ width: 25%;
3374
+ }
3375
+ .col.desktop\:is-offset-3 {
3376
+ margin-left: 25%;
3377
+ }
3378
+ .col.desktop\:is-4 {
3379
+ flex: none;
3380
+ width: 33.3333333333%;
3381
+ }
3382
+ .col.desktop\:is-offset-4 {
3383
+ margin-left: 33.3333333333%;
3384
+ }
3385
+ .col.desktop\:is-5 {
3386
+ flex: none;
3387
+ width: 41.6666666667%;
3388
+ }
3389
+ .col.desktop\:is-offset-5 {
3390
+ margin-left: 41.6666666667%;
3391
+ }
3392
+ .col.desktop\:is-6 {
3393
+ flex: none;
3394
+ width: 50%;
3395
+ }
3396
+ .col.desktop\:is-offset-6 {
3397
+ margin-left: 50%;
3398
+ }
3399
+ .col.desktop\:is-7 {
3400
+ flex: none;
3401
+ width: 58.3333333333%;
3402
+ }
3403
+ .col.desktop\:is-offset-7 {
3404
+ margin-left: 58.3333333333%;
3405
+ }
3406
+ .col.desktop\:is-8 {
3407
+ flex: none;
3408
+ width: 66.6666666667%;
3409
+ }
3410
+ .col.desktop\:is-offset-8 {
3411
+ margin-left: 66.6666666667%;
3412
+ }
3413
+ .col.desktop\:is-9 {
3414
+ flex: none;
3415
+ width: 75%;
3416
+ }
3417
+ .col.desktop\:is-offset-9 {
3418
+ margin-left: 75%;
3419
+ }
3420
+ .col.desktop\:is-10 {
3421
+ flex: none;
3422
+ width: 83.3333333333%;
3423
+ }
3424
+ .col.desktop\:is-offset-10 {
3425
+ margin-left: 83.3333333333%;
3426
+ }
3427
+ .col.desktop\:is-11 {
3428
+ flex: none;
3429
+ width: 91.6666666667%;
3430
+ }
3431
+ .col.desktop\:is-offset-11 {
3432
+ margin-left: 91.6666666667%;
3433
+ }
3434
+ .col.desktop\:is-12 {
3435
+ flex: none;
3436
+ width: 100%;
3437
+ }
3438
+ .col.desktop\:is-offset-12 {
3439
+ margin-left: 100%;
3440
+ }
3441
+ }
3442
+ @media screen and (min-width: 1440px) {
3443
+ .col.widescreen\:is-narrow {
3444
+ flex: none;
3445
+ width: unset;
3446
+ }
3447
+ .col.widescreen\:is-full {
3448
+ flex: none;
3449
+ width: 100%;
3450
+ }
3451
+ .col.widescreen\:is-three-quarters {
3452
+ flex: none;
3453
+ width: 75%;
3454
+ }
3455
+ .col.widescreen\:is-two-thirds {
3456
+ flex: none;
3457
+ width: 66.6666%;
3458
+ }
3459
+ .col.widescreen\:is-half {
3460
+ flex: none;
3461
+ width: 50%;
3462
+ }
3463
+ .col.widescreen\:is-one-third {
3464
+ flex: none;
3465
+ width: 33.3333%;
3466
+ }
3467
+ .col.widescreen\:is-one-quarter {
3468
+ flex: none;
3469
+ width: 25%;
3470
+ }
3471
+ .col.widescreen\:is-one-fifth {
3472
+ flex: none;
3473
+ width: 20%;
3474
+ }
3475
+ .col.widescreen\:is-two-fifths {
3476
+ flex: none;
3477
+ width: 40%;
3478
+ }
3479
+ .col.widescreen\:is-three-fifths {
3480
+ flex: none;
3481
+ width: 60%;
3482
+ }
3483
+ .col.widescreen\:is-four-fifths {
3484
+ flex: none;
3485
+ width: 80%;
3486
+ }
3487
+ .col.widescreen\:is-offset-three-quarters {
3488
+ margin-left: 75%;
3489
+ }
3490
+ .col.widescreen\:is-offset-two-thirds {
3491
+ margin-left: 66.6666%;
3492
+ }
3493
+ .col.widescreen\:is-offset-half {
3494
+ margin-left: 50%;
3495
+ }
3496
+ .col.widescreen\:is-offset-one-third {
3497
+ margin-left: 33.3333%;
3498
+ }
3499
+ .col.widescreen\:is-offset-one-quarter {
3500
+ margin-left: 25%;
3501
+ }
3502
+ .col.widescreen\:is-offset-one-fifth {
3503
+ margin-left: 20%;
3504
+ }
3505
+ .col.widescreen\:is-offset-two-fifths {
3506
+ margin-left: 40%;
3507
+ }
3508
+ .col.widescreen\:is-offset-three-fifths {
3509
+ margin-left: 60%;
3510
+ }
3511
+ .col.widescreen\:is-offset-four-fifths {
3512
+ margin-left: 80%;
3513
+ }
3514
+ .col.widescreen\:is-0 {
3515
+ flex: none;
3516
+ width: 0%;
3517
+ }
3518
+ .col.widescreen\:is-offset-0 {
3519
+ margin-left: 0%;
3520
+ }
3521
+ .col.widescreen\:is-1 {
3522
+ flex: none;
3523
+ width: 8.3333333333%;
3524
+ }
3525
+ .col.widescreen\:is-offset-1 {
3526
+ margin-left: 8.3333333333%;
3527
+ }
3528
+ .col.widescreen\:is-2 {
3529
+ flex: none;
3530
+ width: 16.6666666667%;
3531
+ }
3532
+ .col.widescreen\:is-offset-2 {
3533
+ margin-left: 16.6666666667%;
3534
+ }
3535
+ .col.widescreen\:is-3 {
3536
+ flex: none;
3537
+ width: 25%;
3538
+ }
3539
+ .col.widescreen\:is-offset-3 {
3540
+ margin-left: 25%;
3541
+ }
3542
+ .col.widescreen\:is-4 {
3543
+ flex: none;
3544
+ width: 33.3333333333%;
3545
+ }
3546
+ .col.widescreen\:is-offset-4 {
3547
+ margin-left: 33.3333333333%;
3548
+ }
3549
+ .col.widescreen\:is-5 {
3550
+ flex: none;
3551
+ width: 41.6666666667%;
3552
+ }
3553
+ .col.widescreen\:is-offset-5 {
3554
+ margin-left: 41.6666666667%;
3555
+ }
3556
+ .col.widescreen\:is-6 {
3557
+ flex: none;
3558
+ width: 50%;
3559
+ }
3560
+ .col.widescreen\:is-offset-6 {
3561
+ margin-left: 50%;
3562
+ }
3563
+ .col.widescreen\:is-7 {
3564
+ flex: none;
3565
+ width: 58.3333333333%;
3566
+ }
3567
+ .col.widescreen\:is-offset-7 {
3568
+ margin-left: 58.3333333333%;
3569
+ }
3570
+ .col.widescreen\:is-8 {
3571
+ flex: none;
3572
+ width: 66.6666666667%;
3573
+ }
3574
+ .col.widescreen\:is-offset-8 {
3575
+ margin-left: 66.6666666667%;
3576
+ }
3577
+ .col.widescreen\:is-9 {
3578
+ flex: none;
3579
+ width: 75%;
3580
+ }
3581
+ .col.widescreen\:is-offset-9 {
3582
+ margin-left: 75%;
3583
+ }
3584
+ .col.widescreen\:is-10 {
3585
+ flex: none;
3586
+ width: 83.3333333333%;
3587
+ }
3588
+ .col.widescreen\:is-offset-10 {
3589
+ margin-left: 83.3333333333%;
3590
+ }
3591
+ .col.widescreen\:is-11 {
3592
+ flex: none;
3593
+ width: 91.6666666667%;
3594
+ }
3595
+ .col.widescreen\:is-offset-11 {
3596
+ margin-left: 91.6666666667%;
3597
+ }
3598
+ .col.widescreen\:is-12 {
3599
+ flex: none;
3600
+ width: 100%;
3601
+ }
3602
+ .col.widescreen\:is-offset-12 {
3603
+ margin-left: 100%;
3604
+ }
3605
+ }
3606
+ @media screen and (min-width: 1920px) {
3607
+ .col.fullhd\:is-narrow {
3608
+ flex: none;
3609
+ width: unset;
3610
+ }
3611
+ .col.fullhd\:is-full {
3612
+ flex: none;
3613
+ width: 100%;
3614
+ }
3615
+ .col.fullhd\:is-three-quarters {
3616
+ flex: none;
3617
+ width: 75%;
3618
+ }
3619
+ .col.fullhd\:is-two-thirds {
3620
+ flex: none;
3621
+ width: 66.6666%;
3622
+ }
3623
+ .col.fullhd\:is-half {
3624
+ flex: none;
3625
+ width: 50%;
3626
+ }
3627
+ .col.fullhd\:is-one-third {
3628
+ flex: none;
3629
+ width: 33.3333%;
3630
+ }
3631
+ .col.fullhd\:is-one-quarter {
3632
+ flex: none;
3633
+ width: 25%;
3634
+ }
3635
+ .col.fullhd\:is-one-fifth {
3636
+ flex: none;
3637
+ width: 20%;
3638
+ }
3639
+ .col.fullhd\:is-two-fifths {
3640
+ flex: none;
3641
+ width: 40%;
3642
+ }
3643
+ .col.fullhd\:is-three-fifths {
3644
+ flex: none;
3645
+ width: 60%;
3646
+ }
3647
+ .col.fullhd\:is-four-fifths {
3648
+ flex: none;
3649
+ width: 80%;
3650
+ }
3651
+ .col.fullhd\:is-offset-three-quarters {
3652
+ margin-left: 75%;
3653
+ }
3654
+ .col.fullhd\:is-offset-two-thirds {
3655
+ margin-left: 66.6666%;
3656
+ }
3657
+ .col.fullhd\:is-offset-half {
3658
+ margin-left: 50%;
3659
+ }
3660
+ .col.fullhd\:is-offset-one-third {
3661
+ margin-left: 33.3333%;
3662
+ }
3663
+ .col.fullhd\:is-offset-one-quarter {
3664
+ margin-left: 25%;
3665
+ }
3666
+ .col.fullhd\:is-offset-one-fifth {
3667
+ margin-left: 20%;
3668
+ }
3669
+ .col.fullhd\:is-offset-two-fifths {
3670
+ margin-left: 40%;
3671
+ }
3672
+ .col.fullhd\:is-offset-three-fifths {
3673
+ margin-left: 60%;
3674
+ }
3675
+ .col.fullhd\:is-offset-four-fifths {
3676
+ margin-left: 80%;
3677
+ }
3678
+ .col.fullhd\:is-0 {
3679
+ flex: none;
3680
+ width: 0%;
3681
+ }
3682
+ .col.fullhd\:is-offset-0 {
3683
+ margin-left: 0%;
3684
+ }
3685
+ .col.fullhd\:is-1 {
3686
+ flex: none;
3687
+ width: 8.3333333333%;
3688
+ }
3689
+ .col.fullhd\:is-offset-1 {
3690
+ margin-left: 8.3333333333%;
3691
+ }
3692
+ .col.fullhd\:is-2 {
3693
+ flex: none;
3694
+ width: 16.6666666667%;
3695
+ }
3696
+ .col.fullhd\:is-offset-2 {
3697
+ margin-left: 16.6666666667%;
3698
+ }
3699
+ .col.fullhd\:is-3 {
3700
+ flex: none;
3701
+ width: 25%;
3702
+ }
3703
+ .col.fullhd\:is-offset-3 {
3704
+ margin-left: 25%;
3705
+ }
3706
+ .col.fullhd\:is-4 {
3707
+ flex: none;
3708
+ width: 33.3333333333%;
3709
+ }
3710
+ .col.fullhd\:is-offset-4 {
3711
+ margin-left: 33.3333333333%;
3712
+ }
3713
+ .col.fullhd\:is-5 {
3714
+ flex: none;
3715
+ width: 41.6666666667%;
3716
+ }
3717
+ .col.fullhd\:is-offset-5 {
3718
+ margin-left: 41.6666666667%;
3719
+ }
3720
+ .col.fullhd\:is-6 {
3721
+ flex: none;
3722
+ width: 50%;
3723
+ }
3724
+ .col.fullhd\:is-offset-6 {
3725
+ margin-left: 50%;
3726
+ }
3727
+ .col.fullhd\:is-7 {
3728
+ flex: none;
3729
+ width: 58.3333333333%;
3730
+ }
3731
+ .col.fullhd\:is-offset-7 {
3732
+ margin-left: 58.3333333333%;
3733
+ }
3734
+ .col.fullhd\:is-8 {
3735
+ flex: none;
3736
+ width: 66.6666666667%;
3737
+ }
3738
+ .col.fullhd\:is-offset-8 {
3739
+ margin-left: 66.6666666667%;
3740
+ }
3741
+ .col.fullhd\:is-9 {
3742
+ flex: none;
3743
+ width: 75%;
3744
+ }
3745
+ .col.fullhd\:is-offset-9 {
3746
+ margin-left: 75%;
3747
+ }
3748
+ .col.fullhd\:is-10 {
3749
+ flex: none;
3750
+ width: 83.3333333333%;
3751
+ }
3752
+ .col.fullhd\:is-offset-10 {
3753
+ margin-left: 83.3333333333%;
3754
+ }
3755
+ .col.fullhd\:is-11 {
3756
+ flex: none;
3757
+ width: 91.6666666667%;
3758
+ }
3759
+ .col.fullhd\:is-offset-11 {
3760
+ margin-left: 91.6666666667%;
3761
+ }
3762
+ .col.fullhd\:is-12 {
3763
+ flex: none;
3764
+ width: 100%;
3765
+ }
3766
+ .col.fullhd\:is-offset-12 {
3767
+ margin-left: 100%;
3768
+ }
3769
+ }
3770
+
3771
+ .grid {
3772
+ margin-left: calc(var(--bal-column-gap) * -1);
3773
+ margin-right: calc(var(--bal-column-gap) * -1);
3774
+ margin-top: calc(var(--bal-column-gap) * -1);
3775
+ }
3776
+ .grid:last-child {
3777
+ margin-bottom: calc(var(--bal-column-gap) * -1);
3778
+ }
3779
+ .grid:not(:last-child) {
3780
+ margin-bottom: calc(1.5rem - var(--bal-column-gap));
3781
+ }
3782
+ .grid.is-centered {
3783
+ justify-content: center;
3784
+ }
3785
+ .grid.is-gapless {
3786
+ margin-left: 0;
3787
+ margin-right: 0;
3788
+ margin-top: 0;
3789
+ }
3790
+ .grid.is-gapless > .col {
3791
+ margin: 0;
3792
+ padding: 0 !important;
3793
+ }
3794
+ .grid.is-gapless:not(:last-child) {
3795
+ margin-bottom: 1.5rem;
3796
+ }
3797
+ .grid.is-gapless:last-child {
3798
+ margin-bottom: 0;
3799
+ }
3800
+ .grid.is-mobile {
3801
+ display: flex;
3802
+ }
3803
+ .grid.is-multiline {
3804
+ flex-wrap: wrap;
3805
+ }
3806
+ .grid.is-vcentered {
3807
+ align-items: center;
3808
+ }
3809
+ @media screen and (min-width: 769px), print {
3810
+ .grid:not(.is-desktop) {
3811
+ display: flex;
3812
+ }
3813
+ }
3814
+ @media screen and (min-width: 1024px) {
3815
+ .grid.is-desktop {
3816
+ display: flex;
3817
+ }
3818
+ }
3819
+
3820
+ a.link:not(.button),
3821
+ a.is-link:not(.button) {
3822
+ color: var(--bal-link-color);
3823
+ font-weight: var(--bal-link-font-weight);
3824
+ -webkit-text-decoration: var(--bal-link-text-decoration);
3825
+ text-decoration: var(--bal-link-text-decoration);
3826
+ text-underline-offset: var(--bal-link-text-underline-offset);
3827
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
3828
+ border-radius: var(--bal-link-radius);
3829
+ }
3830
+ a.link:not(.button) svg,
3831
+ a.link:not(.button) g,
3832
+ a.link:not(.button) path,
3833
+ a.link:not(.button) circle,
3834
+ a.is-link:not(.button) svg,
3835
+ a.is-link:not(.button) g,
3836
+ a.is-link:not(.button) path,
3837
+ a.is-link:not(.button) circle {
3838
+ fill: var(--bal-link-color);
3839
+ }
3840
+ a.link:not(.button):hover,
3841
+ a.is-link:not(.button):hover {
3842
+ -webkit-text-decoration: var(--bal-link-text-decoration);
3843
+ text-decoration: var(--bal-link-text-decoration);
3844
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
3845
+ text-underline-offset: var(--bal-link-text-underline-offset);
3846
+ color: var(--bal-link-color-hover);
3847
+ }
3848
+ a.link:not(.button):hover svg,
3849
+ a.link:not(.button):hover g,
3850
+ a.link:not(.button):hover path,
3851
+ a.link:not(.button):hover circle,
3852
+ a.is-link:not(.button):hover svg,
3853
+ a.is-link:not(.button):hover g,
3854
+ a.is-link:not(.button):hover path,
3855
+ a.is-link:not(.button):hover circle {
3856
+ fill: var(--bal-link-color-hover);
3857
+ }
3858
+ a.link:not(.button):active,
3859
+ a.is-link:not(.button):active {
3860
+ -webkit-text-decoration: var(--bal-link-text-decoration);
3861
+ text-decoration: var(--bal-link-text-decoration);
3862
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
3863
+ text-underline-offset: var(--bal-link-text-underline-offset);
3864
+ color: var(--bal-link-color-active);
3865
+ }
3866
+ a.link:not(.button):active svg,
3867
+ a.link:not(.button):active g,
3868
+ a.link:not(.button):active path,
3869
+ a.link:not(.button):active circle,
3870
+ a.is-link:not(.button):active svg,
3871
+ a.is-link:not(.button):active g,
3872
+ a.is-link:not(.button):active path,
3873
+ a.is-link:not(.button):active circle {
3874
+ fill: var(--bal-link-color-active);
3875
+ }
3876
+ a.link:not(.button).is-inverted,
3877
+ a.is-link:not(.button).is-inverted {
3878
+ color: var(--bal-link-inverted-color);
3879
+ }
3880
+ a.link:not(.button).is-inverted svg,
3881
+ a.link:not(.button).is-inverted g,
3882
+ a.link:not(.button).is-inverted path,
3883
+ a.link:not(.button).is-inverted circle,
3884
+ a.is-link:not(.button).is-inverted svg,
3885
+ a.is-link:not(.button).is-inverted g,
3886
+ a.is-link:not(.button).is-inverted path,
3887
+ a.is-link:not(.button).is-inverted circle {
3888
+ fill: var(--bal-link-inverted-color);
3889
+ }
3890
+ a.link:not(.button).is-inverted:hover,
3891
+ a.is-link:not(.button).is-inverted:hover {
3892
+ -webkit-text-decoration: var(--bal-link-text-decoration);
3893
+ text-decoration: var(--bal-link-text-decoration);
3894
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
3895
+ text-underline-offset: var(--bal-link-text-underline-offset);
3896
+ color: var(--bal-link-inverted-color-hover);
3897
+ }
3898
+ a.link:not(.button).is-inverted:hover svg,
3899
+ a.link:not(.button).is-inverted:hover g,
3900
+ a.link:not(.button).is-inverted:hover path,
3901
+ a.link:not(.button).is-inverted:hover circle,
3902
+ a.is-link:not(.button).is-inverted:hover svg,
3903
+ a.is-link:not(.button).is-inverted:hover g,
3904
+ a.is-link:not(.button).is-inverted:hover path,
3905
+ a.is-link:not(.button).is-inverted:hover circle {
3906
+ fill: var(--bal-link-inverted-color-hover);
3907
+ }
3908
+ a.link:not(.button).is-inverted:active,
3909
+ a.is-link:not(.button).is-inverted:active {
3910
+ -webkit-text-decoration: var(--bal-link-text-decoration);
3911
+ text-decoration: var(--bal-link-text-decoration);
3912
+ text-decoration-thickness: var(--bal-link-text-decoration-thickness);
3913
+ text-underline-offset: var(--bal-link-text-underline-offset);
3914
+ color: var(--bal-link-inverted-color-active);
3915
+ }
3916
+ a.link:not(.button).is-inverted:active svg,
3917
+ a.link:not(.button).is-inverted:active g,
3918
+ a.link:not(.button).is-inverted:active path,
3919
+ a.link:not(.button).is-inverted:active circle,
3920
+ a.is-link:not(.button).is-inverted:active svg,
3921
+ a.is-link:not(.button).is-inverted:active g,
3922
+ a.is-link:not(.button).is-inverted:active path,
3923
+ a.is-link:not(.button).is-inverted:active circle {
3924
+ fill: var(--bal-link-inverted-color-active);
3925
+ }
3926
+ a.link:not(.button).is-light,
3927
+ a.is-link:not(.button).is-light {
3928
+ -webkit-text-decoration: var(--bal-link-inverted-light-text-decoration);
3929
+ text-decoration: var(--bal-link-inverted-light-text-decoration);
3930
+ font-weight: var(--bal-link-inverted-light-font-weight);
3931
+ color: var(--bal-link-inverted-color);
3932
+ }
3933
+ a.link:not(.button).is-light svg,
3934
+ a.link:not(.button).is-light g,
3935
+ a.link:not(.button).is-light path,
3936
+ a.link:not(.button).is-light circle,
3937
+ a.is-link:not(.button).is-light svg,
3938
+ a.is-link:not(.button).is-light g,
3939
+ a.is-link:not(.button).is-light path,
3940
+ a.is-link:not(.button).is-light circle {
3941
+ fill: var(--bal-link-inverted-color);
3942
+ }
3943
+ a.link:not(.button).is-light:hover,
3944
+ a.is-link:not(.button).is-light:hover {
3945
+ color: var(--bal-link-inverted-color-hover);
3946
+ }
3947
+ a.link:not(.button).is-light:hover svg,
3948
+ a.link:not(.button).is-light:hover g,
3949
+ a.link:not(.button).is-light:hover path,
3950
+ a.link:not(.button).is-light:hover circle,
3951
+ a.is-link:not(.button).is-light:hover svg,
3952
+ a.is-link:not(.button).is-light:hover g,
3953
+ a.is-link:not(.button).is-light:hover path,
3954
+ a.is-link:not(.button).is-light:hover circle {
3955
+ fill: var(--bal-link-inverted-color-hover);
3956
+ }
3957
+ a.link:not(.button).is-light:active,
3958
+ a.is-link:not(.button).is-light:active {
3959
+ color: var(--bal-link-inverted-color-active);
3960
+ }
3961
+ a.link:not(.button).is-light:active svg,
3962
+ a.link:not(.button).is-light:active g,
3963
+ a.link:not(.button).is-light:active path,
3964
+ a.link:not(.button).is-light:active circle,
3965
+ a.is-link:not(.button).is-light:active svg,
3966
+ a.is-link:not(.button).is-light:active g,
3967
+ a.is-link:not(.button).is-light:active path,
3968
+ a.is-link:not(.button).is-light:active circle {
3969
+ fill: var(--bal-link-inverted-color-active);
3970
+ }
3971
+
3972
+ ol.list,
3973
+ ul.list,
3974
+ ol.is-list,
3975
+ ul.is-list {
3976
+ margin-bottom: 1.5rem;
3977
+ margin-left: 2rem;
3978
+ }
3979
+ @media screen and (min-width: 1024px) {
3980
+ ol.list,
3981
+ ul.list,
3982
+ ol.is-list,
3983
+ ul.is-list {
3984
+ margin-bottom: 2rem;
3985
+ }
3986
+ }
3987
+ ol.list li,
3988
+ ul.list li,
3989
+ ol.is-list li,
3990
+ ul.is-list li {
3991
+ -webkit-hyphens: auto;
3992
+ hyphens: auto;
3993
+ margin-bottom: 1rem;
3994
+ }
3995
+ ol.list li:last-child,
3996
+ ul.list li:last-child,
3997
+ ol.is-list li:last-child,
3998
+ ul.is-list li:last-child {
3999
+ margin-bottom: 0;
4000
+ }
4001
+ ol.list li::marker,
4002
+ ul.list li::marker,
4003
+ ol.is-list li::marker,
4004
+ ul.is-list li::marker {
4005
+ color: var(--bal-list-marker-color);
4006
+ }
4007
+ ol.list.has-bullet-circle li::marker,
4008
+ ul.list.has-bullet-circle li::marker,
4009
+ ol.is-list.has-bullet-circle li::marker,
4010
+ ul.is-list.has-bullet-circle li::marker {
4011
+ content: none;
4012
+ }
4013
+ ol.list.has-bullet-circle li::before,
4014
+ ul.list.has-bullet-circle li::before,
4015
+ ol.is-list.has-bullet-circle li::before,
4016
+ ul.is-list.has-bullet-circle li::before {
4017
+ content: "";
4018
+ position: absolute;
4019
+ display: inline-block;
4020
+ width: 0.75rem;
4021
+ height: 0.75rem;
4022
+ font-size: 0.75rem;
4023
+ margin-left: -1.25rem;
4024
+ margin-top: 0.313rem;
4025
+ border-radius: var(--bal-list-bullet-radius);
4026
+ background: var(--bal-list-bullet-background);
4027
+ }
4028
+ ol.list.has-bullet-circle.has-bullet-red li::before,
4029
+ ol.list.has-bullet-circle li.has-bullet-red::before,
4030
+ ul.list.has-bullet-circle.has-bullet-red li::before,
4031
+ ul.list.has-bullet-circle li.has-bullet-red::before,
4032
+ ol.is-list.has-bullet-circle.has-bullet-red li::before,
4033
+ ol.is-list.has-bullet-circle li.has-bullet-red::before,
4034
+ ul.is-list.has-bullet-circle.has-bullet-red li::before,
4035
+ ul.is-list.has-bullet-circle li.has-bullet-red::before {
4036
+ background: var(--bal-list-bullet-background-red);
4037
+ }
4038
+ ol.list.has-bullet-circle.has-bullet-yellow li::before,
4039
+ ol.list.has-bullet-circle li.has-bullet-yellow::before,
4040
+ ul.list.has-bullet-circle.has-bullet-yellow li::before,
4041
+ ul.list.has-bullet-circle li.has-bullet-yellow::before,
4042
+ ol.is-list.has-bullet-circle.has-bullet-yellow li::before,
4043
+ ol.is-list.has-bullet-circle li.has-bullet-yellow::before,
4044
+ ul.is-list.has-bullet-circle.has-bullet-yellow li::before,
4045
+ ul.is-list.has-bullet-circle li.has-bullet-yellow::before {
4046
+ background: var(--bal-list-bullet-background-yellow);
4047
+ }
4048
+ ol.list.has-bullet-circle.has-bullet-green li::before,
4049
+ ol.list.has-bullet-circle li.has-bullet-green::before,
4050
+ ul.list.has-bullet-circle.has-bullet-green li::before,
4051
+ ul.list.has-bullet-circle li.has-bullet-green::before,
4052
+ ol.is-list.has-bullet-circle.has-bullet-green li::before,
4053
+ ol.is-list.has-bullet-circle li.has-bullet-green::before,
4054
+ ul.is-list.has-bullet-circle.has-bullet-green li::before,
4055
+ ul.is-list.has-bullet-circle li.has-bullet-green::before {
4056
+ background: var(--bal-list-bullet-background-green);
4057
+ }
4058
+ ol.list.has-bullet-circle.has-bullet-purple li::before,
4059
+ ol.list.has-bullet-circle li.has-bullet-purple::before,
4060
+ ul.list.has-bullet-circle.has-bullet-purple li::before,
4061
+ ul.list.has-bullet-circle li.has-bullet-purple::before,
4062
+ ol.is-list.has-bullet-circle.has-bullet-purple li::before,
4063
+ ol.is-list.has-bullet-circle li.has-bullet-purple::before,
4064
+ ul.is-list.has-bullet-circle.has-bullet-purple li::before,
4065
+ ul.is-list.has-bullet-circle li.has-bullet-purple::before {
4066
+ background: var(--bal-list-bullet-background-purple);
4067
+ }
4068
+ ol.list.has-bullets, ol.list.has-bullet-check, ol.list.has-bullet-close,
4069
+ ul.list.has-bullets,
4070
+ ul.list.has-bullet-check,
4071
+ ul.list.has-bullet-close,
4072
+ ol.is-list.has-bullets,
4073
+ ol.is-list.has-bullet-check,
4074
+ ol.is-list.has-bullet-close,
4075
+ ul.is-list.has-bullets,
4076
+ ul.is-list.has-bullet-check,
4077
+ ul.is-list.has-bullet-close {
4078
+ list-style-type: none !important;
4079
+ }
4080
+ ol.list.has-bullets li, ol.list.has-bullet-check li, ol.list.has-bullet-close li,
4081
+ ul.list.has-bullets li,
4082
+ ul.list.has-bullet-check li,
4083
+ ul.list.has-bullet-close li,
4084
+ ol.is-list.has-bullets li,
4085
+ ol.is-list.has-bullet-check li,
4086
+ ol.is-list.has-bullet-close li,
4087
+ ul.is-list.has-bullets li,
4088
+ ul.is-list.has-bullet-check li,
4089
+ ul.is-list.has-bullet-close li {
4090
+ list-style-type: none !important;
4091
+ }
4092
+ ol.list.has-bullets li::marker, ol.list.has-bullet-check li::marker, ol.list.has-bullet-close li::marker,
4093
+ ul.list.has-bullets li::marker,
4094
+ ul.list.has-bullet-check li::marker,
4095
+ ul.list.has-bullet-close li::marker,
4096
+ ol.is-list.has-bullets li::marker,
4097
+ ol.is-list.has-bullet-check li::marker,
4098
+ ol.is-list.has-bullet-close li::marker,
4099
+ ul.is-list.has-bullets li::marker,
4100
+ ul.is-list.has-bullet-check li::marker,
4101
+ ul.is-list.has-bullet-close li::marker {
4102
+ content: none !important;
4103
+ }
4104
+ ol.list.has-bullets li::before, ol.list.has-bullet-check li::before, ol.list.has-bullet-close li::before,
4105
+ ul.list.has-bullets li::before,
4106
+ ul.list.has-bullet-check li::before,
4107
+ ul.list.has-bullet-close li::before,
4108
+ ol.is-list.has-bullets li::before,
4109
+ ol.is-list.has-bullet-check li::before,
4110
+ ol.is-list.has-bullet-close li::before,
4111
+ ul.is-list.has-bullets li::before,
4112
+ ul.is-list.has-bullet-check li::before,
4113
+ ul.is-list.has-bullet-close li::before {
4114
+ content: "";
4115
+ position: absolute;
4116
+ display: inline-block;
4117
+ width: 0.875rem;
4118
+ height: 0.875rem;
4119
+ font-size: 0.875rem;
4120
+ margin-left: -1.375rem;
4121
+ margin-top: 0.313rem;
4122
+ }
4123
+ ol.list.has-bullet-check li::before,
4124
+ ol.list li.has-bullet-check::before,
4125
+ ul.list.has-bullet-check li::before,
4126
+ ul.list li.has-bullet-check::before,
4127
+ ol.is-list.has-bullet-check li::before,
4128
+ ol.is-list li.has-bullet-check::before,
4129
+ ul.is-list.has-bullet-check li::before,
4130
+ ul.is-list li.has-bullet-check::before {
4131
+ background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzM4ODU0XzM0MjU0OSkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjYzNzEgMS4xOTc5MkMxNC4wNjI4IDEuNTQ5NzQgMTQuMTIyOCAyLjE4MDA2IDEzLjc3MDkgMi42MDU3OUw1LjczMDkgMTIuMzM1TDUuNzI4NDggMTIuMzM3OUM1LjU0NTYgMTIuNTU3NSA1LjMxNjA4IDEyLjczMzYgNS4wNTY2MSAxMi44NTM0QzQuNzk3MTMgMTIuOTczMSA0LjUxNDIzIDEzLjAzMzYgNC4yMjg0OCAxMy4wMzAySDQuMjI3NThDMy45MzcxNSAxMy4wMjY2IDMuNjUxMzEgMTIuOTU3MyAzLjM5MTUyIDEyLjgyNzRDMy4xMzI2IDEyLjY5NzkgMi45MDYyNiAxMi41MTE3IDIuNzI5MzcgMTIuMjgyNkMyLjcyODc3IDEyLjI4MTggMi43MjgxOCAxMi4yODEgMi43Mjc1OCAxMi4yODAyTDAuMjEwNjk0IDkuMDQ0MjZDLTAuMTI4Mzc2IDguNjA4MzEgLTAuMDQ5ODQyIDcuOTgwMDMgMC4zODYxMDUgNy42NDA5NkMwLjgyMjA1MyA3LjMwMTg5IDEuNDUwMzMgNy4zODA0MyAxLjc4OTQgNy44MTYzOEw0LjI1Mjk3IDEwLjk4MzhMMTIuMjI5MiAxLjMzMTc2QzEyLjU4MSAwLjkwNjAzNSAxMy4yMTE0IDAuODQ2MTEzIDEzLjYzNzEgMS4xOTc5MloiIGZpbGw9IiMwMDBENkUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zODg1NF8zNDI1NDkiPgo8cmVjdCB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) no-repeat left top;
4132
+ }
4133
+ ol.list.has-bullet-close li::before,
4134
+ ol.list li.has-bullet-close::before,
4135
+ ul.list.has-bullet-close li::before,
4136
+ ul.list li.has-bullet-close::before,
4137
+ ol.is-list.has-bullet-close li::before,
4138
+ ol.is-list li.has-bullet-close::before,
4139
+ ul.is-list.has-bullet-close li::before,
4140
+ ul.is-list li.has-bullet-close::before {
4141
+ background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzM4ODU0XzM0MjU5OSkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEuNzA3MTEgMC4yOTI4OTNDMS4zMTY1OCAtMC4wOTc2MzEgMC42ODM0MTcgLTAuMDk3NjMxIDAuMjkyODkzIDAuMjkyODkzQy0wLjA5NzYzMSAwLjY4MzQxNyAtMC4wOTc2MzEgMS4zMTY1OCAwLjI5Mjg5MyAxLjcwNzExTDUuNTg1NzkgN0wwLjI5Mjg5MyAxMi4yOTI5Qy0wLjA5NzYzMSAxMi42ODM0IC0wLjA5NzYzMSAxMy4zMTY2IDAuMjkyODkzIDEzLjcwNzFDMC42ODM0MTcgMTQuMDk3NiAxLjMxNjU4IDE0LjA5NzYgMS43MDcxMSAxMy43MDcxTDcgOC40MTQyMUwxMi4yOTI5IDEzLjcwNzFDMTIuNjgzNCAxNC4wOTc2IDEzLjMxNjYgMTQuMDk3NiAxMy43MDcxIDEzLjcwNzFDMTQuMDk3NiAxMy4zMTY2IDE0LjA5NzYgMTIuNjgzNCAxMy43MDcxIDEyLjI5MjlMOC40MTQyMSA3TDEzLjcwNzEgMS43MDcxMUMxNC4wOTc2IDEuMzE2NTggMTQuMDk3NiAwLjY4MzQxNyAxMy43MDcxIDAuMjkyODkzQzEzLjMxNjYgLTAuMDk3NjMxIDEyLjY4MzQgLTAuMDk3NjMxIDEyLjI5MjkgMC4yOTI4OTNMNyA1LjU4NTc5TDEuNzA3MTEgMC4yOTI4OTNaIiBmaWxsPSIjMDAwRDZFIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMzg4NTRfMzQyNTk5Ij4KPHJlY3Qgd2lkdGg9IjE0IiBoZWlnaHQ9IjE0IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=) no-repeat left top;
4142
+ }
4143
+ ol.list.has-bullet-check.has-bullet-green li::before,
4144
+ ol.list li.has-bullet-check.has-bullet-green::before,
4145
+ ul.list.has-bullet-check.has-bullet-green li::before,
4146
+ ul.list li.has-bullet-check.has-bullet-green::before,
4147
+ ol.is-list.has-bullet-check.has-bullet-green li::before,
4148
+ ol.is-list li.has-bullet-check.has-bullet-green::before,
4149
+ ul.is-list.has-bullet-check.has-bullet-green li::before,
4150
+ ul.is-list li.has-bullet-check.has-bullet-green::before {
4151
+ background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI1MDdfMTkzNDYxKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMuNjM3MSAxLjE5NzkyQzE0LjA2MjggMS41NDk3NCAxNC4xMjI4IDIuMTgwMDYgMTMuNzcwOSAyLjYwNTc5TDUuNzMwOSAxMi4zMzVMNS43Mjg0OCAxMi4zMzc5QzUuNTQ1NiAxMi41NTc1IDUuMzE2MDggMTIuNzMzNiA1LjA1NjYxIDEyLjg1MzRDNC43OTcxMyAxMi45NzMxIDQuNTE0MjMgMTMuMDMzNiA0LjIyODQ4IDEzLjAzMDJDMy45MzgwNSAxMy4wMjY2IDMuNjUxMzEgMTIuOTU3MyAzLjM5MTUyIDEyLjgyNzRDMy4xMzI2IDEyLjY5NzkgMi45MDYyNiAxMi41MTE3IDIuNzI5MzcgMTIuMjgyNkMyLjcyODc3IDEyLjI4MTggMi43MjgxOCAxMi4yODEgMi43Mjc1OCAxMi4yODAyTDAuMjEwNjk0IDkuMDQ0MjZDLTAuMTI4Mzc2IDguNjA4MzEgLTAuMDQ5ODQyIDcuOTgwMDMgMC4zODYxMDUgNy42NDA5NkMwLjgyMjA1MyA3LjMwMTg5IDEuNDUwMzMgNy4zODA0MyAxLjc4OTQgNy44MTYzOEw0LjI1Mjk3IDEwLjk4MzhMMTIuMjI5MiAxLjMzMTc2QzEyLjU4MSAwLjkwNjAzNSAxMy4yMTE0IDAuODQ2MTEzIDEzLjYzNzEgMS4xOTc5MloiIGZpbGw9IiMwMEIyOEYiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yNTA3XzE5MzQ2MSI+CjxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat left top;
4152
+ }
4153
+ ol.list.has-bullet-close.has-bullet-red li::before,
4154
+ ol.list li.has-bullet-close.has-bullet-red::before,
4155
+ ul.list.has-bullet-close.has-bullet-red li::before,
4156
+ ul.list li.has-bullet-close.has-bullet-red::before,
4157
+ ol.is-list.has-bullet-close.has-bullet-red li::before,
4158
+ ol.is-list li.has-bullet-close.has-bullet-red::before,
4159
+ ul.is-list.has-bullet-close.has-bullet-red li::before,
4160
+ ul.is-list li.has-bullet-close.has-bullet-red::before {
4161
+ background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzI1MDdfMTkzNDY1KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMS43MDcxMSAwLjI5Mjg5M0MxLjMxNjU4IC0wLjA5NzYzMSAwLjY4MzQxNyAtMC4wOTc2MzEgMC4yOTI4OTMgMC4yOTI4OTNDLTAuMDk3NjMxIDAuNjgzNDE3IC0wLjA5NzYzMSAxLjMxNjU4IDAuMjkyODkzIDEuNzA3MTFMNS41ODU3OSA3TDAuMjkyODkzIDEyLjI5MjlDLTAuMDk3NjMxIDEyLjY4MzQgLTAuMDk3NjMxIDEzLjMxNjYgMC4yOTI4OTMgMTMuNzA3MUMwLjY4MzQxNyAxNC4wOTc2IDEuMzE2NTggMTQuMDk3NiAxLjcwNzExIDEzLjcwNzFMNyA4LjQxNDIxTDEyLjI5MjkgMTMuNzA3MUMxMi42ODM0IDE0LjA5NzYgMTMuMzE2NiAxNC4wOTc2IDEzLjcwNzEgMTMuNzA3MUMxNC4wOTc2IDEzLjMxNjYgMTQuMDk3NiAxMi42ODM0IDEzLjcwNzEgMTIuMjkyOUw4LjQxNDIxIDdMMTMuNzA3MSAxLjcwNzExQzE0LjA5NzYgMS4zMTY1OCAxNC4wOTc2IDAuNjgzNDE3IDEzLjcwNzEgMC4yOTI4OTNDMTMuMzE2NiAtMC4wOTc2MzEgMTIuNjgzNCAtMC4wOTc2MzEgMTIuMjkyOSAwLjI5Mjg5M0w3IDUuNTg1NzlMMS43MDcxMSAwLjI5Mjg5M1oiIGZpbGw9IiNEOTMwNEMiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yNTA3XzE5MzQ2NSI+CjxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat left top;
4162
+ }
4163
+ ol.list.is-inverted li,
4164
+ ol.list.is-inverted li::marker,
4165
+ ul.list.is-inverted li,
4166
+ ul.list.is-inverted li::marker,
4167
+ ol.is-list.is-inverted li,
4168
+ ol.is-list.is-inverted li::marker,
4169
+ ul.is-list.is-inverted li,
4170
+ ul.is-list.is-inverted li::marker {
4171
+ color: var(--bal-list-marker-inverted-color);
4172
+ }
4173
+ ol.list.is-inverted.has-bullet-check li::before,
4174
+ ol.list.is-inverted li.has-bullet-check::before,
4175
+ ul.list.is-inverted.has-bullet-check li::before,
4176
+ ul.list.is-inverted li.has-bullet-check::before,
4177
+ ol.is-list.is-inverted.has-bullet-check li::before,
4178
+ ol.is-list.is-inverted li.has-bullet-check::before,
4179
+ ul.is-list.is-inverted.has-bullet-check li::before,
4180
+ ul.is-list.is-inverted li.has-bullet-check::before {
4181
+ background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzM4ODU0XzM0MjU0OSkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjYzNzEgMS4xOTc5MkMxNC4wNjI4IDEuNTQ5NzQgMTQuMTIyOCAyLjE4MDA2IDEzLjc3MDkgMi42MDU3OUw1LjczMDkgMTIuMzM1TDUuNzI4NDggMTIuMzM3OUM1LjU0NTYgMTIuNTU3NSA1LjMxNjA4IDEyLjczMzYgNS4wNTY2MSAxMi44NTM0QzQuNzk3MTMgMTIuOTczMSA0LjUxNDIzIDEzLjAzMzYgNC4yMjg0OCAxMy4wMzAySDQuMjI3NThDMy45MzcxNSAxMy4wMjY2IDMuNjUxMzEgMTIuOTU3MyAzLjM5MTUyIDEyLjgyNzRDMy4xMzI2IDEyLjY5NzkgMi45MDYyNiAxMi41MTE3IDIuNzI5MzcgMTIuMjgyNkMyLjcyODc3IDEyLjI4MTggMi43MjgxOCAxMi4yODEgMi43Mjc1OCAxMi4yODAyTDAuMjEwNjk0IDkuMDQ0MjZDLTAuMTI4Mzc2IDguNjA4MzEgLTAuMDQ5ODQyIDcuOTgwMDMgMC4zODYxMDUgNy42NDA5NkMwLjgyMjA1MyA3LjMwMTg5IDEuNDUwMzMgNy4zODA0MyAxLjc4OTQgNy44MTYzOEw0LjI1Mjk3IDEwLjk4MzhMMTIuMjI5MiAxLjMzMTc2QzEyLjU4MSAwLjkwNjAzNSAxMy4yMTE0IDAuODQ2MTEzIDEzLjYzNzEgMS4xOTc5MloiIGZpbGw9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMzg4NTRfMzQyNTQ5Ij4KPHJlY3Qgd2lkdGg9IjE0IiBoZWlnaHQ9IjE0IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=) no-repeat left top;
4182
+ }
4183
+ ol.list.is-inverted.has-bullet-close li::before,
4184
+ ol.list.is-inverted li.has-bullet-close::before,
4185
+ ul.list.is-inverted.has-bullet-close li::before,
4186
+ ul.list.is-inverted li.has-bullet-close::before,
4187
+ ol.is-list.is-inverted.has-bullet-close li::before,
4188
+ ol.is-list.is-inverted li.has-bullet-close::before,
4189
+ ul.is-list.is-inverted.has-bullet-close li::before,
4190
+ ul.is-list.is-inverted li.has-bullet-close::before {
4191
+ background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzM4ODU0XzM0MjU5OSkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEuNzA3MTEgMC4yOTI4OTNDMS4zMTY1OCAtMC4wOTc2MzEgMC42ODM0MTcgLTAuMDk3NjMxIDAuMjkyODkzIDAuMjkyODkzQy0wLjA5NzYzMSAwLjY4MzQxNyAtMC4wOTc2MzEgMS4zMTY1OCAwLjI5Mjg5MyAxLjcwNzExTDUuNTg1NzkgN0wwLjI5Mjg5MyAxMi4yOTI5Qy0wLjA5NzYzMSAxMi42ODM0IC0wLjA5NzYzMSAxMy4zMTY2IDAuMjkyODkzIDEzLjcwNzFDMC42ODM0MTcgMTQuMDk3NiAxLjMxNjU4IDE0LjA5NzYgMS43MDcxMSAxMy43MDcxTDcgOC40MTQyMUwxMi4yOTI5IDEzLjcwNzFDMTIuNjgzNCAxNC4wOTc2IDEzLjMxNjYgMTQuMDk3NiAxMy43MDcxIDEzLjcwNzFDMTQuMDk3NiAxMy4zMTY2IDE0LjA5NzYgMTIuNjgzNCAxMy43MDcxIDEyLjI5MjlMOC40MTQyMSA3TDEzLjcwNzEgMS43MDcxMUMxNC4wOTc2IDEuMzE2NTggMTQuMDk3NiAwLjY4MzQxNyAxMy43MDcxIDAuMjkyODkzQzEzLjMxNjYgLTAuMDk3NjMxIDEyLjY4MzQgLTAuMDk3NjMxIDEyLjI5MjkgMC4yOTI4OTNMNyA1LjU4NTc5TDEuNzA3MTEgMC4yOTI4OTNaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzM4ODU0XzM0MjU5OSI+CjxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat left top;
4192
+ }
4193
+
4194
+ ul.list:not(.has-bullet-circle):not(.has-bullet-check) li,
4195
+ ul.is-list:not(.has-bullet-circle):not(.has-bullet-check) li {
4196
+ list-style: disc;
4197
+ }
4198
+
4199
+ .table {
4200
+ background-color: var(--bal-table-background-color);
4201
+ color: var(--bal-table-color);
4202
+ }
4203
+ .table td,
4204
+ .table th {
4205
+ border: var(--bal-table-cell-border);
4206
+ border-width: var(--bal-table-cell-border-width);
4207
+ padding: var(--bal-table-cell-padding);
4208
+ vertical-align: middle;
4209
+ }
4210
+ .table td.is-narrow,
4211
+ .table th.is-narrow {
4212
+ white-space: nowrap;
4213
+ width: 1%;
4214
+ }
4215
+ .table td.is-selected,
4216
+ .table th.is-selected {
4217
+ background-color: var(--bal-table-row-background-color-active);
4218
+ color: var(--bal-table-row-color-active);
4219
+ }
4220
+ .table td.is-selected a,
4221
+ .table td.is-selected strong,
4222
+ .table th.is-selected a,
4223
+ .table th.is-selected strong {
4224
+ color: currentColor;
4225
+ }
4226
+ .table th {
4227
+ color: var(--bal-table-cell-heading-color);
4228
+ }
4229
+ .table th:not([align]) {
4230
+ text-align: inherit;
4231
+ }
4232
+ .table tr.is-selected {
4233
+ background-color: var(--bal-table-row-background-color-active);
4234
+ color: var(--bal-table-row-color-active);
4235
+ }
4236
+ .table tr.is-selected a,
4237
+ .table tr.is-selected strong {
4238
+ color: currentColor;
4239
+ }
4240
+ .table tr.is-selected td,
4241
+ .table tr.is-selected th {
4242
+ border-color: var(--bal-table-row-color-active);
4243
+ color: currentColor;
4244
+ }
4245
+ .table thead {
4246
+ background-color: var(--bal-table-head-background-color);
4247
+ }
4248
+ .table thead td,
4249
+ .table thead th {
4250
+ border-width: var(--bal-table-head-cell-border-width);
4251
+ color: var(--bal-table-head-cell-color);
4252
+ }
4253
+ .table tfoot {
4254
+ background-color: var(--bal-table-foot-background-color);
4255
+ }
4256
+ .table tfoot td,
4257
+ .table tfoot th {
4258
+ border-width: var(--bal-table-foot-cell-border-width);
4259
+ color: var(--bal-table-foot-cell-color);
4260
+ }
4261
+ .table tbody {
4262
+ background-color: var(--bal-table-body-background-color);
4263
+ }
4264
+ .table tbody tr:last-child td,
4265
+ .table tbody tr:last-child th {
4266
+ border-bottom-width: 0;
4267
+ }
4268
+ .table.is-bordered th {
4269
+ border-top-width: 1px;
4270
+ border-left-width: 1px;
4271
+ border-right-width: 1px;
4272
+ border-top-color: var(--bal-table-cell-border-color);
4273
+ border-left-color: var(--bal-table-cell-border-color);
4274
+ border-right-color: var(--bal-table-cell-border-color);
4275
+ }
4276
+ .table.is-bordered td {
4277
+ border-width: 1px;
4278
+ }
4279
+ .table.is-bordered tr:last-child td {
4280
+ border-bottom-width: 1px;
4281
+ }
4282
+ .table.is-fullwidth {
4283
+ width: 100%;
4284
+ }
4285
+ .table.is-hoverable tbody tr:not(.is-selected):hover {
4286
+ background-color: var(--bal-table-row-background-color-hover);
4287
+ }
4288
+ .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
4289
+ background-color: var(--bal-table-row-background-color-hover);
4290
+ }
4291
+ .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
4292
+ background-color: var(--bal-table-striped-row-even-background-color-hover);
4293
+ }
4294
+ .table.is-narrow td,
4295
+ .table.is-narrow th {
4296
+ padding: 0.25em 0.5em;
4297
+ }
4298
+ .table.is-striped tbody tr:not(.is-selected):nth-child(even) {
4299
+ background-color: var(--bal-table-striped-row-even-background-color);
4300
+ }
4301
+
4302
+ .table-container {
4303
+ -webkit-overflow-scrolling: touch;
4304
+ overflow: auto;
4305
+ overflow-y: hidden;
4306
+ max-width: 100%;
4307
+ }
4308
+
4309
+ table.table {
4310
+ display: table !important;
4311
+ border-spacing: 0;
4312
+ margin: 0;
4313
+ }
4314
+ table.table thead tr {
4315
+ border-top: 0;
4316
+ }
4317
+ table.table thead th {
4318
+ border-color: var(--bal-table-head-cell-border-color);
4319
+ border-bottom-width: 2px;
4320
+ }
4321
+ table.table th:not([align]) {
4322
+ text-align: left;
4323
+ }
4324
+ table.table td,
4325
+ table.table th {
4326
+ font-size: var(--bal-table-head-font-size);
4327
+ font-family: var(--bal-table-head-font-family);
4328
+ vertical-align: middle;
4329
+ color: var(--bal-table-color);
4330
+ text-align: left;
4331
+ }
4332
+ table.table td .bal-checkbox,
4333
+ table.table th .bal-checkbox {
4334
+ padding: 0;
4335
+ margin-top: 1px;
4336
+ }
4337
+ table.table td {
4338
+ color: var(--bal-table-color);
4339
+ -webkit-hyphens: auto;
4340
+ hyphens: auto;
4341
+ }
4342
+ table.table td.has-buttons {
4343
+ padding: 2px;
4344
+ }
4345
+ table.table td.has-buttons .bal-button {
4346
+ margin-right: 0.25rem;
4347
+ }
4348
+ table.table td.has-buttons .bal-button:last-child {
4349
+ margin-right: 0px;
4350
+ }
4351
+ table.table td.has-buttons .buttons {
4352
+ justify-content: flex-end;
4353
+ padding: 3px;
4354
+ }
4355
+
4356
+ .title,
4357
+ .subtitle {
4358
+ -webkit-hyphens: auto;
4359
+ hyphens: auto;
4360
+ word-break: break-word;
4361
+ -webkit-font-smoothing: antialiased;
4362
+ -moz-osx-font-smoothing: grayscale;
4363
+ font-size: var(--bal-text-size-xxx-large);
4364
+ line-height: var(--bal-line-height-xxx-large);
4365
+ }
4366
+ @media screen and (min-width: 769px), print {
4367
+ .title,
4368
+ .subtitle {
4369
+ font-size: var(--bal-text-size-xxx-large-tablet);
4370
+ line-height: var(--bal-line-height-tablet-xxx-large);
4371
+ }
4372
+ }
4373
+ @media screen and (min-width: 1024px) {
4374
+ .title,
4375
+ .subtitle {
4376
+ font-size: var(--bal-text-size-xxx-large-desktop);
4377
+ line-height: var(--bal-line-height-desktop-xxx-large);
4378
+ }
4379
+ }
4380
+ .title em,
4381
+ .title span,
4382
+ .subtitle em,
4383
+ .subtitle span {
4384
+ font-weight: inherit;
4385
+ }
4386
+ .title strong,
4387
+ .subtitle strong {
4388
+ font-weight: var(--bal-font-weight-bold);
4389
+ }
4390
+ .title:not(:last-child),
4391
+ .subtitle:not(:last-child) {
4392
+ margin-bottom: var(--bal-space-x-small);
4393
+ margin-bottom: var(--bal-space-x-small-desktop);
4394
+ }
4395
+ @media screen and (min-width: 769px), print {
4396
+ .title:not(:last-child),
4397
+ .subtitle:not(:last-child) {
4398
+ margin-bottom: var(--bal-space-x-small-tablet);
4399
+ }
4400
+ }
4401
+ .title {
4402
+ font-family: var(--bal-title-font-family);
4403
+ font-weight: var(--bal-title-font-weight);
4404
+ }
4405
+
4406
+ .subtitle {
4407
+ font-family: var(--bal-subtitle-font-family);
4408
+ font-weight: var(--bal-subtitle-font-weight);
4409
+ }
4410
+
4411
+ .has-sticky-footer {
4412
+ min-height: 100vh;
4413
+ display: flex;
4414
+ flex-direction: column;
4415
+ }
4416
+ .has-sticky-footer main {
4417
+ padding-bottom: 2.5rem;
4418
+ }
4419
+ .has-sticky-footer .bal-footer,
4420
+ .has-sticky-footer footer.footer {
4421
+ margin-top: auto;
4422
+ }
4423
+ /*# sourceMappingURL=core.css.map */