bpmn-js-rails 0.1.0

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 (63) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +6 -0
  3. data/app/assets/javascripts/bpmn-js/bpmn-modeler.production.min.js +199 -0
  4. data/app/assets/javascripts/bpmn-js/bpmn-viewer.production.min.js +22 -0
  5. data/app/assets/javascripts/dmn-js/dmn-modeler.production.min.js +194 -0
  6. data/app/assets/javascripts/dmn-js/dmn-viewer.production.min.js +16 -0
  7. data/app/assets/javascripts/form-js/form-editor.umd.js +78936 -0
  8. data/app/assets/javascripts/form-js/form-viewer.umd.js +54147 -0
  9. data/app/assets/stylesheets/bpmn-js/bpmn-font/css/bpmn-codes.css +108 -0
  10. data/app/assets/stylesheets/bpmn-js/bpmn-font/css/bpmn-embedded.css +166 -0
  11. data/app/assets/stylesheets/bpmn-js/bpmn-font/css/bpmn.css +164 -0
  12. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.eot +0 -0
  13. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.svg +224 -0
  14. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.ttf +0 -0
  15. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.woff +0 -0
  16. data/app/assets/stylesheets/bpmn-js/bpmn-font/font/bpmn.woff2 +0 -0
  17. data/app/assets/stylesheets/bpmn-js/bpmn-js.css +145 -0
  18. data/app/assets/stylesheets/bpmn-js/diagram-js.css +1011 -0
  19. data/app/assets/stylesheets/dmn-js/diagram-js.css +1011 -0
  20. data/app/assets/stylesheets/dmn-js/dmn-font/css/dmn-codes.css +41 -0
  21. data/app/assets/stylesheets/dmn-js/dmn-font/css/dmn-embedded.css +98 -0
  22. data/app/assets/stylesheets/dmn-js/dmn-font/css/dmn.css +97 -0
  23. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.eot +0 -0
  24. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.svg +90 -0
  25. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.ttf +0 -0
  26. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.woff +0 -0
  27. data/app/assets/stylesheets/dmn-js/dmn-font/font/dmn.woff2 +0 -0
  28. data/app/assets/stylesheets/dmn-js/dmn-js-boxed-expression-controls.css +130 -0
  29. data/app/assets/stylesheets/dmn-js/dmn-js-boxed-expression.css +186 -0
  30. data/app/assets/stylesheets/dmn-js/dmn-js-decision-table-controls.css +301 -0
  31. data/app/assets/stylesheets/dmn-js/dmn-js-decision-table.css +580 -0
  32. data/app/assets/stylesheets/dmn-js/dmn-js-drd.css +95 -0
  33. data/app/assets/stylesheets/dmn-js/dmn-js-literal-expression.css +165 -0
  34. data/app/assets/stylesheets/dmn-js/dmn-js-shared.css +221 -0
  35. data/app/assets/stylesheets/form-js/form-js-editor.css +2342 -0
  36. data/app/assets/stylesheets/form-js/form-js.css +3694 -0
  37. data/app/helpers/bpmn_js_rails/view_helper.rb +291 -0
  38. data/app/javascript/bpmn_js_rails/controllers/bpmn_js_modeler_controller.js +85 -0
  39. data/app/javascript/bpmn_js_rails/controllers/bpmn_js_viewer_controller.js +46 -0
  40. data/app/javascript/bpmn_js_rails/controllers/dmn_js_modeler_controller.js +102 -0
  41. data/app/javascript/bpmn_js_rails/controllers/dmn_js_viewer_controller.js +45 -0
  42. data/app/javascript/bpmn_js_rails/controllers/form_js_editor_controller.js +80 -0
  43. data/app/javascript/bpmn_js_rails/controllers/form_js_viewer_controller.js +52 -0
  44. data/app/javascript/bpmn_js_rails/index.js +34 -0
  45. data/app/models/bpmn_js_rails/decision.rb +60 -0
  46. data/app/models/bpmn_js_rails/diagram.rb +51 -0
  47. data/app/models/bpmn_js_rails/form.rb +32 -0
  48. data/config/importmap.rb +7 -0
  49. data/config/routes.rb +2 -0
  50. data/db/migrate/20260319000001_create_bpmn_js_rails_diagrams.rb +15 -0
  51. data/db/migrate/20260319000002_create_bpmn_js_rails_forms.rb +15 -0
  52. data/db/migrate/20260319000003_create_bpmn_js_rails_decisions.rb +15 -0
  53. data/lib/bpmn-js-rails.rb +1 -0
  54. data/lib/bpmn_js_rails/engine.rb +30 -0
  55. data/lib/bpmn_js_rails/version.rb +3 -0
  56. data/lib/bpmn_js_rails/version.rb.erb +3 -0
  57. data/lib/bpmn_js_rails.rb +5 -0
  58. data/lib/generators/bpmn_js_rails/install/install_generator.rb +58 -0
  59. data/lib/generators/bpmn_js_rails/install/templates/create_bpmn_js_rails_decisions.rb.erb +15 -0
  60. data/lib/generators/bpmn_js_rails/install/templates/create_bpmn_js_rails_diagrams.rb.erb +15 -0
  61. data/lib/generators/bpmn_js_rails/install/templates/create_bpmn_js_rails_forms.rb.erb +15 -0
  62. data/lib/tasks/form_js_rails_tasks.rake +4 -0
  63. metadata +116 -0
