@taikai/rocket-kit 3.0.12-0 → 4.0.1

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 (56) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/organisms/grid-container/index.d.ts +2 -2
  3. package/dist/rocket-kit.cjs.development.css +3895 -0
  4. package/dist/rocket-kit.cjs.development.js +597 -3756
  5. package/dist/rocket-kit.cjs.development.js.map +1 -1
  6. package/dist/rocket-kit.cjs.production.min.js +1 -3197
  7. package/dist/rocket-kit.cjs.production.min.js.map +1 -1
  8. package/dist/rocket-kit.esm.js +747 -3816
  9. package/dist/rocket-kit.esm.js.map +1 -1
  10. package/dist/utils/css-utils.d.ts +24 -0
  11. package/dist/utils/hooks/use-color.d.ts +11 -4
  12. package/package.json +44 -44
  13. package/dist/atoms/avatar-image/styles.d.ts +0 -6
  14. package/dist/atoms/button/styles.d.ts +0 -11
  15. package/dist/atoms/button-dropdown/styles.d.ts +0 -5
  16. package/dist/atoms/button-link/styles.d.ts +0 -11
  17. package/dist/atoms/checkbox/styles.d.ts +0 -11
  18. package/dist/atoms/checkbox-button/styles.d.ts +0 -9
  19. package/dist/atoms/error-field/styles.d.ts +0 -6
  20. package/dist/atoms/file-picker/styles.d.ts +0 -6
  21. package/dist/atoms/icon/stories/styles.d.ts +0 -1
  22. package/dist/atoms/label/styles.d.ts +0 -1
  23. package/dist/atoms/progress-bar/styles.d.ts +0 -9
  24. package/dist/atoms/select/styles.d.ts +0 -5
  25. package/dist/atoms/select-interactive/styles.d.ts +0 -3
  26. package/dist/atoms/slideshow/styles.d.ts +0 -5
  27. package/dist/atoms/spinner/styles.d.ts +0 -6
  28. package/dist/atoms/tag/styles.d.ts +0 -8
  29. package/dist/atoms/tag-number/styles.d.ts +0 -7
  30. package/dist/atoms/text-area/styles.d.ts +0 -10
  31. package/dist/atoms/text-field/styles.d.ts +0 -6
  32. package/dist/atoms/text-field-appendix/styles.d.ts +0 -10
  33. package/dist/atoms/toggle/styles.d.ts +0 -1
  34. package/dist/atoms/truncate-line/styles.d.ts +0 -1
  35. package/dist/atoms/video-player/styles.d.ts +0 -1
  36. package/dist/molecules/actions-menu/styles.d.ts +0 -6
  37. package/dist/molecules/card-value/styles.d.ts +0 -1
  38. package/dist/molecules/checkbox-group/styles.d.ts +0 -6
  39. package/dist/molecules/data-warning/styles.d.ts +0 -5
  40. package/dist/molecules/empty-table/styles.d.ts +0 -10
  41. package/dist/molecules/error/styles.d.ts +0 -5
  42. package/dist/molecules/field-with-button/styles.d.ts +0 -2
  43. package/dist/molecules/form-group/styles.d.ts +0 -5
  44. package/dist/molecules/modal-footer/styles.d.ts +0 -1
  45. package/dist/molecules/note-card/styles.d.ts +0 -7
  46. package/dist/molecules/number-input-spinner/styles.d.ts +0 -7
  47. package/dist/molecules/pagination-control/styles.d.ts +0 -5
  48. package/dist/molecules/radio-group/styles.d.ts +0 -13
  49. package/dist/molecules/table/styles.d.ts +0 -9
  50. package/dist/molecules/table-dnd/styles.d.ts +0 -8
  51. package/dist/molecules/wizard-steps/styles.d.ts +0 -6
  52. package/dist/organisms/grid-container/styles.d.ts +0 -6
  53. package/dist/organisms/loading-state/styles.d.ts +0 -8
  54. package/dist/organisms/modal/styles.d.ts +0 -9
  55. package/dist/organisms/modal-drawer/styles.d.ts +0 -9
  56. package/dist/organisms/tabs-panel/styles.d.ts +0 -1
