@sio-group/form-react 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 (45) hide show
  1. package/CHANGELOG.md +97 -0
  2. package/README.md +783 -0
  3. package/ROADMAP.md +21 -0
  4. package/dist/index.cjs +1919 -0
  5. package/dist/index.d.cts +284 -0
  6. package/dist/index.d.ts +284 -0
  7. package/dist/index.js +1878 -0
  8. package/dist/styles/components/button.css +244 -0
  9. package/dist/styles/components/button.css.map +1 -0
  10. package/dist/styles/components/checkbox.css +90 -0
  11. package/dist/styles/components/checkbox.css.map +1 -0
  12. package/dist/styles/components/color.css +31 -0
  13. package/dist/styles/components/color.css.map +1 -0
  14. package/dist/styles/components/form-field.css +36 -0
  15. package/dist/styles/components/form-field.css.map +1 -0
  16. package/dist/styles/components/form-states.css +80 -0
  17. package/dist/styles/components/form-states.css.map +1 -0
  18. package/dist/styles/components/grid.css +818 -0
  19. package/dist/styles/components/grid.css.map +1 -0
  20. package/dist/styles/components/input.css +112 -0
  21. package/dist/styles/components/input.css.map +1 -0
  22. package/dist/styles/components/link.css +113 -0
  23. package/dist/styles/components/link.css.map +1 -0
  24. package/dist/styles/components/radio.css +104 -0
  25. package/dist/styles/components/radio.css.map +1 -0
  26. package/dist/styles/components/range.css +54 -0
  27. package/dist/styles/components/range.css.map +1 -0
  28. package/dist/styles/components/select.css +37 -0
  29. package/dist/styles/components/select.css.map +1 -0
  30. package/dist/styles/components/upload.css +54 -0
  31. package/dist/styles/components/upload.css.map +1 -0
  32. package/dist/styles/index.css +1733 -0
  33. package/dist/styles/index.css.map +1 -0
  34. package/package.json +42 -0
  35. package/screenshots/contact-form.png +0 -0
  36. package/screenshots/file-input.png +0 -0
  37. package/screenshots/invalid-username.png +0 -0
  38. package/screenshots/number-field.png +0 -0
  39. package/screenshots/radio-field.png +0 -0
  40. package/screenshots/range-field.png +0 -0
  41. package/screenshots/registration-form.png +0 -0
  42. package/screenshots/select-field.png +0 -0
  43. package/screenshots/textarea-field.png +0 -0
  44. package/tsconfig.tsbuildinfo +1 -0
  45. package/tsup.config.ts +8 -0