@@ -0,0 +1,3694 @@
1
+ /**
2
+ * Theming
3
+ */
4
+ .fjs-container {
5
+ --color-grey-225-10-15: hsl(225, 10%, 15%);
6
+ --color-grey-225-10-35: hsl(225, 10%, 35%);
7
+ --color-grey-225-10-45: hsl(225, 10%, 45%);
8
+ --color-grey-225-10-55: hsl(225, 10%, 55%);
9
+ --color-grey-225-10-75: hsl(225, 10%, 75%);
10
+ --color-grey-225-10-80: hsl(225, 10%, 80%);
11
+ --color-grey-225-10-85: hsl(225, 10%, 85%);
12
+ --color-grey-225-10-90: hsl(225, 10%, 90%);
13
+ --color-grey-225-10-93: hsl(225, 10%, 93%);
14
+ --color-grey-225-10-95: hsl(225, 10%, 95%);
15
+ --color-grey-225-10-97: hsl(225, 10%, 97%);
16
+ --color-grey-0-0-88: hsl(0, 0%, 88%);
17
+ --color-blue-219-100-53: hsl(219, 99%, 53%);
18
+ --color-blue-219-100-53-05: hsla(219, 99%, 53%, 0.5);
19
+ --color-blue-205-100-40: hsl(205, 100%, 40%);
20
+ --color-blue-205-100-45: hsl(205, 100%, 45%);
21
+ --color-blue-205-100-50: hsl(205, 100%, 50%);
22
+ --color-blue-205-100-80: hsl(205, 100%, 80%);
23
+ --color-blue-205-100-95: hsl(205, 100%, 95%);
24
+ --color-green-150-86-44: hsl(150, 86%, 44%);
25
+ --color-red-360-100-40: hsl(360, 100%, 40%);
26
+ --color-red-360-100-45: hsl(360, 100%, 45%);
27
+ --color-red-360-100-92: hsl(360, 100%, 92%);
28
+ --color-red-360-100-95: hsl(360, 100%, 95%);
29
+ --color-red-360-100-97: hsl(360, 100%, 97%);
30
+ --color-white: hsl(0, 0%, 100%);
31
+ --color-black: hsl(0, 0%, 0%);
32
+ /**
33
+ * Specify color variables in the following schema:
34
+ * 1 - use specified layer
35
+ * 2 - use layer one
36
+ * 3 - use fallback
37
+ */
38
+ --color-background: var(--cds-field, var(--cds-field-01, var(--color-white)));
39
+ --color-background-disabled: var(--cds-background, var(--color-grey-225-10-95));
40
+ --color-background-readonly: var(--cds-background, var(--color-grey-225-10-95));
41
+ --color-background-adornment: var(--cds-field, var(--cds-field-01, var(--color-grey-225-10-95)));
42
+ --color-background-inverted: var(--cds-background-inverse, var(--color-grey-225-10-90));
43
+ --color-background-inverted-hover: var(--cds-background-inverse-hover, var(--color-grey-225-10-93));
44
+ --color-background-active: var(--cds-background-active, var(--color-grey-225-10-75));
45
+ --color-layer: var(--cds-layer, var(--cds-layer-01, var(--color-white)));
46
+ --color-layer-accent: var(--cds-layer-accent, var(--color-grey-0-0-88));
47
+ --color-background-pre: var(--cds-layer, var(--cds-layer-01, var(--color-white)));
48
+ --color-icon-base: var(--cds-icon-primary, var(--color-black));
49
+ --color-icon-inverted: var(--cds-icon-inverse, var(--color-black));
50
+ --color-text: var(--cds-text-primary, var(--color-grey-225-10-15));
51
+ --color-text-light: var(--cds-text-secondary, var(--color-grey-225-10-35));
52
+ --color-text-lighter: var(--cds-text-secondary, var(--color-grey-225-10-45));
53
+ --color-text-lightest: var(--cds-text-placeholder, var(--color-grey-225-10-55));
54
+ --color-text-inverted: var(--cds-text-inverse, var(--color-text));
55
+ --color-text-disabled: var(--cds-text-disabled, var(--color-text-light));
56
+ --color-borders: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-55)));
57
+ --color-borders-group: var(--cds-border-subtle, var(--color-grey-225-10-85));
58
+ --color-borders-table: var(--color-borders-group);
59
+ --color-borders-documentPreview: var(--cds-border-subtle, var(--color-grey-225-10-85));
60
+ --color-borders-disabled: var(--cds-border-disabled, var(--color-grey-225-10-75));
61
+ --color-borders-adornment: var(--cds-border-subtle, var(--cds-border-subtle-01, var(--color-grey-225-10-85)));
62
+ --color-borders-readonly: var(--cds-border-subtle, var(--color-grey-225-10-75));
63
+ --color-borders-inverted: var(--cds-border-inverse, var(--color-grey-225-10-90));
64
+ --color-borders-pre: var(--cds-border-subtle, var(--color-grey-225-10-85));
65
+ --color-warning: var(--cds-text-error, var(--color-red-360-100-45));
66
+ --color-warning-light: var(--cds-text-error, var(--color-red-360-100-92));
67
+ --color-accent: var(--cds-link-primary, var(--color-blue-205-100-40));
68
+ --color-accent-readonly: var(--cds-border-strong, var(--cds-border-strong-01, var(--color-grey-225-10-55)));
69
+ --color-datepicker-focused-day: var(--cds-button-primary, var(--color-grey-225-10-55));
70
+ --color-shadow: var(--cds-shadow, var(--color-grey-225-10-85));
71
+ --font-family: 'IBM Plex Sans', sans-serif;
72
+ --font-size-group: 15px;
73
+ --font-size-base: 14px;
74
+ --font-size-input: 14px;
75
+ --font-size-label: 12px;
76
+ --line-height-base: 20px;
77
+ --line-height-input: 18px;
78
+ --line-height-label: 16px;
79
+ --letter-spacing-base: 0.16px;
80
+ --letter-spacing-input: 0.16px;
81
+ --letter-spacing-label: 0.32px;
82
+ --form-field-height: 36px;
83
+ --border-definition: 1px solid var(--color-borders);
84
+ --border-definition-adornment: 1px solid var(--color-borders-adornment);
85
+ --outline-definition: 1px solid var(--cds-focus, var(--color-borders));
86
+ --button-warning-outline-definition: 2px solid var(--color-warning);
87
+ --border-definition-disabled: 1px solid var(--color-borders-disabled);
88
+ --border-definition-readonly: 1px solid var(--color-borders-readonly);
89
+ height: 100%;
90
+ }
91
+
92
+ .fjs-no-theme {
93
+ --cds-field: initial;
94
+ --cds-field-01: initial;
95
+ --cds-background: initial;
96
+ --cds-background-inverse: initial;
97
+ --cds-background-inverse-hover: initial;
98
+ --cds-background-active: initial;
99
+ --cds-layer: initial;
100
+ --cds-layer-01: initial;
101
+ --cds-layer-02: initial;
102
+ --cds-icon-primary: initial;
103
+ --cds-icon-secondary: initial;
104
+ --cds-icon-inverse: initial;
105
+ --cds-text-primary: initial;
106
+ --cds-text-secondary: initial;
107
+ --cds-text-placeholder: initial;
108
+ --cds-text-inverse: initial;
109
+ --cds-text-disabled: initial;
110
+ --cds-border-strong: initial;
111
+ --cds-border-strong-01: initial;
112
+ --cds-border-disabled: initial;
113
+ --cds-border-subtle: initial;
114
+ --cds-border-subtle-01: initial;
115
+ --cds-border-inverse: initial;
116
+ --cds-text-error: initial;
117
+ --cds-link-primary: initial;
118
+ --cds-button-primary: initial;
119
+ --cds-shadow: initial;
120
+ --cds-focus: initial;
121
+ --cds-interactive: initial;
122
+ --cds-border-interactive: initial;
123
+ --cds-highlight: initial;
124
+ --cds-field-02: initial;
125
+ --cds-field-hover-02: initial;
126
+ --cds-toggle-off: initial;
127
+ }
128
+
129
+ /**
130
+ * Layout styles
131
+ */
132
+ .fjs-container .fjs-vertical-layout {
133
+ display: flex;
134
+ flex-direction: column;
135
+ }
136
+
137
+ .fjs-container .fjs-columns {
138
+ display: flex;
139
+ flex-direction: row;
140
+ }
141
+
142
+ .fjs-container .fjs-vertical-group {
143
+ display: flex;
144
+ flex: 1;
145
+ width: 100%;
146
+ }
147
+
148
+ .fjs-container .fjs-layout-row {
149
+ flex: auto;
150
+ padding: 9px 0;
151
+ position: relative;
152
+ }
153
+
154
+ .fjs-container .fjs-layout-row:empty {
155
+ display: none;
156
+ }
157
+
158
+ .fjs-container .fjs-column {
159
+ flex-grow: 1;
160
+ }
161
+
162
+ .fjs-container img {
163
+ max-width: 100%;
164
+ }
165
+
166
+ .fjs-container .cds--grid {
167
+ margin-left: initial;
168
+ margin-right: initial;
169
+ }
170
+
171
+ .fjs-container .cds--grid .cds--row {
172
+ align-items: start;
173
+ margin-left: 0;
174
+ margin-right: 0;
175
+ }
176
+
177
+ .fjs-container .cds--grid .cds--grid .cds--row {
178
+ margin-left: -1rem;
179
+ margin-right: -1rem;
180
+ }
181
+
182
+ @media (max-width: 66rem) {
183
+ .cds--col {
184
+ flex-basis: unset !important;
185
+ }
186
+ }
187
+ /**
188
+ * Visual styles
189
+ */
190
+ .fjs-container .fjs-form {
191
+ font-family: var(--font-family);
192
+ font-size: var(--font-size-base);
193
+ line-height: var(--line-height-base);
194
+ letter-spacing: var(--letter-spacing-base);
195
+ font-weight: 400;
196
+ color: var(--color-text);
197
+ position: relative;
198
+ padding: 0 4px;
199
+ }
200
+
201
+ .fjs-container .fjs-form * {
202
+ box-sizing: border-box;
203
+ }
204
+
205
+ .fjs-container .fjs-children {
206
+ display: flex;
207
+ flex-direction: column;
208
+ flex-grow: 1;
209
+ min-height: 80px;
210
+ }
211
+
212
+ .fjs-container .fjs-element {
213
+ display: flex;
214
+ flex-direction: column;
215
+ margin: 0 4px 5px 4px;
216
+ padding: 2px 0px;
217
+ }
218
+
219
+ .fjs-container .fjs-form .fjs-element {
220
+ margin: 0;
221
+ }
222
+
223
+ .fjs-container .fjs-element:first-of-type {
224
+ margin-top: 8px;
225
+ }
226
+
227
+ .fjs-container .fjs-form-field:not(.fjs-powered-by) {
228
+ margin: 1px 8px;
229
+ }
230
+
231
+ .fjs-container .fjs-powered-by {
232
+ margin: 16px;
233
+ }
234
+
235
+ .fjs-container .fjs-form .fjs-element {
236
+ margin: 0;
237
+ }
238
+
239
+ .fjs-container .fjs-input,
240
+ .fjs-container .fjs-taglist-input,
241
+ .fjs-container .fjs-textarea,
242
+ .fjs-container .fjs-select {
243
+ color: var(--color-text);
244
+ border-color: var(--color-borders);
245
+ background-color: var(--color-background);
246
+ font-family: inherit;
247
+ line-height: inherit;
248
+ letter-spacing: inherit;
249
+ }
250
+
251
+ .fjs-container .fjs-button {
252
+ font-family: inherit;
253
+ line-height: inherit;
254
+ letter-spacing: inherit;
255
+ }
256
+
257
+ .fjs-container .fjs-input::placeholder,
258
+ .fjs-container .fjs-taglist-input::placeholder,
259
+ .fjs-container .fjs-textarea::placeholder,
260
+ .fjs-container .fjs-select > option:disabled,
261
+ .fjs-container .fjs-select [disabled],
262
+ .fjs-container .fjs-select > option:read-only,
263
+ .fjs-container .fjs-select [read-only] {
264
+ color: var(--color-text-lightest);
265
+ font-size: var(--font-size-input);
266
+ line-height: var(--line-height-input);
267
+ letter-spacing: var(--letter-spacing-input);
268
+ opacity: 1;
269
+ }
270
+
271
+ .fjs-container .fjs-inline-label {
272
+ align-items: center;
273
+ display: flex;
274
+ }
275
+
276
+ .fjs-container .fjs-form-field-label {
277
+ display: flex;
278
+ align-items: center;
279
+ white-space: nowrap;
280
+ overflow: hidden;
281
+ color: var(--color-text-light);
282
+ }
283
+
284
+ .fjs-container .fjs-incollapsible-label {
285
+ min-height: var(--line-height-label);
286
+ }
287
+
288
+ .fjs-container .fjs-form-field-label,
289
+ .fjs-container .fjs-form-field-description,
290
+ .fjs-container .fjs-form-field-error {
291
+ font-size: var(--font-size-label);
292
+ line-height: var(--line-height-label);
293
+ letter-spacing: var(--letter-spacing-label);
294
+ }
295
+
296
+ .fjs-container .fjs-form-field-description {
297
+ color: var(--color-text-lighter);
298
+ }
299
+
300
+ .fjs-container .fjs-form-field-grouplike {
301
+ padding: 10px 6px 0 6px;
302
+ margin: 0 10px;
303
+ }
304
+
305
+ .fjs-container .fjs-form-field-grouplike .cds--grid {
306
+ padding: 4px 16px;
307
+ }
308
+
309
+ .fjs-container .fjs-form-field-grouplike .fjs-form-field-grouplike .fjs-layout-column:first-child > .fjs-element > .fjs-form-field-grouplike:not(.fjs-editor-container .fjs-form-field-grouplike),
310
+ .fjs-container .fjs-layout-column:first-child > .fjs-element > .fjs-form-field-grouplike:not(.fjs-editor-container .fjs-form-field-grouplike) {
311
+ margin-left: -6px;
312
+ }
313
+
314
+ .fjs-container .fjs-form-field-grouplike .fjs-form-field-grouplike .fjs-layout-column:last-child > .fjs-element > .fjs-form-field-grouplike:not(.fjs-editor-container .fjs-form-field-grouplike),
315
+ .fjs-container .fjs-layout-column:last-child > .fjs-element > .fjs-form-field-grouplike:not(.fjs-editor-container .fjs-form-field-grouplike) {
316
+ margin-right: -6px;
317
+ }
318
+
319
+ .fjs-container .fjs-form-field-grouplike .fjs-layout-column:first-child > .fjs-element > .fjs-form-field-grouplike:not(.fjs-editor-container .fjs-form-field-grouplike) {
320
+ margin-left: 11px;
321
+ }
322
+
323
+ .fjs-container .fjs-form-field-grouplike .fjs-layout-column:last-child > .fjs-element > .fjs-form-field-grouplike:not(.fjs-editor-container .fjs-form-field-grouplike) {
324
+ margin-right: 11px;
325
+ }
326
+
327
+ .fjs-container .fjs-form-field-grouplike.fjs-outlined {
328
+ outline: solid var(--color-borders-group) 2px;
329
+ }
330
+
331
+ .fjs-container .fjs-form-field-grouplike label {
332
+ font-size: var(--font-size-label);
333
+ }
334
+
335
+ .fjs-container .fjs-form-field-grouplike .fjs-form-field-grouplike .cds--grid {
336
+ padding-left: 2rem;
337
+ padding-right: 2rem;
338
+ }
339
+
340
+ .fjs-container .fjs-form-field-grouplike > label {
341
+ font-size: var(--font-size-group);
342
+ line-height: var(--line-height-input);
343
+ margin-left: 7px;
344
+ }
345
+
346
+ .fjs-container .fjs-form-field-checkbox .fjs-form-field-label,
347
+ .fjs-container .fjs-form-field-checklist .fjs-form-field-label:not(:first-child),
348
+ .fjs-container .fjs-form-field-radio .fjs-form-field-label:not(:first-child) {
349
+ font-size: var(--font-size-input);
350
+ line-height: var(--line-height-input);
351
+ letter-spacing: var(--letter-spacing-input);
352
+ color: var(--color-text);
353
+ }
354
+
355
+ .fjs-container .fjs-form-field-checklist .fjs-form-field-label:first-child,
356
+ .fjs-container .fjs-form-field-radio .fjs-form-field-label:first-child {
357
+ margin-bottom: 4px;
358
+ }
359
+
360
+ .fjs-container .fjs-form-field.required label::after,
361
+ .fjs-container .fjs-form-field.required .group-title::after {
362
+ content: "*";
363
+ }
364
+
365
+ .fjs-container .fjs-checkbox.group.required label::after,
366
+ .fjs-container .fjs-radio.required label::after {
367
+ display: none;
368
+ }
369
+
370
+ .fjs-container .fjs-input,
371
+ .fjs-container .fjs-textarea,
372
+ .fjs-container .fjs-select {
373
+ background-color: var(--color-background);
374
+ font-size: var(--font-size-input);
375
+ line-height: var(--line-height-input);
376
+ letter-spacing: var(--letter-spacing-input);
377
+ }
378
+
379
+ .fjs-container .fjs-input-adornment {
380
+ border-style: solid;
381
+ border-color: var(--color-borders-adornment);
382
+ background-color: var(--color-background-adornment);
383
+ line-height: var(--line-height-input);
384
+ color: var(--color-text-lighter);
385
+ padding: 8px;
386
+ width: auto !important;
387
+ min-width: min(34px, 20%);
388
+ display: flex;
389
+ overflow: hidden;
390
+ }
391
+
392
+ .fjs-container .fjs-input-adornment span {
393
+ width: 100%;
394
+ text-align: center;
395
+ overflow: hidden;
396
+ text-overflow: ellipsis;
397
+ white-space: nowrap;
398
+ }
399
+
400
+ .fjs-container .fjs-input-adornment svg {
401
+ margin: auto;
402
+ }
403
+
404
+ .fjs-container .fjs-form-field-spacer {
405
+ background-color: transparent;
406
+ display: flex;
407
+ align-items: center;
408
+ justify-content: center;
409
+ }
410
+
411
+ .fjs-container hr {
412
+ border: none;
413
+ border-top: solid 2px var(--color-borders-group);
414
+ }
415
+
416
+ .fjs-container .fjs-form-field-separator hr {
417
+ margin: 7px 2px;
418
+ }
419
+
420
+ .fjs-container .fjs-input[type=text],
421
+ .fjs-container .fjs-input[type=email],
422
+ .fjs-container .fjs-input[type=tel],
423
+ .fjs-container .fjs-input[type=number],
424
+ .fjs-container .fjs-button[type=submit],
425
+ .fjs-container .fjs-button[type=button],
426
+ .fjs-container .fjs-button[type=reset],
427
+ .fjs-container .fjs-textarea,
428
+ .fjs-container .fjs-select {
429
+ display: block;
430
+ width: 100%;
431
+ padding: 8px;
432
+ margin: 4px 0;
433
+ border: var(--border-definition);
434
+ border-radius: 3px;
435
+ }
436
+
437
+ .fjs-container .fjs-input-group .fjs-input[type=text],
438
+ .fjs-container .fjs-input-group .fjs-input[type=email],
439
+ .fjs-container .fjs-input-group .fjs-input[type=tel],
440
+ .fjs-container .fjs-input-group .fjs-input[type=number],
441
+ .fjs-container .fjs-select {
442
+ height: var(--form-field-height);
443
+ }
444
+
445
+ .fjs-container .fjs-taglist {
446
+ min-height: var(--form-field-height);
447
+ }
448
+
449
+ .fjs-container .fjs-datepicker,
450
+ .fjs-container .fjs-timepicker {
451
+ width: 100%;
452
+ }
453
+
454
+ .fjs-container .fjs-datetime-subsection {
455
+ min-width: 0;
456
+ flex: 1;
457
+ }
458
+
459
+ .fjs-container .fjs-datetime-separator {
460
+ width: 10px;
461
+ }
462
+
463
+ .fjs-container .fjs-timepicker-anchor {
464
+ height: 100%;
465
+ display: flex;
466
+ }
467
+
468
+ .fjs-container .fjs-form-field-datetime .fjs-input-adornment svg {
469
+ color: var(--color-icon-base);
470
+ }
471
+
472
+ .fjs-container .fjs-input-group {
473
+ display: flex;
474
+ width: 100%;
475
+ height: var(--form-field-height);
476
+ margin: 4px 0;
477
+ border: var(--border-definition);
478
+ border-radius: 3px;
479
+ }
480
+
481
+ .fjs-container .fjs-input-group .fjs-input[type=text],
482
+ .fjs-container .fjs-input-group .fjs-input[type=email],
483
+ .fjs-container .fjs-input-group .fjs-input[type=tel],
484
+ .fjs-container .fjs-input-group .fjs-input[type=number],
485
+ .fjs-container .fjs-input-group .fjs-taglist,
486
+ .fjs-container .fjs-input-group .fjs-select {
487
+ height: unset;
488
+ min-width: min(60px, 40%);
489
+ width: 100%;
490
+ }
491
+
492
+ .fjs-container .fjs-taglist .fjs-taglist-input,
493
+ .fjs-container .fjs-input-group .fjs-input {
494
+ border: none;
495
+ border-radius: 0;
496
+ margin: 0;
497
+ outline: 0;
498
+ width: auto;
499
+ flex: 1;
500
+ }
501
+
502
+ .fjs-container .fjs-input-group .fjs-select-display {
503
+ line-height: var(--line-height-base);
504
+ user-select: none;
505
+ padding: 8px;
506
+ flex: 1;
507
+ }
508
+
509
+ .fjs-container .fjs-input-group .fjs-select-display.fjs-select-placeholder,
510
+ .fjs-container .fjs-disabled .fjs-input-group .fjs-select-display,
511
+ .fjs-container .fjs-readonly .fjs-input-group .fjs-select-display {
512
+ color: var(--color-text-lighter);
513
+ line-height: var(--line-height-input);
514
+ }
515
+
516
+ .fjs-container .fjs-input-group .fjs-input-adornment {
517
+ border-width: 0;
518
+ }
519
+
520
+ .fjs-container .fjs-input-group .fjs-input-adornment.border-left {
521
+ border-left-width: 1px;
522
+ }
523
+
524
+ .fjs-container .fjs-input-group .fjs-input-adornment.border-right {
525
+ border-right-width: 1px;
526
+ }
527
+
528
+ .fjs-container .fjs-input-group .fjs-input-adornment.border-radius-right {
529
+ border-radius: 0 3px 3px 0;
530
+ }
531
+
532
+ .fjs-container .fjs-input-group .fjs-input-adornment.border-radius-left {
533
+ border-radius: 3px 0 0 3px;
534
+ }
535
+
536
+ .fjs-container .fjs-input-group .fjs-input {
537
+ border-radius: 3px;
538
+ }
539
+
540
+ .fjs-container .flatpickr-wrapper {
541
+ width: 100%;
542
+ height: 100%;
543
+ display: flex;
544
+ position: relative;
545
+ }
546
+
547
+ .fjs-container .fjs-textarea {
548
+ resize: none;
549
+ overflow: hidden;
550
+ height: 75px;
551
+ }
552
+
553
+ .fjs-container .fjs-select-cross,
554
+ .fjs-container .fjs-select-arrow {
555
+ padding: 6px 10px;
556
+ }
557
+
558
+ .fjs-container .fjs-number-arrow-container {
559
+ display: flex;
560
+ flex-direction: column;
561
+ border-radius: 0 2px 2px 0;
562
+ width: clamp(16px, 40%, 23px);
563
+ overflow: clip;
564
+ border-left: var(--border-definition-adornment);
565
+ }
566
+
567
+ .fjs-container .fjs-number-arrow-separator {
568
+ height: 1px;
569
+ background-color: var(--color-borders-adornment);
570
+ }
571
+
572
+ .fjs-container .fjs-number-arrow-container button {
573
+ border: none;
574
+ flex: 1;
575
+ color: var(--color-text);
576
+ background-color: var(--color-background);
577
+ font-weight: bold;
578
+ font-size: 10px;
579
+ line-height: 15px;
580
+ }
581
+
582
+ .fjs-container .fjs-number-arrow-container button:hover {
583
+ background-color: var(--color-background-inverted-hover);
584
+ color: var(--cds-text-inverse, var(--color-text));
585
+ }
586
+
587
+ .fjs-container .fjs-form-field-number.fjs-readonly .fjs-number-arrow-container {
588
+ display: none;
589
+ }
590
+
591
+ .fjs-container .fjs-radio {
592
+ display: flex;
593
+ flex-direction: column;
594
+ }
595
+
596
+ .fjs-container .fjs-input[type=checkbox],
597
+ .fjs-container .fjs-input[type=radio] {
598
+ margin: 6px 10px 6px 4px;
599
+ }
600
+
601
+ .fjs-container .fjs-button[type=submit],
602
+ .fjs-container .fjs-button[type=button] {
603
+ color: var(--cds-text-inverse, var(--color-white));
604
+ background-color: var(--color-accent);
605
+ border-color: var(--color-accent);
606
+ }
607
+
608
+ .fjs-container .fjs-button[type=reset] {
609
+ color: var(--color-text);
610
+ background-color: transparent;
611
+ border-color: var(--color-borders);
612
+ }
613
+
614
+ .fjs-container .fjs-button[type=submit],
615
+ .fjs-container .fjs-button[type=button],
616
+ .fjs-container .fjs-button[type=reset] {
617
+ min-width: 100px;
618
+ width: auto;
619
+ }
620
+
621
+ .fjs-container .fjs-button[type=submit],
622
+ .fjs-container .fjs-button[type=button] {
623
+ font-weight: 600;
624
+ }
625
+
626
+ .fjs-container .fjs-taglist:focus-within,
627
+ .fjs-container .fjs-input-group:focus-within,
628
+ .fjs-container .fjs-input[type=text]:focus,
629
+ .fjs-container .fjs-input[type=email]:focus,
630
+ .fjs-container .fjs-input[type=tel]:focus,
631
+ .fjs-container .fjs-input[type=number]:focus,
632
+ .fjs-container .fjs-button[type=submit]:focus,
633
+ .fjs-container .fjs-button[type=button]:focus,
634
+ .fjs-container .fjs-button[type=reset]:focus,
635
+ .fjs-container .fjs-textarea:focus,
636
+ .fjs-container .fjs-select:focus {
637
+ outline: var(--outline-definition);
638
+ }
639
+
640
+ .fjs-container .fjs-input-group .fjs-input,
641
+ .fjs-container .fjs-input-group .fjs-input:focus {
642
+ outline: none;
643
+ }
644
+
645
+ .fjs-container .fjs-input-group .fjs-input,
646
+ .fjs-container .fjs-input-group .fjs-input:focus {
647
+ outline: none;
648
+ }
649
+
650
+ .fjs-container .fjs-button[type=submit]:focus,
651
+ .fjs-container .fjs-button[type=button]:focus {
652
+ border-color: var(--color-accent);
653
+ }
654
+
655
+ .fjs-container .fjs-input:disabled,
656
+ .fjs-container .fjs-textarea:disabled,
657
+ .fjs-container .fjs-select:disabled,
658
+ .fjs-container .fjs-number-arrow-container.fjs-disabled button,
659
+ .fjs-container .fjs-taglist.fjs-disabled,
660
+ .fjs-container .fjs-disabled .fjs-input-group {
661
+ color: var(--color-text-disabled);
662
+ background-color: var(--cds-field, var(--color-background-disabled));
663
+ border-color: var(--color-borders-disabled);
664
+ }
665
+
666
+ .fjs-container .fjs-number-arrow-container.fjs-disabled button {
667
+ background-color: var(--cds-toggle-off, var(--color-background-disabled));
668
+ }
669
+
670
+ .fjs-container .fjs-readonly .fjs-input:read-only:not(:disabled),
671
+ .fjs-container .fjs-readonly .fjs-textarea:read-only:not(:disabled),
672
+ .fjs-container .fjs-readonly .fjs-select:read-only:not(:disabled),
673
+ .fjs-container .fjs-number-arrow-container.fjs-readonly button,
674
+ .fjs-container .fjs-taglist.fjs-readonly,
675
+ .fjs-container .fjs-readonly .fjs-input-group {
676
+ background-color: var(--color-background-readonly);
677
+ border-color: var(--color-borders-readonly);
678
+ }
679
+
680
+ .fjs-container .fjs-form-field-checkbox.fjs-readonly,
681
+ .fjs-container .fjs-form-field-checklist.fjs-readonly,
682
+ .fjs-container .fjs-form-field-radio.fjs-readonly {
683
+ pointer-events: none;
684
+ }
685
+
686
+ .fjs-container .fjs-form-field-checkbox.fjs-readonly .fjs-input:not(:disabled),
687
+ .fjs-container .fjs-form-field-checklist.fjs-readonly .fjs-input:not(:disabled),
688
+ .fjs-container .fjs-form-field-radio.fjs-readonly .fjs-input:not(:disabled) {
689
+ opacity: 0.4;
690
+ accent-color: var(--color-accent-readonly);
691
+ }
692
+
693
+ .fjs-container .fjs-button[type=submit]:disabled,
694
+ .fjs-container .fjs-button[type=button]:disabled,
695
+ .fjs-container .fjs-button[type=reset]:disabled {
696
+ color: var(--cds-text-on-color-disabled, var(--color-text-light));
697
+ background-color: var(--color-background-disabled);
698
+ border-color: var(--color-borders-disabled);
699
+ }
700
+
701
+ .fjs-container .fjs-button[type=submit]:read-only,
702
+ .fjs-container .fjs-button[type=button]:read-only,
703
+ .fjs-container .fjs-button[type=reset]:read-only {
704
+ color: var(--text-light);
705
+ background-color: var(--color-background-readonly);
706
+ border-color: var(--color-borders-readonly);
707
+ }
708
+
709
+ .fjs-container .fjs-disabled .fjs-input-group .fjs-input-adornment,
710
+ .fjs-container .fjs-disabled .fjs-input-group .fjs-number-arrow-container,
711
+ .fjs-container .fjs-disabled .fjs-input-group .fjs-number-arrow-separator {
712
+ border-color: var(--color-borders-disabled);
713
+ }
714
+
715
+ .fjs-container .fjs-disabled .fjs-input-group .fjs-number-arrow-container .fjs-number-arrow-up,
716
+ .fjs-container .fjs-disabled .fjs-input-group .fjs-number-arrow-container .fjs-number-arrow-down {
717
+ pointer-events: none;
718
+ }
719
+
720
+ .fjs-container .fjs-readonly .fjs-input-group .fjs-input-adornment,
721
+ .fjs-container .fjs-readonly .fjs-input-group .fjs-number-arrow-container,
722
+ .fjs-container .fjs-readonly .fjs-input-group .fjs-number-arrow-separator {
723
+ border-color: var(--color-borders-readonly);
724
+ }
725
+
726
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-input,
727
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-select,
728
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-textarea,
729
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-taglist,
730
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-input-group,
731
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-input-group .fjs-input {
732
+ border-color: var(--color-warning);
733
+ outline-color: var(--color-warning);
734
+ }
735
+
736
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-number-arrow-container {
737
+ border-color: var(--color-red-360-100-92);
738
+ }
739
+
740
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-number-arrow-separator {
741
+ background-color: var(--color-red-360-100-92);
742
+ }
743
+
744
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-number-arrow-container button {
745
+ background-color: var(--color-red-360-100-97);
746
+ }
747
+
748
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-number-arrow-container button:hover {
749
+ background-color: var(--color-red-360-100-95);
750
+ }
751
+
752
+ .fjs-container .fjs-form-field.fjs-has-errors .fjs-input-adornment {
753
+ border-color: var(--color-warning-light);
754
+ }
755
+
756
+ .fjs-container .fjs-form-field-error {
757
+ color: var(--color-warning);
758
+ }
759
+
760
+ .fjs-container .fjs-form-field-error > ul {
761
+ list-style-type: none;
762
+ margin: 0;
763
+ padding: 0;
764
+ }
765
+
766
+ .fjs-container .fjs-form-field-error > ul > li {
767
+ list-style-type: none;
768
+ }
769
+
770
+ .fjs-container .fjs-form-field-html,
771
+ .fjs-container .fjs-form-field-text {
772
+ overflow-wrap: break-word;
773
+ }
774
+
775
+ .fjs-container .fjs-form-field-html a,
776
+ .fjs-container .fjs-form-field-text a {
777
+ color: var(--color-accent);
778
+ }
779
+
780
+ .fjs-container .fjs-form-field-html .fjs-disabled-link,
781
+ .fjs-container .fjs-form-field-text .fjs-disabled-link {
782
+ pointer-events: none;
783
+ cursor: default;
784
+ }
785
+
786
+ .fjs-container .fjs-form-field-html table,
787
+ .fjs-container .fjs-form-field-text table {
788
+ border-collapse: collapse;
789
+ width: auto;
790
+ }
791
+
792
+ .fjs-container .fjs-form-field-html table,
793
+ .fjs-container .fjs-form-field-html th,
794
+ .fjs-container .fjs-form-field-html td,
795
+ .fjs-container .fjs-form-field-text table,
796
+ .fjs-container .fjs-form-field-text th,
797
+ .fjs-container .fjs-form-field-text td {
798
+ border: 1px solid var(--color-borders-table);
799
+ padding: 8px;
800
+ }
801
+
802
+ .fjs-container .fjs-form-field-html th,
803
+ .fjs-container .fjs-form-field-text th {
804
+ font-weight: bold;
805
+ }
806
+
807
+ .fjs-container .fjs-form-field-html td,
808
+ .fjs-container .fjs-form-field-text td {
809
+ white-space: nowrap;
810
+ }
811
+
812
+ .fjs-container .fjs-form-field-html pre,
813
+ .fjs-container .fjs-form-field-text pre {
814
+ border: 1px solid var(--color-borders-pre);
815
+ background: var(--color-background-pre);
816
+ padding: 4px;
817
+ }
818
+
819
+ .fjs-container .fjs-taglist-anchor,
820
+ .fjs-container .fjs-select-anchor,
821
+ .fjs-container .fjs-timepicker-anchor {
822
+ position: relative;
823
+ }
824
+
825
+ .fjs-container .fjs-taglist-anchor .fjs-dropdownlist,
826
+ .fjs-container .fjs-select-anchor .fjs-dropdownlist {
827
+ position: absolute;
828
+ top: -5px;
829
+ }
830
+
831
+ .fjs-container .fjs-select-hidden-input {
832
+ width: 0;
833
+ overflow: hidden;
834
+ opacity: 0;
835
+ padding: 0;
836
+ border: none;
837
+ }
838
+
839
+ .fjs-container .fjs-taglist {
840
+ display: flex;
841
+ flex-wrap: wrap;
842
+ gap: 5px;
843
+ border: var(--color-borders) solid 1px;
844
+ border-radius: 3px;
845
+ margin: 4px 0;
846
+ padding: 5px;
847
+ background-color: var(--color-background);
848
+ }
849
+
850
+ .fjs-container .fjs-taglist-skip-link {
851
+ outline: none;
852
+ border: none;
853
+ background-color: transparent;
854
+ color: transparent;
855
+ height: 0px;
856
+ width: 0px;
857
+ position: absolute;
858
+ left: -100px;
859
+ }
860
+
861
+ .fjs-container .fjs-taglist-skip-link:focus {
862
+ position: relative;
863
+ height: auto;
864
+ width: auto;
865
+ border: solid 1px var(--color-accent);
866
+ color: var(--color-accent);
867
+ left: 0;
868
+ }
869
+
870
+ .fjs-container .fjs-taglist .fjs-taglist-tag {
871
+ display: flex;
872
+ overflow: hidden;
873
+ user-select: none;
874
+ color: var(--color-text-inverted);
875
+ background-color: var(--color-background-inverted);
876
+ border-radius: 2px;
877
+ }
878
+
879
+ .fjs-container .fjs-taglist.fjs-disabled .fjs-taglist-tag,
880
+ .fjs-container .fjs-taglist.fjs-readonly .fjs-taglist-tag {
881
+ background-color: var(--color-background-inverted);
882
+ }
883
+
884
+ .fjs-container .fjs-taglist .fjs-taglist-tags {
885
+ display: flex;
886
+ flex-wrap: wrap;
887
+ gap: 5px;
888
+ }
889
+
890
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-label {
891
+ padding: 2px 6px 2px 8px;
892
+ }
893
+
894
+ .fjs-container .fjs-taglist.fjs-disabled .fjs-taglist-tag .fjs-taglist-tag-label,
895
+ .fjs-container .fjs-taglist.fjs-readonly .fjs-taglist-tag .fjs-taglist-tag-label {
896
+ padding: 2px 8px;
897
+ }
898
+
899
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove {
900
+ overflow: clip;
901
+ width: 24px;
902
+ height: 24px;
903
+ text-align: center;
904
+ line-height: 28px;
905
+ background-color: var(--cds-background-inverse, var(--color-grey-225-10-80));
906
+ border: none;
907
+ padding: 1px 0;
908
+ }
909
+
910
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove > svg {
911
+ margin-bottom: 4px;
912
+ opacity: 0.6;
913
+ color: var(--color-icon-inverted);
914
+ }
915
+
916
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove:hover,
917
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove:focus-visible {
918
+ background-color: var(--color-background-active);
919
+ }
920
+
921
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove:hover > svg,
922
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove:focus-visible > svg {
923
+ opacity: 1;
924
+ }
925
+
926
+ .fjs-container .fjs-taglist .fjs-taglist-tag .fjs-taglist-tag-remove:focus-visible {
927
+ outline: none;
928
+ }
929
+
930
+ .fjs-container .fjs-taglist .fjs-taglist-input {
931
+ border: none;
932
+ background-color: transparent;
933
+ min-width: 100px;
934
+ height: 22px;
935
+ margin: 1px 0;
936
+ flex-grow: 1;
937
+ }
938
+
939
+ .fjs-container .fjs-dropdownlist {
940
+ z-index: 1;
941
+ position: absolute;
942
+ user-select: none;
943
+ overflow-y: auto;
944
+ width: 100%;
945
+ border-radius: 3px;
946
+ margin-top: 3px;
947
+ box-shadow: 0px 0px 5px var(--color-shadow);
948
+ background-color: var(--color-layer);
949
+ }
950
+
951
+ .fjs-container .fjs-dropdownlist .fjs-dropdownlist-item {
952
+ padding: 6px 8px;
953
+ border-bottom: 1px solid var(--color-borders-inverted);
954
+ color: var(--color-text-light);
955
+ }
956
+
957
+ .fjs-container .fjs-dropdownlist .fjs-dropdownlist-item:last-child {
958
+ border-bottom: none;
959
+ }
960
+
961
+ .fjs-container .fjs-dropdownlist .fjs-dropdownlist-item.focused {
962
+ background-color: var(--color-background-inverted);
963
+ color: var(--color-text-inverted);
964
+ }
965
+
966
+ .fjs-container .fjs-dropdownlist .fjs-dropdownlist-empty {
967
+ padding: 6px 8px;
968
+ color: var(--color-text-lightest);
969
+ }
970
+
971
+ .fjs-container .fjs-image-container {
972
+ width: fit-content;
973
+ height: fit-content;
974
+ }
975
+
976
+ .fjs-container .fjs-image {
977
+ object-fit: contain;
978
+ }
979
+
980
+ .fjs-container .fjs-iframe {
981
+ margin: 4px 0;
982
+ width: 100%;
983
+ border: 1px solid var(--color-borders-readonly);
984
+ }
985
+
986
+ .fjs-container .fjs-image-placeholder,
987
+ .fjs-container .fjs-iframe-placeholder,
988
+ .fjs-container .fjs-documentPreview-placeholder {
989
+ margin: 4px 0;
990
+ width: 100%;
991
+ height: 90px;
992
+ display: flex;
993
+ justify-content: center;
994
+ background: var(--color-background-readonly);
995
+ color: var(--color-text-light);
996
+ }
997
+
998
+ .fjs-container .fjs-iframe-placeholder,
999
+ .fjs-container .fjs-documentPreview-placeholder {
1000
+ border: 1px solid var(--color-borders-readonly);
1001
+ }
1002
+
1003
+ .fjs-container .fjs-image-placeholder .fjs-image-placeholder-inner,
1004
+ .fjs-container .fjs-iframe-placeholder .fjs-iframe-placeholder-text,
1005
+ .fjs-container .fjs-documentPreview-placeholder .fjs-documentPreview-placeholder-text {
1006
+ display: flex;
1007
+ align-items: center;
1008
+ justify-content: center;
1009
+ flex-wrap: wrap;
1010
+ overflow: hidden;
1011
+ }
1012
+
1013
+ .fjs-container .fjs-iframe-placeholder .fjs-iframe-placeholder-text,
1014
+ .fjs-container .fjs-documentPreview-placeholder .fjs-documentPreview-placeholder-text {
1015
+ font-size: var(--font-size-label);
1016
+ }
1017
+
1018
+ .fjs-container .fjs-form-field-table {
1019
+ display: flex;
1020
+ flex-direction: column;
1021
+ row-gap: 4px;
1022
+ }
1023
+
1024
+ .fjs-container .fjs-table-middle-container {
1025
+ display: flex;
1026
+ flex-direction: column;
1027
+ overflow-x: hidden;
1028
+ border: 1px solid var(--color-borders-group);
1029
+ border-radius: 3px;
1030
+ }
1031
+
1032
+ .fjs-container .fjs-table-middle-container.fjs-table-empty {
1033
+ border: none;
1034
+ color: var(--color-text-disabled);
1035
+ padding-left: 16px;
1036
+ }
1037
+
1038
+ .fjs-container .fjs-table-inner-container {
1039
+ display: flex;
1040
+ flex-direction: column;
1041
+ overflow-x: auto;
1042
+ }
1043
+
1044
+ .fjs-container .fjs-table {
1045
+ overflow-y: auto;
1046
+ border-collapse: collapse;
1047
+ }
1048
+
1049
+ .fjs-container .fjs-table-head {
1050
+ background-color: var(--color-layer-accent);
1051
+ }
1052
+
1053
+ .fjs-container .fjs-table-th {
1054
+ min-width: 120px;
1055
+ cursor: pointer;
1056
+ }
1057
+
1058
+ .fjs-container .fjs-table-th-label {
1059
+ user-select: none;
1060
+ display: flex;
1061
+ align-items: center;
1062
+ flex-direction: row;
1063
+ justify-content: space-between;
1064
+ }
1065
+
1066
+ .fjs-container .fjs-table-th:focus {
1067
+ outline: var(--outline-definition);
1068
+ outline-offset: -1px;
1069
+ }
1070
+
1071
+ .fjs-container .fjs-table-th,
1072
+ .fjs-container .fjs-table-td {
1073
+ text-align: left;
1074
+ height: 32px;
1075
+ padding: 0 16px;
1076
+ vertical-align: center;
1077
+ }
1078
+
1079
+ .fjs-container .fjs-table-body .fjs-table-tr:not(:last-child) {
1080
+ border-bottom: 1px solid var(--color-borders-group);
1081
+ }
1082
+
1083
+ .fjs-container .fjs-table-nav {
1084
+ display: flex;
1085
+ flex-direction: row;
1086
+ align-items: center;
1087
+ justify-content: flex-end;
1088
+ border-top: 1px solid var(--color-borders-group);
1089
+ }
1090
+
1091
+ .fjs-container .fjs-table-nav-button {
1092
+ border: unset;
1093
+ background: unset;
1094
+ width: 32px;
1095
+ height: 32px;
1096
+ cursor: pointer;
1097
+ display: flex;
1098
+ align-items: center;
1099
+ justify-content: center;
1100
+ border-left: 1px solid var(--color-borders-group);
1101
+ }
1102
+
1103
+ .fjs-container .fjs-table-nav-button:first-of-type {
1104
+ margin-left: 16px;
1105
+ }
1106
+
1107
+ .fjs-container .fjs-table-nav-button:focus {
1108
+ outline: var(--outline-definition);
1109
+ outline-offset: -1px;
1110
+ }
1111
+
1112
+ .fjs-container .fjs-table-nav-button svg {
1113
+ width: 16px;
1114
+ }
1115
+
1116
+ .fjs-container .fjs-table-sort-icon-asc,
1117
+ .fjs-container .fjs-table-sort-icon-desc {
1118
+ width: 16px;
1119
+ }
1120
+
1121
+ .fjs-container .fjs-documentPreview-document-container {
1122
+ width: 100%;
1123
+ display: flex;
1124
+ flex-direction: column;
1125
+ gap: 8px;
1126
+ }
1127
+
1128
+ .fjs-container .fjs-documentPreview-single-document-container {
1129
+ width: 100%;
1130
+ display: flex;
1131
+ flex-direction: column;
1132
+ align-items: center;
1133
+ justify-content: center;
1134
+ border: 1px solid var(--color-borders-documentPreview);
1135
+ border-radius: 3px;
1136
+ .fjs-form-field-error {
1137
+ align-self: flex-start;
1138
+ }
1139
+ }
1140
+
1141
+ .fjs-container .fjs-documentPreview-non-preview-item {
1142
+ flex-direction: row;
1143
+ }
1144
+
1145
+ .fjs-container .fjs-documentPreview-single-document-container:not(.fjs-documentPreview-non-preview-item) {
1146
+ position: relative;
1147
+ overflow-y: auto;
1148
+ }
1149
+
1150
+ .fjs-container .fjs-documentPreview-single-document-container:not(.fjs-documentPreview-non-preview-item) .fjs-documentPreview-download-button {
1151
+ position: absolute;
1152
+ top: 6px;
1153
+ right: 6px;
1154
+ z-index: 1;
1155
+ }
1156
+
1157
+ .fjs-container .fjs-documentPreview-pdf-viewer {
1158
+ all: unset;
1159
+ width: 100%;
1160
+ min-height: 400px;
1161
+ }
1162
+
1163
+ .fjs-container .fjs-documentPreview-download-button {
1164
+ width: 24px;
1165
+ height: 24px;
1166
+ box-sizing: border-box;
1167
+ display: inline-flex;
1168
+ align-items: center;
1169
+ justify-content: center;
1170
+ border-radius: 3px;
1171
+ border: 1px solid var(--color-borders-documentPreview);
1172
+ background: var(--color-layer);
1173
+ padding: 0;
1174
+ svg {
1175
+ color: var(--color-text);
1176
+ }
1177
+ svg:focus {
1178
+ outline: none;
1179
+ }
1180
+ }
1181
+
1182
+ .fjs-container .fjs-documentPreview-non-preview-item {
1183
+ display: flex;
1184
+ justify-content: space-between;
1185
+ align-items: center;
1186
+ padding: 8px;
1187
+ color: var(--color-text-light);
1188
+ }
1189
+
1190
+ .fjs-container .fjs-repeat-row-container {
1191
+ display: flex;
1192
+ flex-direction: row;
1193
+ gap: 1rem;
1194
+ }
1195
+
1196
+ .fjs-container .fjs-repeat-row-rows {
1197
+ flex: 1;
1198
+ margin-right: 1rem;
1199
+ }
1200
+
1201
+ .fjs-container .fjs-repeat-row-container .fjs-repeat-row-remove {
1202
+ display: flex;
1203
+ cursor: pointer;
1204
+ background: transparent;
1205
+ border: none;
1206
+ width: 32px;
1207
+ color: var(--color-icon-base);
1208
+ align-items: center;
1209
+ justify-content: center;
1210
+ padding: 0;
1211
+ }
1212
+
1213
+ .fjs-container .fjs-repeat-row-container .fjs-repeat-row-remove:focus-visible {
1214
+ outline: none;
1215
+ }
1216
+
1217
+ .fjs-container .fjs-repeat-row-container .fjs-repeat-row-remove .fjs-repeat-row-remove-icon-container {
1218
+ display: flex;
1219
+ width: 24px;
1220
+ height: 24px;
1221
+ border-radius: 2px;
1222
+ align-items: center;
1223
+ justify-content: center;
1224
+ }
1225
+
1226
+ .fjs-container .fjs-repeat-row-container .fjs-repeat-row-remove:focus-visible .fjs-repeat-row-remove-icon-container {
1227
+ outline: var(--button-warning-outline-definition);
1228
+ }
1229
+
1230
+ .fjs-container .fjs-repeat-row-container:hover .fjs-repeat-render-footer-spacer {
1231
+ width: 24px;
1232
+ }
1233
+
1234
+ .fjs-container .fjs-repeat-row-container .fjs-repeat-row-remove:hover,
1235
+ .fjs-container .fjs-repeat-row-container .fjs-repeat-row-remove:focus-visible {
1236
+ color: var(--color-warning);
1237
+ }
1238
+
1239
+ .fjs-container .fjs-repeat-row-collapsed {
1240
+ display: none;
1241
+ }
1242
+
1243
+ .fjs-container .fjs-repeat-render-footer {
1244
+ display: flex;
1245
+ flex-direction: row;
1246
+ align-items: center;
1247
+ justify-content: center;
1248
+ padding: 12px 4px;
1249
+ }
1250
+
1251
+ .fjs-container .fjs-repeat-render-footer.fjs-remove-allowed {
1252
+ margin-right: 32px;
1253
+ justify-content: space-between;
1254
+ }
1255
+
1256
+ .fjs-container .fjs-repeat-render-footer button {
1257
+ background: none;
1258
+ border: none;
1259
+ padding: 4px;
1260
+ margin: 0;
1261
+ font-family: inherit;
1262
+ font-size: inherit;
1263
+ cursor: pointer;
1264
+ color: var(--color-accent);
1265
+ display: flex;
1266
+ align-items: center;
1267
+ }
1268
+
1269
+ .fjs-container .fjs-repeat-render-footer button svg {
1270
+ margin-right: 4px;
1271
+ }
1272
+
1273
+ /**
1274
+ * Flatpickr style adjustments
1275
+ */
1276
+ .fjs-container .flatpickr-day.today {
1277
+ border-color: transparent;
1278
+ background-color: transparent;
1279
+ font-weight: bold;
1280
+ }
1281
+
1282
+ .fjs-container .flatpickr-day.today:hover,
1283
+ .fjs-container .flatpickr-day.today:focus {
1284
+ border-color: var(--color-borders);
1285
+ background-color: var(--color-datepicker-focused-day);
1286
+ color: var(--color-text-inverted);
1287
+ }
1288
+
1289
+ .fjs-container .flatpickr-day.selected {
1290
+ border-color: var(--color-accent);
1291
+ background-color: inherit;
1292
+ color: inherit;
1293
+ font-weight: normal;
1294
+ }
1295
+
1296
+ .fjs-container .flatpickr-day.selected.today {
1297
+ font-weight: bold;
1298
+ }
1299
+
1300
+ .fjs-container .flatpickr-day.selected:hover,
1301
+ .fjs-container .flatpickr-day.selected:focus {
1302
+ background-color: var(--color-accent);
1303
+ font-weight: bold;
1304
+ color: var(--color-text-inverted);
1305
+ border-color: var(--color-accent);
1306
+ }
1307
+
1308
+ .fjs-container .flatpickr-days,
1309
+ .flatpickr-weekdays {
1310
+ padding: 10px;
1311
+ width: 100%;
1312
+ }
1313
+
1314
+ .fjs-container .flatpickr-calendar.hasTime.noCalendar {
1315
+ width: auto;
1316
+ max-width: 250px;
1317
+ }
1318
+
1319
+ .fjs-container .flatpickr-calendar {
1320
+ width: 326px;
1321
+ }
1322
+
1323
+ .fjs-hidden {
1324
+ display: none;
1325
+ }
1326
+
1327
+ .fjs-container .fjs-filepicker-container {
1328
+ display: flex;
1329
+ flex-direction: row;
1330
+ align-items: center;
1331
+ gap: 8px;
1332
+ }
1333
+
1334
+ .cds--grid {
1335
+ margin-inline: auto;
1336
+ max-inline-size: 99rem;
1337
+ padding-inline: 1rem;
1338
+ }
1339
+ @media (min-width: 42rem) {
1340
+ .cds--grid {
1341
+ padding-inline: 2rem;
1342
+ }
1343
+ }
1344
+ @media (min-width: 99rem) {
1345
+ .cds--grid {
1346
+ padding-inline: 2.5rem;
1347
+ }
1348
+ }
1349
+
1350
+ @media (min-width: 99rem) {
1351
+ .cds--grid--full-width {
1352
+ max-inline-size: 100%;
1353
+ }
1354
+ }
1355
+ .cds--row {
1356
+ display: flex;
1357
+ flex-wrap: wrap;
1358
+ margin-inline: -1rem;
1359
+ }
1360
+
1361
+ .cds--row-padding [class*=cds--col],
1362
+ .cds--col-padding {
1363
+ padding-block: 1rem;
1364
+ }
1365
+
1366
+ .cds--grid--condensed [class*=cds--col] {
1367
+ padding-block: 0.03125rem;
1368
+ }
1369
+
1370
+ .cds--col {
1371
+ inline-size: 100%;
1372
+ padding-inline: 1rem;
1373
+ }
1374
+ .cds--row--condensed .cds--col, .cds--grid--condensed .cds--col {
1375
+ padding-inline: 0.03125rem;
1376
+ }
1377
+ .cds--row--narrow .cds--col, .cds--grid--narrow .cds--col {
1378
+ padding-inline: 0 1rem;
1379
+ }
1380
+
1381
+ .cds--col-sm-0 {
1382
+ inline-size: 100%;
1383
+ padding-inline: 1rem;
1384
+ }
1385
+ .cds--row--condensed .cds--col-sm-0, .cds--grid--condensed .cds--col-sm-0 {
1386
+ padding-inline: 0.03125rem;
1387
+ }
1388
+ .cds--row--narrow .cds--col-sm-0, .cds--grid--narrow .cds--col-sm-0 {
1389
+ padding-inline: 0 1rem;
1390
+ }
1391
+
1392
+ .cds--col-sm-1 {
1393
+ inline-size: 100%;
1394
+ padding-inline: 1rem;
1395
+ }
1396
+ .cds--row--condensed .cds--col-sm-1, .cds--grid--condensed .cds--col-sm-1 {
1397
+ padding-inline: 0.03125rem;
1398
+ }
1399
+ .cds--row--narrow .cds--col-sm-1, .cds--grid--narrow .cds--col-sm-1 {
1400
+ padding-inline: 0 1rem;
1401
+ }
1402
+
1403
+ .cds--col-sm-2 {
1404
+ inline-size: 100%;
1405
+ padding-inline: 1rem;
1406
+ }
1407
+ .cds--row--condensed .cds--col-sm-2, .cds--grid--condensed .cds--col-sm-2 {
1408
+ padding-inline: 0.03125rem;
1409
+ }
1410
+ .cds--row--narrow .cds--col-sm-2, .cds--grid--narrow .cds--col-sm-2 {
1411
+ padding-inline: 0 1rem;
1412
+ }
1413
+
1414
+ .cds--col-sm-3 {
1415
+ inline-size: 100%;
1416
+ padding-inline: 1rem;
1417
+ }
1418
+ .cds--row--condensed .cds--col-sm-3, .cds--grid--condensed .cds--col-sm-3 {
1419
+ padding-inline: 0.03125rem;
1420
+ }
1421
+ .cds--row--narrow .cds--col-sm-3, .cds--grid--narrow .cds--col-sm-3 {
1422
+ padding-inline: 0 1rem;
1423
+ }
1424
+
1425
+ .cds--col-sm-4 {
1426
+ inline-size: 100%;
1427
+ padding-inline: 1rem;
1428
+ }
1429
+ .cds--row--condensed .cds--col-sm-4, .cds--grid--condensed .cds--col-sm-4 {
1430
+ padding-inline: 0.03125rem;
1431
+ }
1432
+ .cds--row--narrow .cds--col-sm-4, .cds--grid--narrow .cds--col-sm-4 {
1433
+ padding-inline: 0 1rem;
1434
+ }
1435
+
1436
+ .cds--col-sm,
1437
+ .cds--col-sm--auto {
1438
+ inline-size: 100%;
1439
+ padding-inline: 1rem;
1440
+ }
1441
+ .cds--row--condensed .cds--col-sm, .cds--grid--condensed .cds--col-sm,
1442
+ .cds--row--condensed .cds--col-sm--auto,
1443
+ .cds--grid--condensed .cds--col-sm--auto {
1444
+ padding-inline: 0.03125rem;
1445
+ }
1446
+ .cds--row--narrow .cds--col-sm, .cds--grid--narrow .cds--col-sm,
1447
+ .cds--row--narrow .cds--col-sm--auto,
1448
+ .cds--grid--narrow .cds--col-sm--auto {
1449
+ padding-inline: 0 1rem;
1450
+ }
1451
+
1452
+ .cds--col,
1453
+ .cds--col-sm {
1454
+ flex-basis: 0;
1455
+ flex-grow: 1;
1456
+ max-inline-size: 100%;
1457
+ }
1458
+
1459
+ .cds--col--auto,
1460
+ .cds--col-sm--auto {
1461
+ flex: 1 0 0%;
1462
+ inline-size: auto;
1463
+ max-inline-size: 100%;
1464
+ }
1465
+
1466
+ .cds--col-sm-0 {
1467
+ display: none;
1468
+ }
1469
+
1470
+ .cds--col-sm-1 {
1471
+ display: block;
1472
+ flex: 0 0 25%;
1473
+ max-inline-size: 25%;
1474
+ }
1475
+
1476
+ .cds--col-sm-2 {
1477
+ display: block;
1478
+ flex: 0 0 50%;
1479
+ max-inline-size: 50%;
1480
+ }
1481
+
1482
+ .cds--col-sm-3 {
1483
+ display: block;
1484
+ flex: 0 0 75%;
1485
+ max-inline-size: 75%;
1486
+ }
1487
+
1488
+ .cds--col-sm-4 {
1489
+ display: block;
1490
+ flex: 0 0 100%;
1491
+ max-inline-size: 100%;
1492
+ }
1493
+
1494
+ .cds--offset-sm-0 {
1495
+ margin-inline-start: 0;
1496
+ }
1497
+
1498
+ .cds--offset-sm-1 {
1499
+ margin-inline-start: 25%;
1500
+ }
1501
+
1502
+ .cds--offset-sm-2 {
1503
+ margin-inline-start: 50%;
1504
+ }
1505
+
1506
+ .cds--offset-sm-3 {
1507
+ margin-inline-start: 75%;
1508
+ }
1509
+
1510
+ .cds--col-md-0 {
1511
+ inline-size: 100%;
1512
+ padding-inline: 1rem;
1513
+ }
1514
+ .cds--row--condensed .cds--col-md-0, .cds--grid--condensed .cds--col-md-0 {
1515
+ padding-inline: 0.03125rem;
1516
+ }
1517
+ .cds--row--narrow .cds--col-md-0, .cds--grid--narrow .cds--col-md-0 {
1518
+ padding-inline: 0 1rem;
1519
+ }
1520
+
1521
+ .cds--col-md-1 {
1522
+ inline-size: 100%;
1523
+ padding-inline: 1rem;
1524
+ }
1525
+ .cds--row--condensed .cds--col-md-1, .cds--grid--condensed .cds--col-md-1 {
1526
+ padding-inline: 0.03125rem;
1527
+ }
1528
+ .cds--row--narrow .cds--col-md-1, .cds--grid--narrow .cds--col-md-1 {
1529
+ padding-inline: 0 1rem;
1530
+ }
1531
+
1532
+ .cds--col-md-2 {
1533
+ inline-size: 100%;
1534
+ padding-inline: 1rem;
1535
+ }
1536
+ .cds--row--condensed .cds--col-md-2, .cds--grid--condensed .cds--col-md-2 {
1537
+ padding-inline: 0.03125rem;
1538
+ }
1539
+ .cds--row--narrow .cds--col-md-2, .cds--grid--narrow .cds--col-md-2 {
1540
+ padding-inline: 0 1rem;
1541
+ }
1542
+
1543
+ .cds--col-md-3 {
1544
+ inline-size: 100%;
1545
+ padding-inline: 1rem;
1546
+ }
1547
+ .cds--row--condensed .cds--col-md-3, .cds--grid--condensed .cds--col-md-3 {
1548
+ padding-inline: 0.03125rem;
1549
+ }
1550
+ .cds--row--narrow .cds--col-md-3, .cds--grid--narrow .cds--col-md-3 {
1551
+ padding-inline: 0 1rem;
1552
+ }
1553
+
1554
+ .cds--col-md-4 {
1555
+ inline-size: 100%;
1556
+ padding-inline: 1rem;
1557
+ }
1558
+ .cds--row--condensed .cds--col-md-4, .cds--grid--condensed .cds--col-md-4 {
1559
+ padding-inline: 0.03125rem;
1560
+ }
1561
+ .cds--row--narrow .cds--col-md-4, .cds--grid--narrow .cds--col-md-4 {
1562
+ padding-inline: 0 1rem;
1563
+ }
1564
+
1565
+ .cds--col-md-5 {
1566
+ inline-size: 100%;
1567
+ padding-inline: 1rem;
1568
+ }
1569
+ .cds--row--condensed .cds--col-md-5, .cds--grid--condensed .cds--col-md-5 {
1570
+ padding-inline: 0.03125rem;
1571
+ }
1572
+ .cds--row--narrow .cds--col-md-5, .cds--grid--narrow .cds--col-md-5 {
1573
+ padding-inline: 0 1rem;
1574
+ }
1575
+
1576
+ .cds--col-md-6 {
1577
+ inline-size: 100%;
1578
+ padding-inline: 1rem;
1579
+ }
1580
+ .cds--row--condensed .cds--col-md-6, .cds--grid--condensed .cds--col-md-6 {
1581
+ padding-inline: 0.03125rem;
1582
+ }
1583
+ .cds--row--narrow .cds--col-md-6, .cds--grid--narrow .cds--col-md-6 {
1584
+ padding-inline: 0 1rem;
1585
+ }
1586
+
1587
+ .cds--col-md-7 {
1588
+ inline-size: 100%;
1589
+ padding-inline: 1rem;
1590
+ }
1591
+ .cds--row--condensed .cds--col-md-7, .cds--grid--condensed .cds--col-md-7 {
1592
+ padding-inline: 0.03125rem;
1593
+ }
1594
+ .cds--row--narrow .cds--col-md-7, .cds--grid--narrow .cds--col-md-7 {
1595
+ padding-inline: 0 1rem;
1596
+ }
1597
+
1598
+ .cds--col-md-8 {
1599
+ inline-size: 100%;
1600
+ padding-inline: 1rem;
1601
+ }
1602
+ .cds--row--condensed .cds--col-md-8, .cds--grid--condensed .cds--col-md-8 {
1603
+ padding-inline: 0.03125rem;
1604
+ }
1605
+ .cds--row--narrow .cds--col-md-8, .cds--grid--narrow .cds--col-md-8 {
1606
+ padding-inline: 0 1rem;
1607
+ }
1608
+
1609
+ .cds--col-md,
1610
+ .cds--col-md--auto {
1611
+ inline-size: 100%;
1612
+ padding-inline: 1rem;
1613
+ }
1614
+ .cds--row--condensed .cds--col-md, .cds--grid--condensed .cds--col-md,
1615
+ .cds--row--condensed .cds--col-md--auto,
1616
+ .cds--grid--condensed .cds--col-md--auto {
1617
+ padding-inline: 0.03125rem;
1618
+ }
1619
+ .cds--row--narrow .cds--col-md, .cds--grid--narrow .cds--col-md,
1620
+ .cds--row--narrow .cds--col-md--auto,
1621
+ .cds--grid--narrow .cds--col-md--auto {
1622
+ padding-inline: 0 1rem;
1623
+ }
1624
+
1625
+ @media (min-width: 42rem) {
1626
+ .cds--col,
1627
+ .cds--col-md {
1628
+ flex-basis: 0;
1629
+ flex-grow: 1;
1630
+ max-inline-size: 100%;
1631
+ }
1632
+ .cds--col--auto,
1633
+ .cds--col-md--auto {
1634
+ flex: 1 0 0%;
1635
+ inline-size: auto;
1636
+ max-inline-size: 100%;
1637
+ }
1638
+ .cds--col-md-0 {
1639
+ display: none;
1640
+ }
1641
+ .cds--col-md-1 {
1642
+ display: block;
1643
+ flex: 0 0 12.5%;
1644
+ max-inline-size: 12.5%;
1645
+ }
1646
+ .cds--col-md-2 {
1647
+ display: block;
1648
+ flex: 0 0 25%;
1649
+ max-inline-size: 25%;
1650
+ }
1651
+ .cds--col-md-3 {
1652
+ display: block;
1653
+ flex: 0 0 37.5%;
1654
+ max-inline-size: 37.5%;
1655
+ }
1656
+ .cds--col-md-4 {
1657
+ display: block;
1658
+ flex: 0 0 50%;
1659
+ max-inline-size: 50%;
1660
+ }
1661
+ .cds--col-md-5 {
1662
+ display: block;
1663
+ flex: 0 0 62.5%;
1664
+ max-inline-size: 62.5%;
1665
+ }
1666
+ .cds--col-md-6 {
1667
+ display: block;
1668
+ flex: 0 0 75%;
1669
+ max-inline-size: 75%;
1670
+ }
1671
+ .cds--col-md-7 {
1672
+ display: block;
1673
+ flex: 0 0 87.5%;
1674
+ max-inline-size: 87.5%;
1675
+ }
1676
+ .cds--col-md-8 {
1677
+ display: block;
1678
+ flex: 0 0 100%;
1679
+ max-inline-size: 100%;
1680
+ }
1681
+ .cds--offset-md-0 {
1682
+ margin-inline-start: 0;
1683
+ }
1684
+ .cds--offset-md-1 {
1685
+ margin-inline-start: 12.5%;
1686
+ }
1687
+ .cds--offset-md-2 {
1688
+ margin-inline-start: 25%;
1689
+ }
1690
+ .cds--offset-md-3 {
1691
+ margin-inline-start: 37.5%;
1692
+ }
1693
+ .cds--offset-md-4 {
1694
+ margin-inline-start: 50%;
1695
+ }
1696
+ .cds--offset-md-5 {
1697
+ margin-inline-start: 62.5%;
1698
+ }
1699
+ .cds--offset-md-6 {
1700
+ margin-inline-start: 75%;
1701
+ }
1702
+ .cds--offset-md-7 {
1703
+ margin-inline-start: 87.5%;
1704
+ }
1705
+ }
1706
+ .cds--col-lg-0 {
1707
+ inline-size: 100%;
1708
+ padding-inline: 1rem;
1709
+ }
1710
+ .cds--row--condensed .cds--col-lg-0, .cds--grid--condensed .cds--col-lg-0 {
1711
+ padding-inline: 0.03125rem;
1712
+ }
1713
+ .cds--row--narrow .cds--col-lg-0, .cds--grid--narrow .cds--col-lg-0 {
1714
+ padding-inline: 0 1rem;
1715
+ }
1716
+
1717
+ .cds--col-lg-1 {
1718
+ inline-size: 100%;
1719
+ padding-inline: 1rem;
1720
+ }
1721
+ .cds--row--condensed .cds--col-lg-1, .cds--grid--condensed .cds--col-lg-1 {
1722
+ padding-inline: 0.03125rem;
1723
+ }
1724
+ .cds--row--narrow .cds--col-lg-1, .cds--grid--narrow .cds--col-lg-1 {
1725
+ padding-inline: 0 1rem;
1726
+ }
1727
+
1728
+ .cds--col-lg-2 {
1729
+ inline-size: 100%;
1730
+ padding-inline: 1rem;
1731
+ }
1732
+ .cds--row--condensed .cds--col-lg-2, .cds--grid--condensed .cds--col-lg-2 {
1733
+ padding-inline: 0.03125rem;
1734
+ }
1735
+ .cds--row--narrow .cds--col-lg-2, .cds--grid--narrow .cds--col-lg-2 {
1736
+ padding-inline: 0 1rem;
1737
+ }
1738
+
1739
+ .cds--col-lg-3 {
1740
+ inline-size: 100%;
1741
+ padding-inline: 1rem;
1742
+ }
1743
+ .cds--row--condensed .cds--col-lg-3, .cds--grid--condensed .cds--col-lg-3 {
1744
+ padding-inline: 0.03125rem;
1745
+ }
1746
+ .cds--row--narrow .cds--col-lg-3, .cds--grid--narrow .cds--col-lg-3 {
1747
+ padding-inline: 0 1rem;
1748
+ }
1749
+
1750
+ .cds--col-lg-4 {
1751
+ inline-size: 100%;
1752
+ padding-inline: 1rem;
1753
+ }
1754
+ .cds--row--condensed .cds--col-lg-4, .cds--grid--condensed .cds--col-lg-4 {
1755
+ padding-inline: 0.03125rem;
1756
+ }
1757
+ .cds--row--narrow .cds--col-lg-4, .cds--grid--narrow .cds--col-lg-4 {
1758
+ padding-inline: 0 1rem;
1759
+ }
1760
+
1761
+ .cds--col-lg-5 {
1762
+ inline-size: 100%;
1763
+ padding-inline: 1rem;
1764
+ }
1765
+ .cds--row--condensed .cds--col-lg-5, .cds--grid--condensed .cds--col-lg-5 {
1766
+ padding-inline: 0.03125rem;
1767
+ }
1768
+ .cds--row--narrow .cds--col-lg-5, .cds--grid--narrow .cds--col-lg-5 {
1769
+ padding-inline: 0 1rem;
1770
+ }
1771
+
1772
+ .cds--col-lg-6 {
1773
+ inline-size: 100%;
1774
+ padding-inline: 1rem;
1775
+ }
1776
+ .cds--row--condensed .cds--col-lg-6, .cds--grid--condensed .cds--col-lg-6 {
1777
+ padding-inline: 0.03125rem;
1778
+ }
1779
+ .cds--row--narrow .cds--col-lg-6, .cds--grid--narrow .cds--col-lg-6 {
1780
+ padding-inline: 0 1rem;
1781
+ }
1782
+
1783
+ .cds--col-lg-7 {
1784
+ inline-size: 100%;
1785
+ padding-inline: 1rem;
1786
+ }
1787
+ .cds--row--condensed .cds--col-lg-7, .cds--grid--condensed .cds--col-lg-7 {
1788
+ padding-inline: 0.03125rem;
1789
+ }
1790
+ .cds--row--narrow .cds--col-lg-7, .cds--grid--narrow .cds--col-lg-7 {
1791
+ padding-inline: 0 1rem;
1792
+ }
1793
+
1794
+ .cds--col-lg-8 {
1795
+ inline-size: 100%;
1796
+ padding-inline: 1rem;
1797
+ }
1798
+ .cds--row--condensed .cds--col-lg-8, .cds--grid--condensed .cds--col-lg-8 {
1799
+ padding-inline: 0.03125rem;
1800
+ }
1801
+ .cds--row--narrow .cds--col-lg-8, .cds--grid--narrow .cds--col-lg-8 {
1802
+ padding-inline: 0 1rem;
1803
+ }
1804
+
1805
+ .cds--col-lg-9 {
1806
+ inline-size: 100%;
1807
+ padding-inline: 1rem;
1808
+ }
1809
+ .cds--row--condensed .cds--col-lg-9, .cds--grid--condensed .cds--col-lg-9 {
1810
+ padding-inline: 0.03125rem;
1811
+ }
1812
+ .cds--row--narrow .cds--col-lg-9, .cds--grid--narrow .cds--col-lg-9 {
1813
+ padding-inline: 0 1rem;
1814
+ }
1815
+
1816
+ .cds--col-lg-10 {
1817
+ inline-size: 100%;
1818
+ padding-inline: 1rem;
1819
+ }
1820
+ .cds--row--condensed .cds--col-lg-10, .cds--grid--condensed .cds--col-lg-10 {
1821
+ padding-inline: 0.03125rem;
1822
+ }
1823
+ .cds--row--narrow .cds--col-lg-10, .cds--grid--narrow .cds--col-lg-10 {
1824
+ padding-inline: 0 1rem;
1825
+ }
1826
+
1827
+ .cds--col-lg-11 {
1828
+ inline-size: 100%;
1829
+ padding-inline: 1rem;
1830
+ }
1831
+ .cds--row--condensed .cds--col-lg-11, .cds--grid--condensed .cds--col-lg-11 {
1832
+ padding-inline: 0.03125rem;
1833
+ }
1834
+ .cds--row--narrow .cds--col-lg-11, .cds--grid--narrow .cds--col-lg-11 {
1835
+ padding-inline: 0 1rem;
1836
+ }
1837
+
1838
+ .cds--col-lg-12 {
1839
+ inline-size: 100%;
1840
+ padding-inline: 1rem;
1841
+ }
1842
+ .cds--row--condensed .cds--col-lg-12, .cds--grid--condensed .cds--col-lg-12 {
1843
+ padding-inline: 0.03125rem;
1844
+ }
1845
+ .cds--row--narrow .cds--col-lg-12, .cds--grid--narrow .cds--col-lg-12 {
1846
+ padding-inline: 0 1rem;
1847
+ }
1848
+
1849
+ .cds--col-lg-13 {
1850
+ inline-size: 100%;
1851
+ padding-inline: 1rem;
1852
+ }
1853
+ .cds--row--condensed .cds--col-lg-13, .cds--grid--condensed .cds--col-lg-13 {
1854
+ padding-inline: 0.03125rem;
1855
+ }
1856
+ .cds--row--narrow .cds--col-lg-13, .cds--grid--narrow .cds--col-lg-13 {
1857
+ padding-inline: 0 1rem;
1858
+ }
1859
+
1860
+ .cds--col-lg-14 {
1861
+ inline-size: 100%;
1862
+ padding-inline: 1rem;
1863
+ }
1864
+ .cds--row--condensed .cds--col-lg-14, .cds--grid--condensed .cds--col-lg-14 {
1865
+ padding-inline: 0.03125rem;
1866
+ }
1867
+ .cds--row--narrow .cds--col-lg-14, .cds--grid--narrow .cds--col-lg-14 {
1868
+ padding-inline: 0 1rem;
1869
+ }
1870
+
1871
+ .cds--col-lg-15 {
1872
+ inline-size: 100%;
1873
+ padding-inline: 1rem;
1874
+ }
1875
+ .cds--row--condensed .cds--col-lg-15, .cds--grid--condensed .cds--col-lg-15 {
1876
+ padding-inline: 0.03125rem;
1877
+ }
1878
+ .cds--row--narrow .cds--col-lg-15, .cds--grid--narrow .cds--col-lg-15 {
1879
+ padding-inline: 0 1rem;
1880
+ }
1881
+
1882
+ .cds--col-lg-16 {
1883
+ inline-size: 100%;
1884
+ padding-inline: 1rem;
1885
+ }
1886
+ .cds--row--condensed .cds--col-lg-16, .cds--grid--condensed .cds--col-lg-16 {
1887
+ padding-inline: 0.03125rem;
1888
+ }
1889
+ .cds--row--narrow .cds--col-lg-16, .cds--grid--narrow .cds--col-lg-16 {
1890
+ padding-inline: 0 1rem;
1891
+ }
1892
+
1893
+ .cds--col-lg,
1894
+ .cds--col-lg--auto {
1895
+ inline-size: 100%;
1896
+ padding-inline: 1rem;
1897
+ }
1898
+ .cds--row--condensed .cds--col-lg, .cds--grid--condensed .cds--col-lg,
1899
+ .cds--row--condensed .cds--col-lg--auto,
1900
+ .cds--grid--condensed .cds--col-lg--auto {
1901
+ padding-inline: 0.03125rem;
1902
+ }
1903
+ .cds--row--narrow .cds--col-lg, .cds--grid--narrow .cds--col-lg,
1904
+ .cds--row--narrow .cds--col-lg--auto,
1905
+ .cds--grid--narrow .cds--col-lg--auto {
1906
+ padding-inline: 0 1rem;
1907
+ }
1908
+
1909
+ @media (min-width: 66rem) {
1910
+ .cds--col,
1911
+ .cds--col-lg {
1912
+ flex-basis: 0;
1913
+ flex-grow: 1;
1914
+ max-inline-size: 100%;
1915
+ }
1916
+ .cds--col--auto,
1917
+ .cds--col-lg--auto {
1918
+ flex: 1 0 0%;
1919
+ inline-size: auto;
1920
+ max-inline-size: 100%;
1921
+ }
1922
+ .cds--col-lg-0 {
1923
+ display: none;
1924
+ }
1925
+ .cds--col-lg-1 {
1926
+ display: block;
1927
+ flex: 0 0 6.25%;
1928
+ max-inline-size: 6.25%;
1929
+ }
1930
+ .cds--col-lg-2 {
1931
+ display: block;
1932
+ flex: 0 0 12.5%;
1933
+ max-inline-size: 12.5%;
1934
+ }
1935
+ .cds--col-lg-3 {
1936
+ display: block;
1937
+ flex: 0 0 18.75%;
1938
+ max-inline-size: 18.75%;
1939
+ }
1940
+ .cds--col-lg-4 {
1941
+ display: block;
1942
+ flex: 0 0 25%;
1943
+ max-inline-size: 25%;
1944
+ }
1945
+ .cds--col-lg-5 {
1946
+ display: block;
1947
+ flex: 0 0 31.25%;
1948
+ max-inline-size: 31.25%;
1949
+ }
1950
+ .cds--col-lg-6 {
1951
+ display: block;
1952
+ flex: 0 0 37.5%;
1953
+ max-inline-size: 37.5%;
1954
+ }
1955
+ .cds--col-lg-7 {
1956
+ display: block;
1957
+ flex: 0 0 43.75%;
1958
+ max-inline-size: 43.75%;
1959
+ }
1960
+ .cds--col-lg-8 {
1961
+ display: block;
1962
+ flex: 0 0 50%;
1963
+ max-inline-size: 50%;
1964
+ }
1965
+ .cds--col-lg-9 {
1966
+ display: block;
1967
+ flex: 0 0 56.25%;
1968
+ max-inline-size: 56.25%;
1969
+ }
1970
+ .cds--col-lg-10 {
1971
+ display: block;
1972
+ flex: 0 0 62.5%;
1973
+ max-inline-size: 62.5%;
1974
+ }
1975
+ .cds--col-lg-11 {
1976
+ display: block;
1977
+ flex: 0 0 68.75%;
1978
+ max-inline-size: 68.75%;
1979
+ }
1980
+ .cds--col-lg-12 {
1981
+ display: block;
1982
+ flex: 0 0 75%;
1983
+ max-inline-size: 75%;
1984
+ }
1985
+ .cds--col-lg-13 {
1986
+ display: block;
1987
+ flex: 0 0 81.25%;
1988
+ max-inline-size: 81.25%;
1989
+ }
1990
+ .cds--col-lg-14 {
1991
+ display: block;
1992
+ flex: 0 0 87.5%;
1993
+ max-inline-size: 87.5%;
1994
+ }
1995
+ .cds--col-lg-15 {
1996
+ display: block;
1997
+ flex: 0 0 93.75%;
1998
+ max-inline-size: 93.75%;
1999
+ }
2000
+ .cds--col-lg-16 {
2001
+ display: block;
2002
+ flex: 0 0 100%;
2003
+ max-inline-size: 100%;
2004
+ }
2005
+ .cds--offset-lg-0 {
2006
+ margin-inline-start: 0;
2007
+ }
2008
+ .cds--offset-lg-1 {
2009
+ margin-inline-start: 6.25%;
2010
+ }
2011
+ .cds--offset-lg-2 {
2012
+ margin-inline-start: 12.5%;
2013
+ }
2014
+ .cds--offset-lg-3 {
2015
+ margin-inline-start: 18.75%;
2016
+ }
2017
+ .cds--offset-lg-4 {
2018
+ margin-inline-start: 25%;
2019
+ }
2020
+ .cds--offset-lg-5 {
2021
+ margin-inline-start: 31.25%;
2022
+ }
2023
+ .cds--offset-lg-6 {
2024
+ margin-inline-start: 37.5%;
2025
+ }
2026
+ .cds--offset-lg-7 {
2027
+ margin-inline-start: 43.75%;
2028
+ }
2029
+ .cds--offset-lg-8 {
2030
+ margin-inline-start: 50%;
2031
+ }
2032
+ .cds--offset-lg-9 {
2033
+ margin-inline-start: 56.25%;
2034
+ }
2035
+ .cds--offset-lg-10 {
2036
+ margin-inline-start: 62.5%;
2037
+ }
2038
+ .cds--offset-lg-11 {
2039
+ margin-inline-start: 68.75%;
2040
+ }
2041
+ .cds--offset-lg-12 {
2042
+ margin-inline-start: 75%;
2043
+ }
2044
+ .cds--offset-lg-13 {
2045
+ margin-inline-start: 81.25%;
2046
+ }
2047
+ .cds--offset-lg-14 {
2048
+ margin-inline-start: 87.5%;
2049
+ }
2050
+ .cds--offset-lg-15 {
2051
+ margin-inline-start: 93.75%;
2052
+ }
2053
+ }
2054
+ .cds--col-xlg-0 {
2055
+ inline-size: 100%;
2056
+ padding-inline: 1rem;
2057
+ }
2058
+ .cds--row--condensed .cds--col-xlg-0, .cds--grid--condensed .cds--col-xlg-0 {
2059
+ padding-inline: 0.03125rem;
2060
+ }
2061
+ .cds--row--narrow .cds--col-xlg-0, .cds--grid--narrow .cds--col-xlg-0 {
2062
+ padding-inline: 0 1rem;
2063
+ }
2064
+
2065
+ .cds--col-xlg-1 {
2066
+ inline-size: 100%;
2067
+ padding-inline: 1rem;
2068
+ }
2069
+ .cds--row--condensed .cds--col-xlg-1, .cds--grid--condensed .cds--col-xlg-1 {
2070
+ padding-inline: 0.03125rem;
2071
+ }
2072
+ .cds--row--narrow .cds--col-xlg-1, .cds--grid--narrow .cds--col-xlg-1 {
2073
+ padding-inline: 0 1rem;
2074
+ }
2075
+
2076
+ .cds--col-xlg-2 {
2077
+ inline-size: 100%;
2078
+ padding-inline: 1rem;
2079
+ }
2080
+ .cds--row--condensed .cds--col-xlg-2, .cds--grid--condensed .cds--col-xlg-2 {
2081
+ padding-inline: 0.03125rem;
2082
+ }
2083
+ .cds--row--narrow .cds--col-xlg-2, .cds--grid--narrow .cds--col-xlg-2 {
2084
+ padding-inline: 0 1rem;
2085
+ }
2086
+
2087
+ .cds--col-xlg-3 {
2088
+ inline-size: 100%;
2089
+ padding-inline: 1rem;
2090
+ }
2091
+ .cds--row--condensed .cds--col-xlg-3, .cds--grid--condensed .cds--col-xlg-3 {
2092
+ padding-inline: 0.03125rem;
2093
+ }
2094
+ .cds--row--narrow .cds--col-xlg-3, .cds--grid--narrow .cds--col-xlg-3 {
2095
+ padding-inline: 0 1rem;
2096
+ }
2097
+
2098
+ .cds--col-xlg-4 {
2099
+ inline-size: 100%;
2100
+ padding-inline: 1rem;
2101
+ }
2102
+ .cds--row--condensed .cds--col-xlg-4, .cds--grid--condensed .cds--col-xlg-4 {
2103
+ padding-inline: 0.03125rem;
2104
+ }
2105
+ .cds--row--narrow .cds--col-xlg-4, .cds--grid--narrow .cds--col-xlg-4 {
2106
+ padding-inline: 0 1rem;
2107
+ }
2108
+
2109
+ .cds--col-xlg-5 {
2110
+ inline-size: 100%;
2111
+ padding-inline: 1rem;
2112
+ }
2113
+ .cds--row--condensed .cds--col-xlg-5, .cds--grid--condensed .cds--col-xlg-5 {
2114
+ padding-inline: 0.03125rem;
2115
+ }
2116
+ .cds--row--narrow .cds--col-xlg-5, .cds--grid--narrow .cds--col-xlg-5 {
2117
+ padding-inline: 0 1rem;
2118
+ }
2119
+
2120
+ .cds--col-xlg-6 {
2121
+ inline-size: 100%;
2122
+ padding-inline: 1rem;
2123
+ }
2124
+ .cds--row--condensed .cds--col-xlg-6, .cds--grid--condensed .cds--col-xlg-6 {
2125
+ padding-inline: 0.03125rem;
2126
+ }
2127
+ .cds--row--narrow .cds--col-xlg-6, .cds--grid--narrow .cds--col-xlg-6 {
2128
+ padding-inline: 0 1rem;
2129
+ }
2130
+
2131
+ .cds--col-xlg-7 {
2132
+ inline-size: 100%;
2133
+ padding-inline: 1rem;
2134
+ }
2135
+ .cds--row--condensed .cds--col-xlg-7, .cds--grid--condensed .cds--col-xlg-7 {
2136
+ padding-inline: 0.03125rem;
2137
+ }
2138
+ .cds--row--narrow .cds--col-xlg-7, .cds--grid--narrow .cds--col-xlg-7 {
2139
+ padding-inline: 0 1rem;
2140
+ }
2141
+
2142
+ .cds--col-xlg-8 {
2143
+ inline-size: 100%;
2144
+ padding-inline: 1rem;
2145
+ }
2146
+ .cds--row--condensed .cds--col-xlg-8, .cds--grid--condensed .cds--col-xlg-8 {
2147
+ padding-inline: 0.03125rem;
2148
+ }
2149
+ .cds--row--narrow .cds--col-xlg-8, .cds--grid--narrow .cds--col-xlg-8 {
2150
+ padding-inline: 0 1rem;
2151
+ }
2152
+
2153
+ .cds--col-xlg-9 {
2154
+ inline-size: 100%;
2155
+ padding-inline: 1rem;
2156
+ }
2157
+ .cds--row--condensed .cds--col-xlg-9, .cds--grid--condensed .cds--col-xlg-9 {
2158
+ padding-inline: 0.03125rem;
2159
+ }
2160
+ .cds--row--narrow .cds--col-xlg-9, .cds--grid--narrow .cds--col-xlg-9 {
2161
+ padding-inline: 0 1rem;
2162
+ }
2163
+
2164
+ .cds--col-xlg-10 {
2165
+ inline-size: 100%;
2166
+ padding-inline: 1rem;
2167
+ }
2168
+ .cds--row--condensed .cds--col-xlg-10, .cds--grid--condensed .cds--col-xlg-10 {
2169
+ padding-inline: 0.03125rem;
2170
+ }
2171
+ .cds--row--narrow .cds--col-xlg-10, .cds--grid--narrow .cds--col-xlg-10 {
2172
+ padding-inline: 0 1rem;
2173
+ }
2174
+
2175
+ .cds--col-xlg-11 {
2176
+ inline-size: 100%;
2177
+ padding-inline: 1rem;
2178
+ }
2179
+ .cds--row--condensed .cds--col-xlg-11, .cds--grid--condensed .cds--col-xlg-11 {
2180
+ padding-inline: 0.03125rem;
2181
+ }
2182
+ .cds--row--narrow .cds--col-xlg-11, .cds--grid--narrow .cds--col-xlg-11 {
2183
+ padding-inline: 0 1rem;
2184
+ }
2185
+
2186
+ .cds--col-xlg-12 {
2187
+ inline-size: 100%;
2188
+ padding-inline: 1rem;
2189
+ }
2190
+ .cds--row--condensed .cds--col-xlg-12, .cds--grid--condensed .cds--col-xlg-12 {
2191
+ padding-inline: 0.03125rem;
2192
+ }
2193
+ .cds--row--narrow .cds--col-xlg-12, .cds--grid--narrow .cds--col-xlg-12 {
2194
+ padding-inline: 0 1rem;
2195
+ }
2196
+
2197
+ .cds--col-xlg-13 {
2198
+ inline-size: 100%;
2199
+ padding-inline: 1rem;
2200
+ }
2201
+ .cds--row--condensed .cds--col-xlg-13, .cds--grid--condensed .cds--col-xlg-13 {
2202
+ padding-inline: 0.03125rem;
2203
+ }
2204
+ .cds--row--narrow .cds--col-xlg-13, .cds--grid--narrow .cds--col-xlg-13 {
2205
+ padding-inline: 0 1rem;
2206
+ }
2207
+
2208
+ .cds--col-xlg-14 {
2209
+ inline-size: 100%;
2210
+ padding-inline: 1rem;
2211
+ }
2212
+ .cds--row--condensed .cds--col-xlg-14, .cds--grid--condensed .cds--col-xlg-14 {
2213
+ padding-inline: 0.03125rem;
2214
+ }
2215
+ .cds--row--narrow .cds--col-xlg-14, .cds--grid--narrow .cds--col-xlg-14 {
2216
+ padding-inline: 0 1rem;
2217
+ }
2218
+
2219
+ .cds--col-xlg-15 {
2220
+ inline-size: 100%;
2221
+ padding-inline: 1rem;
2222
+ }
2223
+ .cds--row--condensed .cds--col-xlg-15, .cds--grid--condensed .cds--col-xlg-15 {
2224
+ padding-inline: 0.03125rem;
2225
+ }
2226
+ .cds--row--narrow .cds--col-xlg-15, .cds--grid--narrow .cds--col-xlg-15 {
2227
+ padding-inline: 0 1rem;
2228
+ }
2229
+
2230
+ .cds--col-xlg-16 {
2231
+ inline-size: 100%;
2232
+ padding-inline: 1rem;
2233
+ }
2234
+ .cds--row--condensed .cds--col-xlg-16, .cds--grid--condensed .cds--col-xlg-16 {
2235
+ padding-inline: 0.03125rem;
2236
+ }
2237
+ .cds--row--narrow .cds--col-xlg-16, .cds--grid--narrow .cds--col-xlg-16 {
2238
+ padding-inline: 0 1rem;
2239
+ }
2240
+
2241
+ .cds--col-xlg,
2242
+ .cds--col-xlg--auto {
2243
+ inline-size: 100%;
2244
+ padding-inline: 1rem;
2245
+ }
2246
+ .cds--row--condensed .cds--col-xlg, .cds--grid--condensed .cds--col-xlg,
2247
+ .cds--row--condensed .cds--col-xlg--auto,
2248
+ .cds--grid--condensed .cds--col-xlg--auto {
2249
+ padding-inline: 0.03125rem;
2250
+ }
2251
+ .cds--row--narrow .cds--col-xlg, .cds--grid--narrow .cds--col-xlg,
2252
+ .cds--row--narrow .cds--col-xlg--auto,
2253
+ .cds--grid--narrow .cds--col-xlg--auto {
2254
+ padding-inline: 0 1rem;
2255
+ }
2256
+
2257
+ @media (min-width: 82rem) {
2258
+ .cds--col,
2259
+ .cds--col-xlg {
2260
+ flex-basis: 0;
2261
+ flex-grow: 1;
2262
+ max-inline-size: 100%;
2263
+ }
2264
+ .cds--col--auto,
2265
+ .cds--col-xlg--auto {
2266
+ flex: 1 0 0%;
2267
+ inline-size: auto;
2268
+ max-inline-size: 100%;
2269
+ }
2270
+ .cds--col-xlg-0 {
2271
+ display: none;
2272
+ }
2273
+ .cds--col-xlg-1 {
2274
+ display: block;
2275
+ flex: 0 0 6.25%;
2276
+ max-inline-size: 6.25%;
2277
+ }
2278
+ .cds--col-xlg-2 {
2279
+ display: block;
2280
+ flex: 0 0 12.5%;
2281
+ max-inline-size: 12.5%;
2282
+ }
2283
+ .cds--col-xlg-3 {
2284
+ display: block;
2285
+ flex: 0 0 18.75%;
2286
+ max-inline-size: 18.75%;
2287
+ }
2288
+ .cds--col-xlg-4 {
2289
+ display: block;
2290
+ flex: 0 0 25%;
2291
+ max-inline-size: 25%;
2292
+ }
2293
+ .cds--col-xlg-5 {
2294
+ display: block;
2295
+ flex: 0 0 31.25%;
2296
+ max-inline-size: 31.25%;
2297
+ }
2298
+ .cds--col-xlg-6 {
2299
+ display: block;
2300
+ flex: 0 0 37.5%;
2301
+ max-inline-size: 37.5%;
2302
+ }
2303
+ .cds--col-xlg-7 {
2304
+ display: block;
2305
+ flex: 0 0 43.75%;
2306
+ max-inline-size: 43.75%;
2307
+ }
2308
+ .cds--col-xlg-8 {
2309
+ display: block;
2310
+ flex: 0 0 50%;
2311
+ max-inline-size: 50%;
2312
+ }
2313
+ .cds--col-xlg-9 {
2314
+ display: block;
2315
+ flex: 0 0 56.25%;
2316
+ max-inline-size: 56.25%;
2317
+ }
2318
+ .cds--col-xlg-10 {
2319
+ display: block;
2320
+ flex: 0 0 62.5%;
2321
+ max-inline-size: 62.5%;
2322
+ }
2323
+ .cds--col-xlg-11 {
2324
+ display: block;
2325
+ flex: 0 0 68.75%;
2326
+ max-inline-size: 68.75%;
2327
+ }
2328
+ .cds--col-xlg-12 {
2329
+ display: block;
2330
+ flex: 0 0 75%;
2331
+ max-inline-size: 75%;
2332
+ }
2333
+ .cds--col-xlg-13 {
2334
+ display: block;
2335
+ flex: 0 0 81.25%;
2336
+ max-inline-size: 81.25%;
2337
+ }
2338
+ .cds--col-xlg-14 {
2339
+ display: block;
2340
+ flex: 0 0 87.5%;
2341
+ max-inline-size: 87.5%;
2342
+ }
2343
+ .cds--col-xlg-15 {
2344
+ display: block;
2345
+ flex: 0 0 93.75%;
2346
+ max-inline-size: 93.75%;
2347
+ }
2348
+ .cds--col-xlg-16 {
2349
+ display: block;
2350
+ flex: 0 0 100%;
2351
+ max-inline-size: 100%;
2352
+ }
2353
+ .cds--offset-xlg-0 {
2354
+ margin-inline-start: 0;
2355
+ }
2356
+ .cds--offset-xlg-1 {
2357
+ margin-inline-start: 6.25%;
2358
+ }
2359
+ .cds--offset-xlg-2 {
2360
+ margin-inline-start: 12.5%;
2361
+ }
2362
+ .cds--offset-xlg-3 {
2363
+ margin-inline-start: 18.75%;
2364
+ }
2365
+ .cds--offset-xlg-4 {
2366
+ margin-inline-start: 25%;
2367
+ }
2368
+ .cds--offset-xlg-5 {
2369
+ margin-inline-start: 31.25%;
2370
+ }
2371
+ .cds--offset-xlg-6 {
2372
+ margin-inline-start: 37.5%;
2373
+ }
2374
+ .cds--offset-xlg-7 {
2375
+ margin-inline-start: 43.75%;
2376
+ }
2377
+ .cds--offset-xlg-8 {
2378
+ margin-inline-start: 50%;
2379
+ }
2380
+ .cds--offset-xlg-9 {
2381
+ margin-inline-start: 56.25%;
2382
+ }
2383
+ .cds--offset-xlg-10 {
2384
+ margin-inline-start: 62.5%;
2385
+ }
2386
+ .cds--offset-xlg-11 {
2387
+ margin-inline-start: 68.75%;
2388
+ }
2389
+ .cds--offset-xlg-12 {
2390
+ margin-inline-start: 75%;
2391
+ }
2392
+ .cds--offset-xlg-13 {
2393
+ margin-inline-start: 81.25%;
2394
+ }
2395
+ .cds--offset-xlg-14 {
2396
+ margin-inline-start: 87.5%;
2397
+ }
2398
+ .cds--offset-xlg-15 {
2399
+ margin-inline-start: 93.75%;
2400
+ }
2401
+ }
2402
+ .cds--col-max-0 {
2403
+ inline-size: 100%;
2404
+ padding-inline: 1rem;
2405
+ }
2406
+ .cds--row--condensed .cds--col-max-0, .cds--grid--condensed .cds--col-max-0 {
2407
+ padding-inline: 0.03125rem;
2408
+ }
2409
+ .cds--row--narrow .cds--col-max-0, .cds--grid--narrow .cds--col-max-0 {
2410
+ padding-inline: 0 1rem;
2411
+ }
2412
+
2413
+ .cds--col-max-1 {
2414
+ inline-size: 100%;
2415
+ padding-inline: 1rem;
2416
+ }
2417
+ .cds--row--condensed .cds--col-max-1, .cds--grid--condensed .cds--col-max-1 {
2418
+ padding-inline: 0.03125rem;
2419
+ }
2420
+ .cds--row--narrow .cds--col-max-1, .cds--grid--narrow .cds--col-max-1 {
2421
+ padding-inline: 0 1rem;
2422
+ }
2423
+
2424
+ .cds--col-max-2 {
2425
+ inline-size: 100%;
2426
+ padding-inline: 1rem;
2427
+ }
2428
+ .cds--row--condensed .cds--col-max-2, .cds--grid--condensed .cds--col-max-2 {
2429
+ padding-inline: 0.03125rem;
2430
+ }
2431
+ .cds--row--narrow .cds--col-max-2, .cds--grid--narrow .cds--col-max-2 {
2432
+ padding-inline: 0 1rem;
2433
+ }
2434
+
2435
+ .cds--col-max-3 {
2436
+ inline-size: 100%;
2437
+ padding-inline: 1rem;
2438
+ }
2439
+ .cds--row--condensed .cds--col-max-3, .cds--grid--condensed .cds--col-max-3 {
2440
+ padding-inline: 0.03125rem;
2441
+ }
2442
+ .cds--row--narrow .cds--col-max-3, .cds--grid--narrow .cds--col-max-3 {
2443
+ padding-inline: 0 1rem;
2444
+ }
2445
+
2446
+ .cds--col-max-4 {
2447
+ inline-size: 100%;
2448
+ padding-inline: 1rem;
2449
+ }
2450
+ .cds--row--condensed .cds--col-max-4, .cds--grid--condensed .cds--col-max-4 {
2451
+ padding-inline: 0.03125rem;
2452
+ }
2453
+ .cds--row--narrow .cds--col-max-4, .cds--grid--narrow .cds--col-max-4 {
2454
+ padding-inline: 0 1rem;
2455
+ }
2456
+
2457
+ .cds--col-max-5 {
2458
+ inline-size: 100%;
2459
+ padding-inline: 1rem;
2460
+ }
2461
+ .cds--row--condensed .cds--col-max-5, .cds--grid--condensed .cds--col-max-5 {
2462
+ padding-inline: 0.03125rem;
2463
+ }
2464
+ .cds--row--narrow .cds--col-max-5, .cds--grid--narrow .cds--col-max-5 {
2465
+ padding-inline: 0 1rem;
2466
+ }
2467
+
2468
+ .cds--col-max-6 {
2469
+ inline-size: 100%;
2470
+ padding-inline: 1rem;
2471
+ }
2472
+ .cds--row--condensed .cds--col-max-6, .cds--grid--condensed .cds--col-max-6 {
2473
+ padding-inline: 0.03125rem;
2474
+ }
2475
+ .cds--row--narrow .cds--col-max-6, .cds--grid--narrow .cds--col-max-6 {
2476
+ padding-inline: 0 1rem;
2477
+ }
2478
+
2479
+ .cds--col-max-7 {
2480
+ inline-size: 100%;
2481
+ padding-inline: 1rem;
2482
+ }
2483
+ .cds--row--condensed .cds--col-max-7, .cds--grid--condensed .cds--col-max-7 {
2484
+ padding-inline: 0.03125rem;
2485
+ }
2486
+ .cds--row--narrow .cds--col-max-7, .cds--grid--narrow .cds--col-max-7 {
2487
+ padding-inline: 0 1rem;
2488
+ }
2489
+
2490
+ .cds--col-max-8 {
2491
+ inline-size: 100%;
2492
+ padding-inline: 1rem;
2493
+ }
2494
+ .cds--row--condensed .cds--col-max-8, .cds--grid--condensed .cds--col-max-8 {
2495
+ padding-inline: 0.03125rem;
2496
+ }
2497
+ .cds--row--narrow .cds--col-max-8, .cds--grid--narrow .cds--col-max-8 {
2498
+ padding-inline: 0 1rem;
2499
+ }
2500
+
2501
+ .cds--col-max-9 {
2502
+ inline-size: 100%;
2503
+ padding-inline: 1rem;
2504
+ }
2505
+ .cds--row--condensed .cds--col-max-9, .cds--grid--condensed .cds--col-max-9 {
2506
+ padding-inline: 0.03125rem;
2507
+ }
2508
+ .cds--row--narrow .cds--col-max-9, .cds--grid--narrow .cds--col-max-9 {
2509
+ padding-inline: 0 1rem;
2510
+ }
2511
+
2512
+ .cds--col-max-10 {
2513
+ inline-size: 100%;
2514
+ padding-inline: 1rem;
2515
+ }
2516
+ .cds--row--condensed .cds--col-max-10, .cds--grid--condensed .cds--col-max-10 {
2517
+ padding-inline: 0.03125rem;
2518
+ }
2519
+ .cds--row--narrow .cds--col-max-10, .cds--grid--narrow .cds--col-max-10 {
2520
+ padding-inline: 0 1rem;
2521
+ }
2522
+
2523
+ .cds--col-max-11 {
2524
+ inline-size: 100%;
2525
+ padding-inline: 1rem;
2526
+ }
2527
+ .cds--row--condensed .cds--col-max-11, .cds--grid--condensed .cds--col-max-11 {
2528
+ padding-inline: 0.03125rem;
2529
+ }
2530
+ .cds--row--narrow .cds--col-max-11, .cds--grid--narrow .cds--col-max-11 {
2531
+ padding-inline: 0 1rem;
2532
+ }
2533
+
2534
+ .cds--col-max-12 {
2535
+ inline-size: 100%;
2536
+ padding-inline: 1rem;
2537
+ }
2538
+ .cds--row--condensed .cds--col-max-12, .cds--grid--condensed .cds--col-max-12 {
2539
+ padding-inline: 0.03125rem;
2540
+ }
2541
+ .cds--row--narrow .cds--col-max-12, .cds--grid--narrow .cds--col-max-12 {
2542
+ padding-inline: 0 1rem;
2543
+ }
2544
+
2545
+ .cds--col-max-13 {
2546
+ inline-size: 100%;
2547
+ padding-inline: 1rem;
2548
+ }
2549
+ .cds--row--condensed .cds--col-max-13, .cds--grid--condensed .cds--col-max-13 {
2550
+ padding-inline: 0.03125rem;
2551
+ }
2552
+ .cds--row--narrow .cds--col-max-13, .cds--grid--narrow .cds--col-max-13 {
2553
+ padding-inline: 0 1rem;
2554
+ }
2555
+
2556
+ .cds--col-max-14 {
2557
+ inline-size: 100%;
2558
+ padding-inline: 1rem;
2559
+ }
2560
+ .cds--row--condensed .cds--col-max-14, .cds--grid--condensed .cds--col-max-14 {
2561
+ padding-inline: 0.03125rem;
2562
+ }
2563
+ .cds--row--narrow .cds--col-max-14, .cds--grid--narrow .cds--col-max-14 {
2564
+ padding-inline: 0 1rem;
2565
+ }
2566
+
2567
+ .cds--col-max-15 {
2568
+ inline-size: 100%;
2569
+ padding-inline: 1rem;
2570
+ }
2571
+ .cds--row--condensed .cds--col-max-15, .cds--grid--condensed .cds--col-max-15 {
2572
+ padding-inline: 0.03125rem;
2573
+ }
2574
+ .cds--row--narrow .cds--col-max-15, .cds--grid--narrow .cds--col-max-15 {
2575
+ padding-inline: 0 1rem;
2576
+ }
2577
+
2578
+ .cds--col-max-16 {
2579
+ inline-size: 100%;
2580
+ padding-inline: 1rem;
2581
+ }
2582
+ .cds--row--condensed .cds--col-max-16, .cds--grid--condensed .cds--col-max-16 {
2583
+ padding-inline: 0.03125rem;
2584
+ }
2585
+ .cds--row--narrow .cds--col-max-16, .cds--grid--narrow .cds--col-max-16 {
2586
+ padding-inline: 0 1rem;
2587
+ }
2588
+
2589
+ .cds--col-max,
2590
+ .cds--col-max--auto {
2591
+ inline-size: 100%;
2592
+ padding-inline: 1rem;
2593
+ }
2594
+ .cds--row--condensed .cds--col-max, .cds--grid--condensed .cds--col-max,
2595
+ .cds--row--condensed .cds--col-max--auto,
2596
+ .cds--grid--condensed .cds--col-max--auto {
2597
+ padding-inline: 0.03125rem;
2598
+ }
2599
+ .cds--row--narrow .cds--col-max, .cds--grid--narrow .cds--col-max,
2600
+ .cds--row--narrow .cds--col-max--auto,
2601
+ .cds--grid--narrow .cds--col-max--auto {
2602
+ padding-inline: 0 1rem;
2603
+ }
2604
+
2605
+ @media (min-width: 99rem) {
2606
+ .cds--col,
2607
+ .cds--col-max {
2608
+ flex-basis: 0;
2609
+ flex-grow: 1;
2610
+ max-inline-size: 100%;
2611
+ }
2612
+ .cds--col--auto,
2613
+ .cds--col-max--auto {
2614
+ flex: 1 0 0%;
2615
+ inline-size: auto;
2616
+ max-inline-size: 100%;
2617
+ }
2618
+ .cds--col-max-0 {
2619
+ display: none;
2620
+ }
2621
+ .cds--col-max-1 {
2622
+ display: block;
2623
+ flex: 0 0 6.25%;
2624
+ max-inline-size: 6.25%;
2625
+ }
2626
+ .cds--col-max-2 {
2627
+ display: block;
2628
+ flex: 0 0 12.5%;
2629
+ max-inline-size: 12.5%;
2630
+ }
2631
+ .cds--col-max-3 {
2632
+ display: block;
2633
+ flex: 0 0 18.75%;
2634
+ max-inline-size: 18.75%;
2635
+ }
2636
+ .cds--col-max-4 {
2637
+ display: block;
2638
+ flex: 0 0 25%;
2639
+ max-inline-size: 25%;
2640
+ }
2641
+ .cds--col-max-5 {
2642
+ display: block;
2643
+ flex: 0 0 31.25%;
2644
+ max-inline-size: 31.25%;
2645
+ }
2646
+ .cds--col-max-6 {
2647
+ display: block;
2648
+ flex: 0 0 37.5%;
2649
+ max-inline-size: 37.5%;
2650
+ }
2651
+ .cds--col-max-7 {
2652
+ display: block;
2653
+ flex: 0 0 43.75%;
2654
+ max-inline-size: 43.75%;
2655
+ }
2656
+ .cds--col-max-8 {
2657
+ display: block;
2658
+ flex: 0 0 50%;
2659
+ max-inline-size: 50%;
2660
+ }
2661
+ .cds--col-max-9 {
2662
+ display: block;
2663
+ flex: 0 0 56.25%;
2664
+ max-inline-size: 56.25%;
2665
+ }
2666
+ .cds--col-max-10 {
2667
+ display: block;
2668
+ flex: 0 0 62.5%;
2669
+ max-inline-size: 62.5%;
2670
+ }
2671
+ .cds--col-max-11 {
2672
+ display: block;
2673
+ flex: 0 0 68.75%;
2674
+ max-inline-size: 68.75%;
2675
+ }
2676
+ .cds--col-max-12 {
2677
+ display: block;
2678
+ flex: 0 0 75%;
2679
+ max-inline-size: 75%;
2680
+ }
2681
+ .cds--col-max-13 {
2682
+ display: block;
2683
+ flex: 0 0 81.25%;
2684
+ max-inline-size: 81.25%;
2685
+ }
2686
+ .cds--col-max-14 {
2687
+ display: block;
2688
+ flex: 0 0 87.5%;
2689
+ max-inline-size: 87.5%;
2690
+ }
2691
+ .cds--col-max-15 {
2692
+ display: block;
2693
+ flex: 0 0 93.75%;
2694
+ max-inline-size: 93.75%;
2695
+ }
2696
+ .cds--col-max-16 {
2697
+ display: block;
2698
+ flex: 0 0 100%;
2699
+ max-inline-size: 100%;
2700
+ }
2701
+ .cds--offset-max-0 {
2702
+ margin-inline-start: 0;
2703
+ }
2704
+ .cds--offset-max-1 {
2705
+ margin-inline-start: 6.25%;
2706
+ }
2707
+ .cds--offset-max-2 {
2708
+ margin-inline-start: 12.5%;
2709
+ }
2710
+ .cds--offset-max-3 {
2711
+ margin-inline-start: 18.75%;
2712
+ }
2713
+ .cds--offset-max-4 {
2714
+ margin-inline-start: 25%;
2715
+ }
2716
+ .cds--offset-max-5 {
2717
+ margin-inline-start: 31.25%;
2718
+ }
2719
+ .cds--offset-max-6 {
2720
+ margin-inline-start: 37.5%;
2721
+ }
2722
+ .cds--offset-max-7 {
2723
+ margin-inline-start: 43.75%;
2724
+ }
2725
+ .cds--offset-max-8 {
2726
+ margin-inline-start: 50%;
2727
+ }
2728
+ .cds--offset-max-9 {
2729
+ margin-inline-start: 56.25%;
2730
+ }
2731
+ .cds--offset-max-10 {
2732
+ margin-inline-start: 62.5%;
2733
+ }
2734
+ .cds--offset-max-11 {
2735
+ margin-inline-start: 68.75%;
2736
+ }
2737
+ .cds--offset-max-12 {
2738
+ margin-inline-start: 75%;
2739
+ }
2740
+ .cds--offset-max-13 {
2741
+ margin-inline-start: 81.25%;
2742
+ }
2743
+ .cds--offset-max-14 {
2744
+ margin-inline-start: 87.5%;
2745
+ }
2746
+ .cds--offset-max-15 {
2747
+ margin-inline-start: 93.75%;
2748
+ }
2749
+ }
2750
+ .cds--no-gutter,
2751
+ .cds--row.cds--no-gutter [class*=cds--col] {
2752
+ padding-inline: 0;
2753
+ }
2754
+
2755
+ .cds--no-gutter--start,
2756
+ .cds--row.cds--no-gutter--start [class*=cds--col] {
2757
+ padding-inline-start: 0;
2758
+ }
2759
+
2760
+ .cds--no-gutter--end,
2761
+ .cds--row.cds--no-gutter--end [class*=cds--col] {
2762
+ padding-inline-end: 0;
2763
+ }
2764
+
2765
+ .cds--hang--start {
2766
+ padding-inline-start: 1rem;
2767
+ }
2768
+
2769
+ .cds--hang--end {
2770
+ padding-inline-end: 1rem;
2771
+ }
2772
+
2773
+ .flatpickr-calendar {
2774
+ background: transparent;
2775
+ opacity: 0;
2776
+ display: none;
2777
+ text-align: center;
2778
+ visibility: hidden;
2779
+ padding: 0;
2780
+ -webkit-animation: none;
2781
+ animation: none;
2782
+ direction: ltr;
2783
+ border: 0;
2784
+ font-size: 14px;
2785
+ line-height: 24px;
2786
+ border-radius: 5px;
2787
+ position: absolute;
2788
+ width: 307.875px;
2789
+ -webkit-box-sizing: border-box;
2790
+ box-sizing: border-box;
2791
+ -ms-touch-action: manipulation;
2792
+ touch-action: manipulation;
2793
+ -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
2794
+ box-shadow: 0 3px 13px rgba(0, 0, 0, 0.08);
2795
+ }
2796
+
2797
+ .flatpickr-calendar.open,
2798
+ .flatpickr-calendar.inline {
2799
+ opacity: 1;
2800
+ max-height: 640px;
2801
+ visibility: visible;
2802
+ }
2803
+
2804
+ .flatpickr-calendar.open {
2805
+ display: inline-block;
2806
+ z-index: 99999;
2807
+ }
2808
+
2809
+ .flatpickr-calendar.animate.open {
2810
+ -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
2811
+ animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
2812
+ }
2813
+
2814
+ .flatpickr-calendar.inline {
2815
+ display: block;
2816
+ position: relative;
2817
+ top: 2px;
2818
+ }
2819
+
2820
+ .flatpickr-calendar.static {
2821
+ position: absolute;
2822
+ top: calc(100% + 2px);
2823
+ }
2824
+
2825
+ .flatpickr-calendar.static.open {
2826
+ z-index: 999;
2827
+ display: block;
2828
+ }
2829
+
2830
+ .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
2831
+ -webkit-box-shadow: none !important;
2832
+ box-shadow: none !important;
2833
+ }
2834
+
2835
+ .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
2836
+ -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
2837
+ box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
2838
+ }
2839
+
2840
+ .flatpickr-calendar .hasWeeks .dayContainer,
2841
+ .flatpickr-calendar .hasTime .dayContainer {
2842
+ border-bottom: 0;
2843
+ border-bottom-right-radius: 0;
2844
+ border-bottom-left-radius: 0;
2845
+ }
2846
+
2847
+ .flatpickr-calendar .hasWeeks .dayContainer {
2848
+ border-left: 0;
2849
+ }
2850
+
2851
+ .flatpickr-calendar.hasTime .flatpickr-time {
2852
+ height: 40px;
2853
+ border-top: 1px solid #eceef1;
2854
+ }
2855
+
2856
+ .flatpickr-calendar.hasTime .flatpickr-innerContainer {
2857
+ border-bottom: 0;
2858
+ }
2859
+
2860
+ .flatpickr-calendar.hasTime .flatpickr-time {
2861
+ border: 1px solid #eceef1;
2862
+ }
2863
+
2864
+ .flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
2865
+ height: auto;
2866
+ }
2867
+
2868
+ .flatpickr-calendar:before,
2869
+ .flatpickr-calendar:after {
2870
+ position: absolute;
2871
+ display: block;
2872
+ pointer-events: none;
2873
+ border: solid transparent;
2874
+ content: "";
2875
+ height: 0;
2876
+ width: 0;
2877
+ left: 22px;
2878
+ }
2879
+
2880
+ .flatpickr-calendar.rightMost:before,
2881
+ .flatpickr-calendar.arrowRight:before,
2882
+ .flatpickr-calendar.rightMost:after,
2883
+ .flatpickr-calendar.arrowRight:after {
2884
+ left: auto;
2885
+ right: 22px;
2886
+ }
2887
+
2888
+ .flatpickr-calendar.arrowCenter:before,
2889
+ .flatpickr-calendar.arrowCenter:after {
2890
+ left: 50%;
2891
+ right: 50%;
2892
+ }
2893
+
2894
+ .flatpickr-calendar:before {
2895
+ border-width: 5px;
2896
+ margin: 0 -5px;
2897
+ }
2898
+
2899
+ .flatpickr-calendar:after {
2900
+ border-width: 4px;
2901
+ margin: 0 -4px;
2902
+ }
2903
+
2904
+ .flatpickr-calendar.arrowTop:before,
2905
+ .flatpickr-calendar.arrowTop:after {
2906
+ bottom: 100%;
2907
+ }
2908
+
2909
+ .flatpickr-calendar.arrowTop:before {
2910
+ border-bottom-color: #eceef1;
2911
+ }
2912
+
2913
+ .flatpickr-calendar.arrowTop:after {
2914
+ border-bottom-color: #eceef1;
2915
+ }
2916
+
2917
+ .flatpickr-calendar.arrowBottom:before,
2918
+ .flatpickr-calendar.arrowBottom:after {
2919
+ top: 100%;
2920
+ }
2921
+
2922
+ .flatpickr-calendar.arrowBottom:before {
2923
+ border-top-color: #eceef1;
2924
+ }
2925
+
2926
+ .flatpickr-calendar.arrowBottom:after {
2927
+ border-top-color: #eceef1;
2928
+ }
2929
+
2930
+ .flatpickr-calendar:focus {
2931
+ outline: 0;
2932
+ }
2933
+
2934
+ .flatpickr-wrapper {
2935
+ position: relative;
2936
+ display: inline-block;
2937
+ }
2938
+
2939
+ .flatpickr-months {
2940
+ display: -webkit-box;
2941
+ display: -webkit-flex;
2942
+ display: -ms-flexbox;
2943
+ display: flex;
2944
+ }
2945
+
2946
+ .flatpickr-months .flatpickr-month {
2947
+ border-radius: 5px 5px 0 0;
2948
+ background: #eceef1;
2949
+ color: #5a6171;
2950
+ fill: #5a6171;
2951
+ height: 34px;
2952
+ line-height: 1;
2953
+ text-align: center;
2954
+ position: relative;
2955
+ -webkit-user-select: none;
2956
+ -moz-user-select: none;
2957
+ -ms-user-select: none;
2958
+ user-select: none;
2959
+ overflow: hidden;
2960
+ -webkit-box-flex: 1;
2961
+ -webkit-flex: 1;
2962
+ -ms-flex: 1;
2963
+ flex: 1;
2964
+ }
2965
+
2966
+ .flatpickr-months .flatpickr-prev-month,
2967
+ .flatpickr-months .flatpickr-next-month {
2968
+ -webkit-user-select: none;
2969
+ -moz-user-select: none;
2970
+ -ms-user-select: none;
2971
+ user-select: none;
2972
+ text-decoration: none;
2973
+ cursor: pointer;
2974
+ position: absolute;
2975
+ top: 0;
2976
+ height: 34px;
2977
+ padding: 10px;
2978
+ z-index: 3;
2979
+ color: #5a6171;
2980
+ fill: #5a6171;
2981
+ }
2982
+
2983
+ .flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
2984
+ .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
2985
+ display: none;
2986
+ }
2987
+
2988
+ .flatpickr-months .flatpickr-prev-month i,
2989
+ .flatpickr-months .flatpickr-next-month i {
2990
+ position: relative;
2991
+ }
2992
+
2993
+ .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
2994
+ .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
2995
+ /*
2996
+ /*rtl:begin:ignore*/
2997
+ /*
2998
+ */
2999
+ left: 0;
3000
+ /*
3001
+ /*rtl:end:ignore*/
3002
+ /*
3003
+ */
3004
+ }
3005
+
3006
+ /*
3007
+ /*rtl:begin:ignore*/
3008
+ /*
3009
+ /*rtl:end:ignore*/
3010
+ .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
3011
+ .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
3012
+ /*
3013
+ /*rtl:begin:ignore*/
3014
+ /*
3015
+ */
3016
+ right: 0;
3017
+ /*
3018
+ /*rtl:end:ignore*/
3019
+ /*
3020
+ */
3021
+ }
3022
+
3023
+ /*
3024
+ /*rtl:begin:ignore*/
3025
+ /*
3026
+ /*rtl:end:ignore*/
3027
+ .flatpickr-months .flatpickr-prev-month:hover,
3028
+ .flatpickr-months .flatpickr-next-month:hover {
3029
+ color: #bbb;
3030
+ }
3031
+
3032
+ .flatpickr-months .flatpickr-prev-month:hover svg,
3033
+ .flatpickr-months .flatpickr-next-month:hover svg {
3034
+ fill: #f64747;
3035
+ }
3036
+
3037
+ .flatpickr-months .flatpickr-prev-month svg,
3038
+ .flatpickr-months .flatpickr-next-month svg {
3039
+ width: 14px;
3040
+ height: 14px;
3041
+ }
3042
+
3043
+ .flatpickr-months .flatpickr-prev-month svg path,
3044
+ .flatpickr-months .flatpickr-next-month svg path {
3045
+ -webkit-transition: fill 0.1s;
3046
+ transition: fill 0.1s;
3047
+ fill: inherit;
3048
+ }
3049
+
3050
+ .numInputWrapper {
3051
+ position: relative;
3052
+ height: auto;
3053
+ }
3054
+
3055
+ .numInputWrapper input,
3056
+ .numInputWrapper span {
3057
+ display: inline-block;
3058
+ }
3059
+
3060
+ .numInputWrapper input {
3061
+ width: 100%;
3062
+ }
3063
+
3064
+ .numInputWrapper input::-ms-clear {
3065
+ display: none;
3066
+ }
3067
+
3068
+ .numInputWrapper input::-webkit-outer-spin-button,
3069
+ .numInputWrapper input::-webkit-inner-spin-button {
3070
+ margin: 0;
3071
+ -webkit-appearance: none;
3072
+ }
3073
+
3074
+ .numInputWrapper span {
3075
+ position: absolute;
3076
+ right: 0;
3077
+ width: 14px;
3078
+ padding: 0 4px 0 2px;
3079
+ height: 50%;
3080
+ line-height: 50%;
3081
+ opacity: 0;
3082
+ cursor: pointer;
3083
+ border: 1px solid rgba(72, 72, 72, 0.15);
3084
+ -webkit-box-sizing: border-box;
3085
+ box-sizing: border-box;
3086
+ }
3087
+
3088
+ .numInputWrapper span:hover {
3089
+ background: rgba(0, 0, 0, 0.1);
3090
+ }
3091
+
3092
+ .numInputWrapper span:active {
3093
+ background: rgba(0, 0, 0, 0.2);
3094
+ }
3095
+
3096
+ .numInputWrapper span:after {
3097
+ display: block;
3098
+ content: "";
3099
+ position: absolute;
3100
+ }
3101
+
3102
+ .numInputWrapper span.arrowUp {
3103
+ top: 0;
3104
+ border-bottom: 0;
3105
+ }
3106
+
3107
+ .numInputWrapper span.arrowUp:after {
3108
+ border-left: 4px solid transparent;
3109
+ border-right: 4px solid transparent;
3110
+ border-bottom: 4px solid rgba(72, 72, 72, 0.6);
3111
+ top: 26%;
3112
+ }
3113
+
3114
+ .numInputWrapper span.arrowDown {
3115
+ top: 50%;
3116
+ }
3117
+
3118
+ .numInputWrapper span.arrowDown:after {
3119
+ border-left: 4px solid transparent;
3120
+ border-right: 4px solid transparent;
3121
+ border-top: 4px solid rgba(72, 72, 72, 0.6);
3122
+ top: 40%;
3123
+ }
3124
+
3125
+ .numInputWrapper span svg {
3126
+ width: inherit;
3127
+ height: auto;
3128
+ }
3129
+
3130
+ .numInputWrapper span svg path {
3131
+ fill: rgba(90, 97, 113, 0.5);
3132
+ }
3133
+
3134
+ .numInputWrapper:hover {
3135
+ background: rgba(0, 0, 0, 0.05);
3136
+ }
3137
+
3138
+ .numInputWrapper:hover span {
3139
+ opacity: 1;
3140
+ }
3141
+
3142
+ .flatpickr-current-month {
3143
+ font-size: 135%;
3144
+ line-height: inherit;
3145
+ font-weight: 300;
3146
+ color: inherit;
3147
+ position: absolute;
3148
+ width: 75%;
3149
+ left: 12.5%;
3150
+ padding: 7.48px 0 0 0;
3151
+ line-height: 1;
3152
+ height: 34px;
3153
+ display: inline-block;
3154
+ text-align: center;
3155
+ -webkit-transform: translate3d(0px, 0px, 0px);
3156
+ transform: translate3d(0px, 0px, 0px);
3157
+ }
3158
+
3159
+ .flatpickr-current-month span.cur-month {
3160
+ font-family: inherit;
3161
+ font-weight: 700;
3162
+ color: inherit;
3163
+ display: inline-block;
3164
+ margin-left: 0.5ch;
3165
+ padding: 0;
3166
+ }
3167
+
3168
+ .flatpickr-current-month span.cur-month:hover {
3169
+ background: rgba(0, 0, 0, 0.05);
3170
+ }
3171
+
3172
+ .flatpickr-current-month .numInputWrapper {
3173
+ width: 6ch;
3174
+ width: 7ch\0 ;
3175
+ display: inline-block;
3176
+ }
3177
+
3178
+ .flatpickr-current-month .numInputWrapper span.arrowUp:after {
3179
+ border-bottom-color: #5a6171;
3180
+ }
3181
+
3182
+ .flatpickr-current-month .numInputWrapper span.arrowDown:after {
3183
+ border-top-color: #5a6171;
3184
+ }
3185
+
3186
+ .flatpickr-current-month input.cur-year {
3187
+ background: transparent;
3188
+ -webkit-box-sizing: border-box;
3189
+ box-sizing: border-box;
3190
+ color: inherit;
3191
+ cursor: text;
3192
+ padding: 0 0 0 0.5ch;
3193
+ margin: 0;
3194
+ display: inline-block;
3195
+ font-size: inherit;
3196
+ font-family: inherit;
3197
+ font-weight: 300;
3198
+ line-height: inherit;
3199
+ height: auto;
3200
+ border: 0;
3201
+ border-radius: 0;
3202
+ vertical-align: initial;
3203
+ -webkit-appearance: textfield;
3204
+ -moz-appearance: textfield;
3205
+ appearance: textfield;
3206
+ }
3207
+
3208
+ .flatpickr-current-month input.cur-year:focus {
3209
+ outline: 0;
3210
+ }
3211
+
3212
+ .flatpickr-current-month input.cur-year[disabled],
3213
+ .flatpickr-current-month input.cur-year[disabled]:hover {
3214
+ font-size: 100%;
3215
+ color: rgba(90, 97, 113, 0.5);
3216
+ background: transparent;
3217
+ pointer-events: none;
3218
+ }
3219
+
3220
+ .flatpickr-current-month .flatpickr-monthDropdown-months {
3221
+ appearance: menulist;
3222
+ background: #eceef1;
3223
+ border: none;
3224
+ border-radius: 0;
3225
+ box-sizing: border-box;
3226
+ color: inherit;
3227
+ cursor: pointer;
3228
+ font-size: inherit;
3229
+ font-family: inherit;
3230
+ font-weight: 300;
3231
+ height: auto;
3232
+ line-height: inherit;
3233
+ margin: -1px 0 0 0;
3234
+ outline: none;
3235
+ padding: 0 0 0 0.5ch;
3236
+ position: relative;
3237
+ vertical-align: initial;
3238
+ -webkit-box-sizing: border-box;
3239
+ -webkit-appearance: menulist;
3240
+ -moz-appearance: menulist;
3241
+ width: auto;
3242
+ }
3243
+
3244
+ .flatpickr-current-month .flatpickr-monthDropdown-months:focus,
3245
+ .flatpickr-current-month .flatpickr-monthDropdown-months:active {
3246
+ outline: none;
3247
+ }
3248
+
3249
+ .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
3250
+ background: rgba(0, 0, 0, 0.05);
3251
+ }
3252
+
3253
+ .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
3254
+ background-color: #eceef1;
3255
+ outline: none;
3256
+ padding: 0;
3257
+ }
3258
+
3259
+ .flatpickr-weekdays {
3260
+ background: #eceef1;
3261
+ text-align: center;
3262
+ overflow: hidden;
3263
+ width: 100%;
3264
+ display: -webkit-box;
3265
+ display: -webkit-flex;
3266
+ display: -ms-flexbox;
3267
+ display: flex;
3268
+ -webkit-box-align: center;
3269
+ -webkit-align-items: center;
3270
+ -ms-flex-align: center;
3271
+ align-items: center;
3272
+ height: 28px;
3273
+ }
3274
+
3275
+ .flatpickr-weekdays .flatpickr-weekdaycontainer {
3276
+ display: -webkit-box;
3277
+ display: -webkit-flex;
3278
+ display: -ms-flexbox;
3279
+ display: flex;
3280
+ -webkit-box-flex: 1;
3281
+ -webkit-flex: 1;
3282
+ -ms-flex: 1;
3283
+ flex: 1;
3284
+ }
3285
+
3286
+ span.flatpickr-weekday {
3287
+ cursor: default;
3288
+ font-size: 90%;
3289
+ background: #eceef1;
3290
+ color: #5a6171;
3291
+ line-height: 1;
3292
+ margin: 0;
3293
+ text-align: center;
3294
+ display: block;
3295
+ -webkit-box-flex: 1;
3296
+ -webkit-flex: 1;
3297
+ -ms-flex: 1;
3298
+ flex: 1;
3299
+ font-weight: bolder;
3300
+ }
3301
+
3302
+ .dayContainer,
3303
+ .flatpickr-weeks {
3304
+ padding: 1px 0 0 0;
3305
+ }
3306
+
3307
+ .flatpickr-days {
3308
+ position: relative;
3309
+ overflow: hidden;
3310
+ display: -webkit-box;
3311
+ display: -webkit-flex;
3312
+ display: -ms-flexbox;
3313
+ display: flex;
3314
+ -webkit-box-align: start;
3315
+ -webkit-align-items: flex-start;
3316
+ -ms-flex-align: start;
3317
+ align-items: flex-start;
3318
+ width: 307.875px;
3319
+ border-left: 1px solid #eceef1;
3320
+ border-right: 1px solid #eceef1;
3321
+ }
3322
+
3323
+ .flatpickr-days:focus {
3324
+ outline: 0;
3325
+ }
3326
+
3327
+ .dayContainer {
3328
+ padding: 0;
3329
+ outline: 0;
3330
+ text-align: left;
3331
+ width: 307.875px;
3332
+ min-width: 307.875px;
3333
+ max-width: 307.875px;
3334
+ -webkit-box-sizing: border-box;
3335
+ box-sizing: border-box;
3336
+ display: inline-block;
3337
+ display: -ms-flexbox;
3338
+ display: -webkit-box;
3339
+ display: -webkit-flex;
3340
+ display: flex;
3341
+ -webkit-flex-wrap: wrap;
3342
+ flex-wrap: wrap;
3343
+ -ms-flex-wrap: wrap;
3344
+ -ms-flex-pack: justify;
3345
+ -webkit-justify-content: space-around;
3346
+ justify-content: space-around;
3347
+ -webkit-transform: translate3d(0px, 0px, 0px);
3348
+ transform: translate3d(0px, 0px, 0px);
3349
+ opacity: 1;
3350
+ }
3351
+
3352
+ .dayContainer + .dayContainer {
3353
+ -webkit-box-shadow: -1px 0 0 #eceef1;
3354
+ box-shadow: -1px 0 0 #eceef1;
3355
+ }
3356
+
3357
+ .flatpickr-day {
3358
+ background: none;
3359
+ border: 1px solid transparent;
3360
+ border-radius: 150px;
3361
+ -webkit-box-sizing: border-box;
3362
+ box-sizing: border-box;
3363
+ color: #484848;
3364
+ cursor: pointer;
3365
+ font-weight: 400;
3366
+ width: 14.2857143%;
3367
+ -webkit-flex-basis: 14.2857143%;
3368
+ -ms-flex-preferred-size: 14.2857143%;
3369
+ flex-basis: 14.2857143%;
3370
+ max-width: 39px;
3371
+ height: 39px;
3372
+ line-height: 39px;
3373
+ margin: 0;
3374
+ display: inline-block;
3375
+ position: relative;
3376
+ -webkit-box-pack: center;
3377
+ -webkit-justify-content: center;
3378
+ -ms-flex-pack: center;
3379
+ justify-content: center;
3380
+ text-align: center;
3381
+ }
3382
+
3383
+ .flatpickr-day.inRange,
3384
+ .flatpickr-day.prevMonthDay.inRange,
3385
+ .flatpickr-day.nextMonthDay.inRange,
3386
+ .flatpickr-day.today.inRange,
3387
+ .flatpickr-day.prevMonthDay.today.inRange,
3388
+ .flatpickr-day.nextMonthDay.today.inRange,
3389
+ .flatpickr-day:hover,
3390
+ .flatpickr-day.prevMonthDay:hover,
3391
+ .flatpickr-day.nextMonthDay:hover,
3392
+ .flatpickr-day:focus,
3393
+ .flatpickr-day.prevMonthDay:focus,
3394
+ .flatpickr-day.nextMonthDay:focus {
3395
+ cursor: pointer;
3396
+ outline: 0;
3397
+ background: #e2e2e2;
3398
+ border-color: #e2e2e2;
3399
+ }
3400
+
3401
+ .flatpickr-day.today {
3402
+ border-color: #bbb;
3403
+ }
3404
+
3405
+ .flatpickr-day.today:hover,
3406
+ .flatpickr-day.today:focus {
3407
+ border-color: #bbb;
3408
+ background: #bbb;
3409
+ color: #fff;
3410
+ }
3411
+
3412
+ .flatpickr-day.selected,
3413
+ .flatpickr-day.startRange,
3414
+ .flatpickr-day.endRange,
3415
+ .flatpickr-day.selected.inRange,
3416
+ .flatpickr-day.startRange.inRange,
3417
+ .flatpickr-day.endRange.inRange,
3418
+ .flatpickr-day.selected:focus,
3419
+ .flatpickr-day.startRange:focus,
3420
+ .flatpickr-day.endRange:focus,
3421
+ .flatpickr-day.selected:hover,
3422
+ .flatpickr-day.startRange:hover,
3423
+ .flatpickr-day.endRange:hover,
3424
+ .flatpickr-day.selected.prevMonthDay,
3425
+ .flatpickr-day.startRange.prevMonthDay,
3426
+ .flatpickr-day.endRange.prevMonthDay,
3427
+ .flatpickr-day.selected.nextMonthDay,
3428
+ .flatpickr-day.startRange.nextMonthDay,
3429
+ .flatpickr-day.endRange.nextMonthDay {
3430
+ background: #ff5a5f;
3431
+ -webkit-box-shadow: none;
3432
+ box-shadow: none;
3433
+ color: #fff;
3434
+ border-color: #ff5a5f;
3435
+ }
3436
+
3437
+ .flatpickr-day.selected.startRange,
3438
+ .flatpickr-day.startRange.startRange,
3439
+ .flatpickr-day.endRange.startRange {
3440
+ border-radius: 50px 0 0 50px;
3441
+ }
3442
+
3443
+ .flatpickr-day.selected.endRange,
3444
+ .flatpickr-day.startRange.endRange,
3445
+ .flatpickr-day.endRange.endRange {
3446
+ border-radius: 0 50px 50px 0;
3447
+ }
3448
+
3449
+ .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
3450
+ .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
3451
+ .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
3452
+ -webkit-box-shadow: -10px 0 0 #ff5a5f;
3453
+ box-shadow: -10px 0 0 #ff5a5f;
3454
+ }
3455
+
3456
+ .flatpickr-day.selected.startRange.endRange,
3457
+ .flatpickr-day.startRange.startRange.endRange,
3458
+ .flatpickr-day.endRange.startRange.endRange {
3459
+ border-radius: 50px;
3460
+ }
3461
+
3462
+ .flatpickr-day.inRange {
3463
+ border-radius: 0;
3464
+ -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
3465
+ box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
3466
+ }
3467
+
3468
+ .flatpickr-day.flatpickr-disabled,
3469
+ .flatpickr-day.flatpickr-disabled:hover,
3470
+ .flatpickr-day.prevMonthDay,
3471
+ .flatpickr-day.nextMonthDay,
3472
+ .flatpickr-day.notAllowed,
3473
+ .flatpickr-day.notAllowed.prevMonthDay,
3474
+ .flatpickr-day.notAllowed.nextMonthDay {
3475
+ color: rgba(72, 72, 72, 0.3);
3476
+ background: transparent;
3477
+ border-color: transparent;
3478
+ cursor: default;
3479
+ }
3480
+
3481
+ .flatpickr-day.flatpickr-disabled,
3482
+ .flatpickr-day.flatpickr-disabled:hover {
3483
+ cursor: not-allowed;
3484
+ color: rgba(72, 72, 72, 0.1);
3485
+ }
3486
+
3487
+ .flatpickr-day.week.selected {
3488
+ border-radius: 0;
3489
+ -webkit-box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;
3490
+ box-shadow: -5px 0 0 #ff5a5f, 5px 0 0 #ff5a5f;
3491
+ }
3492
+
3493
+ .flatpickr-day.hidden {
3494
+ visibility: hidden;
3495
+ }
3496
+
3497
+ .rangeMode .flatpickr-day {
3498
+ margin-top: 1px;
3499
+ }
3500
+
3501
+ .flatpickr-weekwrapper {
3502
+ float: left;
3503
+ }
3504
+
3505
+ .flatpickr-weekwrapper .flatpickr-weeks {
3506
+ padding: 0 12px;
3507
+ border-left: 1px solid #eceef1;
3508
+ }
3509
+
3510
+ .flatpickr-weekwrapper .flatpickr-weekday {
3511
+ float: none;
3512
+ width: 100%;
3513
+ line-height: 28px;
3514
+ }
3515
+
3516
+ .flatpickr-weekwrapper span.flatpickr-day,
3517
+ .flatpickr-weekwrapper span.flatpickr-day:hover {
3518
+ display: block;
3519
+ width: 100%;
3520
+ max-width: none;
3521
+ color: rgba(72, 72, 72, 0.3);
3522
+ background: transparent;
3523
+ cursor: default;
3524
+ border: none;
3525
+ }
3526
+
3527
+ .flatpickr-innerContainer {
3528
+ display: block;
3529
+ display: -webkit-box;
3530
+ display: -webkit-flex;
3531
+ display: -ms-flexbox;
3532
+ display: flex;
3533
+ -webkit-box-sizing: border-box;
3534
+ box-sizing: border-box;
3535
+ overflow: hidden;
3536
+ background: #fff;
3537
+ border-bottom: 1px solid #eceef1;
3538
+ }
3539
+
3540
+ .flatpickr-rContainer {
3541
+ display: inline-block;
3542
+ padding: 0;
3543
+ -webkit-box-sizing: border-box;
3544
+ box-sizing: border-box;
3545
+ }
3546
+
3547
+ .flatpickr-time {
3548
+ text-align: center;
3549
+ outline: 0;
3550
+ display: block;
3551
+ height: 0;
3552
+ line-height: 40px;
3553
+ max-height: 40px;
3554
+ -webkit-box-sizing: border-box;
3555
+ box-sizing: border-box;
3556
+ overflow: hidden;
3557
+ display: -webkit-box;
3558
+ display: -webkit-flex;
3559
+ display: -ms-flexbox;
3560
+ display: flex;
3561
+ background: #fff;
3562
+ border-radius: 0 0 5px 5px;
3563
+ }
3564
+
3565
+ .flatpickr-time:after {
3566
+ content: "";
3567
+ display: table;
3568
+ clear: both;
3569
+ }
3570
+
3571
+ .flatpickr-time .numInputWrapper {
3572
+ -webkit-box-flex: 1;
3573
+ -webkit-flex: 1;
3574
+ -ms-flex: 1;
3575
+ flex: 1;
3576
+ width: 40%;
3577
+ height: 40px;
3578
+ float: left;
3579
+ }
3580
+
3581
+ .flatpickr-time .numInputWrapper span.arrowUp:after {
3582
+ border-bottom-color: #484848;
3583
+ }
3584
+
3585
+ .flatpickr-time .numInputWrapper span.arrowDown:after {
3586
+ border-top-color: #484848;
3587
+ }
3588
+
3589
+ .flatpickr-time.hasSeconds .numInputWrapper {
3590
+ width: 26%;
3591
+ }
3592
+
3593
+ .flatpickr-time.time24hr .numInputWrapper {
3594
+ width: 49%;
3595
+ }
3596
+
3597
+ .flatpickr-time input {
3598
+ background: transparent;
3599
+ -webkit-box-shadow: none;
3600
+ box-shadow: none;
3601
+ border: 0;
3602
+ border-radius: 0;
3603
+ text-align: center;
3604
+ margin: 0;
3605
+ padding: 0;
3606
+ height: inherit;
3607
+ line-height: inherit;
3608
+ color: #484848;
3609
+ font-size: 14px;
3610
+ position: relative;
3611
+ -webkit-box-sizing: border-box;
3612
+ box-sizing: border-box;
3613
+ -webkit-appearance: textfield;
3614
+ -moz-appearance: textfield;
3615
+ appearance: textfield;
3616
+ }
3617
+
3618
+ .flatpickr-time input.flatpickr-hour {
3619
+ font-weight: bold;
3620
+ }
3621
+
3622
+ .flatpickr-time input.flatpickr-minute,
3623
+ .flatpickr-time input.flatpickr-second {
3624
+ font-weight: 400;
3625
+ }
3626
+
3627
+ .flatpickr-time input:focus {
3628
+ outline: 0;
3629
+ border: 0;
3630
+ }
3631
+
3632
+ .flatpickr-time .flatpickr-time-separator,
3633
+ .flatpickr-time .flatpickr-am-pm {
3634
+ height: inherit;
3635
+ float: left;
3636
+ line-height: inherit;
3637
+ color: #484848;
3638
+ font-weight: bold;
3639
+ width: 2%;
3640
+ -webkit-user-select: none;
3641
+ -moz-user-select: none;
3642
+ -ms-user-select: none;
3643
+ user-select: none;
3644
+ -webkit-align-self: center;
3645
+ -ms-flex-item-align: center;
3646
+ align-self: center;
3647
+ }
3648
+
3649
+ .flatpickr-time .flatpickr-am-pm {
3650
+ outline: 0;
3651
+ width: 18%;
3652
+ cursor: pointer;
3653
+ text-align: center;
3654
+ font-weight: 400;
3655
+ }
3656
+
3657
+ .flatpickr-time input:hover,
3658
+ .flatpickr-time .flatpickr-am-pm:hover,
3659
+ .flatpickr-time input:focus,
3660
+ .flatpickr-time .flatpickr-am-pm:focus {
3661
+ background: #eaeaea;
3662
+ }
3663
+
3664
+ .flatpickr-input[readonly] {
3665
+ cursor: pointer;
3666
+ }
3667
+
3668
+ @-webkit-keyframes fpFadeInDown {
3669
+ from {
3670
+ opacity: 0;
3671
+ -webkit-transform: translate3d(0, -20px, 0);
3672
+ transform: translate3d(0, -20px, 0);
3673
+ }
3674
+ to {
3675
+ opacity: 1;
3676
+ -webkit-transform: translate3d(0, 0, 0);
3677
+ transform: translate3d(0, 0, 0);
3678
+ }
3679
+ }
3680
+ @keyframes fpFadeInDown {
3681
+ from {
3682
+ opacity: 0;
3683
+ -webkit-transform: translate3d(0, -20px, 0);
3684
+ transform: translate3d(0, -20px, 0);
3685
+ }
3686
+ to {
3687
+ opacity: 1;
3688
+ -webkit-transform: translate3d(0, 0, 0);
3689
+ transform: translate3d(0, 0, 0);
3690
+ }
3691
+ }
3692
+ span.flatpickr-day.selected {
3693
+ font-weight: bold;
3694
+ }