@@ -1,3 +1,3443 @@
1
+ :root {
2
+ /* Colors */
3
+ --black: #000000;
4
+ --white: #ffffff;
5
+ --grey50: #F1F1F3;
6
+ --grey100: #E3E3E8;
7
+ --grey150: #D5D6DC;
8
+ --grey200: #C7C8D1;
9
+ --grey300: #ABACBA;
10
+ --grey400: #8F91A3;
11
+ --grey500: #73758C;
12
+ --grey600: #5C5E70;
13
+ --grey700: #454654;
14
+ --grey800: #2E2F38;
15
+ --grey850: #23232A;
16
+ --grey900: #17171C;
17
+ --grey950: #0C0C0E;
18
+ --blue50: #ECEDFC;
19
+ --blue100: #D9DCFA;
20
+ --blue150: #C6CAF7;
21
+ --blue200: #B3B9F4;
22
+ --blue300: #8E96EF;
23
+ --blue400: #6873E9;
24
+ --blue500: #4250E4;
25
+ --blue600: #3540B6;
26
+ --blue700: #283089;
27
+ --blue800: #1A205B;
28
+ --blue850: #141844;
29
+ --blue900: #0D102E;
30
+ --blue950: #070817;
31
+ --purple50: #ECEAF6;
32
+ --purple100: #D9D4ED;
33
+ --purple150: #C7BFE4;
34
+ --purple200: #B4A9DB;
35
+ --purple300: #8E7FCA;
36
+ --purple400: #6954B8;
37
+ --purple500: #4329A6;
38
+ --purple600: #362185;
39
+ --purple700: #281964;
40
+ --purple800: #1B1042;
41
+ --purple850: #140C32;
42
+ --purple900: #0D0821;
43
+ --purple950: #070411;
44
+ --red50: #FDEEEE;
45
+ --red100: #FBDDDD;
46
+ --red150: #F9CDCD;
47
+ --red200: #F7BCBC;
48
+ --red300: #F39A9A;
49
+ --red400: #EF7979;
50
+ --red500: #EB5757;
51
+ --red600: #BC4646;
52
+ --red700: #8D3434;
53
+ --red800: #5E2323;
54
+ --red850: #471A1A;
55
+ --red900: #2F1111;
56
+ --red950: #180909;
57
+ --oracle50: #F4F0FD;
58
+ --oracle100: #EAE1FB;
59
+ --oracle150: #DFD2FA;
60
+ --oracle200: #D5C3F8;
61
+ --oracle300: #C0A5F4;
62
+ --oracle400: #AB87F1;
63
+ --oracle500: #9669ED;
64
+ --oracle600: #7854BE;
65
+ --oracle700: #5A3F8E;
66
+ --oracle800: #3C2A5F;
67
+ --oracle850: #2D2047;
68
+ --oracle900: #1E152F;
69
+ --oracle950: #0F0B18;
70
+ --green50: #EBFCF7;
71
+ --green100: #D7F9EF;
72
+ --green150: #C2F6E6;
73
+ --green200: #AEF3DE;
74
+ --green300: #86ECCE;
75
+ --green400: #5DE6BD;
76
+ --green500: #35E0AD;
77
+ --green600: #2AB38A;
78
+ --green700: #208668;
79
+ --green800: #155A45;
80
+ --green850: #104334;
81
+ --green900: #0B2D23;
82
+ --green950: #051611;
83
+ --orange50: #FFF0EA;
84
+ --orange100: #FFE1D5;
85
+ --orange150: #FFD2C0;
86
+ --orange200: #FFC3AB;
87
+ --orange300: #FFA680;
88
+ --orange400: #FF8856;
89
+ --orange500: #FF6A2C;
90
+ --orange600: #CC5523;
91
+ --orange700: #99401A;
92
+ --orange800: #662A12;
93
+ --orange850: #4D200D;
94
+ --orange900: #331509;
95
+ --orange950: #1A0B04;
96
+ --yellow50: #FFFBEC;
97
+ --yellow100: #FFF7DA;
98
+ --yellow150: #FFF3C7;
99
+ --yellow200: #FFEFB5;
100
+ --yellow300: #FFE690;
101
+ --yellow400: #FFDE6B;
102
+ --yellow500: #FFD646;
103
+ --yellow600: #CCAB38;
104
+ --yellow700: #99802A;
105
+ --yellow800: #66561C;
106
+ --yellow850: #4D4015;
107
+ --yellow900: #332B0E;
108
+ --yellow950: #1A1507;
109
+ --paleBlue50: #F3F9FD;
110
+ --paleBlue100: #E7F4FB;
111
+ --paleBlue150: #DBEEF9;
112
+ --paleBlue200: #CFE9F7;
113
+ --paleBlue300: #B7DDF4;
114
+ --paleBlue400: #9FD2F0;
115
+ --paleBlue500: #87C7EC;
116
+ --paleBlue600: #6C9FBD;
117
+ --paleBlue700: #51778E;
118
+ --paleBlue800: #36505E;
119
+ --paleBlue850: #293C47;
120
+ --paleBlue900: #1B282F;
121
+ --paleBlue950: #0E1418;
122
+ --paleOrange50: #FDF4EC;
123
+ --paleOrange100: #FCE9D9;
124
+ --paleOrange150: #FADEC6;
125
+ --paleOrange200: #F8D3B3;
126
+ --paleOrange300: #F5BE8C;
127
+ --paleOrange400: #F1A866;
128
+ --paleOrange500: #EE9240;
129
+ --paleOrange600: #BE7533;
130
+ --paleOrange700: #8F5826;
131
+ --paleOrange800: #5F3A1A;
132
+ --paleOrange850: #472C13;
133
+ --paleOrange900: #301D0D;
134
+ --paleOrange950: #180F06;
135
+
136
+ /* Typography */
137
+ --regular: 400;
138
+ --defaultFont: "Space Grotesk", Verdana, Arial, Helvetica, sans-serif;
139
+ --fontSizeXs: 0.75rem; /* 12px */
140
+ --fontSizeS: 0.875rem; /* 14px */
141
+ --fontSizeM: 1rem; /* 16px */
142
+ --fontWeightSemiBold: 500;
143
+
144
+ /* Misc */
145
+ --transitionDurationDefault: 0.3s;
146
+
147
+ /* Button tokens */
148
+ --buttonHeight: 2.75rem; /* 44px */
149
+ --buttonBorderWidth: 0.0625rem; /* 1px */
150
+ --buttonBorderRadius: 0.5rem; /* 8px */
151
+ --buttonPadding: 1.5rem; /* 24px */
152
+ --buttonIconSpacing: 0.875rem; /* 14px */
153
+ --buttonIconSize: 1.25rem; /* 20px */
154
+
155
+ /* Breakpoints */
156
+ --breakpointXs: 360px;
157
+ --breakpointS: 700px;
158
+ --breakpointM: 900px;
159
+ --breakpointL: 1280px;
160
+ --breakpointXl: 1600px;
161
+
162
+ /* Field tokens */
163
+ --fieldBorderWidth: 0.0625rem; /* 1px */
164
+ --fieldBorderRadius: 0.5rem; /* 8px */
165
+ --fieldBorderColor: var(--purple100);
166
+ --fieldHoverBorderColor: var(--purple150);
167
+ --fieldBackgroundColor: var(--white);
168
+ --fieldBoxShadow: rgba(0, 0, 0, 0.15);
169
+ --fieldColor: var(--black);
170
+ --fieldActiveBorderColor: var(--purple500);
171
+ --fieldActiveColor: var(--purple500);
172
+ --fieldSuccessBackgroundColor: var(--green500);
173
+ --fieldSuccessBorderColor: var(--green600);
174
+ --fieldErrorBorderColor: var(--red500);
175
+ --fieldErrorBackgroundColor: var(--red300);
176
+ --fieldDisabledBackgroundColor: var(--grey100);
177
+ --fieldDisabledColor: var(--grey300);
178
+ --fieldHeight: 3.125rem; /* 50px */
179
+ --fieldPlaceholderColor: var(--grey200);
180
+ }
181
+ .styles-module_wrapper__pVAc9 {
182
+ position: relative;
183
+ border: 0.125rem solid var(--grey200); /* 2px */
184
+ border-radius: 999px;
185
+ width: var(--avatarSize, 30px);
186
+ height: var(--avatarSize, 30px);
187
+ overflow: hidden;
188
+ z-index: 0;
189
+ }
190
+
191
+ .styles-module_wrapper__pVAc9 > * {
192
+ width: 100%;
193
+ height: 100%;
194
+ }
195
+
196
+ .styles-module_wrapper__pVAc9 img {
197
+ object-fit: cover;
198
+ }
199
+
200
+ .styles-module_square__T0jFe {
201
+ border-radius: 0;
202
+ }
203
+
204
+ .styles-module_button__WayI2 {
205
+ margin: 0;
206
+ border-style: solid;
207
+ background-color: transparent;
208
+ width: min-content;
209
+ min-width: var(--buttonMinWidth, 5rem); /* default 80px */
210
+ height: var(--buttonHeight);
211
+ display: flex;
212
+ justify-content: center;
213
+ align-items: center;
214
+ padding: 0 var(--buttonPadding);
215
+ white-space: nowrap;
216
+ text-decoration: none;
217
+ transition-duration: var(--transitionDurationDefault);
218
+ cursor: pointer;
219
+ outline: none;
220
+ }
221
+
222
+ /* Variant: solid */
223
+ .styles-module_variantSolid__ND4hJ {
224
+ border-width: 0;
225
+ border-color: var(--bg);
226
+ background-color: var(--bg);
227
+ }
228
+
229
+ .styles-module_variantSolid__ND4hJ:hover {
230
+ background-color: var(--hover);
231
+ }
232
+
233
+ .styles-module_variantSolid__ND4hJ:disabled:hover {
234
+ background-color: var(--bg);
235
+ }
236
+
237
+ .styles-module_variantSolid__ND4hJ span {
238
+ color: var(--txt);
239
+ }
240
+
241
+ .styles-module_variantSolid__ND4hJ svg {
242
+ fill: var(--txt);
243
+ }
244
+
245
+ /* Variant: outline */
246
+ .styles-module_variantOutline__WhTf8 {
247
+ border-width: var(--buttonBorderWidth);
248
+ border-color: var(--bg);
249
+ background-color: transparent;
250
+ }
251
+
252
+ .styles-module_variantOutline__WhTf8:hover {
253
+ border-color: var(--hover);
254
+ }
255
+
256
+ .styles-module_variantOutline__WhTf8:hover span {
257
+ color: var(--hover);
258
+ }
259
+
260
+ .styles-module_variantOutline__WhTf8:hover svg {
261
+ fill: var(--hover);
262
+ }
263
+
264
+ .styles-module_variantOutline__WhTf8 span {
265
+ color: var(--txt);
266
+ }
267
+
268
+ .styles-module_variantOutline__WhTf8 svg {
269
+ fill: var(--txt);
270
+ }
271
+
272
+ /* Variant: text */
273
+ .styles-module_variantText__190Ra {
274
+ border-width: 0;
275
+ border-radius: 0;
276
+ background-color: transparent;
277
+ }
278
+
279
+ .styles-module_variantText__190Ra:hover span {
280
+ color: var(--hover);
281
+ }
282
+
283
+ .styles-module_variantText__190Ra:hover svg {
284
+ fill: var(--hover);
285
+ }
286
+
287
+ .styles-module_variantText__190Ra span {
288
+ color: var(--bg);
289
+ }
290
+
291
+ .styles-module_variantText__190Ra svg {
292
+ fill: var(--bg);
293
+ }
294
+
295
+ /* Border radius */
296
+ .styles-module_rounded__aTFDO {
297
+ border-radius: 999px;
298
+ }
299
+
300
+ .styles-module_notRounded__OpJGT {
301
+ border-radius: var(--buttonBorderRadius);
302
+ }
303
+
304
+ /* Icon only button (no value) */
305
+ .styles-module_iconOnly__eLTFN {
306
+ min-width: 2.625rem; /* 42px */
307
+ padding: 0;
308
+ }
309
+
310
+ /* Disabled state */
311
+ .styles-module_button__WayI2:disabled {
312
+ cursor: inherit;
313
+ opacity: 0.5;
314
+ }
315
+
316
+ .styles-module_button__WayI2:disabled:hover {
317
+ pointer-events: none;
318
+ }
319
+
320
+ /* Icon positioning */
321
+ .styles-module_iconLeft__IEBdU > *:not(:last-child) {
322
+ margin-right: var(--buttonIconSpacing);
323
+ }
324
+
325
+ .styles-module_iconRight__NrSP6 > *:not(:last-child) {
326
+ margin-left: var(--buttonIconSpacing);
327
+ }
328
+
329
+ /* Spinner */
330
+ .styles-module_button__WayI2 .spinner {
331
+ order: var(--spinnerOrder, 1);
332
+ }
333
+
334
+ /* Span (text) */
335
+ .styles-module_button__WayI2 span {
336
+ position: relative;
337
+ font-size: 1rem; /* 16px */
338
+ font-weight: var(--fontWeightMedium);
339
+ line-height: 1rem;
340
+ pointer-events: none;
341
+ transition-duration: var(--transitionDurationDefault);
342
+ order: var(--textOrder, 2);
343
+ }
344
+
345
+ /* SVG (icon) */
346
+ .styles-module_button__WayI2 svg {
347
+ order: var(--iconOrder, 1);
348
+ width: var(--buttonIconSize);
349
+ height: var(--buttonIconSize);
350
+ transition: var(--transitionDurationDefault);
351
+ }
352
+
353
+ .styles-module_wrapper__twPVT {
354
+ position: relative;
355
+ }
356
+
357
+ .styles-module_wrapper__twPVT ul {
358
+ position: absolute;
359
+ opacity: 0;
360
+ top: 0;
361
+ margin: 0;
362
+ border: 0.0625rem solid var(--fieldBorderColor); /* 1px */
363
+ border-radius: var(--fieldBorderRadius);
364
+ background-color: var(--fieldBackgroundColor);
365
+ min-width: 12.5rem; /* 200px */
366
+ max-width: 15.625rem; /* 250px */
367
+ height: 0;
368
+ max-height: none;
369
+ padding: 0;
370
+ -moz-box-shadow: 0 0 0.9375rem 0 var(--fieldBoxShadow); /* 15px */
371
+ -webkit-box-shadow: 0 0 0.9375rem 0 var(--fieldBoxShadow);
372
+ box-shadow: 0 0 0.9375rem 0 var(--fieldBoxShadow);
373
+ overflow-y: hidden;
374
+ z-index: 1;
375
+ -webkit-scrollbar-width: none;
376
+ -moz-scrollbar-width: none;
377
+ -ms-scrollbar-width: none;
378
+ scrollbar-width: none;
379
+ -webkit-overflow-scrolling: touch;
380
+ -ms-overflow-style: -ms-autohiding-scrollbar;
381
+ transition-duration: var(--transitionDurationDefault);
382
+ list-style: none;
383
+ }
384
+
385
+ .styles-module_wrapper__twPVT ul.styles-module_isOpen__CoqF7 {
386
+ opacity: 1;
387
+ height: var(--menuHeight);
388
+ max-height: 80rem; /* 1280px */
389
+ }
390
+
391
+ .styles-module_wrapper__twPVT ul li {
392
+ list-style: none;
393
+ min-height: 2.8125rem; /* 45px */
394
+ display: flex;
395
+ transition-duration: 0.3s;
396
+ }
397
+
398
+ .styles-module_wrapper__twPVT ul li:hover {
399
+ background-color: var(--fieldBorderColor);
400
+ cursor: pointer;
401
+ }
402
+
403
+ .styles-module_wrapper__twPVT ul li:first-child {
404
+ border-radius: 0.25rem 0.25rem 0 0; /* 4px */
405
+ }
406
+
407
+ .styles-module_wrapper__twPVT ul li:last-child {
408
+ border-radius: 0 0 0.25rem 0.25rem; /* 4px */
409
+ }
410
+
411
+ .styles-module_wrapper__twPVT ul li a {
412
+ width: 100%;
413
+ display: flex;
414
+ align-items: center;
415
+ padding: 0 1.25rem; /* 20px */
416
+ color: var(--fieldColor);
417
+ text-decoration: none;
418
+ white-space: nowrap;
419
+ }
420
+
421
+ .styles-module_wrapper__twPVT ul li a span {
422
+ display: table-cell;
423
+ overflow: hidden;
424
+ text-overflow: ellipsis;
425
+ }
426
+
427
+ .styles-module_buttonLink__W8jg3 {
428
+ border-style: solid;
429
+ background-color: transparent;
430
+ width: min-content;
431
+ min-width: var(--buttonMinWidth, 5rem); /* default 80px */
432
+ height: var(--buttonHeight);
433
+ display: flex;
434
+ justify-content: center;
435
+ align-items: center;
436
+ padding: 0 var(--buttonPadding);
437
+ white-space: nowrap;
438
+ text-decoration: none;
439
+ transition-duration: var(--transitionDurationDefault);
440
+ cursor: pointer;
441
+ }
442
+
443
+ /* Variant: solid */
444
+ .styles-module_variantSolid__myVZF {
445
+ border-width: 0;
446
+ border-color: var(--bg);
447
+ background-color: var(--bg);
448
+ }
449
+
450
+ .styles-module_variantSolid__myVZF:hover {
451
+ background-color: var(--hover);
452
+ }
453
+
454
+ .styles-module_variantSolid__myVZF span {
455
+ color: var(--txt);
456
+ }
457
+
458
+ .styles-module_variantSolid__myVZF svg {
459
+ fill: var(--txt);
460
+ }
461
+
462
+ /* Variant: outline */
463
+ .styles-module_variantOutline__jkoKx {
464
+ border-width: var(--buttonBorderWidth);
465
+ border-color: var(--bg);
466
+ background-color: transparent;
467
+ }
468
+
469
+ .styles-module_variantOutline__jkoKx:hover {
470
+ border-color: var(--hover);
471
+ }
472
+
473
+ .styles-module_variantOutline__jkoKx:hover span {
474
+ color: var(--hover);
475
+ }
476
+
477
+ .styles-module_variantOutline__jkoKx:hover svg {
478
+ fill: var(--hover);
479
+ }
480
+
481
+ .styles-module_variantOutline__jkoKx span {
482
+ color: var(--txt);
483
+ }
484
+
485
+ .styles-module_variantOutline__jkoKx svg {
486
+ fill: var(--txt);
487
+ }
488
+
489
+ /* Variant: text */
490
+ .styles-module_variantText__PLCPO {
491
+ border-width: 0;
492
+ border-radius: 0;
493
+ background-color: transparent;
494
+ }
495
+
496
+ .styles-module_variantText__PLCPO:hover span {
497
+ color: var(--hover);
498
+ }
499
+
500
+ .styles-module_variantText__PLCPO:hover svg {
501
+ fill: var(--hover);
502
+ }
503
+
504
+ .styles-module_variantText__PLCPO span {
505
+ color: var(--bg);
506
+ }
507
+
508
+ .styles-module_variantText__PLCPO svg {
509
+ fill: var(--bg);
510
+ }
511
+
512
+ /* Border radius */
513
+ .styles-module_rounded__dF-r0 {
514
+ border-radius: 999px;
515
+ }
516
+
517
+ .styles-module_notRounded__J5y-U {
518
+ border-radius: var(--buttonBorderRadius);
519
+ }
520
+
521
+ /* Icon only (no value) */
522
+ .styles-module_iconOnly__6iy32 {
523
+ min-width: 2.625rem; /* 42px */
524
+ padding: 0;
525
+ }
526
+
527
+ /* Icon positioning */
528
+ .styles-module_iconLeft__0hRCH > *:not(:last-child) {
529
+ margin-right: var(--buttonIconSpacing);
530
+ }
531
+
532
+ .styles-module_iconRight__slep4 > *:not(:last-child) {
533
+ margin-left: var(--buttonIconSpacing);
534
+ }
535
+
536
+ /* Span (text) */
537
+ .styles-module_buttonLink__W8jg3 span {
538
+ position: relative;
539
+ font-size: 1rem; /* 16px */
540
+ font-weight: var(--fontWeightMedium);
541
+ line-height: 1rem;
542
+ pointer-events: none;
543
+ transition-duration: var(--transitionDurationDefault);
544
+ order: var(--textOrder, 2);
545
+ }
546
+
547
+ /* SVG (icon) */
548
+ .styles-module_buttonLink__W8jg3 svg {
549
+ order: var(--iconOrder, 1);
550
+ width: var(--buttonIconSize);
551
+ height: var(--buttonIconSize);
552
+ transition: var(--transitionDurationDefault);
553
+ }
554
+
555
+ .styles-module_wrapper__DUP93 {
556
+ display: flex;
557
+ position: relative;
558
+ padding-left: 0;
559
+ cursor: pointer;
560
+ user-select: none;
561
+ }
562
+
563
+ .styles-module_wrapper__DUP93.styles-module_isDisabled__eN6kP {
564
+ cursor: auto;
565
+ }
566
+
567
+ .styles-module_wrapper__DUP93:hover input:not(:disabled) ~ span {
568
+ border-color: var(--fieldHoverBorderColor);
569
+ }
570
+
571
+ .styles-module_wrapper__DUP93.styles-module_hasError__t5bAM:hover input:not(:disabled) ~ span {
572
+ border-color: var(--fieldErrorBorderColor);
573
+ }
574
+
575
+ .styles-module_wrapper__DUP93.styles-module_hasError__t5bAM span {
576
+ color: var(--fieldErrorBorderColor);
577
+ border-color: var(--fieldErrorBorderColor);
578
+ }
579
+
580
+ .styles-module_wrapper__DUP93.styles-module_isDisabled__eN6kP span {
581
+ color: var(--fieldDisabledColor);
582
+ }
583
+
584
+ .styles-module_label__M8wiB {
585
+ margin-left: calc(1.5rem + 0.3125rem); /* 24px + 5px */
586
+ line-height: 1.5rem; /* 24px */
587
+ }
588
+
589
+ .styles-module_input__LLU1Z {
590
+ position: absolute;
591
+ left: 0;
592
+ opacity: 0;
593
+ cursor: pointer;
594
+ }
595
+
596
+ .styles-module_checkmark__HSkQY {
597
+ position: absolute;
598
+ top: 0;
599
+ left: 0;
600
+ border: 0.125rem solid var(--fieldBorderColor); /* 2px */
601
+ border-radius: 100%;
602
+ width: 1.5rem; /* 24px */
603
+ height: 1.5rem; /* 24px */
604
+ transition-duration: var(--transitionDurationDefault);
605
+ }
606
+
607
+ .styles-module_wrapper__DUP93.styles-module_hasError__t5bAM .styles-module_checkmark__HSkQY {
608
+ border-color: var(--fieldErrorBorderColor);
609
+ }
610
+
611
+ .styles-module_checkmark__HSkQY::after {
612
+ display: block;
613
+ content: '';
614
+ position: absolute;
615
+ display: none;
616
+ top: 0.1875rem; /* 3px */
617
+ left: 0.375rem; /* 6px */
618
+ width: 0.3125rem; /* 5px */
619
+ height: 0.5625rem; /* 9px */
620
+ border: solid var(--white);
621
+ border-width: 0 0.1875rem 0.1875rem 0; /* 3px */
622
+ transform: rotate(45deg);
623
+ }
624
+
625
+ .styles-module_checkmark__HSkQY.checked.not-disabled {
626
+ background-color: var(--fieldSuccessBackgroundColor);
627
+ border-color: var(--fieldSuccessBorderColor);
628
+ }
629
+
630
+ .styles-module_wrapper__DUP93.styles-module_hasError__t5bAM .styles-module_checkmark__HSkQY.checked.not-disabled {
631
+ background-color: var(--fieldErrorBackgroundColor);
632
+ border-color: var(--fieldErrorBorderColor);
633
+ }
634
+
635
+ .styles-module_checkmark__HSkQY.checked.not-disabled::after {
636
+ display: block;
637
+ }
638
+
639
+ .styles-module_checkmark__HSkQY.checked.disabled {
640
+ color: var(--fieldDisabledColor);
641
+ border-color: transparent;
642
+ background-color: var(--fieldDisabledBackgroundColor);
643
+ }
644
+
645
+ .styles-module_checkmark__HSkQY.checked.disabled::after {
646
+ display: block;
647
+ }
648
+
649
+ .styles-module_checkmark__HSkQY.not-checked.disabled {
650
+ border-color: var(--fieldDisabledBackgroundColor);
651
+ background-color: var(--white);
652
+ }
653
+
654
+ .styles-module_checkmark__HSkQY.not-disabled:hover {
655
+ border-color: var(--fieldSuccessBorderColor);
656
+ }
657
+
658
+ .styles-module_wrapper__DUP93.styles-module_hasError__t5bAM .styles-module_checkmark__HSkQY.not-disabled:hover {
659
+ border-color: var(--fieldErrorBorderColor);
660
+ }
661
+
662
+ .styles-module_checkmark__HSkQY.not-disabled:hover:checked ~ span {
663
+ border-color: var(--fieldSuccessBorderColor);
664
+ }
665
+
666
+ .styles-module_wrapper__DUP93.styles-module_hasError__t5bAM .styles-module_checkmark__HSkQY.not-disabled:hover:checked ~ span {
667
+ border-color: var(--fieldErrorBorderColor);
668
+ }
669
+
670
+ .styles-module_wrapper__bSMIp {
671
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
672
+ border-radius: var(--fieldBorderRadius);
673
+ background-color: var(--fieldBackgroundColor);
674
+ height: var(--fieldHeight);
675
+ display: flex;
676
+ align-items: center;
677
+ position: relative;
678
+ cursor: pointer;
679
+ user-select: none;
680
+ transition-duration: var(--transitionDurationDefault);
681
+ }
682
+
683
+ .styles-module_wrapper__bSMIp:hover input:not(:disabled) ~ span {
684
+ border-color: var(--fieldHoverBorderColor);
685
+ }
686
+
687
+ .styles-module_wrapper__bSMIp:hover {
688
+ background-color: var(--fieldBorderColor);
689
+ }
690
+
691
+ /* Checked state */
692
+ .styles-module_wrapper__bSMIp.styles-module_isChecked__gC6Ez {
693
+ border-color: var(--fieldSuccessBorderColor);
694
+ background-color: var(--fieldSuccessBackgroundColor);
695
+ }
696
+
697
+ .styles-module_wrapper__bSMIp.styles-module_isChecked__gC6Ez:hover {
698
+ background-color: var(--fieldSuccessBackgroundColor);
699
+ }
700
+
701
+ .styles-module_wrapper__bSMIp.styles-module_isChecked__gC6Ez span {
702
+ color: var(--white);
703
+ }
704
+
705
+ /* Disabled state */
706
+ .styles-module_wrapper__bSMIp.styles-module_isDisabled__MU48T {
707
+ border-color: var(--fieldBorderColor);
708
+ background-color: var(--fieldDisabledBackgroundColor);
709
+ cursor: auto;
710
+ }
711
+
712
+ .styles-module_wrapper__bSMIp.styles-module_isDisabled__MU48T:hover {
713
+ background-color: var(--fieldDisabledBackgroundColor);
714
+ }
715
+
716
+ .styles-module_wrapper__bSMIp.styles-module_isDisabled__MU48T span {
717
+ color: var(--fieldDisabledColor);
718
+ }
719
+
720
+ .styles-module_label__tOxdr {
721
+ margin-left: 2.5rem; /* 40px */
722
+ line-height: 1.5rem; /* 24px */
723
+ transition-duration: var(--transitionDurationDefault);
724
+ }
725
+
726
+ .styles-module_input__gB54E {
727
+ position: absolute;
728
+ left: 0;
729
+ opacity: 0;
730
+ cursor: pointer;
731
+ }
732
+
733
+ .styles-module_input__gB54E:checked:not(:disabled) ~ .styles-module_checkmark__Z1ZFj {
734
+ background-color: var(--white);
735
+ border-color: var(--fieldSuccessBorderColor);
736
+ }
737
+
738
+ .styles-module_input__gB54E:checked:not(:disabled) ~ .styles-module_checkmark__Z1ZFj::after {
739
+ display: block;
740
+ }
741
+
742
+ .styles-module_input__gB54E:checked:disabled ~ .styles-module_checkmark__Z1ZFj {
743
+ background-color: var(--fieldDisabledBackgroundColor);
744
+ color: var(--fieldDisabledColor);
745
+ }
746
+
747
+ .styles-module_input__gB54E:checked:disabled ~ .styles-module_checkmark__Z1ZFj::after {
748
+ display: block;
749
+ border-color: var(--fieldDisabledColor);
750
+ }
751
+
752
+ .styles-module_input__gB54E:not(:checked):disabled ~ .styles-module_checkmark__Z1ZFj {
753
+ border-color: var(--fieldDisabledBackgroundColor);
754
+ background-color: var(--fieldBackgroundColor);
755
+ }
756
+
757
+ .styles-module_input__gB54E:hover:not(:disabled):checked ~ .styles-module_checkmark__Z1ZFj {
758
+ border-color: var(--fieldSuccessBorderColor);
759
+ }
760
+
761
+ .styles-module_checkmark__Z1ZFj {
762
+ position: absolute;
763
+ left: 0.625rem; /* 10px */
764
+ border: 0.125rem solid var(--fieldBorderColor); /* 2px */
765
+ border-radius: 999px;
766
+ background-color: var(--white);
767
+ width: 1.5rem; /* 24px */
768
+ height: 1.5rem; /* 24px */
769
+ transition-duration: var(--transitionDurationDefault);
770
+ }
771
+
772
+ .styles-module_checkmark__Z1ZFj::after {
773
+ content: '';
774
+ position: absolute;
775
+ display: none;
776
+ top: 0.1875rem; /* 3px */
777
+ left: 0.375rem; /* 6px */
778
+ width: 0.3125rem; /* 5px */
779
+ height: 0.5625rem; /* 9px */
780
+ border: solid var(--fieldSuccessBorderColor);
781
+ border-width: 0 0.1875rem 0.1875rem 0; /* 3px */
782
+ transform: rotate(45deg);
783
+ }
784
+
785
+ .styles-module_wrapper__bSMIp.styles-module_isDisabled__MU48T .styles-module_checkmark__Z1ZFj::after {
786
+ border-color: var(--white);
787
+ }
788
+
789
+ .styles-module_errorField__ZPcA5 {
790
+ display: block;
791
+ font-size: 0.7rem;
792
+ color: var(--fieldErrorBorderColor);
793
+ }
794
+
795
+ .styles-module_errorField__ZPcA5.styles-module_colorSuccess__l9DUX {
796
+ color: var(--fieldSuccessBorderColor);
797
+ }
798
+
799
+ /* Adjacent sibling styles for form fields */
800
+ .text-field + .styles-module_errorField__ZPcA5,
801
+ textarea + .styles-module_errorField__ZPcA5,
802
+ select + .styles-module_errorField__ZPcA5,
803
+ input + .styles-module_errorField__ZPcA5 {
804
+ margin-top: 0.3125rem; /* 5px */
805
+ }
806
+
807
+ .styles-module_label__DjRWj {
808
+ display: flex;
809
+ align-items: center;
810
+ font-size: var(--fontSizeXs);
811
+ font-weight: 600;
812
+ color: var(--grey500);
813
+ }
814
+
815
+ .styles-module_label__DjRWj svg {
816
+ margin-left: 0.3125rem; /* 5px */
817
+ width: auto;
818
+ height: 1rem; /* 16px */
819
+ }
820
+
821
+ .styles-module_spinner__s-M7V {
822
+ border: 0.3125rem solid hsla(0, 0%, 48%, 0.5); /* 5px */
823
+ border-top-color: var(--spinnerFill, var(--white));
824
+ border-radius: 50%;
825
+ width: var(--spinnerSize, 1.25rem); /* 20px */
826
+ height: var(--spinnerSize, 1.25rem);
827
+ animation: styles-module_rotation__fxdZM 0.8s ease infinite;
828
+ }
829
+
830
+ @keyframes styles-module_rotation__fxdZM {
831
+ from {
832
+ transform: rotate(0deg);
833
+ }
834
+ to {
835
+ transform: rotate(360deg);
836
+ }
837
+ }
838
+
839
+ .styles-module_tag__yc4Gt {
840
+ display: inline-block;
841
+ border: 0.125rem solid var(--bg); /* 2px */
842
+ border-radius: 0.25rem; /* 4px */
843
+ padding: 0.1875rem 0.5rem; /* 3px 8px */
844
+ font-size: 0.75rem; /* 12px */
845
+ font-weight: 500;
846
+ text-transform: uppercase;
847
+ letter-spacing: 0.0625rem; /* 1px */
848
+ line-height: 1;
849
+ white-space: nowrap;
850
+ }
851
+
852
+ .styles-module_variantSolid__vZhs7 {
853
+ background-color: var(--bg);
854
+ color: var(--txt);
855
+ }
856
+
857
+ .styles-module_variantOutline__jkQzt {
858
+ background-color: transparent;
859
+ color: var(--bg);
860
+ }
861
+
862
+ .styles-module_wrapper__eV0xx {
863
+ display: flex;
864
+ border: 0.125rem solid var(--bg); /* 2px */
865
+ border-radius: 0.1875rem; /* 3px */
866
+ line-height: 1;
867
+ max-width: 100%;
868
+ width: max-content;
869
+ overflow: hidden;
870
+ }
871
+
872
+ .styles-module_wrapper__eV0xx:not(:first-child) {
873
+ margin-left: 0.3125rem; /* 5px */
874
+ }
875
+
876
+ .styles-module_label__S4EW1,
877
+ .styles-module_value__UeEnt {
878
+ display: inline-block;
879
+ padding: 0.1875rem 0.5rem; /* 3px 8px */
880
+ font-size: 0.75rem; /* 12px */
881
+ font-weight: 500;
882
+ letter-spacing: 0.0625rem; /* 1px */
883
+ }
884
+
885
+ .styles-module_label__S4EW1 {
886
+ flex: 1;
887
+ color: var(--bg);
888
+ overflow: hidden;
889
+ white-space: nowrap;
890
+ text-overflow: ellipsis;
891
+ text-transform: uppercase;
892
+ }
893
+
894
+ .styles-module_value__UeEnt {
895
+ background-color: var(--bg);
896
+ color: var(--valueColor);
897
+ }
898
+
899
+ .styles-module_textField__E47GP {
900
+ border-width: var(--fieldBorderWidth);
901
+ border-style: solid;
902
+ border-color: var(--fieldBorderColor);
903
+ border-radius: var(--fieldBorderRadius);
904
+ background-repeat: no-repeat;
905
+ background-size: 1.25rem 1.25rem; /* 20px */
906
+ background-position: 0.625rem 50%; /* 10px */
907
+ height: var(--fieldHeight);
908
+ padding: 0.625rem; /* 10px */
909
+ font-family: inherit;
910
+ font-size: 1rem;
911
+ transition-property: border-color;
912
+ transition-duration: var(--transitionDurationDefault);
913
+ }
914
+
915
+ .styles-module_textField__E47GP.styles-module_hasError__Ro-aE {
916
+ border-color: var(--fieldErrorBorderColor);
917
+ }
918
+
919
+ .styles-module_textField__E47GP:hover {
920
+ border-color: var(--fieldHoverBorderColor);
921
+ }
922
+
923
+ .styles-module_textField__E47GP:focus {
924
+ border-color: var(--fieldActiveBorderColor);
925
+ outline: none;
926
+ }
927
+
928
+ .styles-module_textField__E47GP:disabled {
929
+ border-color: var(--fieldBorderColor);
930
+ background-color: var(--fieldDisabledBackgroundColor);
931
+ color: var(--fieldDisabledColor);
932
+ }
933
+
934
+ .styles-module_textField__E47GP:invalid {
935
+ border-color: var(--fieldErrorBorderColor);
936
+ outline: none;
937
+ box-shadow: none;
938
+ }
939
+
940
+ .styles-module_textField__E47GP:required {
941
+ border-color: var(--fieldBorderColor);
942
+ }
943
+
944
+ .styles-module_textField__E47GP:required.styles-module_hasError__Ro-aE {
945
+ border-color: var(--fieldErrorBorderColor);
946
+ }
947
+
948
+ .styles-module_textField__E47GP::placeholder {
949
+ color: var(--fieldPlaceholderColor);
950
+ opacity: 1;
951
+ }
952
+
953
+ /* Icon support via CSS custom property */
954
+ .styles-module_hasIcon__GHHq4 {
955
+ background-image: var(--textFieldIcon);
956
+ padding-left: 2.5rem; /* 40px */
957
+ }
958
+
959
+ .styles-module_hasIcon__GHHq4:focus {
960
+ background-image: var(--textFieldIconFocus);
961
+ }
962
+
963
+ .styles-module_wrapper__5lrmS {
964
+ position: relative;
965
+ }
966
+
967
+ .styles-module_textarea__oLNx1 {
968
+ border-width: var(--fieldBorderWidth);
969
+ border-style: solid;
970
+ border-color: var(--fieldBorderColor);
971
+ border-radius: var(--fieldBorderRadius);
972
+ width: 100%;
973
+ height: var(--textareaHeight, 6.25rem); /* default 100px */
974
+ min-height: var(--fieldHeight);
975
+ padding: 0.625rem; /* 10px */
976
+ font-family: inherit;
977
+ font-size: 1rem; /* 16px */
978
+ word-break: break-word;
979
+ transition-duration: var(--transitionDurationDefault);
980
+ resize: none;
981
+ }
982
+
983
+ .styles-module_textarea__oLNx1.styles-module_hasError__Td-tp {
984
+ border-color: var(--fieldErrorBorderColor);
985
+ }
986
+
987
+ .styles-module_textarea__oLNx1:hover {
988
+ border-color: var(--fieldHoverBorderColor);
989
+ }
990
+
991
+ .styles-module_textarea__oLNx1:focus {
992
+ border-color: var(--fieldActiveBorderColor);
993
+ outline: none;
994
+ }
995
+
996
+ .styles-module_textarea__oLNx1:disabled {
997
+ background-color: var(--fieldDisabledBackgroundColor);
998
+ color: var(--fieldDisabledColor);
999
+ }
1000
+
1001
+ .styles-module_textarea__oLNx1:invalid {
1002
+ border-color: var(--fieldErrorBorderColor);
1003
+ outline: none;
1004
+ box-shadow: none;
1005
+ }
1006
+
1007
+ .styles-module_textarea__oLNx1:required {
1008
+ border-color: var(--fieldBorderColor);
1009
+ }
1010
+
1011
+ .styles-module_textarea__oLNx1:required.styles-module_hasError__Td-tp {
1012
+ border-color: var(--fieldErrorBorderColor);
1013
+ }
1014
+
1015
+ .styles-module_textarea__oLNx1::placeholder {
1016
+ color: var(--fieldPlaceholderColor);
1017
+ opacity: 1;
1018
+ }
1019
+
1020
+ .styles-module_count__5Mk2b {
1021
+ position: absolute;
1022
+ top: 0.3125rem; /* 5px */
1023
+ right: 0.625rem; /* 10px */
1024
+ background-color: rgba(255, 255, 255, 0.85);
1025
+ padding: 0 0.3125rem; /* 5px */
1026
+ }
1027
+
1028
+ .styles-module_count__5Mk2b span {
1029
+ font-size: var(--fontSizeXs);
1030
+ color: var(--fieldBorderColor);
1031
+ }
1032
+
1033
+ .styles-module_count__5Mk2b span.styles-module_negative__UeUBg {
1034
+ color: var(--fieldErrorBorderColor);
1035
+ }
1036
+
1037
+ .styles-module_select__SJleS {
1038
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
1039
+ border-radius: var(--fieldBorderRadius);
1040
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><path fill='rgb(217,212,237)' d='M10.827 12.387l5.173 5.173 5.173-5.173c0.52-0.52 1.36-0.52 1.88 0v0c0.52 0.52 0.52 1.36 0 1.88l-6.12 6.12c-0.52 0.52-1.36 0.52-1.88 0l-6.12-6.12c-0.52-0.52-0.52-1.36 0-1.88v0c0.52-0.507 1.373-0.52 1.893 0z'></path></svg>");
1041
+ background-position: calc(100% - 15px) center;
1042
+ background-repeat: no-repeat;
1043
+ background-size: 1.875rem; /* 30px */
1044
+ background-color: transparent;
1045
+ height: var(--fieldHeight);
1046
+ padding: 0 4.0625rem 0 0.9375rem; /* 65px 15px */
1047
+ font-size: var(--fontSizeM);
1048
+ appearance: none;
1049
+ cursor: pointer;
1050
+ transition-duration: var(--transitionDurationDefault);
1051
+ }
1052
+
1053
+ .styles-module_select__SJleS.styles-module_hasError__dDoiB {
1054
+ border-color: var(--fieldErrorBorderColor);
1055
+ }
1056
+
1057
+ .styles-module_select__SJleS:hover {
1058
+ border-color: var(--fieldHoverBorderColor);
1059
+ }
1060
+
1061
+ .styles-module_select__SJleS:-moz-focusring {
1062
+ color: transparent;
1063
+ text-shadow: 0 0 0 var(--black);
1064
+ }
1065
+
1066
+ .styles-module_select__SJleS:focus {
1067
+ outline: none;
1068
+ }
1069
+
1070
+ .styles-module_select__SJleS:disabled {
1071
+ background-color: var(--fieldDisabledBackgroundColor);
1072
+ color: var(--fieldDisabledColor);
1073
+ pointer-events: none;
1074
+ }
1075
+
1076
+ .styles-module_selectWrapper__R5DV4 .select-interactive {
1077
+ z-index: 3;
1078
+ }
1079
+
1080
+ .styles-module_selectWrapper__R5DV4 .select__control {
1081
+ border-color: var(--fieldBorderColor);
1082
+ border-radius: var(--fieldBorderRadius);
1083
+ min-height: var(--fieldHeight);
1084
+ transition-duration: var(--transitionDurationDefault);
1085
+ }
1086
+
1087
+ .styles-module_selectWrapper__R5DV4 .select__control:hover {
1088
+ border-color: var(--fieldHoverBorderColor);
1089
+ }
1090
+
1091
+ .styles-module_selectWrapper__R5DV4 .select__control--is-focused {
1092
+ border-color: var(--fieldActiveBorderColor);
1093
+ box-shadow: none;
1094
+ }
1095
+
1096
+ .styles-module_selectWrapper__R5DV4 .select__value-container {
1097
+ padding: 0 0.9375rem; /* 15px */
1098
+ }
1099
+
1100
+ .styles-module_selectWrapper__R5DV4 .select__placeholder {
1101
+ color: var(--fieldPlaceholderColor);
1102
+ }
1103
+
1104
+ .styles-module_selectWrapper__R5DV4 .select__input {
1105
+ color: var(--fieldColor);
1106
+ }
1107
+
1108
+ .styles-module_selectWrapper__R5DV4 .select__single-value {
1109
+ color: var(--fieldColor);
1110
+ }
1111
+
1112
+ .styles-module_selectWrapper__R5DV4 .select__indicator {
1113
+ padding: 0 0.9375rem; /* 15px */
1114
+ }
1115
+
1116
+ .styles-module_selectWrapper__R5DV4 .select__indicator:hover {
1117
+ color: inherit;
1118
+ }
1119
+
1120
+ .styles-module_selectWrapper__R5DV4 .select__indicator svg {
1121
+ width: 1.375rem; /* 22px */
1122
+ height: 1.375rem; /* 22px */
1123
+ }
1124
+
1125
+ .styles-module_selectWrapper__R5DV4 .select__indicator svg path {
1126
+ fill: var(--fieldBorderColor);
1127
+ }
1128
+
1129
+ .styles-module_selectWrapper__R5DV4 .select__indicator-separator {
1130
+ background-color: var(--fieldBorderColor);
1131
+ }
1132
+
1133
+ .styles-module_selectWrapper__R5DV4 .select__option {
1134
+ transition-duration: var(--transitionDurationDefault);
1135
+ }
1136
+
1137
+ .styles-module_selectWrapper__R5DV4 .select__option:hover {
1138
+ background-color: var(--fieldHoverBorderColor);
1139
+ color: var(--fieldColor);
1140
+ }
1141
+
1142
+ .styles-module_selectWrapper__R5DV4 .select__option:hover svg {
1143
+ fill: var(--fieldColor);
1144
+ }
1145
+
1146
+ .styles-module_selectWrapper__R5DV4 .select__option--is-focused {
1147
+ background-color: var(--fieldActiveBorderColor);
1148
+ color: var(--white);
1149
+ }
1150
+
1151
+ .styles-module_selectWrapper__R5DV4 .select__option--is-selected {
1152
+ background-color: var(--fieldActiveBorderColor) !important;
1153
+ color: var(--white) !important;
1154
+ }
1155
+
1156
+ .styles-module_selectWrapper__R5DV4 .select__value-container > div,
1157
+ .styles-module_selectWrapper__R5DV4 .select__option {
1158
+ display: flex;
1159
+ align-items: center;
1160
+ }
1161
+
1162
+ .styles-module_selectWrapper__R5DV4 .select__value-container.select__value-container--is-multi > div {
1163
+ align-items: stretch;
1164
+ }
1165
+
1166
+ .styles-module_selectWrapper__R5DV4 .select__value-container.select__value-container--is-multi .select__multi-value__remove {
1167
+ padding-right: 0;
1168
+ }
1169
+
1170
+ .styles-module_selectWrapper__R5DV4 .select__value-container svg,
1171
+ .styles-module_selectWrapper__R5DV4 .select__value-container img,
1172
+ .styles-module_selectWrapper__R5DV4 .select__option svg,
1173
+ .styles-module_selectWrapper__R5DV4 .select__option img {
1174
+ margin: 0 0.3125rem 0 0; /* 5px */
1175
+ width: 1.25rem; /* 20px */
1176
+ height: auto;
1177
+ transition-duration: var(--transitionDurationDefault);
1178
+ }
1179
+
1180
+ .styles-module_selectWrapper__R5DV4 .select__option--is-selected svg {
1181
+ fill: var(--white) !important;
1182
+ transition-duration: var(--transitionDurationDefault);
1183
+ }
1184
+
1185
+ .styles-module_selectWrapper__R5DV4 .select__option--is-focused svg {
1186
+ fill: var(--white);
1187
+ transition-duration: var(--transitionDurationDefault);
1188
+ }
1189
+
1190
+ .styles-module_selectWrapper__R5DV4 .select__option--is-disabled {
1191
+ pointer-events: none;
1192
+ }
1193
+
1194
+ /* SelectGroupLabel */
1195
+ .styles-module_selectGroupLabel__msCyK {
1196
+ font-size: var(--fontSizeXs);
1197
+ color: var(--fieldPlaceholderColor);
1198
+ }
1199
+
1200
+ .styles-module_selectGroupLabel__msCyK + .tag {
1201
+ border-color: var(--fieldBorderColor);
1202
+ background-color: var(--fieldBorderColor);
1203
+ color: var(--fieldActiveBorderColor);
1204
+ }
1205
+
1206
+ /* SingleValue */
1207
+ .styles-module_singleValue__jc-Sw {
1208
+ grid-area: 1 / 1 / 2 / 3;
1209
+ margin-left: 0.125rem; /* 2px */
1210
+ margin-right: 0.125rem; /* 2px */
1211
+ max-width: 100%;
1212
+ text-overflow: ellipsis;
1213
+ white-space: nowrap;
1214
+ overflow: hidden;
1215
+ box-sizing: border-box;
1216
+ }
1217
+
1218
+ .styles-module_wrapper__xERhC {
1219
+ border-width: var(--fieldBorderWidth);
1220
+ border-style: solid;
1221
+ border-color: var(--fieldBorderColor);
1222
+ border-radius: var(--fieldBorderRadius);
1223
+ display: flex;
1224
+ transition-duration: var(--transitionDurationDefault);
1225
+ overflow: hidden;
1226
+ }
1227
+
1228
+ .styles-module_wrapper__xERhC.styles-module_hasError__rMNyB {
1229
+ border-color: var(--fieldErrorBorderColor);
1230
+ }
1231
+
1232
+ .styles-module_wrapper__xERhC:hover {
1233
+ border-color: var(--fieldHoverBorderColor);
1234
+ }
1235
+
1236
+ .styles-module_wrapper__xERhC:has(input:focus) {
1237
+ border-color: var(--fieldActiveBorderColor);
1238
+ }
1239
+
1240
+ .styles-module_wrapper__xERhC:has(input:disabled) {
1241
+ background-color: var(--fieldDisabledBackgroundColor);
1242
+ color: var(--fieldDisabledColor);
1243
+ }
1244
+
1245
+ .styles-module_wrapper__xERhC:has(input:disabled) > div {
1246
+ background-color: var(--fieldDisabledBackgroundColor);
1247
+ color: var(--fieldDisabledColor);
1248
+ }
1249
+
1250
+ .styles-module_wrapper__xERhC input {
1251
+ flex: 1;
1252
+ border: 0;
1253
+ color: var(--fieldColor);
1254
+ }
1255
+
1256
+ .styles-module_wrapper__xERhC.styles-module_hasError__rMNyB input {
1257
+ color: var(--fieldErrorBorderColor);
1258
+ }
1259
+
1260
+ .styles-module_wrapper__xERhC input:disabled {
1261
+ margin: 0;
1262
+ border-radius: 0;
1263
+ }
1264
+
1265
+ .styles-module_wrapper__xERhC + span {
1266
+ margin-top: 0;
1267
+ }
1268
+
1269
+ .styles-module_wrapper__xERhC.styles-module_hasError__rMNyB + span {
1270
+ margin-top: 0.3125rem; /* 5px */
1271
+ }
1272
+
1273
+ .styles-module_appendix__KfOBb {
1274
+ border-style: solid;
1275
+ border-color: var(--fieldBorderColor);
1276
+ background-color: var(--fieldBorderColor);
1277
+ padding: 0 0.9375rem; /* 15px */
1278
+ color: var(--fieldColor);
1279
+ line-height: 3rem; /* 48px */
1280
+ vertical-align: center;
1281
+ overflow: hidden;
1282
+ white-space: nowrap;
1283
+ text-overflow: ellipsis;
1284
+ }
1285
+
1286
+ .styles-module_appendixLeft__r641- {
1287
+ border-width: 0 var(--fieldBorderWidth) 0 0;
1288
+ }
1289
+
1290
+ .styles-module_appendixRight__P-44c {
1291
+ border-width: 0 0 0 var(--fieldBorderWidth);
1292
+ }
1293
+
1294
+ .styles-module_appendix__KfOBb.styles-module_hasError__rMNyB {
1295
+ border-color: var(--fieldErrorBorderColor);
1296
+ background-color: var(--fieldErrorBackgroundColor);
1297
+ color: var(--fieldErrorBorderColor);
1298
+ }
1299
+
1300
+ .styles-module_wrapper__dNALi {
1301
+ display: table;
1302
+ table-layout: fixed;
1303
+ width: 100%;
1304
+ white-space: nowrap;
1305
+ }
1306
+
1307
+ .styles-module_wrapper__dNALi span {
1308
+ display: table-cell;
1309
+ overflow: hidden;
1310
+ text-overflow: ellipsis;
1311
+ }
1312
+
1313
+ .styles-module_wrapper__Bq3JF {
1314
+ position: relative;
1315
+ }
1316
+
1317
+ /* Carousel arrow controls */
1318
+ .styles-module_wrapper__Bq3JF .carousel .control-arrow,
1319
+ .styles-module_wrapper__Bq3JF .carousel.carousel-slider .control-arrow {
1320
+ -webkit-transition: all 0.25s ease-in;
1321
+ -moz-transition: all 0.25s ease-in;
1322
+ -ms-transition: all 0.25s ease-in;
1323
+ -o-transition: all 0.25s ease-in;
1324
+ transition: all 0.25s ease-in;
1325
+ opacity: 0.4;
1326
+ filter: alpha(opacity=40);
1327
+ position: absolute;
1328
+ z-index: 2;
1329
+ top: 1.25rem; /* 20px */
1330
+ background: none;
1331
+ border: 0;
1332
+ font-size: 2rem; /* 32px */
1333
+ cursor: pointer;
1334
+ }
1335
+
1336
+ .styles-module_wrapper__Bq3JF .carousel .control-arrow:hover {
1337
+ opacity: 1;
1338
+ filter: alpha(opacity=100);
1339
+ }
1340
+
1341
+ .styles-module_wrapper__Bq3JF .carousel .control-arrow::before,
1342
+ .styles-module_wrapper__Bq3JF .carousel.carousel-slider .control-arrow::before {
1343
+ margin: 0 0.3125rem; /* 5px */
1344
+ display: inline-block;
1345
+ border-top: 0.5rem solid transparent; /* 8px */
1346
+ border-bottom: 0.5rem solid transparent; /* 8px */
1347
+ content: '';
1348
+ }
1349
+
1350
+ .styles-module_wrapper__Bq3JF .carousel .control-disabled.control-arrow {
1351
+ opacity: 0;
1352
+ filter: alpha(opacity=0);
1353
+ cursor: inherit;
1354
+ display: none;
1355
+ }
1356
+
1357
+ .styles-module_wrapper__Bq3JF .carousel .control-prev.control-arrow {
1358
+ left: 0;
1359
+ }
1360
+
1361
+ .styles-module_wrapper__Bq3JF .carousel .control-prev.control-arrow::before {
1362
+ border-right: 0.5rem solid var(--white); /* 8px */
1363
+ }
1364
+
1365
+ .styles-module_wrapper__Bq3JF .carousel .control-next.control-arrow {
1366
+ right: 0;
1367
+ }
1368
+
1369
+ .styles-module_wrapper__Bq3JF .carousel .control-next.control-arrow::before {
1370
+ border-left: 0.5rem solid var(--white); /* 8px */
1371
+ }
1372
+
1373
+ .styles-module_wrapper__Bq3JF .carousel-root {
1374
+ outline: none;
1375
+ }
1376
+
1377
+ .styles-module_wrapper__Bq3JF .carousel {
1378
+ position: relative;
1379
+ width: 100%;
1380
+ }
1381
+
1382
+ .styles-module_wrapper__Bq3JF .carousel * {
1383
+ -webkit-box-sizing: border-box;
1384
+ -moz-box-sizing: border-box;
1385
+ box-sizing: border-box;
1386
+ }
1387
+
1388
+ .styles-module_wrapper__Bq3JF .carousel img {
1389
+ width: 100%;
1390
+ display: inline-block;
1391
+ pointer-events: none;
1392
+ }
1393
+
1394
+ .styles-module_wrapper__Bq3JF .carousel .carousel {
1395
+ position: relative;
1396
+ }
1397
+
1398
+ .styles-module_wrapper__Bq3JF .carousel .control-arrow {
1399
+ outline: 0;
1400
+ border: 0;
1401
+ background: none;
1402
+ top: 50%;
1403
+ margin-top: -0.8125rem; /* -13px */
1404
+ font-size: 1.125rem; /* 18px */
1405
+ }
1406
+
1407
+ .styles-module_wrapper__Bq3JF .carousel .thumbs-wrapper {
1408
+ margin: 1.25rem; /* 20px */
1409
+ overflow: hidden;
1410
+ }
1411
+
1412
+ .styles-module_wrapper__Bq3JF .carousel .thumbs {
1413
+ -webkit-transition: all 0.15s ease-in;
1414
+ -moz-transition: all 0.15s ease-in;
1415
+ -ms-transition: all 0.15s ease-in;
1416
+ -o-transition: all 0.15s ease-in;
1417
+ transition: all 0.15s ease-in;
1418
+ -webkit-transform: translate3d(0, 0, 0);
1419
+ -moz-transform: translate3d(0, 0, 0);
1420
+ -ms-transform: translate3d(0, 0, 0);
1421
+ -o-transform: translate3d(0, 0, 0);
1422
+ transform: translate3d(0, 0, 0);
1423
+ position: relative;
1424
+ list-style: none;
1425
+ white-space: nowrap;
1426
+ }
1427
+
1428
+ .styles-module_wrapper__Bq3JF .carousel .thumb {
1429
+ -webkit-transition: border 0.15s ease-in;
1430
+ -moz-transition: border 0.15s ease-in;
1431
+ -ms-transition: border 0.15s ease-in;
1432
+ -o-transition: border 0.15s ease-in;
1433
+ transition: border 0.15s ease-in;
1434
+ display: inline-block;
1435
+ margin-right: 0.375rem; /* 6px */
1436
+ white-space: nowrap;
1437
+ overflow: hidden;
1438
+ border: 0.1875rem solid var(--white); /* 3px */
1439
+ padding: 0.125rem; /* 2px */
1440
+ }
1441
+
1442
+ .styles-module_wrapper__Bq3JF .carousel .thumb:focus {
1443
+ border: 0.1875rem solid #ccc; /* 3px */
1444
+ outline: none;
1445
+ }
1446
+
1447
+ .styles-module_wrapper__Bq3JF .carousel .thumb.selected,
1448
+ .styles-module_wrapper__Bq3JF .carousel .thumb:hover {
1449
+ border: 0.1875rem solid #333; /* 3px */
1450
+ }
1451
+
1452
+ .styles-module_wrapper__Bq3JF .carousel .thumb img {
1453
+ vertical-align: top;
1454
+ }
1455
+
1456
+ .styles-module_wrapper__Bq3JF .carousel.carousel-slider {
1457
+ position: relative;
1458
+ margin: 0;
1459
+ overflow: hidden;
1460
+ }
1461
+
1462
+ .styles-module_wrapper__Bq3JF .carousel.carousel-slider .control-arrow {
1463
+ top: 0;
1464
+ color: var(--white);
1465
+ font-size: 1.625rem; /* 26px */
1466
+ bottom: 0;
1467
+ margin-top: 0;
1468
+ padding: 0.3125rem; /* 5px */
1469
+ }
1470
+
1471
+ .styles-module_wrapper__Bq3JF .carousel.carousel-slider .control-arrow:hover {
1472
+ background: rgba(0, 0, 0, 0.2);
1473
+ }
1474
+
1475
+ .styles-module_wrapper__Bq3JF .carousel .slider-wrapper {
1476
+ overflow: hidden;
1477
+ margin: auto;
1478
+ width: 100%;
1479
+ -webkit-transition: height 0.15s ease-in;
1480
+ -moz-transition: height 0.15s ease-in;
1481
+ -ms-transition: height 0.15s ease-in;
1482
+ -o-transition: height 0.15s ease-in;
1483
+ transition: height 0.15s ease-in;
1484
+ }
1485
+
1486
+ .styles-module_wrapper__Bq3JF .carousel .slider-wrapper.axis-horizontal .slider {
1487
+ -ms-box-orient: horizontal;
1488
+ display: -webkit-box;
1489
+ display: -moz-box;
1490
+ display: -ms-flexbox;
1491
+ display: -moz-flex;
1492
+ display: -webkit-flex;
1493
+ display: flex;
1494
+ }
1495
+
1496
+ .styles-module_wrapper__Bq3JF .carousel .slider-wrapper.axis-horizontal .slider .slide {
1497
+ flex-direction: column;
1498
+ flex-flow: column;
1499
+ }
1500
+
1501
+ .styles-module_wrapper__Bq3JF .carousel .slider-wrapper.axis-vertical {
1502
+ -ms-box-orient: horizontal;
1503
+ display: -webkit-box;
1504
+ display: -moz-box;
1505
+ display: -ms-flexbox;
1506
+ display: -moz-flex;
1507
+ display: -webkit-flex;
1508
+ display: flex;
1509
+ }
1510
+
1511
+ .styles-module_wrapper__Bq3JF .carousel .slider-wrapper.axis-vertical .slider {
1512
+ -webkit-flex-direction: column;
1513
+ flex-direction: column;
1514
+ }
1515
+
1516
+ .styles-module_wrapper__Bq3JF .carousel .slider {
1517
+ margin: 0;
1518
+ padding: 0;
1519
+ position: relative;
1520
+ list-style: none;
1521
+ width: 100%;
1522
+ }
1523
+
1524
+ .styles-module_wrapper__Bq3JF .carousel .slider.animated {
1525
+ -webkit-transition: all 0.35s ease-in-out;
1526
+ -moz-transition: all 0.35s ease-in-out;
1527
+ -ms-transition: all 0.35s ease-in-out;
1528
+ -o-transition: all 0.35s ease-in-out;
1529
+ transition: all 0.35s ease-in-out;
1530
+ }
1531
+
1532
+ .styles-module_wrapper__Bq3JF .carousel .slide {
1533
+ min-width: 100%;
1534
+ margin: 0;
1535
+ position: relative;
1536
+ text-align: center;
1537
+ background: #000;
1538
+ }
1539
+
1540
+ .styles-module_wrapper__Bq3JF .carousel .slide img {
1541
+ width: 100%;
1542
+ vertical-align: top;
1543
+ border: 0;
1544
+ }
1545
+
1546
+ .styles-module_wrapper__Bq3JF .carousel .carousel-status {
1547
+ position: absolute;
1548
+ top: 0;
1549
+ right: 0;
1550
+ padding: 0.3125rem; /* 5px */
1551
+ font-size: 0.625rem; /* 10px */
1552
+ text-shadow: 0.0625rem 0.0625rem 0.0625rem rgba(0, 0, 0, 0.9);
1553
+ color: var(--white);
1554
+ }
1555
+
1556
+ /* Navigation buttons */
1557
+ .styles-module_wrapper__Bq3JF > div > div > button {
1558
+ position: absolute;
1559
+ left: 1.875rem; /* 30px */
1560
+ bottom: 1.875rem; /* 30px */
1561
+ opacity: 0.25;
1562
+ z-index: 2;
1563
+ transition-duration: 0.3s;
1564
+ }
1565
+
1566
+ .styles-module_wrapper__Bq3JF > div > div > button svg {
1567
+ width: 2.25rem; /* 36px */
1568
+ height: 2.25rem; /* 36px */
1569
+ fill: var(--white);
1570
+ }
1571
+
1572
+ .styles-module_wrapper__Bq3JF > div > div > button.next {
1573
+ margin-left: 2.875rem; /* 46px */
1574
+ }
1575
+
1576
+ .styles-module_wrapper__Bq3JF > div > div > button:hover {
1577
+ opacity: 1;
1578
+ }
1579
+
1580
+ .styles-module_wrapper__Bq3JF > div > div > button:hover svg {
1581
+ fill: var(--white);
1582
+ }
1583
+
1584
+ @media (min-width: 768px) {
1585
+ .styles-module_wrapper__Bq3JF > div > div > button {
1586
+ left: 3.5vw;
1587
+ }
1588
+ }
1589
+
1590
+ /* Control dots */
1591
+ .styles-module_wrapper__Bq3JF .control-dots {
1592
+ position: absolute;
1593
+ right: 1.875rem; /* 30px */
1594
+ bottom: 2.625rem !important; /* 42px */
1595
+ margin: 0 !important;
1596
+ width: initial !important;
1597
+ height: 0.9375rem; /* 15px */
1598
+ display: var(--controlDotsDisplay, inherit);
1599
+ padding: 0;
1600
+ text-align: center;
1601
+ z-index: 1;
1602
+ }
1603
+
1604
+ .styles-module_hideDots__f4p0o .control-dots {
1605
+ display: none;
1606
+ }
1607
+
1608
+ .styles-module_wrapper__Bq3JF .control-dots li {
1609
+ position: relative;
1610
+ display: inline-block;
1611
+ border-radius: 999px;
1612
+ background-color: var(--white);
1613
+ width: 0.9375rem; /* 15px */
1614
+ height: 0.9375rem; /* 15px */
1615
+ opacity: 0.25;
1616
+ transition-duration: 0.3s;
1617
+ cursor: pointer;
1618
+ }
1619
+
1620
+ .styles-module_wrapper__Bq3JF .control-dots li button {
1621
+ position: absolute;
1622
+ left: 0;
1623
+ border: 0;
1624
+ border-radius: 999px;
1625
+ background-color: transparent;
1626
+ width: 0.9375rem; /* 15px */
1627
+ height: 0.9375rem; /* 15px */
1628
+ cursor: pointer;
1629
+ }
1630
+
1631
+ .styles-module_wrapper__Bq3JF .control-dots li.selected {
1632
+ width: 1.875rem; /* 30px */
1633
+ opacity: 1;
1634
+ }
1635
+
1636
+ .styles-module_wrapper__Bq3JF .control-dots li:hover {
1637
+ opacity: 1;
1638
+ }
1639
+
1640
+ .styles-module_wrapper__Bq3JF .control-dots li:not(:last-child) {
1641
+ margin-right: 0.3125rem; /* 5px */
1642
+ }
1643
+
1644
+ @media (min-width: 768px) {
1645
+ .styles-module_wrapper__Bq3JF .control-dots {
1646
+ right: 3.5vw;
1647
+ }
1648
+ }
1649
+
1650
+ .styles-module_wrapper__9cpcx {
1651
+ position: relative;
1652
+ padding-top: 56.25%;
1653
+ }
1654
+
1655
+ .styles-module_wrapper__lw1aF {
1656
+ display: flex;
1657
+ align-items: center;
1658
+ }
1659
+
1660
+ .styles-module_bar__jMsYa {
1661
+ flex: 1;
1662
+ border: 0.0625rem solid var(--purple100); /* 1px */
1663
+ border-radius: 999px;
1664
+ background-color: var(--grey50);
1665
+ height: 0.625rem; /* 10px */
1666
+ overflow: hidden;
1667
+ }
1668
+
1669
+ .styles-module_progress__IHx63 {
1670
+ border-radius: 999px;
1671
+ background-color: var(--purple500);
1672
+ height: 100%;
1673
+ transition-duration: 2s;
1674
+ }
1675
+
1676
+ .styles-module_value__uaCCj {
1677
+ margin-left: 0.3125rem; /* 5px */
1678
+ font-size: var(--fontSizeXs);
1679
+ font-weight: 400;
1680
+ color: var(--purple400);
1681
+ letter-spacing: 0.0625rem; /* 1px */
1682
+ text-transform: uppercase;
1683
+ }
1684
+
1685
+ .styles-module_switcher__lP2k- {
1686
+ margin: 0;
1687
+ border: none;
1688
+ padding: 0;
1689
+ }
1690
+
1691
+ .styles-module_switcher__lP2k- > div > label {
1692
+ cursor: pointer;
1693
+ }
1694
+
1695
+ .styles-module_switcher__lP2k-.styles-module_isDisabled__ppUwJ > div > label {
1696
+ cursor: not-allowed;
1697
+ }
1698
+
1699
+ .styles-module_switcher__lP2k- > div > label:first-child {
1700
+ margin-right: 0.625rem; /* 10px */
1701
+ }
1702
+
1703
+ .styles-module_switcher__lP2k- > div > label:last-child {
1704
+ margin-left: 0.625rem; /* 10px */
1705
+ }
1706
+
1707
+ .styles-module_switcher__lP2k- .wrapper {
1708
+ display: inline-block;
1709
+ vertical-align: middle;
1710
+ width: 2.5rem; /* 40px */
1711
+ height: 1.5625rem; /* 25px */
1712
+ border-radius: 999px;
1713
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
1714
+ position: relative;
1715
+ opacity: 1;
1716
+ }
1717
+
1718
+ .styles-module_switcher__lP2k-.styles-module_isDisabled__ppUwJ .wrapper {
1719
+ opacity: 0.5;
1720
+ }
1721
+
1722
+ .styles-module_switcher__lP2k- .wrapper input,
1723
+ .styles-module_switcher__lP2k- .wrapper span,
1724
+ .styles-module_switcher__lP2k- .wrapper label {
1725
+ cursor: pointer;
1726
+ }
1727
+
1728
+ .styles-module_switcher__lP2k-.styles-module_isDisabled__ppUwJ .wrapper input,
1729
+ .styles-module_switcher__lP2k-.styles-module_isDisabled__ppUwJ .wrapper span,
1730
+ .styles-module_switcher__lP2k-.styles-module_isDisabled__ppUwJ .wrapper label {
1731
+ cursor: not-allowed;
1732
+ }
1733
+
1734
+ .styles-module_switcher__lP2k- .wrapper input[type='radio'] {
1735
+ display: inline-block;
1736
+ margin: 0 -0.1875rem 0 0; /* -3px */
1737
+ width: 50%;
1738
+ height: 100%;
1739
+ opacity: 0;
1740
+ position: relative;
1741
+ z-index: 1;
1742
+ }
1743
+
1744
+ .styles-module_switcher__lP2k- .wrapper input[type='radio'].switch-on:checked ~ .switcher {
1745
+ right: 0;
1746
+ left: 50%;
1747
+ }
1748
+
1749
+ .styles-module_switcher__lP2k- .wrapper input[type='radio'].switch-on:checked ~ .bg {
1750
+ background-color: var(--green500);
1751
+ }
1752
+
1753
+ .styles-module_switcher__lP2k- .wrapper input[type='radio'].switch-off:checked ~ .switcher {
1754
+ right: 0;
1755
+ }
1756
+
1757
+ .styles-module_switcher__lP2k- .wrapper input[type='radio'].switch-off:checked ~ .bg {
1758
+ background-color: var(--grey100);
1759
+ }
1760
+
1761
+ .styles-module_switcher__lP2k- .wrapper .switcher {
1762
+ display: block;
1763
+ position: absolute;
1764
+ top: 0.1875rem; /* 3px */
1765
+ left: 0.1875rem; /* 3px */
1766
+ right: 100%;
1767
+ width: 1rem; /* 16px */
1768
+ height: 1rem; /* 16px */
1769
+ border-radius: 50%;
1770
+ background-color: var(--white);
1771
+ transition: all var(--transitionDurationDefault) ease-out;
1772
+ z-index: 2;
1773
+ }
1774
+
1775
+ .styles-module_switcher__lP2k- .wrapper .bg {
1776
+ display: block;
1777
+ position: absolute;
1778
+ top: 0;
1779
+ width: 100%;
1780
+ height: 100%;
1781
+ z-index: 0;
1782
+ border-radius: 999px;
1783
+ background-color: var(--grey200);
1784
+ transition: all var(--transitionDurationDefault) ease-out;
1785
+ }
1786
+
1787
+ @media screen and (-ms-high-contrast: active) {
1788
+ .styles-module_switcher__lP2k- .wrapper .switcher {
1789
+ background-color: windowText;
1790
+ }
1791
+ }
1792
+
1793
+ .styles-module_wrapper__8OmHx input {
1794
+ width: 0.1px;
1795
+ height: 0.1px;
1796
+ opacity: 0;
1797
+ overflow: hidden;
1798
+ position: absolute;
1799
+ z-index: -1;
1800
+ }
1801
+
1802
+ .styles-module_wrapper__8OmHx label {
1803
+ margin-bottom: 0 !important;
1804
+ border-width: var(--fieldBorderWidth);
1805
+ border-style: solid;
1806
+ border-color: var(--fieldBorderColor);
1807
+ border-radius: var(--fieldBorderRadius);
1808
+ background-color: transparent;
1809
+ display: flex;
1810
+ justify-content: space-between;
1811
+ align-items: center;
1812
+ width: 100%;
1813
+ height: var(--fieldHeight);
1814
+ -webkit-appearance: none;
1815
+ outline: none;
1816
+ cursor: pointer;
1817
+ transition-duration: var(--transitionDurationDefault);
1818
+ overflow: hidden;
1819
+ }
1820
+
1821
+ .styles-module_wrapper__8OmHx.styles-module_hasError__sRkr- label {
1822
+ border-color: var(--fieldErrorBorderColor);
1823
+ }
1824
+
1825
+ .styles-module_wrapper__8OmHx.styles-module_isDisabled__GUH8W label {
1826
+ background-color: var(--fieldDisabledBackgroundColor);
1827
+ cursor: default;
1828
+ pointer-events: none;
1829
+ }
1830
+
1831
+ .styles-module_wrapper__8OmHx label span {
1832
+ display: flex;
1833
+ align-items: center;
1834
+ }
1835
+
1836
+ .styles-module_wrapper__8OmHx label .file-name {
1837
+ flex: 1;
1838
+ display: block;
1839
+ padding: 0 0.625rem; /* 10px */
1840
+ color: var(--fieldColor);
1841
+ white-space: nowrap;
1842
+ overflow: hidden;
1843
+ text-overflow: ellipsis;
1844
+ }
1845
+
1846
+ .styles-module_wrapper__8OmHx.styles-module_isDisabled__GUH8W label .file-name {
1847
+ color: var(--fieldDisabledColor);
1848
+ }
1849
+
1850
+ .styles-module_wrapper__8OmHx label .button {
1851
+ border-left: var(--fieldBorderWidth) solid var(--fieldBorderColor);
1852
+ background-color: var(--fieldBorderColor);
1853
+ height: 100%;
1854
+ padding: 0 1.25rem; /* 20px */
1855
+ color: var(--fieldActiveBorderColor);
1856
+ transition-duration: var(--transitionDurationDefault);
1857
+ }
1858
+
1859
+ .styles-module_wrapper__8OmHx.styles-module_hasError__sRkr- label .button {
1860
+ border-left-color: var(--fieldErrorBorderColor);
1861
+ background-color: var(--fieldErrorBackgroundColor);
1862
+ color: var(--fieldErrorBorderColor);
1863
+ }
1864
+
1865
+ .styles-module_wrapper__8OmHx.styles-module_isDisabled__GUH8W label .button {
1866
+ background-color: var(--fieldDisabledBackgroundColor);
1867
+ color: var(--fieldDisabledColor);
1868
+ }
1869
+
1870
+ .styles-module_wrapper__8OmHx label .button svg {
1871
+ margin-right: 0.5rem; /* 8px */
1872
+ width: auto;
1873
+ height: 1.5rem; /* 24px */
1874
+ fill: var(--fieldActiveBorderColor);
1875
+ transition-duration: var(--transitionDurationDefault);
1876
+ }
1877
+
1878
+ .styles-module_wrapper__8OmHx.styles-module_hasError__sRkr- label .button svg {
1879
+ fill: var(--fieldErrorBorderColor);
1880
+ }
1881
+
1882
+ .styles-module_wrapper__8OmHx.styles-module_isDisabled__GUH8W label .button svg {
1883
+ fill: var(--fieldDisabledColor);
1884
+ }
1885
+
1886
+ .styles-module_wrapper__8OmHx label .button:hover {
1887
+ background-color: var(--fieldHoverBorderColor);
1888
+ }
1889
+
1890
+ .styles-module_wrapper__8OmHx label:hover {
1891
+ border-color: var(--fieldHoverBorderColor);
1892
+ }
1893
+
1894
+ .styles-module_wrapper__8OmHx label:hover .button {
1895
+ background-color: var(--fieldHoverBorderColor);
1896
+ }
1897
+
1898
+ .styles-module_actionsMenu__6VJZS {
1899
+ height: 3.125rem; /* 50px */
1900
+ }
1901
+
1902
+ .styles-module_actionsMenu__6VJZS button {
1903
+ margin-top: 0.4375rem; /* 7px */
1904
+ }
1905
+
1906
+ .styles-module_list__tMzQO {
1907
+ position: absolute;
1908
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
1909
+ border-radius: var(--fieldBorderRadius);
1910
+ background-color: var(--fieldBackgroundColor);
1911
+ margin-top: 0.3125rem; /* 5px */
1912
+ min-width: 12.5rem; /* 200px */
1913
+ max-width: 15.625rem; /* 250px */
1914
+ padding: 0;
1915
+ -moz-box-shadow: var(--fieldBoxShadow);
1916
+ -webkit-box-shadow: var(--fieldBoxShadow);
1917
+ box-shadow: var(--fieldBoxShadow);
1918
+ overflow: hidden;
1919
+ z-index: 1;
1920
+ }
1921
+
1922
+ .styles-module_hasRowIndex__0sMb5 {
1923
+ top: var(--rowIndexMargin);
1924
+ right: 0.3125rem; /* 5px */
1925
+ }
1926
+
1927
+ .styles-module_list__tMzQO li {
1928
+ list-style: none;
1929
+ min-height: 2.8125rem; /* 45px */
1930
+ display: flex;
1931
+ transition-duration: 0.3s;
1932
+ }
1933
+
1934
+ .styles-module_list__tMzQO li:hover {
1935
+ background-color: var(--fieldHoverBorderColor);
1936
+ cursor: pointer;
1937
+ }
1938
+
1939
+ .styles-module_list__tMzQO li.danger {
1940
+ border-top: var(--fieldBorderWidth) solid var(--fieldBorderColor);
1941
+ }
1942
+
1943
+ .styles-module_list__tMzQO li.danger a {
1944
+ color: var(--fieldErrorBorderColor);
1945
+ }
1946
+
1947
+ .styles-module_list__tMzQO li.disabled a {
1948
+ color: var(--fieldDisabledColor);
1949
+ pointer-events: none;
1950
+ }
1951
+
1952
+ .styles-module_list__tMzQO li.disabled:hover {
1953
+ background-color: transparent;
1954
+ }
1955
+
1956
+ .styles-module_list__tMzQO li a {
1957
+ width: 100%;
1958
+ display: flex;
1959
+ align-items: center;
1960
+ padding: 0 1.25rem; /* 20px */
1961
+ color: var(--fieldColor);
1962
+ text-decoration: none;
1963
+ white-space: nowrap;
1964
+ }
1965
+
1966
+ .styles-module_list__tMzQO li a span {
1967
+ display: table-cell;
1968
+ overflow: hidden;
1969
+ text-overflow: ellipsis;
1970
+ }
1971
+
1972
+ .styles-module_cardValue__-Yl7- {
1973
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
1974
+ border-radius: var(--fieldBorderRadius);
1975
+ background-color: var(--white);
1976
+ display: flex;
1977
+ flex-direction: column;
1978
+ padding: 0.9375rem; /* 15px */
1979
+ overflow-x: auto;
1980
+ }
1981
+
1982
+ .styles-module_cardValue__-Yl7- > span {
1983
+ display: block;
1984
+ margin-top: 0.3125rem; /* 5px */
1985
+ font-size: 2rem; /* 32px */
1986
+ font-weight: 600;
1987
+ line-height: 1;
1988
+ white-space: nowrap;
1989
+ overflow: hidden;
1990
+ text-overflow: ellipsis;
1991
+ }
1992
+
1993
+ .styles-module_cardValue__-Yl7- a,
1994
+ .styles-module_cardValue__-Yl7- button {
1995
+ margin-top: 1.25rem; /* 20px */
1996
+ }
1997
+
1998
+ .styles-module_wrapper__oAhGH {
1999
+ position: relative;
2000
+ }
2001
+
2002
+ .styles-module_head__w9r9p {
2003
+ border-style: solid;
2004
+ border-color: var(--grey200);
2005
+ border-radius: var(--fieldBorderRadius) var(--fieldBorderRadius) 0 0;
2006
+ height: 3.125rem; /* 50px */
2007
+ display: flex;
2008
+ align-items: center;
2009
+ font-size: var(--fontSizeS);
2010
+ font-weight: 600;
2011
+ color: var(--grey400);
2012
+ }
2013
+
2014
+ .styles-module_head__w9r9p.styles-module_hasBorder__-ggIL {
2015
+ border-width: var(--fieldBorderWidth);
2016
+ }
2017
+
2018
+ .styles-module_head__w9r9p.styles-module_noBorder__mY-YV {
2019
+ border-width: 0 0 var(--fieldBorderWidth) 0;
2020
+ }
2021
+
2022
+ .styles-module_head__w9r9p > div {
2023
+ white-space: nowrap;
2024
+ overflow: hidden;
2025
+ text-overflow: ellipsis;
2026
+ display: none;
2027
+ flex: 1;
2028
+ padding: 0 0.9375rem; /* 15px */
2029
+ font-size: var(--fontSizeS);
2030
+ font-weight: 600;
2031
+ color: var(--grey400);
2032
+ }
2033
+
2034
+ .styles-module_head__w9r9p > div:first-child,
2035
+ .styles-module_head__w9r9p > div:nth-child(2) {
2036
+ display: initial;
2037
+ }
2038
+
2039
+ @media (min-width: 700px) {
2040
+ .styles-module_head__w9r9p > div:nth-child(3) {
2041
+ display: initial;
2042
+ }
2043
+ }
2044
+
2045
+ @media (min-width: 900px) {
2046
+ .styles-module_head__w9r9p > div:nth-child(4) {
2047
+ display: initial;
2048
+ }
2049
+ }
2050
+
2051
+ @media (min-width: 1280px) {
2052
+ .styles-module_head__w9r9p > div {
2053
+ display: initial;
2054
+ }
2055
+ }
2056
+
2057
+ .styles-module_body__Z-oWZ {
2058
+ border-style: solid;
2059
+ border-color: var(--grey200);
2060
+ border-radius: 0 0 var(--fieldBorderRadius) var(--fieldBorderRadius);
2061
+ }
2062
+
2063
+ .styles-module_body__Z-oWZ.styles-module_hasBorder__-ggIL {
2064
+ border-width: 0 var(--fieldBorderWidth) var(--fieldBorderWidth) var(--fieldBorderWidth);
2065
+ }
2066
+
2067
+ .styles-module_body__Z-oWZ.styles-module_noBorder__mY-YV {
2068
+ border-width: 0;
2069
+ }
2070
+
2071
+ .styles-module_row__SqIQB {
2072
+ height: 3.125rem; /* 50px */
2073
+ display: flex;
2074
+ align-items: center;
2075
+ }
2076
+
2077
+ .styles-module_row__SqIQB:not(:last-child) {
2078
+ border-bottom: var(--fieldBorderWidth) solid var(--grey200);
2079
+ }
2080
+
2081
+ .styles-module_row__SqIQB > div {
2082
+ display: none;
2083
+ flex: 1;
2084
+ padding: 0 0.9375rem; /* 15px */
2085
+ }
2086
+
2087
+ .styles-module_row__SqIQB > div:first-child,
2088
+ .styles-module_row__SqIQB > div:nth-child(2) {
2089
+ display: inherit;
2090
+ }
2091
+
2092
+ @media (min-width: 700px) {
2093
+ .styles-module_row__SqIQB > div:nth-child(3) {
2094
+ display: inherit;
2095
+ }
2096
+ }
2097
+
2098
+ @media (min-width: 900px) {
2099
+ .styles-module_row__SqIQB > div:nth-child(4) {
2100
+ display: inherit;
2101
+ }
2102
+ }
2103
+
2104
+ @media (min-width: 1280px) {
2105
+ .styles-module_row__SqIQB > div {
2106
+ display: inherit;
2107
+ }
2108
+ }
2109
+
2110
+ .styles-module_cellText__TD41M {
2111
+ background-color: var(--grey200);
2112
+ width: 100%;
2113
+ height: 0.9375rem; /* 15px */
2114
+ }
2115
+
2116
+ .styles-module_overlay__PMB49 {
2117
+ position: absolute;
2118
+ bottom: 0;
2119
+ background-image: linear-gradient(
2120
+ to bottom,
2121
+ rgba(255, 255, 255, 0),
2122
+ rgba(255, 255, 255, 1)
2123
+ );
2124
+ width: 100%;
2125
+ height: calc(100% - 3.125rem); /* 50px */
2126
+ display: flex;
2127
+ justify-content: center;
2128
+ align-items: flex-end;
2129
+ padding: 0 0.9375rem 0.9375rem 0.9375rem; /* 15px */
2130
+ text-align: center;
2131
+ color: var(--grey400);
2132
+ }
2133
+
2134
+ .styles-module_footer__OUMnw {
2135
+ position: relative;
2136
+ margin-top: 3.125rem; /* 50px */
2137
+ max-width: 100%;
2138
+ display: flex;
2139
+ justify-content: center;
2140
+ }
2141
+
2142
+ .styles-module_footer__OUMnw > button {
2143
+ min-width: 6.25rem; /* 100px */
2144
+ }
2145
+
2146
+ .styles-module_footer__OUMnw > button:not(:last-child) {
2147
+ margin-right: 0.3125rem; /* 5px */
2148
+ }
2149
+
2150
+ @media (min-width: 700px) {
2151
+ .styles-module_footer__OUMnw {
2152
+ justify-content: flex-end;
2153
+ }
2154
+ }
2155
+
2156
+ .styles-module_wrapper__linV7 {
2157
+ --borderColor: var(--fieldBorderColor);
2158
+ --backgroundColor: var(--purple50);
2159
+ --dark: var(--purple400);
2160
+ border-width: var(--fieldBorderWidth);
2161
+ border-style: solid;
2162
+ border-color: var(--borderColor);
2163
+ border-radius: var(--fieldBorderRadius);
2164
+ background-color: var(--backgroundColor);
2165
+ padding: 0.9375rem; /* 15px */
2166
+ }
2167
+
2168
+ .styles-module_wrapper__linV7 div:first-child {
2169
+ flex: 1;
2170
+ }
2171
+
2172
+ .styles-module_wrapper__linV7 div p {
2173
+ margin: 0;
2174
+ }
2175
+
2176
+ /* Color variants */
2177
+ .styles-module_colorGrey__IbOjK {
2178
+ --borderColor: var(--fieldBorderColor);
2179
+ --backgroundColor: var(--purple50);
2180
+ --dark: var(--purple400);
2181
+ }
2182
+
2183
+ .styles-module_colorGreen__8M37R {
2184
+ --borderColor: var(--fieldSuccessBorderColor);
2185
+ --backgroundColor: var(--fieldSuccessBackgroundColor);
2186
+ --dark: var(--green900);
2187
+ }
2188
+
2189
+ .styles-module_colorRed__Znsid {
2190
+ --borderColor: var(--fieldErrorBorderColor);
2191
+ --backgroundColor: var(--fieldErrorBackgroundColor);
2192
+ --dark: var(--red800);
2193
+ }
2194
+
2195
+ /* With button styles */
2196
+ .styles-module_hasButton__xhknj button {
2197
+ margin: 1.875rem 0 0 0; /* 30px */
2198
+ border: 0;
2199
+ border-radius: var(--fieldBorderRadius);
2200
+ background-color: var(--borderColor);
2201
+ height: 2.25rem; /* 36px */
2202
+ display: flex;
2203
+ justify-content: center;
2204
+ align-items: center;
2205
+ padding: 1.25rem; /* 20px */
2206
+ font-size: var(--fontSizeSm);
2207
+ font-weight: var(--fontWeightMedium);
2208
+ color: var(--dark);
2209
+ white-space: nowrap;
2210
+ transition-duration: var(--transitionDurationDefault);
2211
+ cursor: pointer;
2212
+ }
2213
+
2214
+ .styles-module_hasButton__xhknj button:hover {
2215
+ background-color: var(--dark);
2216
+ color: var(--white);
2217
+ }
2218
+
2219
+ @media (min-width: 576px) {
2220
+ .styles-module_hasButton__xhknj {
2221
+ display: flex;
2222
+ align-items: center;
2223
+ }
2224
+
2225
+ .styles-module_hasButton__xhknj button {
2226
+ margin: 0 0 0 1.875rem; /* 30px */
2227
+ }
2228
+ }
2229
+
2230
+ .styles-module_tableWrapper__3BMSW {
2231
+ position: relative;
2232
+ }
2233
+
2234
+ .styles-module_overflowWrapper__9-UdS {
2235
+ @media (min-width: 576px) {
2236
+ display: block;
2237
+ border-radius: var(--fieldBorderRadius);
2238
+ background:
2239
+ linear-gradient(to right, var(--white) 30%, rgba(255, 255, 255, 0)),
2240
+ linear-gradient(to right, rgba(255, 255, 255, 0), var(--white) 70%) 0 100%,
2241
+ radial-gradient(farthest-side at 0% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
2242
+ radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
2243
+ background-repeat: no-repeat;
2244
+ background-color: var(--white);
2245
+ background-size:
2246
+ 2.5rem 100%,
2247
+ 2.5rem 100%,
2248
+ 0.875rem 100%,
2249
+ 0.875rem 100%;
2250
+ background-position:
2251
+ 0 0,
2252
+ 100%,
2253
+ 0 0,
2254
+ 100%;
2255
+ background-attachment: local, local, scroll, scroll;
2256
+ overflow-x: auto;
2257
+ -webkit-overflow-scrolling: touch;
2258
+ -ms-overflow-style: -ms-autohiding-scrollbar;
2259
+ scrollbar-width: none;
2260
+ }
2261
+ }
2262
+
2263
+ .styles-module_table__514lH {
2264
+ width: 100%;
2265
+ border-width: 0;
2266
+ border-style: solid;
2267
+ border-color: var(--grey200);
2268
+ border-radius: var(--fieldBorderRadius);
2269
+ border-spacing: 0;
2270
+ white-space: nowrap;
2271
+ }
2272
+
2273
+ .styles-module_hasBorder__9Tkv5 {
2274
+ @media (min-width: 576px) {
2275
+ border-width: var(--fieldBorderWidth);
2276
+ }
2277
+ }
2278
+
2279
+ .styles-module_table__514lH th,
2280
+ .styles-module_table__514lH td {
2281
+ height: 3.125rem; /* 50px */
2282
+ padding: 0 0.9375rem; /* 15px */
2283
+ }
2284
+
2285
+ .styles-module_table__514lH th.center,
2286
+ .styles-module_table__514lH td.center {
2287
+ text-align: center;
2288
+ }
2289
+
2290
+ .styles-module_table__514lH th.center > div,
2291
+ .styles-module_table__514lH td.center > div {
2292
+ justify-content: center;
2293
+ }
2294
+
2295
+ .styles-module_table__514lH th.right,
2296
+ .styles-module_table__514lH td.right {
2297
+ text-align: right;
2298
+ }
2299
+
2300
+ .styles-module_table__514lH th.right > div,
2301
+ .styles-module_table__514lH td.right > div {
2302
+ justify-content: flex-end;
2303
+ }
2304
+
2305
+ @media (min-width: 576px) {
2306
+ .styles-module_table__514lH th.thin,
2307
+ .styles-module_table__514lH td.thin {
2308
+ max-width: min-content;
2309
+ }
2310
+ }
2311
+
2312
+ .styles-module_table__514lH th.vkai,
2313
+ .styles-module_table__514lH td.vkai,
2314
+ .styles-module_table__514lH th.tkai,
2315
+ .styles-module_table__514lH td.tkai,
2316
+ .styles-module_table__514lH th.lx,
2317
+ .styles-module_table__514lH td.lx,
2318
+ .styles-module_table__514lH th.vote,
2319
+ .styles-module_table__514lH td.vote {
2320
+ text-align: right;
2321
+ }
2322
+
2323
+ .styles-module_table__514lH th.vkai > div,
2324
+ .styles-module_table__514lH td.vkai > div,
2325
+ .styles-module_table__514lH th.tkai > div,
2326
+ .styles-module_table__514lH td.tkai > div,
2327
+ .styles-module_table__514lH th.lx > div,
2328
+ .styles-module_table__514lH td.lx > div,
2329
+ .styles-module_table__514lH th.vote > div,
2330
+ .styles-module_table__514lH td.vote > div {
2331
+ justify-content: flex-end;
2332
+ }
2333
+
2334
+ .styles-module_table__514lH th.avatar > div,
2335
+ .styles-module_table__514lH td.avatar > div {
2336
+ display: flex;
2337
+ align-items: center;
2338
+ }
2339
+
2340
+ .styles-module_table__514lH th.avatar .avatar-img,
2341
+ .styles-module_table__514lH td.avatar .avatar-img {
2342
+ margin-right: 0.9375rem; /* 15px */
2343
+ }
2344
+
2345
+ .styles-module_table__514lH th {
2346
+ font-size: var(--fontSizeSm);
2347
+ }
2348
+
2349
+ .styles-module_table__514lH th:first-child {
2350
+ border-top-left-radius: var(--fieldBorderRadius);
2351
+ }
2352
+
2353
+ .styles-module_table__514lH th:last-child {
2354
+ border-top-right-radius: var(--fieldBorderRadius);
2355
+ }
2356
+
2357
+ .styles-module_table__514lH tr {
2358
+ border: var(--fieldBorderWidth) solid var(--grey200);
2359
+ border-radius: var(--fieldBorderRadius);
2360
+ position: relative;
2361
+ }
2362
+
2363
+ .styles-module_table__514lH tr:not(:last-child) {
2364
+ margin-bottom: 0.9375rem; /* 15px */
2365
+ }
2366
+
2367
+ @media (min-width: 576px) {
2368
+ .styles-module_table__514lH tr {
2369
+ border: 0;
2370
+ }
2371
+ }
2372
+
2373
+ .styles-module_table__514lH thead {
2374
+ border: none;
2375
+ clip: rect(0 0 0 0);
2376
+ height: 0.0625rem; /* 1px */
2377
+ margin: -0.0625rem; /* -1px */
2378
+ overflow: hidden;
2379
+ padding: 0;
2380
+ position: absolute;
2381
+ width: 0.0625rem; /* 1px */
2382
+ }
2383
+
2384
+ @media (min-width: 576px) {
2385
+ .styles-module_table__514lH thead {
2386
+ display: contents;
2387
+ font-weight: var(--fontWeightSemiBold);
2388
+ color: var(--grey400);
2389
+ text-align: left;
2390
+ }
2391
+ }
2392
+
2393
+ .styles-module_table__514lH tbody tr {
2394
+ display: block;
2395
+ transition-duration: var(--transitionDurationDefault);
2396
+ }
2397
+
2398
+ .styles-module_table__514lH tbody tr:hover {
2399
+ background-color: var(--grey50);
2400
+ }
2401
+
2402
+ .styles-module_isLoadingState__Wfsbp tbody tr:hover {
2403
+ background-color: transparent;
2404
+ }
2405
+
2406
+ .styles-module_table__514lH tbody tr:hover td.menu button {
2407
+ opacity: 1;
2408
+ }
2409
+
2410
+ @media (min-width: 576px) {
2411
+ .styles-module_table__514lH tbody tr {
2412
+ display: table-row;
2413
+ }
2414
+ }
2415
+
2416
+ .styles-module_table__514lH tbody td {
2417
+ border-top: var(--fieldBorderWidth) solid var(--grey200);
2418
+ height: inherit;
2419
+ min-height: 3.125rem; /* 50px */
2420
+ padding: 0.9375rem; /* 15px */
2421
+ display: flex;
2422
+ justify-content: flex-end;
2423
+ align-items: center;
2424
+ }
2425
+
2426
+ .styles-module_table__514lH tbody td > div {
2427
+ margin-left: 6.25rem; /* 100px */
2428
+ height: 100%;
2429
+ display: flex;
2430
+ justify-content: flex-end;
2431
+ align-items: center;
2432
+ flex-wrap: nowrap;
2433
+ text-align: right;
2434
+ }
2435
+
2436
+ .styles-module_table__514lH tbody td > div > span {
2437
+ display: none;
2438
+ }
2439
+
2440
+ .styles-module_table__514lH tbody td > div > span:first-child,
2441
+ .styles-module_table__514lH tbody td > div > span:last-child {
2442
+ display: inherit;
2443
+ }
2444
+
2445
+ .styles-module_table__514lH tbody td img {
2446
+ min-width: 1.875rem; /* 30px */
2447
+ min-height: 1.875rem; /* 30px */
2448
+ }
2449
+
2450
+ .styles-module_table__514lH tbody td a {
2451
+ display: flex;
2452
+ align-items: center;
2453
+ color: var(--black);
2454
+ text-decoration-color: var(--grey400);
2455
+ }
2456
+
2457
+ .styles-module_table__514lH tbody td:first-child {
2458
+ border: 0;
2459
+ }
2460
+
2461
+ .styles-module_table__514lH tbody td::before {
2462
+ position: absolute;
2463
+ left: 0.9375rem; /* 15px */
2464
+ content: attr(data-label);
2465
+ font-weight: var(--fontWeightSemiBold);
2466
+ text-transform: capitalize;
2467
+ }
2468
+
2469
+ .styles-module_isLoadingState__Wfsbp tbody td::before {
2470
+ width: 4.6875rem; /* 75px */
2471
+ height: 0.9375rem; /* 15px */
2472
+ background: #f6f7f8;
2473
+ background-image: -webkit-linear-gradient(
2474
+ left,
2475
+ #f6f7f8 0%,
2476
+ #edeef1 20%,
2477
+ #f6f7f8 40%,
2478
+ #f6f7f8 100%
2479
+ );
2480
+ background-repeat: no-repeat;
2481
+ background-size: 50rem 100%; /* 800px */
2482
+ animation-fill-mode: forwards;
2483
+ animation-name: styles-module_placeholderSkeleton__YqC9J;
2484
+ animation-timing-function: linear;
2485
+ animation-iteration-count: infinite;
2486
+ animation-duration: 1.5s;
2487
+ }
2488
+
2489
+ .styles-module_table__514lH tbody td.tkai svg,
2490
+ .styles-module_table__514lH tbody td.vkai svg,
2491
+ .styles-module_table__514lH tbody td.lx svg,
2492
+ .styles-module_table__514lH tbody td.vote svg {
2493
+ float: right;
2494
+ margin-left: 0.3125rem; /* 5px */
2495
+ width: auto;
2496
+ min-width: 1.375rem; /* 22px */
2497
+ max-height: 1.375rem; /* 22px */
2498
+ }
2499
+
2500
+ .styles-module_table__514lH tbody td .avatar-img {
2501
+ display: none;
2502
+ }
2503
+
2504
+ .styles-module_table__514lH tbody td .tag {
2505
+ margin: 0;
2506
+ }
2507
+
2508
+ .styles-module_table__514lH tbody td .tag:not(:first-child) {
2509
+ display: none;
2510
+ }
2511
+
2512
+ .styles-module_table__514lH tbody td .button {
2513
+ height: 2.125rem; /* 34px */
2514
+ }
2515
+
2516
+ .styles-module_table__514lH tbody td.menu {
2517
+ padding: 0 0.625rem 0 0; /* 10px */
2518
+ }
2519
+
2520
+ .styles-module_table__514lH tbody td.menu button {
2521
+ margin-top: 0.3125rem; /* 5px */
2522
+ transition: var(--transitionDurationDefault);
2523
+ }
2524
+
2525
+ .styles-module_table__514lH tbody td.menu ul {
2526
+ top: 2.25rem; /* 36px */
2527
+ margin-left: -10.625rem; /* -170px */
2528
+ }
2529
+
2530
+ @media (min-width: 576px) {
2531
+ .styles-module_table__514lH tbody td {
2532
+ display: table-cell;
2533
+ height: 3.125rem; /* 50px */
2534
+ padding: 0 0.9375rem; /* 15px */
2535
+ }
2536
+
2537
+ .styles-module_table__514lH tbody td > div {
2538
+ position: relative;
2539
+ margin-left: 0;
2540
+ display: flex-start;
2541
+ justify-content: flex-start;
2542
+ text-align: left;
2543
+ }
2544
+
2545
+ .styles-module_table__514lH tbody td > div > span {
2546
+ display: inherit;
2547
+ }
2548
+
2549
+ .styles-module_table__514lH tbody td:first-child {
2550
+ border-top: var(--fieldBorderWidth) solid var(--grey200);
2551
+ }
2552
+
2553
+ .styles-module_table__514lH tbody td::before {
2554
+ content: '';
2555
+ }
2556
+
2557
+ .styles-module_table__514lH tbody td.tkai,
2558
+ .styles-module_table__514lH tbody td.vkai {
2559
+ max-width: 6.25rem; /* 100px */
2560
+ }
2561
+
2562
+ .styles-module_table__514lH tbody td .avatar-img {
2563
+ display: inherit;
2564
+ }
2565
+
2566
+ .styles-module_table__514lH tbody td .tag:not(:first-child) {
2567
+ display: inherit;
2568
+ }
2569
+
2570
+ .styles-module_table__514lH tbody td .tag:not(:last-child) {
2571
+ margin-right: 0.3125rem; /* 5px */
2572
+ }
2573
+
2574
+ .styles-module_table__514lH tbody td.menu {
2575
+ width: 2.5rem; /* 40px */
2576
+ }
2577
+
2578
+ .styles-module_table__514lH tbody td.menu button {
2579
+ opacity: 0;
2580
+ }
2581
+ }
2582
+
2583
+ @keyframes styles-module_placeholderSkeleton__YqC9J {
2584
+ 0% {
2585
+ background-position: -50rem 0; /* -800px */
2586
+ }
2587
+ 100% {
2588
+ background-position: 50rem 0; /* 800px */
2589
+ }
2590
+ }
2591
+
2592
+ .styles-module_skeletonCell__dWHE- {
2593
+ width: 100%;
2594
+ height: 0.9375rem !important; /* 15px */
2595
+ background: #f6f7f8;
2596
+ background-image: -webkit-linear-gradient(
2597
+ left,
2598
+ #f6f7f8 0%,
2599
+ #edeef1 20%,
2600
+ #f6f7f8 40%,
2601
+ #f6f7f8 100%
2602
+ );
2603
+ background-repeat: no-repeat;
2604
+ background-size: 50rem 100%; /* 800px */
2605
+ animation-fill-mode: forwards;
2606
+ animation-name: styles-module_placeholderSkeleton__YqC9J;
2607
+ animation-timing-function: linear;
2608
+ animation-iteration-count: infinite;
2609
+ animation-duration: 1.5s;
2610
+ }
2611
+
2612
+ .styles-module_table__GksNm {
2613
+ position: relative;
2614
+ width: 100%;
2615
+ border-width: 0;
2616
+ border-style: solid;
2617
+ border-color: var(--grey200);
2618
+ border-radius: var(--fieldBorderRadius);
2619
+ border-spacing: 0;
2620
+ white-space: nowrap;
2621
+ table-layout: var(--tableLayout, auto);
2622
+ }
2623
+
2624
+ .styles-module_hasBorder__eX06U {
2625
+ border-width: var(--fieldBorderWidth);
2626
+ }
2627
+
2628
+ .styles-module_table__GksNm th,
2629
+ .styles-module_table__GksNm td {
2630
+ height: 3.125rem; /* 50px */
2631
+ padding: 0 0.9375rem; /* 15px */
2632
+ }
2633
+
2634
+ .styles-module_table__GksNm th.center,
2635
+ .styles-module_table__GksNm td.center {
2636
+ text-align: center;
2637
+ }
2638
+
2639
+ .styles-module_table__GksNm th.center > div,
2640
+ .styles-module_table__GksNm td.center > div {
2641
+ justify-content: center;
2642
+ }
2643
+
2644
+ .styles-module_table__GksNm th.right,
2645
+ .styles-module_table__GksNm td.right {
2646
+ text-align: right;
2647
+ }
2648
+
2649
+ .styles-module_table__GksNm th.right > div,
2650
+ .styles-module_table__GksNm td.right > div {
2651
+ justify-content: flex-end;
2652
+ }
2653
+
2654
+ @media (min-width: 576px) {
2655
+ .styles-module_table__GksNm th.thin,
2656
+ .styles-module_table__GksNm td.thin {
2657
+ max-width: min-content;
2658
+ }
2659
+ }
2660
+
2661
+ .styles-module_table__GksNm th.kai,
2662
+ .styles-module_table__GksNm td.kai {
2663
+ text-align: right;
2664
+ }
2665
+
2666
+ .styles-module_table__GksNm th.kai > div,
2667
+ .styles-module_table__GksNm td.kai > div {
2668
+ justify-content: flex-end;
2669
+ }
2670
+
2671
+ .styles-module_table__GksNm th.avatar > div,
2672
+ .styles-module_table__GksNm td.avatar > div {
2673
+ display: flex;
2674
+ align-items: center;
2675
+ }
2676
+
2677
+ .styles-module_table__GksNm th.avatar .avatar-img,
2678
+ .styles-module_table__GksNm td.avatar .avatar-img {
2679
+ margin-right: 0.9375rem; /* 15px */
2680
+ }
2681
+
2682
+ .styles-module_table__GksNm th {
2683
+ font-size: 0.85rem;
2684
+ }
2685
+
2686
+ .styles-module_table__GksNm th:first-child {
2687
+ border-top-left-radius: var(--fieldBorderRadius);
2688
+ }
2689
+
2690
+ .styles-module_table__GksNm th:last-child {
2691
+ border-top-right-radius: var(--fieldBorderRadius);
2692
+ }
2693
+
2694
+ .styles-module_table__GksNm tr {
2695
+ border: var(--fieldBorderWidth) solid var(--grey200);
2696
+ border-radius: var(--fieldBorderRadius);
2697
+ position: relative;
2698
+ }
2699
+
2700
+ .styles-module_table__GksNm tr:not(:last-child) {
2701
+ margin-bottom: 0.9375rem; /* 15px */
2702
+ }
2703
+
2704
+ @media (min-width: 576px) {
2705
+ .styles-module_table__GksNm tr {
2706
+ border: 0;
2707
+ }
2708
+ }
2709
+
2710
+ .styles-module_table__GksNm thead {
2711
+ border: none;
2712
+ clip: rect(0 0 0 0);
2713
+ height: 0.0625rem; /* 1px */
2714
+ margin: -0.0625rem; /* -1px */
2715
+ overflow: hidden;
2716
+ padding: 0;
2717
+ position: absolute;
2718
+ width: 0.0625rem; /* 1px */
2719
+ }
2720
+
2721
+ @media (min-width: 576px) {
2722
+ .styles-module_table__GksNm thead {
2723
+ display: contents;
2724
+ font-weight: var(--fontWeightSemiBold);
2725
+ color: var(--grey400);
2726
+ text-align: left;
2727
+ }
2728
+ }
2729
+
2730
+ .styles-module_table__GksNm tbody tr {
2731
+ display: block;
2732
+ transition-duration: var(--transitionDurationDefault);
2733
+ }
2734
+
2735
+ .styles-module_table__GksNm tbody tr:hover {
2736
+ background-color: var(--grey50);
2737
+ }
2738
+
2739
+ .styles-module_table__GksNm tbody tr:hover td.drag-handle svg {
2740
+ fill: var(--grey200);
2741
+ }
2742
+
2743
+ .styles-module_table__GksNm tbody tr:hover td.menu button {
2744
+ opacity: 1;
2745
+ }
2746
+
2747
+ @media (min-width: 576px) {
2748
+ .styles-module_table__GksNm tbody tr {
2749
+ display: table-row;
2750
+ }
2751
+ }
2752
+
2753
+ .styles-module_table__GksNm tbody td {
2754
+ border-top: var(--fieldBorderWidth) solid var(--grey200);
2755
+ height: inherit;
2756
+ min-height: 3.125rem; /* 50px */
2757
+ padding: 0.9375rem; /* 15px */
2758
+ display: flex;
2759
+ justify-content: flex-end;
2760
+ }
2761
+
2762
+ .styles-module_table__GksNm tbody td.drag-handle > div {
2763
+ width: min-content;
2764
+ }
2765
+
2766
+ .styles-module_table__GksNm tbody td.drag-handle svg {
2767
+ width: 1.875rem; /* 30px */
2768
+ height: 1.875rem; /* 30px */
2769
+ fill: var(--grey200);
2770
+ transition-duration: var(--transitionDurationDefault);
2771
+ }
2772
+
2773
+ .styles-module_table__GksNm tbody td > div {
2774
+ margin-left: 6.25rem; /* 100px */
2775
+ height: 100%;
2776
+ display: flex;
2777
+ justify-content: flex-end;
2778
+ align-items: center;
2779
+ flex-wrap: nowrap;
2780
+ text-align: right;
2781
+ }
2782
+
2783
+ .styles-module_table__GksNm tbody td > div > span {
2784
+ display: none;
2785
+ }
2786
+
2787
+ .styles-module_table__GksNm tbody td > div > span:first-child,
2788
+ .styles-module_table__GksNm tbody td > div > span:last-child {
2789
+ display: inherit;
2790
+ }
2791
+
2792
+ .styles-module_table__GksNm tbody td img {
2793
+ min-width: 1.875rem; /* 30px */
2794
+ min-height: 1.875rem; /* 30px */
2795
+ }
2796
+
2797
+ .styles-module_table__GksNm tbody td a {
2798
+ display: flex;
2799
+ align-items: center;
2800
+ color: var(--black);
2801
+ text-decoration-color: var(--grey400);
2802
+ }
2803
+
2804
+ .styles-module_table__GksNm tbody td:first-child {
2805
+ border: 0;
2806
+ }
2807
+
2808
+ .styles-module_table__GksNm tbody td::before {
2809
+ position: absolute;
2810
+ left: 0.9375rem; /* 15px */
2811
+ content: attr(data-label);
2812
+ font-weight: var(--fontWeightSemiBold);
2813
+ text-transform: capitalize;
2814
+ }
2815
+
2816
+ .styles-module_table__GksNm tbody td.kai svg {
2817
+ float: right;
2818
+ width: auto;
2819
+ min-width: 1.25rem; /* 20px */
2820
+ max-height: 1.25rem; /* 20px */
2821
+ }
2822
+
2823
+ .styles-module_table__GksNm tbody td .avatar-img {
2824
+ display: none;
2825
+ }
2826
+
2827
+ .styles-module_table__GksNm tbody td .tag {
2828
+ margin: 0;
2829
+ }
2830
+
2831
+ .styles-module_table__GksNm tbody td .tag:not(:first-child) {
2832
+ display: none;
2833
+ }
2834
+
2835
+ .styles-module_table__GksNm tbody td.menu {
2836
+ padding: 0 0.625rem 0 0; /* 10px */
2837
+ }
2838
+
2839
+ .styles-module_table__GksNm tbody td.menu button {
2840
+ margin-top: 0.3125rem; /* 5px */
2841
+ transition: var(--transitionDurationDefault);
2842
+ }
2843
+
2844
+ .styles-module_table__GksNm tbody td.menu ul {
2845
+ top: 2.25rem; /* 36px */
2846
+ margin-left: -10.625rem; /* -170px */
2847
+ }
2848
+
2849
+ @media (min-width: 576px) {
2850
+ .styles-module_table__GksNm tbody td {
2851
+ display: table-cell;
2852
+ height: 3.125rem; /* 50px */
2853
+ padding: 0 0.9375rem; /* 15px */
2854
+ align-items: center;
2855
+ }
2856
+
2857
+ .styles-module_table__GksNm tbody td > div {
2858
+ position: relative;
2859
+ margin-left: 0;
2860
+ display: flex-start;
2861
+ justify-content: flex-start;
2862
+ text-align: left;
2863
+ }
2864
+
2865
+ .styles-module_table__GksNm tbody td > div > span {
2866
+ display: inherit;
2867
+ }
2868
+
2869
+ .styles-module_table__GksNm tbody td:first-child {
2870
+ border-top: var(--fieldBorderWidth) solid var(--grey200);
2871
+ }
2872
+
2873
+ .styles-module_table__GksNm tbody td::before {
2874
+ content: '';
2875
+ }
2876
+
2877
+ .styles-module_table__GksNm tbody td.kai {
2878
+ max-width: 6.25rem; /* 100px */
2879
+ }
2880
+
2881
+ .styles-module_table__GksNm tbody td .avatar-img {
2882
+ display: inherit;
2883
+ }
2884
+
2885
+ .styles-module_table__GksNm tbody td .tag:not(:first-child) {
2886
+ display: inherit;
2887
+ }
2888
+
2889
+ .styles-module_table__GksNm tbody td .tag:not(:last-child) {
2890
+ margin-right: 0.3125rem; /* 5px */
2891
+ }
2892
+
2893
+ .styles-module_table__GksNm tbody td.menu {
2894
+ width: 2.5rem; /* 40px */
2895
+ }
2896
+
2897
+ .styles-module_table__GksNm tbody td.menu button {
2898
+ opacity: 0;
2899
+ }
2900
+ }
2901
+
2902
+ /* TableRow - draggable state handled via data attribute in component */
2903
+ .styles-module_tableRow__Y9PYv {
2904
+ /* Base row styles */
2905
+ }
2906
+
2907
+ .styles-module_isDragging__nfRWS {
2908
+ position: absolute;
2909
+ display: table;
2910
+ width: 100%;
2911
+ }
2912
+
2913
+ .styles-module_wrapper__rNRu8 {
2914
+ display: inline-block;
2915
+ }
2916
+
2917
+ .styles-module_wrapper__rNRu8 > label {
2918
+ margin-bottom: 0.3125rem; /* 5px */
2919
+ color: var(--grey500);
2920
+ }
2921
+
2922
+ .styles-module_wrapper__rNRu8.styles-module_hasError__RPZHv > label {
2923
+ color: var(--fieldErrorBorderColor);
2924
+ }
2925
+
2926
+ .styles-module_wrapper__rNRu8 > label span {
2927
+ color: var(--fieldColor);
2928
+ }
2929
+
2930
+ .styles-module_wrapper__rNRu8.styles-module_hasError__RPZHv > label span {
2931
+ color: var(--fieldErrorBorderColor);
2932
+ }
2933
+
2934
+ .styles-module_wrapper__rNRu8:not(:last-child) {
2935
+ margin-bottom: 0.9375rem; /* 15px */
2936
+ }
2937
+
2938
+ .styles-module_wrapper__GZm7N {
2939
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor);
2940
+ border-radius: var(--fieldBorderRadius);
2941
+ max-width: max-content;
2942
+ height: var(--fieldHeight);
2943
+ display: flex;
2944
+ overflow: hidden;
2945
+ }
2946
+
2947
+ .styles-module_wrapper__GZm7N button:disabled,
2948
+ .styles-module_wrapper__GZm7N input:disabled {
2949
+ cursor: inherit;
2950
+ background-color: var(--fieldDisabledBackgroundColor);
2951
+ }
2952
+
2953
+ .styles-module_wrapper__GZm7N button:disabled svg {
2954
+ fill: var(--fieldDisabledColor);
2955
+ }
2956
+
2957
+ .styles-module_wrapper__GZm7N button:disabled:hover,
2958
+ .styles-module_wrapper__GZm7N input:disabled:hover {
2959
+ pointer-events: none;
2960
+ }
2961
+
2962
+ .styles-module_input__ttkF8 {
2963
+ border: 0;
2964
+ width: var(--inputWidth, 70px);
2965
+ height: var(--fieldHeight);
2966
+ padding: 0.625rem; /* 10px */
2967
+ font-family: inherit;
2968
+ font-size: 1rem;
2969
+ text-align: center;
2970
+ -moz-appearance: textfield;
2971
+ }
2972
+
2973
+ .styles-module_input__ttkF8::-webkit-outer-spin-button,
2974
+ .styles-module_input__ttkF8::-webkit-inner-spin-button {
2975
+ -webkit-appearance: none;
2976
+ margin: 0;
2977
+ }
2978
+
2979
+ .styles-module_input__ttkF8:focus {
2980
+ outline: none;
2981
+ }
2982
+
2983
+ .styles-module_input__ttkF8:invalid {
2984
+ box-shadow: none;
2985
+ background-color: var(--fieldErrorBackgroundColor);
2986
+ }
2987
+
2988
+ .styles-module_button__0QcGS {
2989
+ width: var(--fieldHeight);
2990
+ height: var(--fieldHeight);
2991
+ border: 0;
2992
+ background-color: var(--fieldBorderColor);
2993
+ cursor: pointer;
2994
+ transition-duration: var(--transitionDurationDefault);
2995
+ }
2996
+
2997
+ .styles-module_removeButton__N198t {
2998
+ border-right: var(--fieldBorderWidth) solid var(--fieldBorderColor);
2999
+ }
3000
+
3001
+ .styles-module_addButton__7JcZK {
3002
+ border-left: var(--fieldBorderWidth) solid var(--fieldBorderColor);
3003
+ }
3004
+
3005
+ .styles-module_button__0QcGS svg {
3006
+ width: auto;
3007
+ height: 1.25rem; /* 20px */
3008
+ fill: var(--purple300);
3009
+ }
3010
+
3011
+ .styles-module_button__0QcGS:hover {
3012
+ background-color: var(--fieldHoverBorderColor);
3013
+ }
3014
+
3015
+ .styles-module_steps__jXCdM {
3016
+ margin: 0;
3017
+ width: 100%;
3018
+ padding: 0;
3019
+ display: flex;
3020
+ }
3021
+
3022
+ .styles-module_step__kFzMi {
3023
+ list-style: none;
3024
+ flex: 1;
3025
+ position: relative;
3026
+ height: 2.75rem; /* 44px */
3027
+ display: flex;
3028
+ justify-content: center;
3029
+ align-items: center;
3030
+ padding-right: 1.125rem; /* 18px */
3031
+ text-align: center;
3032
+ }
3033
+
3034
+ .styles-module_step__kFzMi::before,
3035
+ .styles-module_step__kFzMi::after {
3036
+ content: '';
3037
+ position: absolute;
3038
+ top: 0;
3039
+ border: 0 solid var(--stepBorderColor, var(--fieldBorderColor));
3040
+ border-width: 1.375rem 0.9375rem; /* 22px 15px */
3041
+ width: 0;
3042
+ height: 0;
3043
+ }
3044
+
3045
+ .styles-module_step__kFzMi::before {
3046
+ left: -0.9375rem; /* -15px */
3047
+ border-left-color: transparent;
3048
+ }
3049
+
3050
+ .styles-module_step__kFzMi::after {
3051
+ left: calc(100% - 1.125rem); /* 18px */
3052
+ border-color: transparent;
3053
+ border-left-color: var(--stepBorderColor, var(--fieldBorderColor));
3054
+ }
3055
+
3056
+ .styles-module_step__kFzMi:first-child::before {
3057
+ border: none;
3058
+ }
3059
+
3060
+ .styles-module_step__kFzMi:last-child::after {
3061
+ border: none;
3062
+ }
3063
+
3064
+ .styles-module_step__kFzMi:first-child {
3065
+ overflow: hidden;
3066
+ }
3067
+
3068
+ .styles-module_step__kFzMi:first-child > div {
3069
+ border-radius: var(--fieldBorderRadius) 0 0 var(--fieldBorderRadius);
3070
+ }
3071
+
3072
+ .styles-module_step__kFzMi:last-child {
3073
+ padding-right: 0;
3074
+ }
3075
+
3076
+ .styles-module_step__kFzMi:last-child > div {
3077
+ border-radius: 0 var(--fieldBorderRadius) var(--fieldBorderRadius) 0;
3078
+ }
3079
+
3080
+ .styles-module_step__kFzMi > div {
3081
+ background-color: var(--stepBorderColor, var(--fieldBorderColor));
3082
+ width: 100%;
3083
+ height: 100%;
3084
+ display: flex;
3085
+ justify-content: center;
3086
+ align-items: center;
3087
+ }
3088
+
3089
+ .styles-module_step__kFzMi > div span {
3090
+ width: min-content;
3091
+ font-size: var(--fontSizeSm);
3092
+ color: var(--stepTextColor, var(--purple300));
3093
+ }
3094
+
3095
+ /* Active state */
3096
+ .styles-module_isActive__FdXTS {
3097
+ --stepBorderColor: var(--fieldSuccessBackgroundColor);
3098
+ --stepTextColor: var(--white);
3099
+ }
3100
+
3101
+ @media (min-width: 576px) {
3102
+ .styles-module_step__kFzMi > div span {
3103
+ width: 100%;
3104
+ font-size: 1rem;
3105
+ font-weight: var(--fontWeightSemiBold);
3106
+ }
3107
+ }
3108
+
3109
+ .styles-module_wrapper__BjaoB {
3110
+ --size: 1.875rem; /* 30px */
3111
+ }
3112
+
3113
+ .styles-module_wrapper__BjaoB ul.pagination {
3114
+ margin: 0;
3115
+ display: flex;
3116
+ justify-content: center;
3117
+ align-items: center;
3118
+ padding: 0;
3119
+ list-style: none;
3120
+ }
3121
+
3122
+ .styles-module_wrapper__BjaoB ul.pagination li {
3123
+ min-width: var(--size);
3124
+ height: var(--size);
3125
+ cursor: pointer;
3126
+ }
3127
+
3128
+ .styles-module_wrapper__BjaoB ul.pagination li.previous,
3129
+ .styles-module_wrapper__BjaoB ul.pagination li.next {
3130
+ transition-duration: var(--transitionDurationDefault);
3131
+ }
3132
+
3133
+ .styles-module_wrapper__BjaoB ul.pagination li.previous a svg,
3134
+ .styles-module_wrapper__BjaoB ul.pagination li.next a svg {
3135
+ transition-duration: var(--transitionDurationDefault);
3136
+ }
3137
+
3138
+ .styles-module_wrapper__BjaoB ul.pagination li a,
3139
+ .styles-module_wrapper__BjaoB ul.pagination li .break {
3140
+ min-width: var(--size);
3141
+ height: var(--size);
3142
+ transition-duration: var(--transitionDurationDefault);
3143
+ }
3144
+
3145
+ .styles-module_wrapper__BjaoB ul.pagination li a {
3146
+ border-radius: var(--fieldBorderRadius);
3147
+ min-width: var(--size);
3148
+ height: var(--size);
3149
+ padding: 0 0.3125rem; /* 5px */
3150
+ display: flex;
3151
+ justify-content: center;
3152
+ align-items: center;
3153
+ color: var(--black);
3154
+ font-weight: var(--fontWeightSemiBold);
3155
+ text-decoration: none;
3156
+ }
3157
+
3158
+ .styles-module_wrapper__BjaoB ul.pagination li a:hover {
3159
+ color: var(--blue500);
3160
+ }
3161
+
3162
+ .styles-module_wrapper__BjaoB ul.pagination li a svg {
3163
+ width: 1.125rem; /* 18px */
3164
+ height: auto;
3165
+ fill: var(--blue500);
3166
+ }
3167
+
3168
+ .styles-module_wrapper__BjaoB ul.pagination li.active {
3169
+ pointer-events: none;
3170
+ }
3171
+
3172
+ .styles-module_wrapper__BjaoB ul.pagination li.active a {
3173
+ background-color: var(--blue500);
3174
+ color: var(--white);
3175
+ }
3176
+
3177
+ .styles-module_wrapper__BjaoB ul.pagination.dark a {
3178
+ color: var(--white);
3179
+ }
3180
+
3181
+ .styles-module_wrapper__BjaoB ul.pagination.dark a:hover {
3182
+ color: var(--white);
3183
+ }
3184
+
3185
+ .styles-module_wrapper__sb8li {
3186
+ display: flex;
3187
+ flex-direction: column;
3188
+ justify-content: center;
3189
+ align-items: center;
3190
+ padding: 0 1.875rem; /* 30px */
3191
+ text-align: center;
3192
+ }
3193
+
3194
+ .styles-module_variantDefault__0H5Tq {
3195
+ min-height: 50vh;
3196
+ }
3197
+
3198
+ .styles-module_variantMinimal__w7Pi3 {
3199
+ min-height: inherit;
3200
+ }
3201
+
3202
+ .styles-module_wrapper__sb8li svg {
3203
+ width: auto;
3204
+ height: 6.25rem; /* 100px */
3205
+ }
3206
+
3207
+ .styles-module_wrapper__sb8li > span {
3208
+ margin-top: 0.9375rem; /* 15px */
3209
+ font-weight: var(--fontWeightSemiBold);
3210
+ color: var(--black);
3211
+ }
3212
+
3213
+ .styles-module_wrapper__sb8li > span a {
3214
+ color: var(--black);
3215
+ transition-duration: var(--transitionDurationDefault);
3216
+ }
3217
+
3218
+ .styles-module_wrapper__sb8li > span:hover {
3219
+ color: var(--purple500);
3220
+ }
3221
+
3222
+ .styles-module_wrapper__OXvtT {
3223
+ min-height: 50vh;
3224
+ display: flex;
3225
+ flex-direction: column;
3226
+ justify-content: center;
3227
+ align-items: center;
3228
+ padding: 0 1.875rem; /* 30px */
3229
+ text-align: center;
3230
+ }
3231
+
3232
+ .styles-module_wrapper__OXvtT svg {
3233
+ width: auto;
3234
+ height: 6.25rem; /* 100px */
3235
+ }
3236
+
3237
+ .styles-module_wrapper__OXvtT > div {
3238
+ margin-top: 0.9375rem; /* 15px */
3239
+ font-weight: 600;
3240
+ color: var(--black);
3241
+ }
3242
+
3243
+ .styles-module_wrapper__OXvtT > div a {
3244
+ color: var(--black);
3245
+ transition-duration: var(--transitionDurationDefault);
3246
+ }
3247
+
3248
+ .styles-module_wrapper__OXvtT > div a:hover {
3249
+ color: var(--purple500);
3250
+ }
3251
+
3252
+ .styles-module_wrapper__sBzYm {
3253
+ display: flex;
3254
+ position: relative;
3255
+ margin: 0;
3256
+ padding: 0;
3257
+ list-style: none;
3258
+ }
3259
+
3260
+ .styles-module_typeRow__gDfys {
3261
+ flex-direction: row;
3262
+ }
3263
+
3264
+ .styles-module_typeColumn__c0-xq {
3265
+ flex-direction: column;
3266
+ }
3267
+
3268
+ .styles-module_typeRow__gDfys > li:not(:last-child) {
3269
+ margin-right: 1.875rem; /* 30px */
3270
+ }
3271
+
3272
+ .styles-module_typeColumn__c0-xq > li:not(:last-child) {
3273
+ margin-bottom: 0.625rem; /* 10px */
3274
+ }
3275
+
3276
+ .styles-module_wrapper__sBzYm input[type='radio']:checked ~ .check {
3277
+ border-color: var(--fieldSuccessBorderColor);
3278
+ }
3279
+
3280
+ .styles-module_wrapper__sBzYm input[type='radio']:checked ~ .check::before {
3281
+ background-color: var(--fieldSuccessBackgroundColor);
3282
+ }
3283
+
3284
+ .styles-module_wrapper__sBzYm + span {
3285
+ margin-top: 0.625rem; /* 10px */
3286
+ }
3287
+
3288
+ /* Item */
3289
+ .styles-module_item__44sGo {
3290
+ --size: 1.5rem; /* 24px */
3291
+ display: flex;
3292
+ position: relative;
3293
+ min-height: var(--size);
3294
+ }
3295
+
3296
+ .styles-module_item__44sGo input[type='radio'] {
3297
+ position: absolute;
3298
+ visibility: hidden;
3299
+ }
3300
+
3301
+ .styles-module_item__44sGo label {
3302
+ position: relative;
3303
+ padding-left: calc(var(--size) + 5px);
3304
+ line-height: var(--size);
3305
+ vertical-align: middle;
3306
+ cursor: pointer;
3307
+ z-index: 1;
3308
+ }
3309
+
3310
+ .styles-module_item__44sGo.styles-module_hasError__4Lypc label {
3311
+ color: var(--fieldErrorBorderColor);
3312
+ }
3313
+
3314
+ .styles-module_item__44sGo .check {
3315
+ position: absolute;
3316
+ top: 0;
3317
+ border: 0.125rem solid var(--fieldBorderColor); /* 2px */
3318
+ border-radius: 100%;
3319
+ width: var(--size);
3320
+ height: var(--size);
3321
+ transition-duration: var(--transitionDurationDefault);
3322
+ display: flex;
3323
+ justify-content: center;
3324
+ align-items: center;
3325
+ }
3326
+
3327
+ .styles-module_item__44sGo.styles-module_hasError__4Lypc .check {
3328
+ border-color: var(--fieldErrorBorderColor);
3329
+ }
3330
+
3331
+ .styles-module_item__44sGo .check::before {
3332
+ content: '';
3333
+ display: block;
3334
+ border-radius: 100%;
3335
+ height: calc(var(--size) / 1.5);
3336
+ width: calc(var(--size) / 1.5);
3337
+ }
3338
+
3339
+ .styles-module_item__44sGo:hover .check {
3340
+ border-color: var(--fieldHoverBorderColor);
3341
+ }
3342
+
3343
+ .styles-module_item__44sGo.styles-module_isDisabled__d5WyF label {
3344
+ color: var(--fieldDisabledColor);
3345
+ }
3346
+
3347
+ .styles-module_item__44sGo.styles-module_isDisabled__d5WyF input[type='radio'] ~ .check,
3348
+ .styles-module_item__44sGo.styles-module_isDisabled__d5WyF input[type='radio']:checked ~ .check {
3349
+ border-color: var(--fieldDisabledColor);
3350
+ }
3351
+
3352
+ .styles-module_item__44sGo.styles-module_isDisabled__d5WyF input[type='radio']:checked ~ .check::before {
3353
+ background-color: var(--fieldDisabledBackgroundColor);
3354
+ }
3355
+
3356
+ .styles-module_item__44sGo.styles-module_isDisabled__d5WyF:hover {
3357
+ pointer-events: none;
3358
+ cursor: auto;
3359
+ }
3360
+
3361
+ .styles-module_wrapper__DI7Yd {
3362
+ display: flex;
3363
+ position: relative;
3364
+ margin: 0;
3365
+ padding: 0;
3366
+ list-style: none;
3367
+ }
3368
+
3369
+ .styles-module_typeRow__XliU9 {
3370
+ flex-direction: row;
3371
+ }
3372
+
3373
+ .styles-module_typeColumn__AEnv1 {
3374
+ flex-direction: column;
3375
+ }
3376
+
3377
+ .styles-module_wrapper__DI7Yd li {
3378
+ position: relative;
3379
+ min-height: 1.5rem; /* 24px */
3380
+ }
3381
+
3382
+ .styles-module_typeRow__XliU9 > li:not(:last-child) {
3383
+ margin-right: 1.875rem; /* 30px */
3384
+ }
3385
+
3386
+ .styles-module_typeColumn__AEnv1 > li:not(:last-child) {
3387
+ margin-bottom: 0.625rem; /* 10px */
3388
+ }
3389
+
3390
+ .styles-module_wrapper__p5CpR label {
3391
+ margin-bottom: 0.3125rem; /* 5px */
3392
+ }
3393
+
3394
+ .styles-module_field__6fCxe {
3395
+ display: flex;
3396
+ flex-wrap: wrap;
3397
+ }
3398
+
3399
+ .styles-module_field__6fCxe input {
3400
+ flex: 1;
3401
+ margin-right: -0.0625rem; /* -1px */
3402
+ border-radius: var(--fieldBorderRadius) 0 0 var(--fieldBorderRadius);
3403
+ }
3404
+
3405
+ .styles-module_field__6fCxe input:disabled {
3406
+ background-color: var(--fieldBackgroundColor);
3407
+ color: var(--fieldColor);
3408
+ }
3409
+
3410
+ .styles-module_field__6fCxe span {
3411
+ order: 3;
3412
+ width: 100%;
3413
+ }
3414
+
3415
+ .styles-module_field__6fCxe button {
3416
+ border: 0;
3417
+ border-radius: 0 var(--fieldBorderRadius) var(--fieldBorderRadius) 0;
3418
+ min-width: 3.125rem; /* 50px */
3419
+ height: var(--fieldHeight);
3420
+ display: flex;
3421
+ justify-content: center;
3422
+ align-items: center;
3423
+ padding: 0 1.25rem; /* 20px */
3424
+ white-space: nowrap;
3425
+ transition-duration: var(--transitionDurationDefault);
3426
+ cursor: pointer;
3427
+ }
3428
+
3429
+ .styles-module_field__6fCxe button span {
3430
+ color: var(--fieldActiveColor);
3431
+ }
3432
+
3433
+ .styles-module_field__6fCxe button svg {
3434
+ fill: var(--fieldActiveColor);
3435
+ }
3436
+
3437
+ .styles-module_field__6fCxe button:disabled {
3438
+ border: var(--fieldBorderWidth) solid var(--fieldBorderColor) !important;
3439
+ }
3440
+
1
3441
  .styles-module_wrapper__Q2-ac {
2
3442
  position: relative;
3
3443
  height: 5rem; /* 80px */
@@ -95,3 +3535,458 @@
95
3535
  right: 0;
96
3536
  border-left-width: 0.0625rem; /* 1px */
97
3537
  }