@@ -0,0 +1,1733 @@
1
+ :root {
2
+ --sio-color-white: #ffffff;
3
+ --sio-color-black: #000000;
4
+ --sio-color-gray: #655f5d;
5
+ --sio-color-light-gray: #c6c6c6;
6
+ --sio-color-primary: #3B82F6;
7
+ --sio-color-success: #10B981;
8
+ --sio-color-error: #EF4444;
9
+ --sio-color-warning: #F59E0B;
10
+ --sio-color-info: #06B6D4;
11
+ --sio-color-primary-rgb: 59, 130, 246;
12
+ --sio-color-error-rgb: 239, 68, 68;
13
+ --sio-form-label: var(--sio-color-primary);
14
+ --sio-form-border: var(--sio-color-light-gray);
15
+ --sio-form-bg: var(--sio-color-white);
16
+ --sio-btn-primary-bg: var(--sio-color-primary);
17
+ --sio-btn-primary-border: var(--sio-color-primary);
18
+ --sio-btn-primary-text: var(--sio-color-white);
19
+ --sio-btn-secondary-bg: transparent;
20
+ --sio-btn-secondary-border: var(--sio-color-primary);
21
+ --sio-btn-secondary-text: var(--sio-color-primary);
22
+ --sio-btn-link-bg: transparent;
23
+ --sio-btn-link-border: transparent;
24
+ --sio-btn-link-text: var(--sio-color-primary);
25
+ }
26
+
27
+ :root {
28
+ --sio-form-border-radius: 3px;
29
+ --sio-form-padding-x: 10px;
30
+ --sio-form-padding-y: 5px;
31
+ }
32
+
33
+ @keyframes spin {
34
+ from {
35
+ transform: rotate(0deg);
36
+ }
37
+ to {
38
+ transform: rotate(360deg);
39
+ }
40
+ }
41
+ :root {
42
+ --sio-grid-gutter: 15px;
43
+ }
44
+
45
+ *,
46
+ *::after,
47
+ *::before {
48
+ box-sizing: border-box;
49
+ }
50
+
51
+ .sio-row {
52
+ display: flex;
53
+ flex-wrap: wrap;
54
+ margin-left: calc(var(--sio-grid-gutter) * -1);
55
+ margin-right: calc(var(--sio-grid-gutter) * -1);
56
+ }
57
+
58
+ .sio-row .no-gutters {
59
+ margin-right: 0;
60
+ margin-left: 0;
61
+ }
62
+
63
+ .sio-row .no-gutters > .sio-col,
64
+ .sio-row .no-gutters > [class*=sio-col-] {
65
+ padding-right: 0;
66
+ padding-left: 0;
67
+ }
68
+
69
+ .sio-col-xl,
70
+ .sio-col-xl-auto, .sio-col-xl-12, .sio-col-xl-11, .sio-col-xl-10, .sio-col-xl-9, .sio-col-xl-8, .sio-col-xl-7, .sio-col-xl-6, .sio-col-xl-5, .sio-col-xl-4, .sio-col-xl-3, .sio-col-xl-2, .sio-col-xl-1, .sio-col-lg,
71
+ .sio-col-lg-auto, .sio-col-lg-12, .sio-col-lg-11, .sio-col-lg-10, .sio-col-lg-9, .sio-col-lg-8, .sio-col-lg-7, .sio-col-lg-6, .sio-col-lg-5, .sio-col-lg-4, .sio-col-lg-3, .sio-col-lg-2, .sio-col-lg-1, .sio-col-md,
72
+ .sio-col-md-auto, .sio-col-md-12, .sio-col-md-11, .sio-col-md-10, .sio-col-md-9, .sio-col-md-8, .sio-col-md-7, .sio-col-md-6, .sio-col-md-5, .sio-col-md-4, .sio-col-md-3, .sio-col-md-2, .sio-col-md-1, .sio-col-sm,
73
+ .sio-col-sm-auto, .sio-col-sm-12, .sio-col-sm-11, .sio-col-sm-10, .sio-col-sm-9, .sio-col-sm-8, .sio-col-sm-7, .sio-col-sm-6, .sio-col-sm-5, .sio-col-sm-4, .sio-col-sm-3, .sio-col-sm-2, .sio-col-sm-1, .sio-col-xs,
74
+ .sio-col-xs-auto, .sio-col-xs-12, .sio-col-xs-11, .sio-col-xs-10, .sio-col-xs-9, .sio-col-xs-8, .sio-col-xs-7, .sio-col-xs-6, .sio-col-xs-5, .sio-col-xs-4, .sio-col-xs-3, .sio-col-xs-2, .sio-col-xs-1 {
75
+ position: relative;
76
+ width: 100%;
77
+ padding-left: var(--sio-grid-gutter);
78
+ padding-right: var(--sio-grid-gutter);
79
+ }
80
+
81
+ .sio-col-xs {
82
+ flex-basis: 0;
83
+ flex-grow: 1;
84
+ max-width: 100%;
85
+ }
86
+
87
+ .sio-col-xs-auto {
88
+ flex: 0 0 auto;
89
+ width: auto;
90
+ max-width: 100%;
91
+ }
92
+
93
+ .sio-col-xs-1 {
94
+ flex: 0 0 8.3333333333%;
95
+ max-width: 8.3333333333%;
96
+ }
97
+
98
+ .sio-col-xs-2 {
99
+ flex: 0 0 16.6666666667%;
100
+ max-width: 16.6666666667%;
101
+ }
102
+
103
+ .sio-col-xs-3 {
104
+ flex: 0 0 25%;
105
+ max-width: 25%;
106
+ }
107
+
108
+ .sio-col-xs-4 {
109
+ flex: 0 0 33.3333333333%;
110
+ max-width: 33.3333333333%;
111
+ }
112
+
113
+ .sio-col-xs-5 {
114
+ flex: 0 0 41.6666666667%;
115
+ max-width: 41.6666666667%;
116
+ }
117
+
118
+ .sio-col-xs-6 {
119
+ flex: 0 0 50%;
120
+ max-width: 50%;
121
+ }
122
+
123
+ .sio-col-xs-7 {
124
+ flex: 0 0 58.3333333333%;
125
+ max-width: 58.3333333333%;
126
+ }
127
+
128
+ .sio-col-xs-8 {
129
+ flex: 0 0 66.6666666667%;
130
+ max-width: 66.6666666667%;
131
+ }
132
+
133
+ .sio-col-xs-9 {
134
+ flex: 0 0 75%;
135
+ max-width: 75%;
136
+ }
137
+
138
+ .sio-col-xs-10 {
139
+ flex: 0 0 83.3333333333%;
140
+ max-width: 83.3333333333%;
141
+ }
142
+
143
+ .sio-col-xs-11 {
144
+ flex: 0 0 91.6666666667%;
145
+ max-width: 91.6666666667%;
146
+ }
147
+
148
+ .sio-col-xs-12 {
149
+ flex: 0 0 100%;
150
+ max-width: 100%;
151
+ }
152
+
153
+ .sio-order-xs-first {
154
+ order: -1;
155
+ }
156
+
157
+ .sio-order-xs-last {
158
+ order: 13;
159
+ }
160
+
161
+ .sio-order-xs-0 {
162
+ order: 0;
163
+ }
164
+
165
+ .sio-order-xs-1 {
166
+ order: 1;
167
+ }
168
+
169
+ .sio-order-xs-2 {
170
+ order: 2;
171
+ }
172
+
173
+ .sio-order-xs-3 {
174
+ order: 3;
175
+ }
176
+
177
+ .sio-order-xs-4 {
178
+ order: 4;
179
+ }
180
+
181
+ .sio-order-xs-5 {
182
+ order: 5;
183
+ }
184
+
185
+ .sio-order-xs-6 {
186
+ order: 6;
187
+ }
188
+
189
+ .sio-order-xs-7 {
190
+ order: 7;
191
+ }
192
+
193
+ .sio-order-xs-8 {
194
+ order: 8;
195
+ }
196
+
197
+ .sio-order-xs-9 {
198
+ order: 9;
199
+ }
200
+
201
+ .sio-order-xs-10 {
202
+ order: 10;
203
+ }
204
+
205
+ .sio-order-xs-11 {
206
+ order: 11;
207
+ }
208
+
209
+ .sio-order-xs-12 {
210
+ order: 12;
211
+ }
212
+
213
+ .sio-offset-xs-0 {
214
+ margin-left: 0;
215
+ }
216
+
217
+ .sio-offset-xs-1 {
218
+ margin-left: 8.3333333333%;
219
+ }
220
+
221
+ .sio-offset-xs-2 {
222
+ margin-left: 16.6666666667%;
223
+ }
224
+
225
+ .sio-offset-xs-3 {
226
+ margin-left: 25%;
227
+ }
228
+
229
+ .sio-offset-xs-4 {
230
+ margin-left: 33.3333333333%;
231
+ }
232
+
233
+ .sio-offset-xs-5 {
234
+ margin-left: 41.6666666667%;
235
+ }
236
+
237
+ .sio-offset-xs-6 {
238
+ margin-left: 50%;
239
+ }
240
+
241
+ .sio-offset-xs-7 {
242
+ margin-left: 58.3333333333%;
243
+ }
244
+
245
+ .sio-offset-xs-8 {
246
+ margin-left: 66.6666666667%;
247
+ }
248
+
249
+ .sio-offset-xs-9 {
250
+ margin-left: 75%;
251
+ }
252
+
253
+ .sio-offset-xs-10 {
254
+ margin-left: 83.3333333333%;
255
+ }
256
+
257
+ .sio-offset-xs-11 {
258
+ margin-left: 91.6666666667%;
259
+ }
260
+
261
+ .sio-d-xs-none {
262
+ display: none;
263
+ }
264
+
265
+ .d-xs-block {
266
+ display: block;
267
+ }
268
+
269
+ @media (min-width: 576px) {
270
+ .sio-col-sm {
271
+ flex-basis: 0;
272
+ flex-grow: 1;
273
+ max-width: 100%;
274
+ }
275
+ .sio-col-sm-auto {
276
+ flex: 0 0 auto;
277
+ width: auto;
278
+ max-width: 100%;
279
+ }
280
+ .sio-col-sm-1 {
281
+ flex: 0 0 8.3333333333%;
282
+ max-width: 8.3333333333%;
283
+ }
284
+ .sio-col-sm-2 {
285
+ flex: 0 0 16.6666666667%;
286
+ max-width: 16.6666666667%;
287
+ }
288
+ .sio-col-sm-3 {
289
+ flex: 0 0 25%;
290
+ max-width: 25%;
291
+ }
292
+ .sio-col-sm-4 {
293
+ flex: 0 0 33.3333333333%;
294
+ max-width: 33.3333333333%;
295
+ }
296
+ .sio-col-sm-5 {
297
+ flex: 0 0 41.6666666667%;
298
+ max-width: 41.6666666667%;
299
+ }
300
+ .sio-col-sm-6 {
301
+ flex: 0 0 50%;
302
+ max-width: 50%;
303
+ }
304
+ .sio-col-sm-7 {
305
+ flex: 0 0 58.3333333333%;
306
+ max-width: 58.3333333333%;
307
+ }
308
+ .sio-col-sm-8 {
309
+ flex: 0 0 66.6666666667%;
310
+ max-width: 66.6666666667%;
311
+ }
312
+ .sio-col-sm-9 {
313
+ flex: 0 0 75%;
314
+ max-width: 75%;
315
+ }
316
+ .sio-col-sm-10 {
317
+ flex: 0 0 83.3333333333%;
318
+ max-width: 83.3333333333%;
319
+ }
320
+ .sio-col-sm-11 {
321
+ flex: 0 0 91.6666666667%;
322
+ max-width: 91.6666666667%;
323
+ }
324
+ .sio-col-sm-12 {
325
+ flex: 0 0 100%;
326
+ max-width: 100%;
327
+ }
328
+ .sio-order-sm-first {
329
+ order: -1;
330
+ }
331
+ .sio-order-sm-last {
332
+ order: 13;
333
+ }
334
+ .sio-order-sm-0 {
335
+ order: 0;
336
+ }
337
+ .sio-order-sm-1 {
338
+ order: 1;
339
+ }
340
+ .sio-order-sm-2 {
341
+ order: 2;
342
+ }
343
+ .sio-order-sm-3 {
344
+ order: 3;
345
+ }
346
+ .sio-order-sm-4 {
347
+ order: 4;
348
+ }
349
+ .sio-order-sm-5 {
350
+ order: 5;
351
+ }
352
+ .sio-order-sm-6 {
353
+ order: 6;
354
+ }
355
+ .sio-order-sm-7 {
356
+ order: 7;
357
+ }
358
+ .sio-order-sm-8 {
359
+ order: 8;
360
+ }
361
+ .sio-order-sm-9 {
362
+ order: 9;
363
+ }
364
+ .sio-order-sm-10 {
365
+ order: 10;
366
+ }
367
+ .sio-order-sm-11 {
368
+ order: 11;
369
+ }
370
+ .sio-order-sm-12 {
371
+ order: 12;
372
+ }
373
+ .sio-offset-sm-0 {
374
+ margin-left: 0;
375
+ }
376
+ .sio-offset-sm-1 {
377
+ margin-left: 8.3333333333%;
378
+ }
379
+ .sio-offset-sm-2 {
380
+ margin-left: 16.6666666667%;
381
+ }
382
+ .sio-offset-sm-3 {
383
+ margin-left: 25%;
384
+ }
385
+ .sio-offset-sm-4 {
386
+ margin-left: 33.3333333333%;
387
+ }
388
+ .sio-offset-sm-5 {
389
+ margin-left: 41.6666666667%;
390
+ }
391
+ .sio-offset-sm-6 {
392
+ margin-left: 50%;
393
+ }
394
+ .sio-offset-sm-7 {
395
+ margin-left: 58.3333333333%;
396
+ }
397
+ .sio-offset-sm-8 {
398
+ margin-left: 66.6666666667%;
399
+ }
400
+ .sio-offset-sm-9 {
401
+ margin-left: 75%;
402
+ }
403
+ .sio-offset-sm-10 {
404
+ margin-left: 83.3333333333%;
405
+ }
406
+ .sio-offset-sm-11 {
407
+ margin-left: 91.6666666667%;
408
+ }
409
+ .sio-d-sm-none {
410
+ display: none;
411
+ }
412
+ .d-sm-block {
413
+ display: block;
414
+ }
415
+ }
416
+ @media (min-width: 768px) {
417
+ .sio-col-md {
418
+ flex-basis: 0;
419
+ flex-grow: 1;
420
+ max-width: 100%;
421
+ }
422
+ .sio-col-md-auto {
423
+ flex: 0 0 auto;
424
+ width: auto;
425
+ max-width: 100%;
426
+ }
427
+ .sio-col-md-1 {
428
+ flex: 0 0 8.3333333333%;
429
+ max-width: 8.3333333333%;
430
+ }
431
+ .sio-col-md-2 {
432
+ flex: 0 0 16.6666666667%;
433
+ max-width: 16.6666666667%;
434
+ }
435
+ .sio-col-md-3 {
436
+ flex: 0 0 25%;
437
+ max-width: 25%;
438
+ }
439
+ .sio-col-md-4 {
440
+ flex: 0 0 33.3333333333%;
441
+ max-width: 33.3333333333%;
442
+ }
443
+ .sio-col-md-5 {
444
+ flex: 0 0 41.6666666667%;
445
+ max-width: 41.6666666667%;
446
+ }
447
+ .sio-col-md-6 {
448
+ flex: 0 0 50%;
449
+ max-width: 50%;
450
+ }
451
+ .sio-col-md-7 {
452
+ flex: 0 0 58.3333333333%;
453
+ max-width: 58.3333333333%;
454
+ }
455
+ .sio-col-md-8 {
456
+ flex: 0 0 66.6666666667%;
457
+ max-width: 66.6666666667%;
458
+ }
459
+ .sio-col-md-9 {
460
+ flex: 0 0 75%;
461
+ max-width: 75%;
462
+ }
463
+ .sio-col-md-10 {
464
+ flex: 0 0 83.3333333333%;
465
+ max-width: 83.3333333333%;
466
+ }
467
+ .sio-col-md-11 {
468
+ flex: 0 0 91.6666666667%;
469
+ max-width: 91.6666666667%;
470
+ }
471
+ .sio-col-md-12 {
472
+ flex: 0 0 100%;
473
+ max-width: 100%;
474
+ }
475
+ .sio-order-md-first {
476
+ order: -1;
477
+ }
478
+ .sio-order-md-last {
479
+ order: 13;
480
+ }
481
+ .sio-order-md-0 {
482
+ order: 0;
483
+ }
484
+ .sio-order-md-1 {
485
+ order: 1;
486
+ }
487
+ .sio-order-md-2 {
488
+ order: 2;
489
+ }
490
+ .sio-order-md-3 {
491
+ order: 3;
492
+ }
493
+ .sio-order-md-4 {
494
+ order: 4;
495
+ }
496
+ .sio-order-md-5 {
497
+ order: 5;
498
+ }
499
+ .sio-order-md-6 {
500
+ order: 6;
501
+ }
502
+ .sio-order-md-7 {
503
+ order: 7;
504
+ }
505
+ .sio-order-md-8 {
506
+ order: 8;
507
+ }
508
+ .sio-order-md-9 {
509
+ order: 9;
510
+ }
511
+ .sio-order-md-10 {
512
+ order: 10;
513
+ }
514
+ .sio-order-md-11 {
515
+ order: 11;
516
+ }
517
+ .sio-order-md-12 {
518
+ order: 12;
519
+ }
520
+ .sio-offset-md-0 {
521
+ margin-left: 0;
522
+ }
523
+ .sio-offset-md-1 {
524
+ margin-left: 8.3333333333%;
525
+ }
526
+ .sio-offset-md-2 {
527
+ margin-left: 16.6666666667%;
528
+ }
529
+ .sio-offset-md-3 {
530
+ margin-left: 25%;
531
+ }
532
+ .sio-offset-md-4 {
533
+ margin-left: 33.3333333333%;
534
+ }
535
+ .sio-offset-md-5 {
536
+ margin-left: 41.6666666667%;
537
+ }
538
+ .sio-offset-md-6 {
539
+ margin-left: 50%;
540
+ }
541
+ .sio-offset-md-7 {
542
+ margin-left: 58.3333333333%;
543
+ }
544
+ .sio-offset-md-8 {
545
+ margin-left: 66.6666666667%;
546
+ }
547
+ .sio-offset-md-9 {
548
+ margin-left: 75%;
549
+ }
550
+ .sio-offset-md-10 {
551
+ margin-left: 83.3333333333%;
552
+ }
553
+ .sio-offset-md-11 {
554
+ margin-left: 91.6666666667%;
555
+ }
556
+ .sio-d-md-none {
557
+ display: none;
558
+ }
559
+ .d-md-block {
560
+ display: block;
561
+ }
562
+ }
563
+ @media (min-width: 992px) {
564
+ .sio-col-lg {
565
+ flex-basis: 0;
566
+ flex-grow: 1;
567
+ max-width: 100%;
568
+ }
569
+ .sio-col-lg-auto {
570
+ flex: 0 0 auto;
571
+ width: auto;
572
+ max-width: 100%;
573
+ }
574
+ .sio-col-lg-1 {
575
+ flex: 0 0 8.3333333333%;
576
+ max-width: 8.3333333333%;
577
+ }
578
+ .sio-col-lg-2 {
579
+ flex: 0 0 16.6666666667%;
580
+ max-width: 16.6666666667%;
581
+ }
582
+ .sio-col-lg-3 {
583
+ flex: 0 0 25%;
584
+ max-width: 25%;
585
+ }
586
+ .sio-col-lg-4 {
587
+ flex: 0 0 33.3333333333%;
588
+ max-width: 33.3333333333%;
589
+ }
590
+ .sio-col-lg-5 {
591
+ flex: 0 0 41.6666666667%;
592
+ max-width: 41.6666666667%;
593
+ }
594
+ .sio-col-lg-6 {
595
+ flex: 0 0 50%;
596
+ max-width: 50%;
597
+ }
598
+ .sio-col-lg-7 {
599
+ flex: 0 0 58.3333333333%;
600
+ max-width: 58.3333333333%;
601
+ }
602
+ .sio-col-lg-8 {
603
+ flex: 0 0 66.6666666667%;
604
+ max-width: 66.6666666667%;
605
+ }
606
+ .sio-col-lg-9 {
607
+ flex: 0 0 75%;
608
+ max-width: 75%;
609
+ }
610
+ .sio-col-lg-10 {
611
+ flex: 0 0 83.3333333333%;
612
+ max-width: 83.3333333333%;
613
+ }
614
+ .sio-col-lg-11 {
615
+ flex: 0 0 91.6666666667%;
616
+ max-width: 91.6666666667%;
617
+ }
618
+ .sio-col-lg-12 {
619
+ flex: 0 0 100%;
620
+ max-width: 100%;
621
+ }
622
+ .sio-order-lg-first {
623
+ order: -1;
624
+ }
625
+ .sio-order-lg-last {
626
+ order: 13;
627
+ }
628
+ .sio-order-lg-0 {
629
+ order: 0;
630
+ }
631
+ .sio-order-lg-1 {
632
+ order: 1;
633
+ }
634
+ .sio-order-lg-2 {
635
+ order: 2;
636
+ }
637
+ .sio-order-lg-3 {
638
+ order: 3;
639
+ }
640
+ .sio-order-lg-4 {
641
+ order: 4;
642
+ }
643
+ .sio-order-lg-5 {
644
+ order: 5;
645
+ }
646
+ .sio-order-lg-6 {
647
+ order: 6;
648
+ }
649
+ .sio-order-lg-7 {
650
+ order: 7;
651
+ }
652
+ .sio-order-lg-8 {
653
+ order: 8;
654
+ }
655
+ .sio-order-lg-9 {
656
+ order: 9;
657
+ }
658
+ .sio-order-lg-10 {
659
+ order: 10;
660
+ }
661
+ .sio-order-lg-11 {
662
+ order: 11;
663
+ }
664
+ .sio-order-lg-12 {
665
+ order: 12;
666
+ }
667
+ .sio-offset-lg-0 {
668
+ margin-left: 0;
669
+ }
670
+ .sio-offset-lg-1 {
671
+ margin-left: 8.3333333333%;
672
+ }
673
+ .sio-offset-lg-2 {
674
+ margin-left: 16.6666666667%;
675
+ }
676
+ .sio-offset-lg-3 {
677
+ margin-left: 25%;
678
+ }
679
+ .sio-offset-lg-4 {
680
+ margin-left: 33.3333333333%;
681
+ }
682
+ .sio-offset-lg-5 {
683
+ margin-left: 41.6666666667%;
684
+ }
685
+ .sio-offset-lg-6 {
686
+ margin-left: 50%;
687
+ }
688
+ .sio-offset-lg-7 {
689
+ margin-left: 58.3333333333%;
690
+ }
691
+ .sio-offset-lg-8 {
692
+ margin-left: 66.6666666667%;
693
+ }
694
+ .sio-offset-lg-9 {
695
+ margin-left: 75%;
696
+ }
697
+ .sio-offset-lg-10 {
698
+ margin-left: 83.3333333333%;
699
+ }
700
+ .sio-offset-lg-11 {
701
+ margin-left: 91.6666666667%;
702
+ }
703
+ .sio-d-lg-none {
704
+ display: none;
705
+ }
706
+ .d-lg-block {
707
+ display: block;
708
+ }
709
+ }
710
+ @media (min-width: 1200px) {
711
+ .sio-col-xl {
712
+ flex-basis: 0;
713
+ flex-grow: 1;
714
+ max-width: 100%;
715
+ }
716
+ .sio-col-xl-auto {
717
+ flex: 0 0 auto;
718
+ width: auto;
719
+ max-width: 100%;
720
+ }
721
+ .sio-col-xl-1 {
722
+ flex: 0 0 8.3333333333%;
723
+ max-width: 8.3333333333%;
724
+ }
725
+ .sio-col-xl-2 {
726
+ flex: 0 0 16.6666666667%;
727
+ max-width: 16.6666666667%;
728
+ }
729
+ .sio-col-xl-3 {
730
+ flex: 0 0 25%;
731
+ max-width: 25%;
732
+ }
733
+ .sio-col-xl-4 {
734
+ flex: 0 0 33.3333333333%;
735
+ max-width: 33.3333333333%;
736
+ }
737
+ .sio-col-xl-5 {
738
+ flex: 0 0 41.6666666667%;
739
+ max-width: 41.6666666667%;
740
+ }
741
+ .sio-col-xl-6 {
742
+ flex: 0 0 50%;
743
+ max-width: 50%;
744
+ }
745
+ .sio-col-xl-7 {
746
+ flex: 0 0 58.3333333333%;
747
+ max-width: 58.3333333333%;
748
+ }
749
+ .sio-col-xl-8 {
750
+ flex: 0 0 66.6666666667%;
751
+ max-width: 66.6666666667%;
752
+ }
753
+ .sio-col-xl-9 {
754
+ flex: 0 0 75%;
755
+ max-width: 75%;
756
+ }
757
+ .sio-col-xl-10 {
758
+ flex: 0 0 83.3333333333%;
759
+ max-width: 83.3333333333%;
760
+ }
761
+ .sio-col-xl-11 {
762
+ flex: 0 0 91.6666666667%;
763
+ max-width: 91.6666666667%;
764
+ }
765
+ .sio-col-xl-12 {
766
+ flex: 0 0 100%;
767
+ max-width: 100%;
768
+ }
769
+ .sio-order-xl-first {
770
+ order: -1;
771
+ }
772
+ .sio-order-xl-last {
773
+ order: 13;
774
+ }
775
+ .sio-order-xl-0 {
776
+ order: 0;
777
+ }
778
+ .sio-order-xl-1 {
779
+ order: 1;
780
+ }
781
+ .sio-order-xl-2 {
782
+ order: 2;
783
+ }
784
+ .sio-order-xl-3 {
785
+ order: 3;
786
+ }
787
+ .sio-order-xl-4 {
788
+ order: 4;
789
+ }
790
+ .sio-order-xl-5 {
791
+ order: 5;
792
+ }
793
+ .sio-order-xl-6 {
794
+ order: 6;
795
+ }
796
+ .sio-order-xl-7 {
797
+ order: 7;
798
+ }
799
+ .sio-order-xl-8 {
800
+ order: 8;
801
+ }
802
+ .sio-order-xl-9 {
803
+ order: 9;
804
+ }
805
+ .sio-order-xl-10 {
806
+ order: 10;
807
+ }
808
+ .sio-order-xl-11 {
809
+ order: 11;
810
+ }
811
+ .sio-order-xl-12 {
812
+ order: 12;
813
+ }
814
+ .sio-offset-xl-0 {
815
+ margin-left: 0;
816
+ }
817
+ .sio-offset-xl-1 {
818
+ margin-left: 8.3333333333%;
819
+ }
820
+ .sio-offset-xl-2 {
821
+ margin-left: 16.6666666667%;
822
+ }
823
+ .sio-offset-xl-3 {
824
+ margin-left: 25%;
825
+ }
826
+ .sio-offset-xl-4 {
827
+ margin-left: 33.3333333333%;
828
+ }
829
+ .sio-offset-xl-5 {
830
+ margin-left: 41.6666666667%;
831
+ }
832
+ .sio-offset-xl-6 {
833
+ margin-left: 50%;
834
+ }
835
+ .sio-offset-xl-7 {
836
+ margin-left: 58.3333333333%;
837
+ }
838
+ .sio-offset-xl-8 {
839
+ margin-left: 66.6666666667%;
840
+ }
841
+ .sio-offset-xl-9 {
842
+ margin-left: 75%;
843
+ }
844
+ .sio-offset-xl-10 {
845
+ margin-left: 83.3333333333%;
846
+ }
847
+ .sio-offset-xl-11 {
848
+ margin-left: 91.6666666667%;
849
+ }
850
+ .sio-d-xl-none {
851
+ display: none;
852
+ }
853
+ .d-xl-block {
854
+ display: block;
855
+ }
856
+ }
857
+ :where(.btn--primary) {
858
+ --sio-btn-bg: var(--sio-btn-primary-bg);
859
+ --sio-btn-border: var(--sio-btn-primary-border);
860
+ --sio-btn-text: var(--sio-btn-primary-text);
861
+ --sio-btn-bg-hover: color-mix(in srgb, var(--sio-btn-bg) 85%, black);
862
+ --sio-btn-border-hover: color-mix(in srgb, var(--sio-btn-border) 85%, black);
863
+ --sio-btn-text-hover: var(--sio-btn-text);
864
+ --sio-btn-bg-disabled: color-mix(in srgb, var(--sio-btn-bg) 40%, white);
865
+ --sio-btn-border-disabled: color-mix(in srgb, var(--sio-btn-border) 40%, white);
866
+ --sio-btn-text-disabled: color-mix(in srgb, var(--sio-btn-text) 60%, black);
867
+ }
868
+
869
+ :where(.btn--secondary) {
870
+ --sio-btn-bg: var(--sio-btn-secondary-bg);
871
+ --sio-btn-border: var(--sio-btn-secondary-border);
872
+ --sio-btn-text: var(--sio-btn-secondary-text);
873
+ --sio-btn-bg-hover: var(--sio-btn-bg);
874
+ --sio-btn-border-hover: color-mix(in srgb, var(--sio-btn-border) 85%, black);
875
+ --sio-btn-text-hover: var(--sio-btn-text);
876
+ --sio-btn-bg-disabled: var(--sio-btn-bg);
877
+ --sio-btn-border-disabled: color-mix(in srgb, var(--sio-btn-border) 40%, white);
878
+ --sio-btn-text-disabled: color-mix(in srgb, var(--sio-btn-text) 40%, white);
879
+ }
880
+
881
+ :where(.btn--link) {
882
+ --sio-btn-bg: var(--sio-btn-link-bg);
883
+ --sio-btn-border: var(--sio-btn-link-border);
884
+ --sio-btn-text: var(--sio-btn-link-text);
885
+ --sio-btn-bg-hover: var(--sio-btn-bg);
886
+ --sio-btn-border-hover: var(--sio-btn-border);
887
+ --sio-btn-text-hover: color-mix(in srgb, var(--sio-btn-text) 85%, black);
888
+ --sio-btn-bg-disabled: var(--sio-btn-bg);
889
+ --sio-btn-border-disabled: var(--sio-btn-border);
890
+ --sio-btn-text-disabled: color-mix(in srgb, var(--sio-btn-text) 40%, white);
891
+ }
892
+
893
+ :where(.btn) {
894
+ background-color: var(--sio-btn-bg);
895
+ color: var(--sio-btn-text);
896
+ display: inline-block;
897
+ font-size: 0.9em;
898
+ font-weight: 500;
899
+ user-select: none;
900
+ text-align: center;
901
+ border: 1px solid var(--sio-btn-border);
902
+ padding: 2px 15px;
903
+ border-radius: 3px;
904
+ cursor: pointer;
905
+ min-height: 22px;
906
+ transition: all 0.3s ease-in;
907
+ text-decoration: none;
908
+ }
909
+
910
+ :where(.btn--link) {
911
+ display: inline;
912
+ font-weight: unset;
913
+ user-select: none;
914
+ text-align: left;
915
+ padding: 0;
916
+ border-radius: unset;
917
+ min-height: unset;
918
+ transition: all 0.3s ease-in;
919
+ text-decoration: underline;
920
+ }
921
+
922
+ :where(.btn:hover),
923
+ :where(.btn:active),
924
+ :where(.btn:focus),
925
+ :where(.btn.btn--active) {
926
+ background: var(--sio-btn-bg-hover, var(--sio-btn-bg));
927
+ border-color: var(--sio-btn-border-hover, var(--sio-btn-border));
928
+ color: var(--sio-btn-text-hover, var(--sio-btn-text));
929
+ }
930
+
931
+ :where(.btn:disabled),
932
+ :where(.btn.btn--disabled) {
933
+ cursor: not-allowed;
934
+ background: var(--sio-btn-bg-disabled, var(--sio-btn-bg));
935
+ border-color: var(--sio-btn-border-disabled, var(--sio-btn-border));
936
+ color: var(--sio-btn-text-disabled, var(--sio-btn-text));
937
+ }
938
+
939
+ :where(.btn--primary.btn--success) {
940
+ --sio-btn-bg: var(--sio-color-success);
941
+ --sio-btn-border: var(--sio-color-success);
942
+ --sio-btn-text: var(--sio-color-white);
943
+ }
944
+
945
+ :where(.btn--secondary.btn--success) {
946
+ --sio-btn-bg: transparent;
947
+ --sio-btn-border: var(--sio-color-success);
948
+ --sio-btn-text: var(--sio-color-success);
949
+ }
950
+
951
+ :where(.btn--link.btn--success) {
952
+ --sio-btn-bg: transparent;
953
+ --sio-btn-border: transparent;
954
+ --sio-btn-text: var(--sio-color-success);
955
+ }
956
+
957
+ :where(.btn--primary.btn--error) {
958
+ --sio-btn-bg: var(--sio-color-error);
959
+ --sio-btn-border: var(--sio-color-error);
960
+ --sio-btn-text: var(--sio-color-white);
961
+ }
962
+
963
+ :where(.btn--secondary.btn--error) {
964
+ --sio-btn-bg: transparent;
965
+ --sio-btn-border: var(--sio-color-error);
966
+ --sio-btn-text: var(--sio-color-error);
967
+ }
968
+
969
+ :where(.btn--link.btn--error) {
970
+ --sio-btn-bg: transparent;
971
+ --sio-btn-border: transparent;
972
+ --sio-btn-text: var(--sio-color-error);
973
+ }
974
+
975
+ :where(.btn--primary.btn--warning) {
976
+ --sio-btn-bg: var(--sio-color-warning);
977
+ --sio-btn-border: var(--sio-color-warning);
978
+ --sio-btn-text: var(--sio-color-white);
979
+ }
980
+
981
+ :where(.btn--secondary.btn--warning) {
982
+ --sio-btn-bg: transparent;
983
+ --sio-btn-border: var(--sio-color-warning);
984
+ --sio-btn-text: var(--sio-color-warning);
985
+ }
986
+
987
+ :where(.btn--link.btn--warning) {
988
+ --sio-btn-bg: transparent;
989
+ --sio-btn-border: transparent;
990
+ --sio-btn-text: var(--sio-color-warning);
991
+ }
992
+
993
+ :where(.btn--primary.btn--info) {
994
+ --sio-btn-bg: var(--sio-color-info);
995
+ --sio-btn-border: var(--sio-color-info);
996
+ --sio-btn-text: var(--sio-color-white);
997
+ }
998
+
999
+ :where(.btn--secondary.btn--info) {
1000
+ --sio-btn-bg: transparent;
1001
+ --sio-btn-border: var(--sio-color-info);
1002
+ --sio-btn-text: var(--sio-color-info);
1003
+ }
1004
+
1005
+ :where(.btn--link.btn--info) {
1006
+ --sio-btn-bg: transparent;
1007
+ --sio-btn-border: transparent;
1008
+ --sio-btn-text: var(--sio-color-info);
1009
+ }
1010
+
1011
+ :where(.btn--block) {
1012
+ display: block;
1013
+ width: 100%;
1014
+ }
1015
+
1016
+ :where(.btn--lg) {
1017
+ padding: 5px 20px;
1018
+ font-size: 1.1em;
1019
+ min-height: 34px;
1020
+ }
1021
+
1022
+ :where(.btn--sm) {
1023
+ padding: 2.5px 5px;
1024
+ font-size: 0.7em;
1025
+ min-height: 23px;
1026
+ }
1027
+
1028
+ :where(.btn--loading) {
1029
+ position: relative;
1030
+ cursor: wait !important;
1031
+ }
1032
+
1033
+ :where(.btn__spinner) {
1034
+ display: flex;
1035
+ animation: spin 1s infinite linear;
1036
+ margin-right: 8px;
1037
+ width: 20px;
1038
+ height: 20px;
1039
+ }
1040
+
1041
+ :where(.btn__spinner svg) {
1042
+ display: block;
1043
+ width: 100%;
1044
+ height: 100%;
1045
+ }
1046
+
1047
+ :where(.btn__spinner circle) {
1048
+ fill: none;
1049
+ stroke: currentColor;
1050
+ stroke-width: 2;
1051
+ stroke-dasharray: 30 100;
1052
+ stroke-linecap: round;
1053
+ }
1054
+
1055
+ :where(.btn__loading-text) {
1056
+ position: absolute;
1057
+ clip: rect(1px, 1px, 1px, 1px);
1058
+ }
1059
+
1060
+ :where(.btn-group) {
1061
+ display: flex;
1062
+ flex-wrap: wrap;
1063
+ gap: 5px;
1064
+ }
1065
+
1066
+ :where(.btn--link) {
1067
+ --sio-btn-bg: var(--sio-btn-link-bg);
1068
+ --sio-btn-border: var(--sio-btn-link-border);
1069
+ --sio-btn-text: var(--sio-btn-link-text);
1070
+ --sio-btn-bg-hover: var(--sio-btn-bg);
1071
+ --sio-btn-border-hover: var(--sio-btn-border);
1072
+ --sio-btn-text-hover: color-mix(in srgb, var(--sio-btn-text) 85%, black);
1073
+ --sio-btn-bg-disabled: var(--sio-btn-bg);
1074
+ --sio-btn-border-disabled: var(--sio-btn-border);
1075
+ --sio-btn-text-disabled: color-mix(in srgb, var(--sio-btn-text) 40%, white);
1076
+ }
1077
+
1078
+ :where(.link) {
1079
+ display: inline;
1080
+ user-select: none;
1081
+ transition: all 0.3s ease-in;
1082
+ text-decoration: underline;
1083
+ }
1084
+
1085
+ :where(.link:hover),
1086
+ :where(.link:active),
1087
+ :where(.link:focus),
1088
+ :where(.link.link--active) {
1089
+ background: var(--sio-btn-bg-hover, var(--sio-btn-bg));
1090
+ border-color: var(--sio-btn-border-hover, var(--sio-btn-border));
1091
+ color: var(--sio-btn-text-hover, var(--sio-btn-text));
1092
+ }
1093
+
1094
+ :where(.link:disabled),
1095
+ :where(.link.link--disabled) {
1096
+ cursor: not-allowed;
1097
+ background: var(--sio-btn-bg-disabled, var(--sio-btn-bg));
1098
+ border-color: var(--sio-btn-border-disabled, var(--sio-btn-border));
1099
+ color: var(--sio-btn-text-disabled, var(--sio-btn-text));
1100
+ }
1101
+
1102
+ :where(.link--success) {
1103
+ --sio-btn-bg: transparent;
1104
+ --sio-btn-border: transparent;
1105
+ --sio-btn-text: var(--sio-color-success);
1106
+ }
1107
+
1108
+ :where(.link--error) {
1109
+ --sio-btn-bg: transparent;
1110
+ --sio-btn-border: transparent;
1111
+ --sio-btn-text: var(--sio-color-error);
1112
+ }
1113
+
1114
+ :where(.link--warning) {
1115
+ --sio-btn-bg: transparent;
1116
+ --sio-btn-border: transparent;
1117
+ --sio-btn-text: var(--sio-color-warning);
1118
+ }
1119
+
1120
+ :where(.link--info) {
1121
+ --sio-btn-bg: transparent;
1122
+ --sio-btn-border: transparent;
1123
+ --sio-btn-text: var(--sio-color-info);
1124
+ }
1125
+
1126
+ :where(.link--block) {
1127
+ display: block;
1128
+ width: 100%;
1129
+ }
1130
+
1131
+ :where(.link--lg) {
1132
+ font-size: 1.1em;
1133
+ }
1134
+
1135
+ :where(.link--sm) {
1136
+ font-size: 0.7em;
1137
+ }
1138
+
1139
+ :where(.link--loading) {
1140
+ position: relative;
1141
+ cursor: wait !important;
1142
+ }
1143
+
1144
+ :where(.form-field__control) {
1145
+ border: 1px solid var(--sio-form-border);
1146
+ background: var(--sio-form-bg);
1147
+ position: relative;
1148
+ font-size: 1em;
1149
+ padding: 0;
1150
+ margin: 2px 0 0;
1151
+ display: flex;
1152
+ justify-content: space-between;
1153
+ border-radius: var(--sio-form-border-radius);
1154
+ transition: color 300ms ease;
1155
+ }
1156
+
1157
+ :where(.form-field__control input),
1158
+ :where(.form-field__control textarea) {
1159
+ display: block;
1160
+ color: var(--sio-color-gray);
1161
+ width: 100%;
1162
+ background: transparent;
1163
+ border: none;
1164
+ padding: var(--sio-form-padding-y) var(--sio-form-padding-x);
1165
+ resize: vertical;
1166
+ transition: color 300ms ease;
1167
+ }
1168
+
1169
+ :where(.form-field__control input:focus),
1170
+ :where(.form-field__control textarea:focus),
1171
+ :where(.form-field__control select:focus) {
1172
+ outline: none;
1173
+ box-shadow: none;
1174
+ }
1175
+
1176
+ :where(.form-field__control input::placeholder),
1177
+ :where(.form-field__control textarea::placeholder) {
1178
+ color: var(--sio-color-light-gray);
1179
+ font-weight: 200;
1180
+ font-size: 1em;
1181
+ }
1182
+
1183
+ :where(.form-field__icon) {
1184
+ display: flex;
1185
+ align-items: center;
1186
+ justify-content: center;
1187
+ width: 25px;
1188
+ color: var(--sio-color-light-gray);
1189
+ font-size: 1em;
1190
+ margin-top: -1px;
1191
+ }
1192
+
1193
+ :where(.form-field__action) {
1194
+ color: var(--sio-color-white);
1195
+ background-color: var(--sio-color-primary);
1196
+ display: flex;
1197
+ justify-content: center;
1198
+ align-items: center;
1199
+ border-radius: 0 3px 3px 0;
1200
+ margin: -1px -1px -1px 0;
1201
+ cursor: pointer;
1202
+ }
1203
+
1204
+ :where(.form-field__spinner) {
1205
+ display: flex;
1206
+ flex-direction: column;
1207
+ align-items: center;
1208
+ justify-content: center;
1209
+ color: var(--sio-color-light-gray);
1210
+ gap: 1px;
1211
+ margin-right: 1px;
1212
+ }
1213
+
1214
+ :where(.form-field__spinner .btn) {
1215
+ padding: 0 5px;
1216
+ min-height: unset;
1217
+ font-size: 0.5em;
1218
+ height: 11px;
1219
+ }
1220
+
1221
+ :where(.form-field__spinner-btn) {
1222
+ padding: 0 0.5rem;
1223
+ font-size: 1.2em;
1224
+ text-decoration: none;
1225
+ }
1226
+
1227
+ :where(.form-field input)::-webkit-resizer,
1228
+ :where(.form-field input)::-webkit-inner-spin-button,
1229
+ :where(.form-field input)::-webkit-calendar-picker-indicator {
1230
+ display: none;
1231
+ }
1232
+
1233
+ :where(.form-field input[type=date i]) {
1234
+ font-family: Arial;
1235
+ }
1236
+
1237
+ :where(.form-field input::-webkit-datetime-edit-text) {
1238
+ color: var(--sio-color-primary);
1239
+ }
1240
+
1241
+ :where(.form-field input)::-webkit-datetime-edit-day-field,
1242
+ :where(.form-field input)::-webkit-datetime-edit-month-field,
1243
+ :where(.form-field input)::-webkit-datetime-edit-year-field {
1244
+ color: var(--sio-color-black);
1245
+ }
1246
+
1247
+ :where(.form-field input)::-webkit-datetime-edit-day-field:focus,
1248
+ :where(.form-field input)::-webkit-datetime-edit-month-field:focus,
1249
+ :where(.form-field input)::-webkit-datetime-edit-year-field:focus {
1250
+ background-color: color-mix(in srgb, rgb(var(--sio-color-primary)) 60%, white);
1251
+ color: var(--sio-color-black);
1252
+ border-radius: var(--sio-form-border-radius);
1253
+ }
1254
+
1255
+ :where(.form-field) {
1256
+ position: relative;
1257
+ margin: 5px 0 15px 0;
1258
+ }
1259
+
1260
+ :where(.form-field label) {
1261
+ color: var(--sio-form-label);
1262
+ font-size: 0.9em;
1263
+ font-weight: 600;
1264
+ }
1265
+
1266
+ :where(.form-field label span) {
1267
+ color: var(--sio-color-error);
1268
+ font-weight: bold;
1269
+ }
1270
+
1271
+ :where(.form-field__description) {
1272
+ color: var(--sio-color-gray);
1273
+ font-weight: 200;
1274
+ font-size: 0.9em;
1275
+ margin-left: 10px;
1276
+ white-space: pre-wrap;
1277
+ }
1278
+
1279
+ :where(.form-field__errors) {
1280
+ list-style: none;
1281
+ padding: 0;
1282
+ margin: 5px 0 0;
1283
+ color: var(--sio-color-error);
1284
+ }
1285
+
1286
+ :where(.form-field__errors-item) {
1287
+ font-size: 0.9em;
1288
+ }
1289
+
1290
+ :where(.form-field--has-value .form-field__control) {
1291
+ color: var(--sio-color-black);
1292
+ border-color: var(--sio-color-primary);
1293
+ }
1294
+
1295
+ :where(.form-field--has-value .form-field__icon) {
1296
+ color: var(--sio-color-primary);
1297
+ }
1298
+
1299
+ :where(.form-field--focused .form-field__control) {
1300
+ color: var(--sio-color-black);
1301
+ border-color: var(--sio-color-primary);
1302
+ box-shadow: inset 2px 0 10px 0 rgba(var(--sio-color-primary-rgb), 0.3);
1303
+ }
1304
+
1305
+ :where(.form-field--focused .form-field__icon) {
1306
+ color: var(--sio-color-primary);
1307
+ }
1308
+
1309
+ :where(.form-field--disabled label) {
1310
+ color: var(--sio-color-gray);
1311
+ }
1312
+
1313
+ :where(.form-field--disabled .form-field__control) {
1314
+ color: var(--sio-color-light-gray);
1315
+ border-color: var(--sio-color-light-gray);
1316
+ background-color: color-mix(in srgb, var(--sio-color-light-gray) 20%, white);
1317
+ }
1318
+
1319
+ :where(.form-field--disabled input),
1320
+ :where(.form-field--disabled textarea) {
1321
+ color: var(--sio-color-light-gray);
1322
+ cursor: not-allowed;
1323
+ }
1324
+
1325
+ :where(.form-field--disabled .form-field__icon) {
1326
+ color: var(--sio-color-light-gray);
1327
+ }
1328
+
1329
+ :where(.form-field--has-errors label) {
1330
+ color: var(--sio-color-error);
1331
+ }
1332
+
1333
+ :where(.form-field--has-errors .form-field__control) {
1334
+ background-color: color-mix(in srgb, var(--sio-color-error) 15%, white);
1335
+ border-color: var(--sio-color-error);
1336
+ }
1337
+
1338
+ :where(.form-field--has-errors.form-field--focused .form-field__control) {
1339
+ box-shadow: inset 2px 0 10px 0 rgba(var(--sio-color-error-rgb), 0.3);
1340
+ }
1341
+
1342
+ :where(.form-field--has-errors input[type=range])::-webkit-slider-runnable-track {
1343
+ background: var(--sio-color-error);
1344
+ }
1345
+
1346
+ :where(.form-field--has-errors .form-field__icon) {
1347
+ color: var(--sio-color-error) !important;
1348
+ }
1349
+
1350
+ :where(.form-field--hidden-layout .form-field__control) {
1351
+ display: block;
1352
+ width: 100%;
1353
+ background: transparent;
1354
+ border: none;
1355
+ padding: 0;
1356
+ box-shadow: unset;
1357
+ }
1358
+
1359
+ :where(.form-field--hidden-layout input),
1360
+ :where(.form-field--hidden-layout textarea) {
1361
+ color: unset;
1362
+ width: unset;
1363
+ padding: 0;
1364
+ resize: unset;
1365
+ display: unset;
1366
+ border: unset;
1367
+ }
1368
+
1369
+ :where(.form-field__checkbox label) {
1370
+ position: relative;
1371
+ padding-left: 32px;
1372
+ }
1373
+
1374
+ :where(.form-field__checkbox label > div) {
1375
+ display: inline;
1376
+ color: var(--sio-color-black);
1377
+ font-weight: normal;
1378
+ }
1379
+
1380
+ :where(.form-field__checkbox label):before {
1381
+ content: "";
1382
+ background-color: var(--sio-form-bg);
1383
+ position: absolute;
1384
+ border-radius: var(--sio-form-border-radius);
1385
+ cursor: pointer;
1386
+ border: 1px solid var(--sio-form-border);
1387
+ width: 17px;
1388
+ height: 17px;
1389
+ left: 0;
1390
+ top: -1px;
1391
+ }
1392
+
1393
+ :where(.form-field__checkbox label):after {
1394
+ content: "";
1395
+ position: absolute;
1396
+ background-color: var(--sio-color-primary);
1397
+ width: 13px;
1398
+ height: 13px;
1399
+ top: 2px;
1400
+ left: 3px;
1401
+ transform: scale(0);
1402
+ border-radius: var(--sio-form-border-radius);
1403
+ cursor: pointer;
1404
+ transition: all 0.4s;
1405
+ }
1406
+
1407
+ :where(.form-field__checkbox input[type=checkbox]) {
1408
+ display: none !important;
1409
+ }
1410
+
1411
+ :where(.form-field__checkbox.form-field--has-value label):before {
1412
+ border-color: var(--sio-color-primary);
1413
+ }
1414
+
1415
+ :where(.form-field__checkbox.form-field--has-value label):after {
1416
+ transform: scale(1);
1417
+ }
1418
+
1419
+ :where(.form-field__checkbox.form-field--has-errors label):before {
1420
+ border-color: var(--sio-color-error);
1421
+ background: rgba(var(--sio-color-error-rgb), 0.06);
1422
+ }
1423
+
1424
+ :where(.form-field__checkbox.form-field--has-errors.form-field--has-value label):after {
1425
+ border-color: var(--sio-color-error);
1426
+ background: var(--sio-color-error);
1427
+ }
1428
+
1429
+ :where(.form-field__checkbox.form-field--disabled label) {
1430
+ cursor: not-allowed;
1431
+ }
1432
+
1433
+ :where(.form-field__checkbox.form-field--disabled label):before,
1434
+ :where(.form-field__checkbox.form-field--disabled label):after {
1435
+ cursor: not-allowed;
1436
+ }
1437
+
1438
+ :where(.form-field__checkbox.form-field--disabled label):before {
1439
+ border-color: var(--sio-color-light-gray);
1440
+ background-color: color-mix(in srgb, var(--sio-color-light-gray) 75%, white);
1441
+ }
1442
+
1443
+ :where(.form-field__checkbox.form-field--disabled label):after {
1444
+ border-color: color-mix(in srgb, var(--sio-color-light-gray) 75%, black);
1445
+ background-color: color-mix(in srgb, var(--sio-color-light-gray) 75%, black);
1446
+ transform: scale(0);
1447
+ transition: all 0.4s;
1448
+ }
1449
+
1450
+ :where(.form-field__checkbox.form-field--disabled.form-field--has-value label):before {
1451
+ border-color: var(--sio-color-light-gray);
1452
+ }
1453
+
1454
+ :where(.form-field__checkbox.form-field--disabled.form-field--has-value label):after {
1455
+ transform: scale(1);
1456
+ }
1457
+
1458
+ :where(.form-field__radio .form-field__control) {
1459
+ display: flex !important;
1460
+ flex-direction: column;
1461
+ gap: 8px;
1462
+ margin-top: 8px;
1463
+ }
1464
+
1465
+ :where(.form-field__radio .form-field__control label) {
1466
+ position: relative;
1467
+ padding-left: 32px;
1468
+ }
1469
+
1470
+ :where(.form-field__radio .form-field__control label > div) {
1471
+ display: inline;
1472
+ color: var(--sio-color-black);
1473
+ font-weight: normal;
1474
+ }
1475
+
1476
+ :where(.form-field__radio .form-field__control label):before {
1477
+ content: "";
1478
+ position: absolute;
1479
+ border: 1px solid var(--sio-form-border);
1480
+ background-color: var(--sio-form-bg);
1481
+ border-radius: 50%;
1482
+ cursor: pointer;
1483
+ width: 17px;
1484
+ height: 17px;
1485
+ top: -1px;
1486
+ left: 0;
1487
+ }
1488
+
1489
+ :where(.form-field__radio .form-field__control label):after {
1490
+ content: "";
1491
+ background-color: var(--sio-color-primary);
1492
+ position: absolute;
1493
+ border-radius: 50%;
1494
+ cursor: pointer;
1495
+ width: 13px;
1496
+ height: 13px;
1497
+ top: 2px;
1498
+ left: 3px;
1499
+ transform: scale(0);
1500
+ transition: all 0.4s;
1501
+ }
1502
+
1503
+ :where(.form-field__radio input[type=radio]) {
1504
+ display: none !important;
1505
+ }
1506
+
1507
+ :where(.form-field__radio label.form-field--has-value):before {
1508
+ border-color: var(--sio-color-primary);
1509
+ }
1510
+
1511
+ :where(.form-field__radio label.form-field--has-value):after {
1512
+ transform: scale(1);
1513
+ }
1514
+
1515
+ :where(.form-field__radio-inline .form-field__control) {
1516
+ flex-direction: row;
1517
+ justify-content: flex-start;
1518
+ flex-wrap: wrap;
1519
+ gap: 20px;
1520
+ }
1521
+
1522
+ :where(.form-field__radio.form-field--has-errors label):before {
1523
+ border-color: var(--sio-color-error);
1524
+ background: rgba(var(--sio-color-error-rgb), 0.06);
1525
+ }
1526
+
1527
+ :where(.form-field__radio.form-field--has-errors label.form-field--has-value):after {
1528
+ border-color: var(--sio-color-error);
1529
+ background: var(--sio-color-error);
1530
+ }
1531
+
1532
+ :where(.form-field__radio.form-field--disabled .form-field__control label) {
1533
+ cursor: not-allowed;
1534
+ }
1535
+
1536
+ :where(.form-field__radio.form-field--disabled .form-field__control label):before,
1537
+ :where(.form-field__radio.form-field--disabled .form-field__control label):after {
1538
+ cursor: not-allowed;
1539
+ }
1540
+
1541
+ :where(.form-field__radio.form-field--disabled .form-field__control label):before {
1542
+ border-color: var(--sio-color-light-gray);
1543
+ background-color: color-mix(in srgb, var(--sio-color-light-gray) 75%, white);
1544
+ }
1545
+
1546
+ :where(.form-field__radio.form-field--disabled .form-field__control label):after {
1547
+ border-color: color-mix(in srgb, var(--sio-color-light-gray) 75%, black);
1548
+ background-color: color-mix(in srgb, var(--sio-color-light-gray) 75%, black);
1549
+ transform: scale(0);
1550
+ transition: all 0.4s;
1551
+ }
1552
+
1553
+ :where(.form-field__radio.form-field--disabled .form-field__control label.form-field--has-value):before {
1554
+ border-color: var(--sio-color-light-gray);
1555
+ }
1556
+
1557
+ :where(.form-field__radio.form-field--disabled .form-field__control label.form-field--has-value):after {
1558
+ transform: scale(1);
1559
+ }
1560
+
1561
+ :where(.form-field__select select) {
1562
+ display: block;
1563
+ width: 100%;
1564
+ background: transparent;
1565
+ border: none;
1566
+ color: var(--var-color-gray);
1567
+ font-size: 1em;
1568
+ appearance: none;
1569
+ cursor: pointer;
1570
+ }
1571
+
1572
+ :where(.form-field__select-single .form-field__control) {
1573
+ position: relative;
1574
+ }
1575
+
1576
+ :where(.form-field__select-single .form-field__control):after {
1577
+ content: "";
1578
+ position: absolute;
1579
+ right: 10px;
1580
+ top: 11px;
1581
+ width: 6px;
1582
+ height: 6px;
1583
+ border-right: 2px solid var(--sio-color-light-gray);
1584
+ border-bottom: 2px solid var(--sio-color-light-gray);
1585
+ transform: translateY(-50%) rotate(45deg);
1586
+ pointer-events: none;
1587
+ }
1588
+
1589
+ :where(.form-field__select-single select) {
1590
+ padding: 5px 28px 5px 10px;
1591
+ }
1592
+
1593
+ :where(.form-field__select-multiple select) {
1594
+ padding: 5px 10px;
1595
+ }
1596
+
1597
+ :where(.form-field__upload-file) {
1598
+ display: flex;
1599
+ justify-content: space-between;
1600
+ margin: 10px 0;
1601
+ }
1602
+
1603
+ :where(.form-field input[type=file i]) {
1604
+ color: transparent;
1605
+ }
1606
+
1607
+ :where(.form-field input)::file-selector-button {
1608
+ padding: 0;
1609
+ margin: 0;
1610
+ border: none;
1611
+ background-color: transparent;
1612
+ color: var(--sio-color-light-gray);
1613
+ font-weight: 200;
1614
+ font-size: 1em;
1615
+ }
1616
+
1617
+ :where(.form-field__upload-file-label) {
1618
+ display: flex;
1619
+ align-items: center;
1620
+ gap: 5px;
1621
+ color: var(--sio-color-black);
1622
+ }
1623
+
1624
+ :where(.form-field__upload-file-section button) {
1625
+ display: flex;
1626
+ align-items: center;
1627
+ cursor: pointer;
1628
+ border: none;
1629
+ padding: 3px 5px;
1630
+ border-radius: 3px;
1631
+ }
1632
+
1633
+ :where(.form-field__upload-file-remove-button) {
1634
+ background: transparent;
1635
+ color: var(--sio-color-error);
1636
+ }
1637
+
1638
+ :where(.form-field__upload-buttons) {
1639
+ display: flex;
1640
+ justify-content: flex-end;
1641
+ gap: 5px;
1642
+ }
1643
+
1644
+ :where(.form-field__upload-remove-all-button) {
1645
+ gap: 5px;
1646
+ background: transparent;
1647
+ color: var(--sio-color-error);
1648
+ }
1649
+
1650
+ :where(.form-field__range .form-field__control) {
1651
+ background: transparent !important;
1652
+ border: none;
1653
+ padding: 0;
1654
+ box-shadow: none !important;
1655
+ gap: 15px;
1656
+ }
1657
+
1658
+ :where(.form-field__range-value) {
1659
+ color: var(--sio-color-gray);
1660
+ align-content: center;
1661
+ min-width: 25px;
1662
+ }
1663
+
1664
+ :where(.form-field input[type=range]) {
1665
+ appearance: none;
1666
+ width: 100%;
1667
+ cursor: pointer;
1668
+ outline: none;
1669
+ padding: 12px 0 15px;
1670
+ margin: 0;
1671
+ height: 6px;
1672
+ background: transparent;
1673
+ }
1674
+
1675
+ :where(.form-field input[type=range])::-webkit-slider-runnable-track {
1676
+ width: 100%;
1677
+ height: 5px;
1678
+ cursor: pointer;
1679
+ background: var(--sio-color-light-gray);
1680
+ border-radius: 2px;
1681
+ }
1682
+
1683
+ :where(.form-field input[type=range])::-webkit-slider-thumb {
1684
+ appearance: none;
1685
+ margin-top: -5.5px;
1686
+ height: 14px;
1687
+ width: 14px;
1688
+ background-color: var(--sio-color-primary);
1689
+ border-radius: 50%;
1690
+ border: none;
1691
+ transition: 0.2s ease-in-out;
1692
+ }
1693
+
1694
+ :where(.form-field input[type=range])::-webkit-slider-thumb:hover {
1695
+ box-shadow: 0 0 0 10px rgba(var(--sio-color-primary-rgb), 0.1);
1696
+ }
1697
+
1698
+ :where(.form-field input[type=range]):active::-webkit-slider-thumb,
1699
+ :where(.form-field input[type=range]):focus::-webkit-slider-thumb {
1700
+ box-shadow: 0 0 0 13px rgba(var(--sio-color-primary-rgb), 0.2);
1701
+ }
1702
+
1703
+ :where(.form-field__color .form-field__control) {
1704
+ max-width: 50px;
1705
+ }
1706
+
1707
+ :where(.form-field__color input) {
1708
+ padding: 0;
1709
+ border-radius: var(--sio-form-border-radius);
1710
+ }
1711
+
1712
+ :where(.form-field__color input[type=color i]) {
1713
+ inline-size: 50px;
1714
+ block-size: 25.5px;
1715
+ padding: 0;
1716
+ border: none;
1717
+ }
1718
+
1719
+ :where(.form-field__color input[type=color])::-webkit-color-swatch-wrapper {
1720
+ padding-block-end: 3px;
1721
+ padding-block-start: 3px;
1722
+ padding-inline-start: 3px;
1723
+ padding-inline-end: 3px;
1724
+ padding: 3px;
1725
+ border: none;
1726
+ }
1727
+
1728
+ :where(.form-field__color input[type=color])::-webkit-color-swatch {
1729
+ border: none;
1730
+ border-radius: 2px;
1731
+ }
1732
+
1733
+ /*# sourceMappingURL=index.css.map */