3538
+
3539
+ .styles-module_modalOverlay__AfFa7 {
3540
+ position: fixed;
3541
+ top: 0;
3542
+ left: 0;
3543
+ background-color: rgba(0, 0, 0, 0.8);
3544
+ width: 100vw;
3545
+ height: 100vh;
3546
+ z-index: var(--modalZIndex, 10);
3547
+ }
3548
+
3549
+ .styles-module_modalWrapper__-vhsT {
3550
+ position: fixed;
3551
+ top: 0;
3552
+ left: 0;
3553
+ width: 100%;
3554
+ height: 100vh;
3555
+ z-index: calc(var(--modalZIndex, 10) + 1);
3556
+ overflow-x: hidden;
3557
+ overflow-y: auto;
3558
+ -webkit-scrollbar-width: none;
3559
+ -moz-scrollbar-width: none;
3560
+ -ms-scrollbar-width: none;
3561
+ scrollbar-width: none;
3562
+ -webkit-overflow-scrolling: touch;
3563
+ -ms-overflow-style: -ms-autohiding-scrollbar;
3564
+ }
3565
+
3566
+ @media (min-width: 576px) {
3567
+ .styles-module_modalWrapper__-vhsT {
3568
+ display: flex;
3569
+ justify-content: center;
3570
+ align-items: center;
3571
+ }
3572
+
3573
+ .styles-module_hasOverflow__n1w4U {
3574
+ align-items: flex-start;
3575
+ }
3576
+ }
3577
+
3578
+ .styles-module_modalContainer__jZLa6 {
3579
+ position: relative;
3580
+ background: var(--white);
3581
+ width: 100%;
3582
+ min-height: 0;
3583
+ padding: 0.9375rem; /* 15px */
3584
+ word-wrap: break-word;
3585
+ transition-duration: var(--transitionDurationDefault);
3586
+ }
3587
+
3588
+ @media (min-width: 576px) {
3589
+ .styles-module_modalContainer__jZLa6 {
3590
+ --spacing: 1.875rem; /* 30px */
3591
+ margin: var(--spacing);
3592
+ border-radius: var(--fieldBorderRadius);
3593
+ max-width: 53.75rem; /* 860px */
3594
+ padding: var(--spacing);
3595
+ }
3596
+
3597
+ .styles-module_modalContainer__jZLa6::after {
3598
+ content: '';
3599
+ position: absolute;
3600
+ bottom: calc(var(--spacing) * -1);
3601
+ width: 0.0625rem; /* 1px */
3602
+ height: var(--spacing);
3603
+ }
3604
+ }
3605
+
3606
+ .styles-module_modalHeader__IFH5H {
3607
+ display: flex;
3608
+ }
3609
+
3610
+ .styles-module_modalHeader__IFH5H h2 {
3611
+ margin: 0 0 1.875rem 0; /* 30px */
3612
+ font-size: 2rem; /* 32px */
3613
+ font-weight: var(--fontWeightSemiBold);
3614
+ }
3615
+
3616
+ .styles-module_modalHeader__IFH5H button {
3617
+ display: none;
3618
+ position: absolute;
3619
+ top: 0;
3620
+ right: 0;
3621
+ margin: -0.875rem -0.875rem 0 0; /* -14px */
3622
+ border: 0.125rem solid var(--grey200); /* 2px */
3623
+ min-width: 1.75rem; /* 28px */
3624
+ height: 1.75rem; /* 28px */
3625
+ z-index: 1;
3626
+ outline: none;
3627
+ }
3628
+
3629
+ @media (min-width: 576px) {
3630
+ .styles-module_modalHeader__IFH5H button {
3631
+ display: inherit;
3632
+ }
3633
+ }
3634
+
3635
+ @keyframes styles-module_slideInLeft__eFlLe {
3636
+ from {
3637
+ transform: translateX(100%);
3638
+ }
3639
+
3640
+ to {
3641
+ transform: translateX(0);
3642
+ }
3643
+ }
3644
+
3645
+ .styles-module_modalOverlay__UpF6o {
3646
+ position: fixed;
3647
+ top: 0;
3648
+ left: 0;
3649
+ background-color: rgba(0, 0, 0, 0.8);
3650
+ width: 100vw;
3651
+ height: 100vh;
3652
+ z-index: var(--modalZIndex, 10);
3653
+ }
3654
+
3655
+ .styles-module_modalWrapper__Z2mp8 {
3656
+ position: fixed;
3657
+ top: 0;
3658
+ left: 0;
3659
+ width: 100%;
3660
+ height: 100%;
3661
+ overflow-x: hidden;
3662
+ overflow-y: auto;
3663
+ z-index: calc(var(--modalZIndex, 10) + 1);
3664
+ }
3665
+
3666
+ .styles-module_modalContainer__pv0eY {
3667
+ margin-left: auto;
3668
+ background: var(--white);
3669
+ width: 100%;
3670
+ min-height: 100vh;
3671
+ display: flex;
3672
+ flex-direction: column;
3673
+ padding: 0.9375rem; /* 15px */
3674
+ word-wrap: break-word;
3675
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); /* easeOutQuint approximation */
3676
+ animation-duration: 1s;
3677
+ animation-fill-mode: forwards;
3678
+ transform: translateX(100%);
3679
+ animation-name: styles-module_slideInLeft__eFlLe;
3680
+ }
3681
+
3682
+ @media (min-width: 576px) {
3683
+ .styles-module_modalContainer__pv0eY {
3684
+ max-width: 25rem; /* 400px */
3685
+ padding: 1.875rem; /* 30px */
3686
+ }
3687
+ }
3688
+
3689
+ .styles-module_modalHeader__snUgG {
3690
+ top: 0;
3691
+ }
3692
+
3693
+ .styles-module_modalHeader__snUgG h2 {
3694
+ margin: 0 0 1.875rem 0; /* 30px */
3695
+ font-size: 2rem; /* 32px */
3696
+ font-weight: var(--fontWeightSemiBold);
3697
+ }
3698
+
3699
+ .styles-module_modalContent__AoFIg {
3700
+ display: flex;
3701
+ flex-direction: column;
3702
+ }
3703
+
3704
+ @media (min-width: 576px) {
3705
+ .styles-module_modalContent__AoFIg {
3706
+ flex: 1;
3707
+ }
3708
+ }
3709
+
3710
+ @keyframes styles-module_placeholderSkeleton__ke9xt {
3711
+ 0% {
3712
+ background-position: -50rem 0; /* -800px */
3713
+ }
3714
+ 100% {
3715
+ background-position: 50rem 0; /* 800px */
3716
+ }
3717
+ }
3718
+
3719
+ .styles-module_wrapper__aam6z div {
3720
+ width: 100%;
3721
+ height: 100%;
3722
+ }
3723
+
3724
+ .styles-module_wrapper__aam6z > div > div > div {
3725
+ background: #f6f7f8;
3726
+ background-image: -webkit-linear-gradient(
3727
+ left,
3728
+ #f6f7f8 0%,
3729
+ #edeef1 20%,
3730
+ #f6f7f8 40%,
3731
+ #f6f7f8 100%
3732
+ );
3733
+ background-repeat: no-repeat;
3734
+ background-size: 50rem 100%; /* 800px */
3735
+ animation-fill-mode: forwards;
3736
+ animation-name: styles-module_placeholderSkeleton__ke9xt;
3737
+ animation-timing-function: linear;
3738
+ animation-iteration-count: infinite;
3739
+ animation-duration: 1.5s;
3740
+ }
3741
+
3742
+ .styles-module_wrapper__aam6z > div > div > div.title {
3743
+ margin-bottom: 0.625rem; /* 10px */
3744
+ width: 50%;
3745
+ height: 1.875rem; /* 30px */
3746
+ }
3747
+
3748
+ .styles-module_wrapper__aam6z > div > div > div.subtitle {
3749
+ margin-bottom: 1.875rem; /* 30px */
3750
+ width: 25%;
3751
+ height: 0.9375rem; /* 15px */
3752
+ }
3753
+
3754
+ .styles-module_wrapper__aam6z > div > div > div.paragraph {
3755
+ width: 100%;
3756
+ height: 0.9375rem; /* 15px */
3757
+ }
3758
+
3759
+ .styles-module_wrapper__aam6z > div > div > div.paragraph:not(:last-child) {
3760
+ margin-bottom: 0.625rem; /* 10px */
3761
+ }
3762
+
3763
+ .styles-module_wrapper__aam6z > div > div > div.value {
3764
+ width: 50%;
3765
+ height: 1.875rem; /* 30px */
3766
+ }
3767
+
3768
+ /* Card type skeleton */
3769
+ .styles-module_wrapper__aam6z .card {
3770
+ position: relative;
3771
+ border: 0.125rem solid var(--grey50); /* 2px */
3772
+ border-radius: 0.375rem; /* 6px */
3773
+ width: 18.75rem; /* 300px */
3774
+ overflow: hidden;
3775
+ }
3776
+
3777
+ .styles-module_wrapper__aam6z .card .cover {
3778
+ width: 100%;
3779
+ height: 10.3125rem; /* 165px */
3780
+ }
3781
+
3782
+ .styles-module_wrapper__aam6z .card .avatar {
3783
+ position: absolute;
3784
+ margin: -2.8125rem 0 0 1.25rem; /* -45px 0 0 20px */
3785
+ width: 5.625rem; /* 90px */
3786
+ height: 5.625rem; /* 90px */
3787
+ border: 0.0625rem solid var(--grey50); /* 1px */
3788
+ border-radius: 999px;
3789
+ }
3790
+
3791
+ .styles-module_wrapper__aam6z .card .title {
3792
+ margin: 4.6875rem 0 1.875rem 1.5625rem; /* 75px 0 30px 25px */
3793
+ }
3794
+
3795
+ .styles-module_wrapper__aam6z .card .paragraph {
3796
+ margin: 0 auto 1.25rem auto; /* 0 auto 20px auto */
3797
+ width: calc(100% - 2.5rem); /* 40px */
3798
+ }
3799
+
3800
+ .styles-module_wrapper__aam6z .card .paragraph:last-child {
3801
+ width: 40%;
3802
+ margin-left: 1.25rem; /* 20px */
3803
+ }
3804
+
3805
+ /* Grid layout for cards */
3806
+ .styles-module_grid__YSu3m {
3807
+ display: grid;
3808
+ grid-template-columns: repeat(auto-fill, 18.75rem); /* 300px */
3809
+ grid-gap: 0.9375rem; /* 15px */
3810
+ justify-content: flex-start;
3811
+ }
3812
+
3813
+ .styles-module_gridCenter__ANHa7 {
3814
+ justify-content: center;
3815
+ }
3816
+
3817
+ .styles-module_wrapper__RzCI3 .tab {
3818
+ border-color: var(--fieldBorderColor);
3819
+ }
3820
+
3821
+ .styles-module_wrapper__RzCI3 .tab[aria-selected='true'] {
3822
+ border-bottom: 0;
3823
+ }
3824
+
3825
+ .styles-module_wrapper__RzCI3 .tab[aria-selected='false'] {
3826
+ background-color: var(--fieldBorderColor);
3827
+ color: var(--black);
3828
+ transition-duration: var(--transitionDurationDefault);
3829
+ }
3830
+
3831
+ .styles-module_wrapper__RzCI3 .tab[aria-selected='false']:hover {
3832
+ color: var(--black);
3833
+ }
3834
+
3835
+ .styles-module_wrapper__RzCI3 .tab:first-child {
3836
+ border-top-left-radius: var(--fieldBorderRadius);
3837
+ }
3838
+
3839
+ .styles-module_wrapper__RzCI3 .tab:last-child {
3840
+ border-top-right-radius: var(--fieldBorderRadius);
3841
+ }
3842
+
3843
+ .styles-module_wrapper__RzCI3 .panel {
3844
+ border-radius: 0 var(--fieldBorderRadius) var(--fieldBorderRadius) var(--fieldBorderRadius);
3845
+ border-color: var(--fieldBorderColor);
3846
+ background-color: var(--white);
3847
+ padding: 1.875rem; /* 30px */
3848
+ }
3849
+
3850
+ .styles-module_wrapper__RzCI3 .RRT__container {
3851
+ position: relative;
3852
+ }
3853
+
3854
+ .styles-module_wrapper__RzCI3 .RRT__tabs {
3855
+ display: flex;
3856
+ flex-wrap: wrap;
3857
+ }
3858
+
3859
+ .styles-module_wrapper__RzCI3 .RRT__accordion {
3860
+ flex-direction: column;
3861
+ }
3862
+
3863
+ .styles-module_wrapper__RzCI3 .RRT__tab {
3864
+ background: #eee;
3865
+ border-style: solid;
3866
+ border-color: var(--fieldBorderColor);
3867
+ border-width: var(--fieldBorderWidth) var(--fieldBorderWidth) var(--fieldBorderWidth) 0;
3868
+ cursor: pointer;
3869
+ z-index: 1;
3870
+ white-space: nowrap;
3871
+ padding: 0.7em 1em;
3872
+ }
3873
+
3874
+ .styles-module_wrapper__RzCI3 .RRT__tab:focus {
3875
+ outline: 0;
3876
+ background-color: var(--fieldBorderColor);
3877
+ }
3878
+
3879
+ .styles-module_wrapper__RzCI3 .RRT__accordion .RRT__tab {
3880
+ border-left-width: var(--fieldBorderWidth);
3881
+ }
3882
+
3883
+ .styles-module_wrapper__RzCI3 .RRT__tab--first {
3884
+ border-left-width: var(--fieldBorderWidth);
3885
+ }
3886
+
3887
+ .styles-module_wrapper__RzCI3 .RRT__tab--selected {
3888
+ background: var(--white);
3889
+ border-color: var(--fieldBorderColor) var(--fieldBorderColor) var(--white);
3890
+ }
3891
+
3892
+ .styles-module_wrapper__RzCI3 .RRT__tab--selected:focus {
3893
+ background-color: var(--white);
3894
+ }
3895
+
3896
+ .styles-module_wrapper__RzCI3 .RRT__tab--disabled {
3897
+ opacity: 0.5;
3898
+ cursor: not-allowed;
3899
+ }
3900
+
3901
+ .styles-module_wrapper__RzCI3 .RRT__tab:focus {
3902
+ z-index: 2;
3903
+ }
3904
+
3905
+ .styles-module_wrapper__RzCI3 .RRT__tab--selected .RRT__removable {
3906
+ position: relative;
3907
+ }
3908
+
3909
+ .styles-module_wrapper__RzCI3 .RRT__tab--selected .RRT__removable-text {
3910
+ margin-right: 0.625rem; /* 10px */
3911
+ }
3912
+
3913
+ .styles-module_wrapper__RzCI3 .RRT__tab--selected .RRT__removable-icon {
3914
+ position: absolute;
3915
+ font-size: 1.125rem; /* 18px */
3916
+ right: 0.5em;
3917
+ top: 0.2em;
3918
+ }
3919
+
3920
+ .styles-module_wrapper__RzCI3 .RRT__panel {
3921
+ margin-top: -0.0625rem; /* -1px */
3922
+ padding: 1em;
3923
+ border: 0.0625rem solid var(--fieldBorderColor); /* 1px */
3924
+ }
3925
+
3926
+ .styles-module_wrapper__RzCI3 .RRT__panel--hidden {
3927
+ display: none;
3928
+ }
3929
+
3930
+ .styles-module_wrapper__RzCI3 .RRT__accordion .RRT__panel {
3931
+ margin-top: 0;
3932
+ }
3933
+
3934
+ .styles-module_wrapper__RzCI3 .RRT__showmore {
3935
+ background: var(--fieldBorderColor);
3936
+ border: 0.0625rem solid var(--fieldBorderColor); /* 1px */
3937
+ border-radius: 0 var(--fieldBorderRadius) 0 0;
3938
+ cursor: pointer;
3939
+ z-index: 1;
3940
+ white-space: nowrap;
3941
+ margin-left: -0.0625rem; /* -1px */
3942
+ position: relative;
3943
+ }
3944
+
3945
+ .styles-module_wrapper__RzCI3 .RRT__showmore--selected {
3946
+ background: var(--white);
3947
+ border-bottom: none;
3948
+ }
3949
+
3950
+ .styles-module_wrapper__RzCI3 .RRT__showmore-label {
3951
+ padding: 0.7em 1em;
3952
+ position: relative;
3953
+ z-index: 1;
3954
+ }
3955
+
3956
+ .styles-module_wrapper__RzCI3 .RRT__showmore-label--selected {
3957
+ background-color: var(--fieldBorderColor);
3958
+ }
3959
+
3960
+ .styles-module_wrapper__RzCI3 .RRT__showmore-list {
3961
+ position: absolute;
3962
+ right: -0.0625rem; /* -1px */
3963
+ top: 100%;
3964
+ display: none;
3965
+ }
3966
+
3967
+ .styles-module_wrapper__RzCI3 .RRT__showmore-list--opened {
3968
+ display: block;
3969
+ }
3970
+
3971
+ .styles-module_wrapper__RzCI3 .RRT__showmore-list--opened div.tab:last-child {
3972
+ border-radius: 0;
3973
+ }
3974
+
3975
+ .styles-module_wrapper__1j6mm {
3976
+ display: flex;
3977
+ flex-direction: column;
3978
+ }
3979
+
3980
+ .styles-module_gridRow__N2mS7 {
3981
+ display: block;
3982
+ }
3983
+
3984
+ @media (min-width: 900px) {
3985
+ .styles-module_gridRow__N2mS7 {
3986
+ display: flex;
3987
+ }
3988
+ }
3989
+
3990
+ .styles-module_gridCol__F0vZS {
3991
+ flex: var(--gridColSize, 1);
3992
+ }