@ubie/vitals-ui-consumer 0.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 (170) hide show
  1. package/.storybook/main.ts +14 -0
  2. package/.storybook/preview.tsx +25 -0
  3. package/.storybook/vitest.setup.ts +7 -0
  4. package/dist/chunk-DKo7XVKm.mjs +33 -0
  5. package/dist/index.d.mts +1720 -0
  6. package/dist/index.d.mts.map +1 -0
  7. package/dist/index.mjs +10594 -0
  8. package/dist/index.mjs.map +1 -0
  9. package/dist/style.css +2299 -0
  10. package/package.json +47 -0
  11. package/src/components/Accordion/Accordion.module.css +75 -0
  12. package/src/components/Accordion/Accordion.spec.tsx +18 -0
  13. package/src/components/Accordion/Accordion.stories.tsx +61 -0
  14. package/src/components/Accordion/Accordion.tsx +89 -0
  15. package/src/components/ActionHalfModal/ActionHalfModal.module.css +180 -0
  16. package/src/components/ActionHalfModal/ActionHalfModal.spec.tsx +57 -0
  17. package/src/components/ActionHalfModal/ActionHalfModal.stories.tsx +469 -0
  18. package/src/components/ActionHalfModal/ActionHalfModal.tsx +269 -0
  19. package/src/components/ActionModal/ActionModal.module.css +145 -0
  20. package/src/components/ActionModal/ActionModal.spec.tsx +57 -0
  21. package/src/components/ActionModal/ActionModal.stories.tsx +302 -0
  22. package/src/components/ActionModal/ActionModal.tsx +232 -0
  23. package/src/components/Bold/Bold.module.css +4 -0
  24. package/src/components/Bold/Bold.spec.tsx +24 -0
  25. package/src/components/Bold/Bold.stories.tsx +54 -0
  26. package/src/components/Bold/Bold.tsx +31 -0
  27. package/src/components/Box/Box.module.css +46 -0
  28. package/src/components/Box/Box.spec.tsx +188 -0
  29. package/src/components/Box/Box.tsx +242 -0
  30. package/src/components/Button/Button.module.css +261 -0
  31. package/src/components/Button/Button.spec.tsx +82 -0
  32. package/src/components/Button/Button.tsx +99 -0
  33. package/src/components/Button/ButtonTypes.ts +107 -0
  34. package/src/components/Button/LinkButton.spec.tsx +86 -0
  35. package/src/components/Button/LinkButton.tsx +80 -0
  36. package/src/components/Button/VariantIcon.tsx +20 -0
  37. package/src/components/Button/useIcon.tsx +16 -0
  38. package/src/components/ButtonCard/ButtonCard.module.css +35 -0
  39. package/src/components/ButtonCard/ButtonCard.spec.tsx +18 -0
  40. package/src/components/ButtonCard/ButtonCard.stories.tsx +54 -0
  41. package/src/components/ButtonCard/ButtonCard.tsx +18 -0
  42. package/src/components/Center/Center.module.css +19 -0
  43. package/src/components/Center/Center.spec.tsx +143 -0
  44. package/src/components/Center/Center.tsx +108 -0
  45. package/src/components/Checkbox/Checkbox.module.css +124 -0
  46. package/src/components/Checkbox/Checkbox.spec.tsx +17 -0
  47. package/src/components/Checkbox/Checkbox.stories.tsx +213 -0
  48. package/src/components/Checkbox/Checkbox.tsx +50 -0
  49. package/src/components/CheckboxCard/CheckboxCard.module.css +102 -0
  50. package/src/components/CheckboxCard/CheckboxCard.spec.tsx +16 -0
  51. package/src/components/CheckboxCard/CheckboxCard.stories.tsx +205 -0
  52. package/src/components/CheckboxCard/CheckboxCard.tsx +53 -0
  53. package/src/components/CheckboxGroup/CheckboxGroup.module.css +16 -0
  54. package/src/components/CheckboxGroup/CheckboxGroup.spec.tsx +17 -0
  55. package/src/components/CheckboxGroup/CheckboxGroup.tsx +64 -0
  56. package/src/components/Color/Color.module.css +3 -0
  57. package/src/components/Color/Color.spec.tsx +24 -0
  58. package/src/components/Color/Color.stories.tsx +71 -0
  59. package/src/components/Color/Color.tsx +28 -0
  60. package/src/components/Divider/Divider.module.css +9 -0
  61. package/src/components/Divider/Divider.spec.tsx +42 -0
  62. package/src/components/Divider/Divider.stories.tsx +77 -0
  63. package/src/components/Divider/Divider.tsx +49 -0
  64. package/src/components/ErrorMessage/ErrorMessage.module.css +8 -0
  65. package/src/components/ErrorMessage/ErrorMessage.spec.tsx +12 -0
  66. package/src/components/ErrorMessage/ErrorMessage.tsx +20 -0
  67. package/src/components/Flex/Flex.module.css +24 -0
  68. package/src/components/Flex/Flex.spec.tsx +188 -0
  69. package/src/components/Flex/Flex.tsx +173 -0
  70. package/src/components/FlexItem/FlexItem.module.css +14 -0
  71. package/src/components/FlexItem/FlexItem.spec.tsx +84 -0
  72. package/src/components/FlexItem/FlexItem.tsx +106 -0
  73. package/src/components/Heading/Heading.module.css +131 -0
  74. package/src/components/Heading/Heading.tsx +86 -0
  75. package/src/components/HelperMessage/HelperMessage.module.css +8 -0
  76. package/src/components/HelperMessage/HelperMessage.tsx +15 -0
  77. package/src/components/Icon/Icon.module.css +6 -0
  78. package/src/components/Icon/Icon.spec.tsx +24 -0
  79. package/src/components/Icon/Icon.stories.tsx +100 -0
  80. package/src/components/Icon/Icon.tsx +101 -0
  81. package/src/components/Input/Input.module.css +51 -0
  82. package/src/components/Input/Input.spec.tsx +14 -0
  83. package/src/components/Input/Input.tsx +27 -0
  84. package/src/components/Label/Label.module.css +14 -0
  85. package/src/components/Label/Label.tsx +39 -0
  86. package/src/components/LinkCard/LinkCard.module.css +72 -0
  87. package/src/components/LinkCard/LinkCard.tsx +96 -0
  88. package/src/components/MessageHalfModal/MessageHalfModal.module.css +181 -0
  89. package/src/components/MessageHalfModal/MessageHalfModal.spec.tsx +73 -0
  90. package/src/components/MessageHalfModal/MessageHalfModal.stories.tsx +242 -0
  91. package/src/components/MessageHalfModal/MessageHalfModal.tsx +194 -0
  92. package/src/components/MessageModal/MessageModal.module.css +149 -0
  93. package/src/components/MessageModal/MessageModal.spec.tsx +57 -0
  94. package/src/components/MessageModal/MessageModal.stories.tsx +223 -0
  95. package/src/components/MessageModal/MessageModal.tsx +178 -0
  96. package/src/components/Pre/Pre.module.css +8 -0
  97. package/src/components/Pre/Pre.spec.tsx +11 -0
  98. package/src/components/Pre/Pre.stories.tsx +76 -0
  99. package/src/components/Pre/Pre.tsx +40 -0
  100. package/src/components/RadioButton/RadioButton.module.css +92 -0
  101. package/src/components/RadioButton/RadioButton.spec.tsx +25 -0
  102. package/src/components/RadioButton/RadioButton.tsx +55 -0
  103. package/src/components/RadioCard/RadioCard.module.css +109 -0
  104. package/src/components/RadioCard/RadioCard.tsx +61 -0
  105. package/src/components/RadioGroup/RadioGroup.module.css +16 -0
  106. package/src/components/RadioGroup/RadioGroup.spec.tsx +17 -0
  107. package/src/components/RadioGroup/RadioGroup.tsx +60 -0
  108. package/src/components/Select/Select.module.css +70 -0
  109. package/src/components/Select/Select.spec.tsx +12 -0
  110. package/src/components/Select/Select.tsx +56 -0
  111. package/src/components/Stack/Stack.module.css +10 -0
  112. package/src/components/Stack/Stack.spec.tsx +177 -0
  113. package/src/components/Stack/Stack.tsx +151 -0
  114. package/src/components/Stepper/Stepper.module.css +137 -0
  115. package/src/components/Stepper/Stepper.spec.tsx +198 -0
  116. package/src/components/Stepper/Stepper.stories.tsx +192 -0
  117. package/src/components/Stepper/Stepper.tsx +70 -0
  118. package/src/components/Stepper/StepperItem.tsx +113 -0
  119. package/src/components/Text/Text.module.css +168 -0
  120. package/src/components/Text/Text.tsx +192 -0
  121. package/src/components/TextArea/TextArea.module.css +46 -0
  122. package/src/components/TextArea/TextArea.spec.tsx +13 -0
  123. package/src/components/TextArea/TextArea.tsx +29 -0
  124. package/src/components/Toggle/Toggle.module.css +71 -0
  125. package/src/components/Toggle/Toggle.spec.tsx +21 -0
  126. package/src/components/Toggle/Toggle.tsx +56 -0
  127. package/src/font.ts +2 -0
  128. package/src/hooks/useScrollable.ts +58 -0
  129. package/src/icons/AppleIcon.tsx +14 -0
  130. package/src/icons/GoogleIcon.tsx +27 -0
  131. package/src/icons/LINEIcon.tsx +16 -0
  132. package/src/index.ts +35 -0
  133. package/src/sharedComponents/RequiredLabel/RequiredLabel.module.css +10 -0
  134. package/src/sharedComponents/RequiredLabel/RequiredLabel.tsx +8 -0
  135. package/src/sharedComponents/VisuallyHidden/VisuallyHidden.module.css +15 -0
  136. package/src/sharedComponents/VisuallyHidden/VisuallyHidden.tsx +22 -0
  137. package/src/stories/Accordion.stories.portable.ts +4 -0
  138. package/src/stories/Box.stories.tsx +474 -0
  139. package/src/stories/Button.stories.tsx +262 -0
  140. package/src/stories/Center.stories.tsx +126 -0
  141. package/src/stories/ErrorMessage.stories.tsx +19 -0
  142. package/src/stories/Flex.stories.tsx +345 -0
  143. package/src/stories/Form.stories.tsx +83 -0
  144. package/src/stories/Heading.stories.tsx +263 -0
  145. package/src/stories/HelperMessage.stories.tsx +22 -0
  146. package/src/stories/Input.stories.tsx +145 -0
  147. package/src/stories/Label.stories.tsx +32 -0
  148. package/src/stories/LinkButton.stories.tsx +207 -0
  149. package/src/stories/LinkCard.stories.tsx +90 -0
  150. package/src/stories/RadioButton.stories.tsx +168 -0
  151. package/src/stories/RadioCard.stories.tsx +236 -0
  152. package/src/stories/Select.stories.tsx +97 -0
  153. package/src/stories/Stack.stories.tsx +167 -0
  154. package/src/stories/Text.stories.tsx +396 -0
  155. package/src/stories/TextArea.stories.tsx +49 -0
  156. package/src/stories/Toggle.stories.tsx +30 -0
  157. package/src/test/vitest-jest-dom.d.ts +12 -0
  158. package/src/types/attributes.ts +6 -0
  159. package/src/types/global.d.ts +11 -0
  160. package/src/types/icon.ts +3 -0
  161. package/src/types/style.ts +254 -0
  162. package/src/utils/component.ts +8 -0
  163. package/src/utils/style.spec.ts +57 -0
  164. package/src/utils/style.ts +387 -0
  165. package/src/utils/types.ts +8 -0
  166. package/tsconfig.json +18 -0
  167. package/tsconfig.spec-lint.tsbuildinfo +1 -0
  168. package/tsconfig.tsbuildinfo +1 -0
  169. package/vite.config.ts +50 -0
  170. package/vitest.shims.d.ts +1 -0
package/dist/style.css ADDED
@@ -0,0 +1,2299 @@
1
+ .sBu05a_container, .sBu05a_container * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ .sBu05a_button {
6
+ hyphens: auto;
7
+ width: auto;
8
+ color: var(--color-on-surface);
9
+ overflow-wrap: anywhere;
10
+ cursor: pointer;
11
+ border: 1px solid var(--color-outline);
12
+ background: none;
13
+ justify-content: space-between;
14
+ align-items: center;
15
+ display: flex;
16
+ }
17
+
18
+ .sBu05a_button:hover {
19
+ background-color: var(--color-ubie-blue-100);
20
+ }
21
+
22
+ .sBu05a_button::-webkit-details-marker {
23
+ display: none;
24
+ }
25
+
26
+ .sBu05a_medium .sBu05a_button {
27
+ width: 100%;
28
+ min-height: 2rem;
29
+ padding: var(--size-spacing-md);
30
+ border-radius: var(--radius-md);
31
+ font-weight: bold;
32
+ }
33
+
34
+ .sBu05a_small .sBu05a_button {
35
+ width: 100%;
36
+ min-height: 1.5rem;
37
+ padding: var(--size-spacing-xs);
38
+ font-size: var(--text-button-md-size);
39
+ border-left: none;
40
+ border-right: none;
41
+ }
42
+
43
+ details[open] .sBu05a_button {
44
+ border-bottom: none;
45
+ }
46
+
47
+ details[open].sBu05a_medium .sBu05a_button {
48
+ border-radius: var(--radius-md) var(--radius-md) 0 0;
49
+ }
50
+
51
+ .sBu05a_arrow {
52
+ width: 1.5rem;
53
+ height: 1.5rem;
54
+ color: var(--color-ubie-blue-600);
55
+ flex: none;
56
+ margin-left: 1rem;
57
+ }
58
+
59
+ details[open] .sBu05a_arrow {
60
+ transform: rotate(180deg);
61
+ }
62
+
63
+ .sBu05a_medium .sBu05a_panel {
64
+ padding: var(--size-spacing-md);
65
+ border: 1px solid var(--color-outline);
66
+ border-radius: 0 0 var(--radius-md) var(--radius-md);
67
+ border-top: none;
68
+ }
69
+
70
+ .sBu05a_small .sBu05a_panel {
71
+ padding: var(--size-spacing-xs);
72
+ border-bottom: 1px solid var(--color-outline);
73
+ }
74
+ .RtZ3TG_stack {
75
+ gap: var(--gap);
76
+ width: var(--width);
77
+ min-width: var(--min-width);
78
+ max-width: var(--max-width);
79
+ padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
80
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
81
+ flex-direction: column;
82
+ display: flex;
83
+ }
84
+ .SKhJ5a_text {
85
+ font-size: var(--font-size);
86
+ hyphens: auto;
87
+ font-weight: normal;
88
+ line-height: var(--leading);
89
+ color: var(--text-color);
90
+ overflow-wrap: anywhere;
91
+ }
92
+
93
+ :where(.SKhJ5a_text) {
94
+ margin-top: 0;
95
+ margin-bottom: 0;
96
+ }
97
+
98
+ a.SKhJ5a_text {
99
+ text-decoration: underline;
100
+ }
101
+
102
+ @media (hover: hover) {
103
+ a.SKhJ5a_text:hover {
104
+ text-decoration: none;
105
+ }
106
+ }
107
+
108
+ a.SKhJ5a_text:focus-visible {
109
+ text-decoration: none;
110
+ }
111
+
112
+ a.SKhJ5a_text:active {
113
+ text-decoration: underline;
114
+ }
115
+
116
+ button.SKhJ5a_text {
117
+ background-color: #0000;
118
+ border: none;
119
+ padding: 0;
120
+ }
121
+
122
+ button.SKhJ5a_text.SKhJ5a_link:focus-visible {
123
+ color: var(--color-primary);
124
+ }
125
+
126
+ @media (hover: hover) {
127
+ button.SKhJ5a_text.SKhJ5a_link:hover, button.SKhJ5a_text.SKhJ5a_link:active {
128
+ color: var(--color-primary);
129
+ }
130
+ }
131
+
132
+ .SKhJ5a_bold {
133
+ font-weight: bold;
134
+ }
135
+
136
+ .SKhJ5a_body.SKhJ5a_xs {
137
+ --font-size: var(--text-body-xs-size);
138
+ }
139
+
140
+ .SKhJ5a_body.SKhJ5a_sm {
141
+ --font-size: var(--text-body-sm-size);
142
+ }
143
+
144
+ .SKhJ5a_body.SKhJ5a_md {
145
+ --font-size: var(--text-body-md-size);
146
+ }
147
+
148
+ .SKhJ5a_body.SKhJ5a_lg {
149
+ --font-size: var(--text-body-lg-size);
150
+ }
151
+
152
+ .SKhJ5a_heading.SKhJ5a_xxs {
153
+ --font-size: var(--text-heading-xxs-size);
154
+ }
155
+
156
+ .SKhJ5a_heading.SKhJ5a_xs {
157
+ --font-size: var(--text-heading-xs-size);
158
+ }
159
+
160
+ .SKhJ5a_heading.SKhJ5a_sm {
161
+ --font-size: var(--text-heading-sm-size);
162
+ }
163
+
164
+ .SKhJ5a_heading.SKhJ5a_md {
165
+ --font-size: var(--text-heading-md-size);
166
+ }
167
+
168
+ .SKhJ5a_heading.SKhJ5a_lg {
169
+ --font-size: var(--text-heading-lg-size);
170
+ }
171
+
172
+ .SKhJ5a_heading.SKhJ5a_xl {
173
+ --font-size: var(--text-heading-xl-size);
174
+ }
175
+
176
+ .SKhJ5a_button.SKhJ5a_sm {
177
+ --font-size: var(--text-button-sm-size);
178
+ }
179
+
180
+ .SKhJ5a_button.SKhJ5a_md {
181
+ --font-size: var(--text-button-md-size);
182
+ }
183
+
184
+ .SKhJ5a_button.SKhJ5a_lg {
185
+ --font-size: var(--text-button-lg-size);
186
+ }
187
+
188
+ .SKhJ5a_tag.SKhJ5a_md {
189
+ --font-size: var(--text-tag-md-size);
190
+ }
191
+
192
+ .SKhJ5a_tag.SKhJ5a_lg {
193
+ --font-size: var(--text-tag-lg-size);
194
+ }
195
+
196
+ .SKhJ5a_default {
197
+ --leading: var(--text-body-md-line);
198
+ }
199
+
200
+ .SKhJ5a_default.SKhJ5a_heading.SKhJ5a_xs, .SKhJ5a_default.SKhJ5a_heading.SKhJ5a_sm {
201
+ --leading: var(--text-heading-sm-line);
202
+ }
203
+
204
+ .SKhJ5a_default.SKhJ5a_heading.SKhJ5a_md, .SKhJ5a_default.SKhJ5a_heading.SKhJ5a_lg, .SKhJ5a_default.SKhJ5a_heading.SKhJ5a_xl {
205
+ --leading: var(--text-heading-md-line);
206
+ }
207
+
208
+ .SKhJ5a_button.SKhJ5a_default {
209
+ --leading: var(--text-button-md-line);
210
+ }
211
+
212
+ .SKhJ5a_tag.SKhJ5a_default {
213
+ --leading: var(--text-tag-md-line);
214
+ }
215
+
216
+ .SKhJ5a_narrow {
217
+ --leading: var(--text-body-md-narrow-line);
218
+ }
219
+
220
+ .SKhJ5a_wide {
221
+ --leading: var(--text-body-md-wide-line);
222
+ }
223
+
224
+ .SKhJ5a_wide.SKhJ5a_heading {
225
+ --leading: var(--text-heading-md-wide-line);
226
+ }
227
+
228
+ .SKhJ5a_left {
229
+ text-align: left;
230
+ }
231
+
232
+ .SKhJ5a_center {
233
+ text-align: center;
234
+ }
235
+
236
+ .SKhJ5a_right {
237
+ text-align: right;
238
+ }
239
+
240
+ .SKhJ5a_nowrap {
241
+ white-space: nowrap;
242
+ }
243
+ .TmCe1q_modal {
244
+ z-index: var(--z-index-modal);
245
+ position: fixed;
246
+ inset: 0;
247
+ overflow: hidden;
248
+ }
249
+
250
+ .TmCe1q_overlay {
251
+ position: fixed;
252
+ inset: 0;
253
+ }
254
+
255
+ .TmCe1q_normalOverlay {
256
+ background: #00000080;
257
+ }
258
+
259
+ .TmCe1q_darkerOverlay {
260
+ background: #000c;
261
+ }
262
+
263
+ .TmCe1q_contents {
264
+ padding: 0 var(--size-spacing-md);
265
+ }
266
+
267
+ .TmCe1q_dialog {
268
+ border-radius: 12px;
269
+ background: #fff;
270
+ border-end-end-radius: 0;
271
+ border-end-start-radius: 0;
272
+ flex-direction: column;
273
+ width: 100%;
274
+ max-width: 600px;
275
+ margin: 0 auto;
276
+ display: flex;
277
+ position: fixed;
278
+ bottom: 0;
279
+ left: 50%;
280
+ overflow-y: hidden;
281
+ transform: translate3d(-50%, 0, 0);
282
+ }
283
+
284
+ .TmCe1q_dialog.TmCe1q_fullscreen {
285
+ height: calc(100% - 24px);
286
+ }
287
+
288
+ .TmCe1q_scrollContainer {
289
+ height: 100%;
290
+ overflow-y: auto;
291
+ }
292
+
293
+ .TmCe1q_mainContent {
294
+ flex-direction: column;
295
+ display: flex;
296
+ }
297
+
298
+ .TmCe1q_mainContent.TmCe1q_headerLess {
299
+ padding-top: var(--size-spacing-xl);
300
+ }
301
+
302
+ .TmCe1q_mainContent.TmCe1q_fullscreen {
303
+ min-height: 100%;
304
+ }
305
+
306
+ .TmCe1q_header {
307
+ padding: var(--size-spacing-lg) var(--size-spacing-md);
308
+ font-size: var(--text-heading-xs-size);
309
+ font-weight: bold;
310
+ line-height: var(--text-heading-xs-line);
311
+ text-align: center;
312
+ white-space: pre-wrap;
313
+ background-color: var(--color-ubie-white);
314
+ outline: none;
315
+ }
316
+
317
+ .TmCe1q_header.TmCe1q_sticky {
318
+ z-index: 1;
319
+ position: sticky;
320
+ top: 0;
321
+ }
322
+
323
+ .TmCe1q_header.TmCe1q_sticky.TmCe1q_canScroll {
324
+ border-bottom: 1px solid var(--color-border);
325
+ }
326
+
327
+ .TmCe1q_body {
328
+ z-index: 0;
329
+ padding-right: var(--size-spacing-md);
330
+ padding-left: var(--size-spacing-md);
331
+ }
332
+
333
+ .TmCe1q_body.TmCe1q_fullscreen {
334
+ flex: 1;
335
+ min-height: 400px;
336
+ overflow: hidden;
337
+ }
338
+
339
+ .TmCe1q_buttonContainer {
340
+ gap: var(--size-spacing-md);
341
+ padding: var(--size-spacing-lg) var(--size-spacing-md) var(--size-spacing-md);
342
+ background-color: var(--color-ubie-white);
343
+ display: grid;
344
+ }
345
+
346
+ .TmCe1q_buttonContainer.TmCe1q_sticky {
347
+ position: sticky;
348
+ bottom: 0;
349
+ }
350
+
351
+ .TmCe1q_buttonContainer.TmCe1q_sticky.TmCe1q_canScroll {
352
+ border-top: 1px solid var(--color-border);
353
+ }
354
+
355
+ .TmCe1q_overlayEnter {
356
+ transition-property: opacity;
357
+ transition-duration: .3s;
358
+ transition-timing-function: ease-out;
359
+ }
360
+
361
+ .TmCe1q_overlayEnterFrom {
362
+ opacity: 0;
363
+ }
364
+
365
+ .TmCe1q_overlayEnterTo {
366
+ opacity: 1;
367
+ }
368
+
369
+ .TmCe1q_overlayLeave {
370
+ transition-duration: .2s;
371
+ transition-timing-function: ease-in;
372
+ }
373
+
374
+ .TmCe1q_overlayLeaveFrom {
375
+ opacity: 1;
376
+ }
377
+
378
+ .TmCe1q_overlayLeaveTo {
379
+ opacity: 0;
380
+ }
381
+
382
+ .TmCe1q_panelEnter {
383
+ transition-property: transform, opacity;
384
+ transition-duration: .3s;
385
+ transition-timing-function: ease-out;
386
+ }
387
+
388
+ .TmCe1q_panelEnterFrom {
389
+ opacity: 0;
390
+ transform: translate3d(-50%, 100%, 0);
391
+ }
392
+
393
+ .TmCe1q_panelEnterTo {
394
+ opacity: 1;
395
+ transform: translate3d(-50%, 0, 0);
396
+ }
397
+
398
+ .TmCe1q_panelLeave {
399
+ transition-duration: .2s;
400
+ transition-timing-function: ease-in;
401
+ }
402
+
403
+ .TmCe1q_panelLeaveFrom {
404
+ opacity: 1;
405
+ transform: translate3d(-50%, 0, 0);
406
+ }
407
+
408
+ .TmCe1q_panelLeaveTo {
409
+ opacity: 0;
410
+ transform: translate3d(-50%, 100%, 0);
411
+ }
412
+ .EoFx-W_visuallyHidden {
413
+ clip: rect(0, 0, 0, 0);
414
+ white-space: nowrap;
415
+ border-width: 0;
416
+ width: 1px;
417
+ height: 1px;
418
+ margin: -1px;
419
+ padding: 0;
420
+ position: absolute;
421
+ overflow: hidden;
422
+ }
423
+
424
+ .EoFx-W_visuallyHidden[tabindex="-1"] {
425
+ outline: none;
426
+ }
427
+ .m6Snkq_button {
428
+ --border-width: 1px;
429
+ box-sizing: border-box;
430
+ width: auto;
431
+ min-width: var(--min-width);
432
+ min-height: var(--height);
433
+ padding: var(--padding-y) var(--padding-x);
434
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
435
+ font-size: var(--font-size);
436
+ hyphens: auto;
437
+ font-weight: bold;
438
+ line-height: var(--line-height);
439
+ color: var(--text);
440
+ text-align: center;
441
+ overflow-wrap: anywhere;
442
+ white-space: var(--white-space, "normal");
443
+ appearance: none;
444
+ cursor: pointer;
445
+ background-color: var(--bg);
446
+ border-color: var(--border-color);
447
+ border-style: solid;
448
+ border-width: var(--border-width);
449
+ border-radius: var(--height);
450
+ grid-template-columns: 1fr auto 1fr;
451
+ justify-content: center;
452
+ align-items: center;
453
+ text-decoration: none;
454
+ transition: all .3s cubic-bezier(.22, 1, .36, 1);
455
+ display: inline-grid;
456
+ position: relative;
457
+ }
458
+
459
+ .m6Snkq_button:focus-visible {
460
+ outline: solid var(--focus-ring, var(--color-ubie-blue-500)) 2px;
461
+ }
462
+
463
+ .m6Snkq_button.m6Snkq_loading {
464
+ cursor: wait;
465
+ }
466
+
467
+ @media (hover: hover) {
468
+ .m6Snkq_button:hover:not(.m6Snkq_loading) {
469
+ color: var(--text-hover);
470
+ cursor: pointer;
471
+ background-color: var(--bg-hover);
472
+ border-color: var(--border-color-hover);
473
+ }
474
+ }
475
+
476
+ .m6Snkq_label {
477
+ grid-column: 2;
478
+ justify-content: center;
479
+ align-items: center;
480
+ display: inline-flex;
481
+ }
482
+
483
+ .m6Snkq_disabled {
484
+ padding: calc(var(--padding-y) + var(--border-width)) calc(var(--padding-x) + var(--border-width));
485
+ color: var(--text-disabled);
486
+ pointer-events: none;
487
+ cursor: not-allowed;
488
+ background-color: var(--bg-disabled);
489
+ border-color: var(--border-color-disabled);
490
+ border-width: 0;
491
+ }
492
+
493
+ .m6Snkq_loadingLabel {
494
+ justify-content: center;
495
+ align-items: center;
496
+ display: flex;
497
+ position: absolute;
498
+ inset: 0;
499
+ }
500
+
501
+ .m6Snkq_children.m6Snkq_loading {
502
+ opacity: 0;
503
+ }
504
+
505
+ .m6Snkq_primary {
506
+ --text: var(--color-ubie-white);
507
+ --text-hover: var(--color-ubie-white);
508
+ --text-disabled: var(--color-placeholder);
509
+ --bg: var(--color-primary);
510
+ --bg-hover: var(--color-ubie-blue-800);
511
+ --bg-disabled: var(--color-outline-variant);
512
+ --border-color: var(--color-primary);
513
+ --border-color-hover: var(--color-ubie-blue-800);
514
+ --border-color-disabled: var(--color-outline-variant);
515
+ --focus-ring: var(--color-ubie-pink-500);
516
+ }
517
+
518
+ .m6Snkq_secondary {
519
+ --text: var(--color-on-surface);
520
+ --text-hover: var(--color-on-surface);
521
+ --text-disabled: var(--color-placeholder);
522
+ --bg: var(--color-surface-container);
523
+ --bg-hover: var(--color-outline-variant);
524
+ --bg-disabled: var(--color-outline-variant);
525
+ --border-color: var(--color-outline);
526
+ --border-color-hover: var(--color-outline);
527
+ --border-color-disabled: var(--color-outline-variant);
528
+ }
529
+
530
+ .m6Snkq_alert {
531
+ --text: var(--color-ubie-white);
532
+ --text-hover: var(--color-ubie-white);
533
+ --text-disabled: var(--color-placeholder);
534
+ --bg: var(--color-error);
535
+ --bg-hover: var(--color-ubie-red-800);
536
+ --bg-disabled: var(--color-outline-variant);
537
+ --border-color: var(--color-error);
538
+ --border-color-hover: var(--color-ubie-red-800);
539
+ --border-color-disabled: var(--color-outline-variant);
540
+ }
541
+
542
+ .m6Snkq_text {
543
+ --text: var(--color-ubie-blue-600);
544
+ --text-hover: var(--color-ubie-blue-700);
545
+ --text-disabled: var(--color-placeholder);
546
+ --bg: transparent;
547
+ --bg-hover: var(--color-ubie-blue-100);
548
+ --bg-disabled: transparent;
549
+ --border-color: transparent;
550
+ --border-color-hover: var(--color-ubie-blue-100);
551
+ --border-color-disabled: var(--color-outline-variant);
552
+ }
553
+
554
+ .m6Snkq_textAlert {
555
+ --text: var(--color-ubie-red-800);
556
+ --text-hover: var(--color-ubie-red-700);
557
+ --text-disabled: var(--color-placeholder);
558
+ --bg: transparent;
559
+ --bg-hover: var(--color-error-container);
560
+ --bg-disabled: transparent;
561
+ --border-color: transparent;
562
+ --border-color-hover: var(--color-error-container);
563
+ --border-color-disabled: var(--color-outline-variant);
564
+ }
565
+
566
+ .m6Snkq_authGoogle {
567
+ --text: var(--color-on-surface);
568
+ --text-hover: var(--color-on-surface);
569
+ --text-disabled: var(--color-on-surface);
570
+ --bg: #fff;
571
+ --bg-hover: #fff;
572
+ --bg-disabled: #e2e2e2;
573
+ --border-color: #9ca0a8;
574
+ --border-color-hover: #9ca0a8;
575
+ --border-color-disabled: #9ca0a8;
576
+ }
577
+
578
+ .m6Snkq_authLINE {
579
+ --text: #fff;
580
+ --text-hover: #fff;
581
+ --text-disabled: #fff;
582
+ --bg: #06c755;
583
+ --bg-hover: #06c755;
584
+ --bg-disabled: #06c755;
585
+ --border-color: #06c755;
586
+ --border-color-hover: #06c755;
587
+ --border-color-disabled: #06c755;
588
+ }
589
+
590
+ .m6Snkq_authApple {
591
+ --text: #fff;
592
+ --text-hover: #fff;
593
+ --text-disabled: #fff;
594
+ --bg: #000;
595
+ --bg-hover: #000;
596
+ --bg-disabled: #000;
597
+ --border-color: #000;
598
+ --border-color-hover: #000;
599
+ --border-color-disabled: #000;
600
+ }
601
+
602
+ .m6Snkq_large {
603
+ --min-width: 112px;
604
+ --height: 56px;
605
+ --padding-x: 22px;
606
+ --padding-y: 8px;
607
+ --font-size: var(--text-button-lg-size);
608
+ --line-height: var(--text-button-lg-line);
609
+ --icon-size: 24px;
610
+ --icon-gap: 8px;
611
+ }
612
+
613
+ .m6Snkq_medium {
614
+ --min-width: 80px;
615
+ --height: 36px;
616
+ --padding-x: 10px;
617
+ --padding-y: 8px;
618
+ --font-size: var(--text-button-md-size);
619
+ --line-height: var(--text-button-md-line);
620
+ --icon-size: 20px;
621
+ --icon-gap: 6px;
622
+ }
623
+
624
+ .m6Snkq_small {
625
+ --min-width: 60px;
626
+ --height: 24px;
627
+ --padding-x: 6px;
628
+ --padding-y: 3px;
629
+ --font-size: var(--text-button-sm-size);
630
+ --line-height: var(--text-button-sm-line);
631
+ --icon-size: 16px;
632
+ --icon-gap: 4px;
633
+ }
634
+
635
+ .m6Snkq_block {
636
+ width: 100%;
637
+ }
638
+
639
+ .m6Snkq_icon {
640
+ margin-right: var(--icon-gap);
641
+ vertical-align: middle;
642
+ display: flex;
643
+ }
644
+
645
+ .m6Snkq_icon.m6Snkq_loading {
646
+ opacity: 0;
647
+ }
648
+
649
+ .m6Snkq_icon > * {
650
+ width: var(--icon-size);
651
+ height: var(--icon-size);
652
+ }
653
+
654
+ .m6Snkq_fixedIcon {
655
+ vertical-align: middle;
656
+ margin: 0 10%;
657
+ display: flex;
658
+ }
659
+
660
+ .m6Snkq_fixedIcon > * {
661
+ width: var(--icon-size);
662
+ height: var(--icon-size);
663
+ }
664
+
665
+ .m6Snkq_suffixIcon {
666
+ margin-left: var(--icon-gap);
667
+ vertical-align: middle;
668
+ display: flex;
669
+ }
670
+
671
+ .m6Snkq_suffixIcon.m6Snkq_loading {
672
+ opacity: 0;
673
+ }
674
+
675
+ .m6Snkq_suffixIcon > * {
676
+ width: var(--icon-size);
677
+ height: var(--icon-size);
678
+ }
679
+ ._6XFBpa_icon {
680
+ width: var(--size);
681
+ height: var(--size);
682
+ color: var(--icon-color);
683
+ vertical-align: bottom;
684
+ }
685
+ .N4rtbW_modal {
686
+ z-index: var(--z-index-modal);
687
+ justify-content: center;
688
+ align-items: center;
689
+ display: flex;
690
+ position: fixed;
691
+ inset: 0;
692
+ }
693
+
694
+ .N4rtbW_overlay {
695
+ position: fixed;
696
+ inset: 0;
697
+ }
698
+
699
+ .N4rtbW_normalOverlay {
700
+ background: #00000080;
701
+ }
702
+
703
+ .N4rtbW_darkerOverlay {
704
+ background: #000c;
705
+ }
706
+
707
+ .N4rtbW_dialog {
708
+ box-sizing: border-box;
709
+ border-radius: var(--radius-lg);
710
+ background: #fff;
711
+ flex-direction: column;
712
+ width: calc(100% - 32px);
713
+ max-width: 600px;
714
+ max-height: calc(100% - 48px);
715
+ margin: 0 auto;
716
+ display: flex;
717
+ position: relative;
718
+ overflow: hidden;
719
+ }
720
+
721
+ .N4rtbW_dialog.N4rtbW_fixedHeight {
722
+ height: calc(100% - 48px);
723
+ }
724
+
725
+ .N4rtbW_scrollContainer {
726
+ height: 100%;
727
+ overflow-y: auto;
728
+ }
729
+
730
+ .N4rtbW_mainContent {
731
+ box-sizing: border-box;
732
+ flex-direction: column;
733
+ display: flex;
734
+ }
735
+
736
+ .N4rtbW_mainContent.N4rtbW_fixedHeight {
737
+ min-height: 100%;
738
+ }
739
+
740
+ .N4rtbW_mainContent.N4rtbW_headerLess {
741
+ padding-top: var(--size-spacing-xl);
742
+ }
743
+
744
+ .N4rtbW_header {
745
+ padding: var(--size-spacing-lg) var(--size-spacing-md);
746
+ font-size: var(--text-heading-xs-size);
747
+ font-weight: bold;
748
+ line-height: var(--text-heading-xs-line);
749
+ text-align: center;
750
+ white-space: pre-wrap;
751
+ background-color: var(--color-ubie-white);
752
+ outline: none;
753
+ }
754
+
755
+ .N4rtbW_header.N4rtbW_sticky {
756
+ z-index: 1;
757
+ position: sticky;
758
+ top: 0;
759
+ }
760
+
761
+ .N4rtbW_header.N4rtbW_sticky.N4rtbW_canScroll {
762
+ border-bottom: 1px solid var(--color-border);
763
+ }
764
+
765
+ .N4rtbW_body {
766
+ z-index: 0;
767
+ padding-right: var(--size-spacing-md);
768
+ padding-left: var(--size-spacing-md);
769
+ }
770
+
771
+ .N4rtbW_body.N4rtbW_fixedHeight {
772
+ flex-grow: 1;
773
+ min-height: 400px;
774
+ overflow: hidden;
775
+ }
776
+
777
+ .N4rtbW_buttonContainer {
778
+ gap: var(--size-spacing-md);
779
+ padding: var(--size-spacing-lg) var(--size-spacing-md) var(--size-spacing-md);
780
+ background-color: var(--color-ubie-white);
781
+ display: grid;
782
+ }
783
+
784
+ .N4rtbW_buttonContainer.N4rtbW_sticky {
785
+ position: sticky;
786
+ bottom: 0;
787
+ }
788
+
789
+ .N4rtbW_buttonContainer.N4rtbW_sticky.N4rtbW_canScroll {
790
+ border-top: 1px solid var(--color-border);
791
+ }
792
+
793
+ .N4rtbW_panelEnter {
794
+ transition-property: opacity;
795
+ transition-duration: .25s;
796
+ transition-timing-function: ease-out;
797
+ }
798
+
799
+ .N4rtbW_panelEnterFrom {
800
+ opacity: 0;
801
+ }
802
+
803
+ .N4rtbW_panelEnterTo {
804
+ opacity: 1;
805
+ }
806
+
807
+ .N4rtbW_panelLeave {
808
+ transition-duration: .2s;
809
+ transition-timing-function: ease-in;
810
+ }
811
+
812
+ .N4rtbW_panelLeaveFrom {
813
+ opacity: 1;
814
+ }
815
+
816
+ .N4rtbW_panelLeaveTo {
817
+ opacity: 0;
818
+ }
819
+ ._84s-aa_box {
820
+ box-sizing: border-box;
821
+ width: var(--width);
822
+ min-width: var(--min-width);
823
+ max-width: var(--max-width);
824
+ padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
825
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
826
+ font-size: var(--text-size);
827
+ font-weight: var(--text-bold);
828
+ hyphens: auto;
829
+ line-height: var(--text-leading);
830
+ color: var(--text-color);
831
+ overflow-wrap: anywhere;
832
+ background-color: var(--background-color);
833
+ border: var(--border-width) solid var(--border-color);
834
+ border-radius: var(--radius);
835
+ display: block;
836
+ }
837
+
838
+ ._84s-aa_box._84s-aa_textBold {
839
+ font-weight: bold;
840
+ }
841
+
842
+ ._84s-aa_box._84s-aa_textNormal {
843
+ font-weight: normal;
844
+ }
845
+
846
+ ._84s-aa_box._84s-aa_textCenter {
847
+ text-align: center;
848
+ }
849
+
850
+ ._84s-aa_box._84s-aa_textLeft {
851
+ text-align: left;
852
+ }
853
+
854
+ ._84s-aa_box._84s-aa_textRight {
855
+ text-align: right;
856
+ }
857
+
858
+ ._84s-aa_box._84s-aa_textNoWrap {
859
+ white-space: nowrap;
860
+ }
861
+
862
+ ._84s-aa_box._84s-aa_inline {
863
+ display: inline-block;
864
+ }
865
+ .Ei8pzG_card {
866
+ --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
867
+ width: 100%;
868
+ padding: var(--size-spacing-md) var(--size-spacing-sm);
869
+ font-size: var(--text-button-lg-size);
870
+ hyphens: auto;
871
+ color: var(--color-on-surface);
872
+ text-align: left;
873
+ overflow-wrap: anywhere;
874
+ cursor: pointer;
875
+ background-color: var(--color-ubie-white);
876
+ border: 1px solid var(--color-outline);
877
+ border-radius: var(--radius-md);
878
+ transition: background-color .3s var(--ease-out-quint);
879
+ align-items: center;
880
+ font-weight: bold;
881
+ line-height: 1.5;
882
+ text-decoration: none;
883
+ display: flex;
884
+ }
885
+
886
+ @media (hover: hover) {
887
+ .Ei8pzG_card:hover:not(:disabled) {
888
+ background-color: var(--color-ubie-blue-100);
889
+ }
890
+ }
891
+
892
+ .Ei8pzG_card:disabled {
893
+ color: var(--color-placeholder);
894
+ cursor: initial;
895
+ background-color: var(--color-outline-variant);
896
+ }
897
+ .-I1clG_center {
898
+ width: var(--width);
899
+ min-width: var(--min-width);
900
+ max-width: var(--max-width);
901
+ padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
902
+ margin-inline: auto;
903
+ margin-top: var(--margin-top);
904
+ margin-bottom: var(--margin-bottom);
905
+ }
906
+
907
+ .-I1clG_center.-I1clG_textCenter {
908
+ text-align: center;
909
+ }
910
+
911
+ .-I1clG_center.-I1clG_childrenCenter {
912
+ flex-direction: column;
913
+ align-items: center;
914
+ display: flex;
915
+ }
916
+ .L3krha_divider {
917
+ width: var(--width);
918
+ min-width: var(--min-width);
919
+ max-width: var(--max-width);
920
+ height: 1px;
921
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
922
+ border: 0;
923
+ border-top: var(--border-width) solid var(--border-color);
924
+ }
925
+ .d5-kUq_heading {
926
+ box-sizing: border-box;
927
+ hyphens: auto;
928
+ color: var(--color-on-surface);
929
+ overflow-wrap: anywhere;
930
+ --medium-leading-border-width: 4px;
931
+ --large-leading-border-width: 5px;
932
+ font-weight: normal;
933
+ position: relative;
934
+ }
935
+
936
+ .d5-kUq_heading.d5-kUq_bold {
937
+ font-weight: bold;
938
+ }
939
+
940
+ :where(.d5-kUq_heading) {
941
+ margin: 0;
942
+ }
943
+
944
+ .d5-kUq_heading.d5-kUq_left {
945
+ text-align: left;
946
+ }
947
+
948
+ .d5-kUq_heading.d5-kUq_center {
949
+ text-align: center;
950
+ }
951
+
952
+ .d5-kUq_heading.d5-kUq_right {
953
+ text-align: right;
954
+ }
955
+
956
+ .d5-kUq_heading.d5-kUq_main {
957
+ color: var(--color-on-surface);
958
+ }
959
+
960
+ .d5-kUq_heading > a {
961
+ color: var(--color-primary);
962
+ }
963
+
964
+ @media (hover: hover) {
965
+ .d5-kUq_heading > a:hover {
966
+ color: var(--color-ubie-blue-700);
967
+ }
968
+ }
969
+
970
+ .d5-kUq_heading > a:active {
971
+ text-decoration: none;
972
+ }
973
+
974
+ .d5-kUq_heading.d5-kUq_white, .d5-kUq_heading.d5-kUq_white, .d5-kUq_heading.d5-kUq_white > a {
975
+ color: var(--color-ubie-white);
976
+ }
977
+
978
+ @media (hover: hover) {
979
+ .d5-kUq_heading.d5-kUq_white > a:hover {
980
+ text-decoration: none;
981
+ }
982
+ }
983
+
984
+ .d5-kUq_heading.d5-kUq_white > a:active {
985
+ text-decoration: underline;
986
+ position: relative;
987
+ top: 1px;
988
+ }
989
+
990
+ .d5-kUq_heading.d5-kUq_xxs {
991
+ font-size: var(--text-heading-xxs-size);
992
+ line-height: var(--text-heading-xxs-line);
993
+ }
994
+
995
+ .d5-kUq_heading.d5-kUq_xs {
996
+ font-size: var(--text-heading-xs-size);
997
+ line-height: var(--text-heading-xs-line);
998
+ }
999
+
1000
+ .d5-kUq_heading.d5-kUq_sm {
1001
+ font-size: var(--text-heading-sm-size);
1002
+ line-height: var(--text-heading-sm-line);
1003
+ }
1004
+
1005
+ .d5-kUq_heading.d5-kUq_md {
1006
+ font-size: var(--text-heading-md-size);
1007
+ line-height: var(--text-heading-md-line);
1008
+ }
1009
+
1010
+ .d5-kUq_heading.d5-kUq_lg {
1011
+ font-size: var(--text-heading-lg-size);
1012
+ line-height: var(--text-heading-lg-line);
1013
+ }
1014
+
1015
+ .d5-kUq_heading.d5-kUq_xl {
1016
+ font-size: var(--text-heading-xl-size);
1017
+ line-height: var(--text-heading-xl-line);
1018
+ }
1019
+
1020
+ .d5-kUq_heading.d5-kUq_leadingBorder {
1021
+ padding-left: calc(var(--size-spacing-sm) + var(--medium-leading-border-width));
1022
+ }
1023
+
1024
+ .d5-kUq_heading.d5-kUq_leadingBorder:before {
1025
+ width: var(--medium-leading-border-width);
1026
+ vertical-align: top;
1027
+ content: "";
1028
+ background-color: var(--color-ubie-blue-600);
1029
+ border-radius: 3px;
1030
+ height: 100%;
1031
+ display: block;
1032
+ position: absolute;
1033
+ top: 0;
1034
+ left: 0;
1035
+ }
1036
+
1037
+ .d5-kUq_heading.d5-kUq_lg.d5-kUq_leadingBorder, .d5-kUq_heading.d5-kUq_xl.d5-kUq_leadingBorder {
1038
+ padding-left: calc(var(--size-spacing-sm) + var(--large-leading-border-width));
1039
+ }
1040
+
1041
+ .d5-kUq_heading.d5-kUq_lg.d5-kUq_leadingBorder:before, .d5-kUq_heading.d5-kUq_xl.d5-kUq_leadingBorder:before {
1042
+ width: var(--large-leading-border-width);
1043
+ }
1044
+
1045
+ .d5-kUq_heading.d5-kUq_noWrap {
1046
+ white-space: nowrap;
1047
+ }
1048
+ .xhEpsq_error {
1049
+ font-size: var(--text-body-sm-size);
1050
+ hyphens: auto;
1051
+ line-height: var(--text-body-sm-narrow-line);
1052
+ color: var(--color-ubie-red-600);
1053
+ overflow-wrap: anywhere;
1054
+ margin: 0;
1055
+ }
1056
+ .Mjlt9q_flex {
1057
+ flex-flow: var(--flex-direction) var(--flex-wrap);
1058
+ gap: var(--gap);
1059
+ align-items: var(--align-items);
1060
+ justify-content: var(--justify-content);
1061
+ width: var(--width);
1062
+ min-width: var(--min-width);
1063
+ max-width: var(--max-width);
1064
+ padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
1065
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
1066
+ display: flex;
1067
+ }
1068
+
1069
+ .Mjlt9q_flex.Mjlt9q_heightFull {
1070
+ height: 100%;
1071
+ }
1072
+
1073
+ .Mjlt9q_flex.Mjlt9q_widthFull {
1074
+ width: 100%;
1075
+ }
1076
+
1077
+ .Mjlt9q_flex.Mjlt9q_inline {
1078
+ display: inline-flex;
1079
+ }
1080
+ .jRj3sq_flexItem {
1081
+ min-width: var(--min-width);
1082
+ max-width: var(--max-width);
1083
+ padding: var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
1084
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
1085
+ }
1086
+
1087
+ .jRj3sq_none {
1088
+ flex: none;
1089
+ }
1090
+
1091
+ .jRj3sq_longhand {
1092
+ flex: var(--flex-grow) var(--flex-shrink) var(--flex-basis);
1093
+ }
1094
+ ._4x5CzG_message {
1095
+ font-size: var(--text-body-sm-size);
1096
+ hyphens: auto;
1097
+ line-height: var(--text-body-sm-line);
1098
+ color: var(--color-on-surface-variant);
1099
+ overflow-wrap: anywhere;
1100
+ margin: 0;
1101
+ }
1102
+ .SpunRq_checkbox {
1103
+ clip: rect(1px, 1px, 1px, 1px);
1104
+ --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
1105
+ border: 0;
1106
+ width: 1px;
1107
+ height: 1px;
1108
+ padding: 0;
1109
+ position: absolute;
1110
+ overflow: hidden;
1111
+ }
1112
+
1113
+ .SpunRq_checkbox, .SpunRq_label, .SpunRq_symbol {
1114
+ transition: border-color .3s var(--ease-out-quint),
1115
+ background-color .3s var(--ease-out-quint),
1116
+ outline-color .3s var(--ease-out-quint);
1117
+ }
1118
+
1119
+ .SpunRq_label {
1120
+ gap: var(--size-spacing-xs);
1121
+ hyphens: auto;
1122
+ overflow-wrap: anywhere;
1123
+ cursor: pointer;
1124
+ align-items: center;
1125
+ display: flex;
1126
+ }
1127
+
1128
+ .SpunRq_label:has(.SpunRq_checkbox:disabled) {
1129
+ cursor: initial;
1130
+ }
1131
+
1132
+ .SpunRq_label.SpunRq_medium {
1133
+ font-size: var(--text-body-md-size);
1134
+ line-height: var(--text-body-md-narrow-line);
1135
+ }
1136
+
1137
+ .SpunRq_label.SpunRq_small {
1138
+ font-size: var(--text-body-sm-size);
1139
+ line-height: var(--text-body-sm-narrow-line);
1140
+ }
1141
+
1142
+ .SpunRq_symbol {
1143
+ box-sizing: border-box;
1144
+ color: var(--color-ubie-white);
1145
+ background-color: var(--color-ubie-white);
1146
+ border: 2px solid var(--color-outline);
1147
+ border-radius: var(--radius-sm);
1148
+ justify-content: center;
1149
+ align-items: center;
1150
+ display: flex;
1151
+ }
1152
+
1153
+ .SpunRq_symbol.SpunRq_medium {
1154
+ width: 1.5rem;
1155
+ height: 1.5rem;
1156
+ }
1157
+
1158
+ .SpunRq_symbol.SpunRq_small {
1159
+ width: 1.25rem;
1160
+ height: 1.25rem;
1161
+ }
1162
+
1163
+ .SpunRq_symbol.SpunRq_isIndeterminate {
1164
+ background-color: var(--color-ubie-blue-600);
1165
+ border-color: var(--color-ubie-blue-600);
1166
+ }
1167
+
1168
+ .SpunRq_checkbox:checked + .SpunRq_symbol, .SpunRq_symbol.SpunRq_isIndeterminate {
1169
+ border-width: 0;
1170
+ }
1171
+
1172
+ .SpunRq_checkbox:checked + .SpunRq_symbol {
1173
+ background-color: var(--color-ubie-blue-600);
1174
+ }
1175
+
1176
+ .SpunRq_checkbox:focus-visible + .SpunRq_symbol {
1177
+ outline: 2px solid var(--color-ubie-pink-500);
1178
+ }
1179
+
1180
+ .SpunRq_checkbox:disabled:checked + .SpunRq_symbol, .SpunRq_checkbox:disabled + .SpunRq_symbol.SpunRq_isIndeterminate {
1181
+ background-color: var(--color-placeholder);
1182
+ }
1183
+
1184
+ @media (hover: hover) {
1185
+ .SpunRq_checkbox:not(:disabled) + .SpunRq_symbol:not(.SpunRq_isIndeterminate):hover {
1186
+ border-color: var(--color-ubie-blue-500);
1187
+ }
1188
+
1189
+ .SpunRq_checkbox:checked:not(:disabled) + .SpunRq_symbol:hover {
1190
+ background-color: var(--color-ubie-blue-700);
1191
+ }
1192
+ }
1193
+
1194
+ .SpunRq_symbolCheckIcon {
1195
+ visibility: hidden;
1196
+ }
1197
+
1198
+ .SpunRq_checkbox:checked + .SpunRq_symbol > .SpunRq_symbolCheckIcon {
1199
+ visibility: initial;
1200
+ }
1201
+
1202
+ .SpunRq_symbolCheckIcon.SpunRq_medium, .SpunRq_symbolIndeterminate.SpunRq_medium {
1203
+ font-size: 1.25rem;
1204
+ }
1205
+
1206
+ .SpunRq_symbolCheckIcon.SpunRq_small, .SpunRq_symbolIndeterminate.SpunRq_small {
1207
+ font-size: 1rem;
1208
+ }
1209
+ .K4Ecoa_block {
1210
+ width: 100%;
1211
+ }
1212
+
1213
+ .K4Ecoa_checkbox {
1214
+ opacity: 0;
1215
+ position: absolute;
1216
+ }
1217
+
1218
+ .K4Ecoa_label {
1219
+ --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
1220
+ box-sizing: border-box;
1221
+ font-size: var(--text-body-md-size);
1222
+ hyphens: auto;
1223
+ font-weight: bold;
1224
+ line-height: var(--text-body-md-narrow-line);
1225
+ color: var(--color-on-surface);
1226
+ overflow-wrap: anywhere;
1227
+ vertical-align: text-top;
1228
+ cursor: pointer;
1229
+ outline: 1px solid var(--color-outline);
1230
+ outline-offset: -1px;
1231
+ transition: outline-color .3s var(--ease-out-quint),
1232
+ background-color .3s var(--ease-out-quint),
1233
+ border-color .3s var(--ease-out-quint);
1234
+ background: #fff;
1235
+ border-radius: 8px;
1236
+ padding: 16px 12px 16px 48px;
1237
+ display: inline-block;
1238
+ position: relative;
1239
+ }
1240
+
1241
+ .K4Ecoa_label:before {
1242
+ box-sizing: border-box;
1243
+ content: "";
1244
+ border: 2px solid var(--color-outline);
1245
+ border-radius: var(--radius-sm);
1246
+ width: 24px;
1247
+ height: 24px;
1248
+ display: block;
1249
+ position: absolute;
1250
+ top: 50%;
1251
+ left: 12px;
1252
+ transform: translateY(-50%);
1253
+ }
1254
+
1255
+ @media (hover: hover) {
1256
+ .K4Ecoa_label:hover:not(.K4Ecoa_disabled, .K4Ecoa_checked):before {
1257
+ background-color: var(--color-ubie-white);
1258
+ border-color: var(--color-ubie-blue-500);
1259
+ }
1260
+ }
1261
+
1262
+ .K4Ecoa_label.K4Ecoa_checked:before {
1263
+ background-color: var(--color-ubie-blue-600);
1264
+ border: none;
1265
+ }
1266
+
1267
+ .K4Ecoa_label.K4Ecoa_checked.K4Ecoa_disabled:before {
1268
+ background-color: var(--color-placeholder);
1269
+ border-color: #0000;
1270
+ }
1271
+
1272
+ .K4Ecoa_label:not(.K4Ecoa_checked):has(.K4Ecoa_checkbox:focus-visible), .K4Ecoa_label.K4Ecoa_checked:has(.K4Ecoa_checkbox:focus-visible) {
1273
+ box-shadow: 0 0 0 2px var(--color-ubie-pink-500);
1274
+ }
1275
+
1276
+ @media (hover: hover) {
1277
+ .K4Ecoa_label:hover {
1278
+ background-color: var(--color-ubie-blue-100);
1279
+ }
1280
+
1281
+ .K4Ecoa_label.K4Ecoa_checked:not(.K4Ecoa_disabled):hover {
1282
+ outline-color: var(--color-ubie-blue-700);
1283
+ }
1284
+
1285
+ .K4Ecoa_label.K4Ecoa_checked:not(.K4Ecoa_disabled):hover:before {
1286
+ background-color: var(--color-ubie-blue-700);
1287
+ }
1288
+ }
1289
+
1290
+ .K4Ecoa_label.K4Ecoa_disabled {
1291
+ color: var(--color-placeholder);
1292
+ background-color: var(--color-outline-variant);
1293
+ outline-color: var(--color-outline);
1294
+ }
1295
+
1296
+ .K4Ecoa_label.K4Ecoa_disabled:before {
1297
+ border-color: var(--color-placeholder);
1298
+ }
1299
+
1300
+ .K4Ecoa_checkIcon {
1301
+ color: var(--color-ubie-white);
1302
+ line-height: 1;
1303
+ position: absolute;
1304
+ top: 50%;
1305
+ left: 14px;
1306
+ translate: 0 -50%;
1307
+ }
1308
+ .EAa8ta_wrapper {
1309
+ border: none;
1310
+ margin: 0;
1311
+ padding: 0;
1312
+ }
1313
+
1314
+ .EAa8ta_legend {
1315
+ gap: var(--size-spacing-xs);
1316
+ margin-bottom: var(--size-spacing-md);
1317
+ font-size: var(--text-body-sm-size);
1318
+ color: var(--color-on-surface-variant);
1319
+ align-items: center;
1320
+ padding: 0;
1321
+ font-weight: bold;
1322
+ display: flex;
1323
+ }
1324
+ .UtYYQa_required {
1325
+ padding: 2px var(--size-spacing-xxs) 1px;
1326
+ font-size: var(--text-tag-md-size);
1327
+ line-height: var(--text-tag-md-line);
1328
+ color: var(--color-ubie-white);
1329
+ background-color: var(--color-error);
1330
+ border-radius: var(--radius-sm);
1331
+ flex-shrink: 0;
1332
+ display: inline-block;
1333
+ }
1334
+ .mQpb1W_input {
1335
+ box-sizing: border-box;
1336
+ width: 100%;
1337
+ padding: var(--size-spacing-md) var(--size-spacing-sm) .875rem;
1338
+ font-size: var(--text-body-md-narrow-size);
1339
+ line-height: var(--text-body-md-narrow-line);
1340
+ color: var(--color-on-surface);
1341
+ text-align: inherit;
1342
+ appearance: none;
1343
+ caret-color: var(--color-ubie-blue-600);
1344
+ background-color: var(--color-ubie-white);
1345
+ border: 1px solid var(--color-outline);
1346
+ border-bottom: 2px solid var(--color-outline);
1347
+ border-radius: 8px 8px 0 0;
1348
+ }
1349
+
1350
+ .mQpb1W_input.mQpb1W_isInvalid, .mQpb1W_input:user-invalid {
1351
+ background: var(--color-error-container);
1352
+ border-bottom-color: var(--color-error);
1353
+ }
1354
+
1355
+ @supports not selector(:user-invalid) {
1356
+ .mQpb1W_input:invalid {
1357
+ background: var(--color-error-container);
1358
+ border-bottom-color: var(--color-error);
1359
+ }
1360
+ }
1361
+
1362
+ .mQpb1W_input:disabled {
1363
+ color: var(--color-placeholder);
1364
+ background-color: var(--color-outline-variant);
1365
+ }
1366
+
1367
+ .mQpb1W_input::placeholder, .mQpb1W_input:disabled::placeholder {
1368
+ color: var(--color-placeholder);
1369
+ }
1370
+
1371
+ .mQpb1W_input:focus {
1372
+ border-bottom-color: var(--color-ubie-blue-500);
1373
+ outline: none;
1374
+ }
1375
+
1376
+ .mQpb1W_input[type="date"] {
1377
+ height: 3.5rem;
1378
+ line-height: 1;
1379
+ }
1380
+ .Kgl5ZW_label {
1381
+ gap: var(--size-spacing-xs);
1382
+ font-size: var(--text-body-sm-size);
1383
+ hyphens: auto;
1384
+ color: var(--color-on-surface-variant);
1385
+ overflow-wrap: anywhere;
1386
+ align-items: flex-start;
1387
+ font-weight: bold;
1388
+ display: flex;
1389
+ }
1390
+
1391
+ legend.Kgl5ZW_label {
1392
+ padding: 0;
1393
+ }
1394
+ .nLg3XG_card {
1395
+ --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
1396
+ gap: var(--size-spacing-sm);
1397
+ padding: var(--size-spacing-md);
1398
+ hyphens: auto;
1399
+ overflow-wrap: anywhere;
1400
+ background-color: var(--color-ubie-white);
1401
+ border: 1px solid var(--color-outline);
1402
+ border-radius: var(--radius-md);
1403
+ transition: background-color .3s var(--ease-out-quint);
1404
+ align-items: center;
1405
+ text-decoration: none;
1406
+ display: flex;
1407
+ }
1408
+
1409
+ .nLg3XG_card:hover {
1410
+ background-color: var(--color-ubie-blue-100);
1411
+ }
1412
+
1413
+ .nLg3XG_icon {
1414
+ color: var(--color-ubie-blue-600);
1415
+ flex: none;
1416
+ }
1417
+
1418
+ .nLg3XG_icon > * {
1419
+ width: var(--icon-size);
1420
+ height: var(--icon-size);
1421
+ vertical-align: bottom;
1422
+ }
1423
+
1424
+ .nLg3XG_text {
1425
+ gap: var(--size-spacing-xxs);
1426
+ flex-direction: column;
1427
+ flex: 1;
1428
+ display: flex;
1429
+ }
1430
+
1431
+ .nLg3XG_title {
1432
+ font-size: var(--title-font-size);
1433
+ color: var(--color-on-surface);
1434
+ margin: 0;
1435
+ font-weight: bold;
1436
+ }
1437
+
1438
+ .nLg3XG_description {
1439
+ font-size: var(--description-font-size);
1440
+ line-height: var(--description-line-height);
1441
+ color: var(--color-on-surface-variant);
1442
+ margin: 0;
1443
+ }
1444
+
1445
+ .nLg3XG_caret {
1446
+ width: 1.25rem;
1447
+ height: 1.25rem;
1448
+ color: var(--color-ubie-blue-600);
1449
+ }
1450
+
1451
+ .nLg3XG_medium {
1452
+ --icon-size: 2rem;
1453
+ --title-font-size: var(--text-heading-xs-line);
1454
+ --description-font-size: var(--text-body-sm-size);
1455
+ --description-line-height: var(--text-body-sm-line);
1456
+ }
1457
+
1458
+ .nLg3XG_small {
1459
+ --icon-size: 1.25rem;
1460
+ --title-font-size: var(--text-button-md-size);
1461
+ --description-font-size: var(--text-body-xs-size);
1462
+ --description-line-height: var(--text-body-xs-line);
1463
+ }
1464
+ ._6H5AqG_modal {
1465
+ z-index: var(--z-index-modal);
1466
+ position: fixed;
1467
+ inset: 0;
1468
+ overflow: hidden;
1469
+ }
1470
+
1471
+ ._6H5AqG_overlay {
1472
+ position: fixed;
1473
+ inset: 0;
1474
+ }
1475
+
1476
+ ._6H5AqG_normalOverlay {
1477
+ background: #00000080;
1478
+ }
1479
+
1480
+ ._6H5AqG_darkerOverlay {
1481
+ background: #000c;
1482
+ }
1483
+
1484
+ ._6H5AqG_contents {
1485
+ padding: 0 var(--size-spacing-md);
1486
+ }
1487
+
1488
+ ._6H5AqG_dialog {
1489
+ border-radius: 12px;
1490
+ background: #fff;
1491
+ border-end-end-radius: 0;
1492
+ border-end-start-radius: 0;
1493
+ flex-direction: column;
1494
+ width: 100%;
1495
+ max-width: 600px;
1496
+ max-height: calc(100% - 24px);
1497
+ margin: 0 auto;
1498
+ display: flex;
1499
+ position: fixed;
1500
+ bottom: 0;
1501
+ left: 50%;
1502
+ overflow-y: hidden;
1503
+ transform: translate3d(-50%, 0, 0);
1504
+ }
1505
+
1506
+ ._6H5AqG_dialog._6H5AqG_fullscreen {
1507
+ height: calc(100% - 24px);
1508
+ }
1509
+
1510
+ ._6H5AqG_scrollContainer {
1511
+ height: 100%;
1512
+ overflow-y: auto;
1513
+ }
1514
+
1515
+ ._6H5AqG_mainContent {
1516
+ flex-direction: column;
1517
+ display: flex;
1518
+ }
1519
+
1520
+ ._6H5AqG_mainContent._6H5AqG_fullscreen {
1521
+ min-height: 100%;
1522
+ }
1523
+
1524
+ ._6H5AqG_mainContent._6H5AqG_headerLess {
1525
+ padding-top: var(--size-spacing-xl);
1526
+ }
1527
+
1528
+ ._6H5AqG_header {
1529
+ padding: var(--size-spacing-lg) var(--size-spacing-md);
1530
+ font-size: var(--text-heading-xs-size);
1531
+ font-weight: bold;
1532
+ line-height: var(--text-heading-xs-line);
1533
+ text-align: center;
1534
+ white-space: pre-wrap;
1535
+ background-color: var(--color-ubie-white);
1536
+ outline: none;
1537
+ }
1538
+
1539
+ ._6H5AqG_header._6H5AqG_sticky {
1540
+ z-index: 1;
1541
+ position: sticky;
1542
+ top: 0;
1543
+ }
1544
+
1545
+ ._6H5AqG_header._6H5AqG_sticky._6H5AqG_canScroll {
1546
+ border-bottom: 1px solid var(--color-outline);
1547
+ }
1548
+
1549
+ ._6H5AqG_body {
1550
+ z-index: 0;
1551
+ padding-right: var(--size-spacing-md);
1552
+ padding-left: var(--size-spacing-md);
1553
+ }
1554
+
1555
+ ._6H5AqG_body._6H5AqG_fullscreen {
1556
+ flex: 1;
1557
+ min-height: 400px;
1558
+ overflow: hidden;
1559
+ }
1560
+
1561
+ ._6H5AqG_buttonContainer {
1562
+ gap: var(--size-spacing-md);
1563
+ padding: var(--size-spacing-lg) var(--size-spacing-md) var(--size-spacing-md);
1564
+ background-color: var(--color-ubie-white);
1565
+ display: grid;
1566
+ }
1567
+
1568
+ ._6H5AqG_buttonContainer._6H5AqG_sticky {
1569
+ position: sticky;
1570
+ bottom: 0;
1571
+ }
1572
+
1573
+ ._6H5AqG_buttonContainer._6H5AqG_sticky._6H5AqG_canScroll {
1574
+ border-top: 1px solid var(--color-outline);
1575
+ }
1576
+
1577
+ ._6H5AqG_overlayEnter {
1578
+ transition-property: opacity;
1579
+ transition-duration: .3s;
1580
+ transition-timing-function: ease-out;
1581
+ }
1582
+
1583
+ ._6H5AqG_overlayEnterFrom {
1584
+ opacity: 0;
1585
+ }
1586
+
1587
+ ._6H5AqG_overlayEnterTo {
1588
+ opacity: 1;
1589
+ }
1590
+
1591
+ ._6H5AqG_overlayLeave {
1592
+ transition-duration: .2s;
1593
+ transition-timing-function: ease-in;
1594
+ }
1595
+
1596
+ ._6H5AqG_overlayLeaveFrom {
1597
+ opacity: 1;
1598
+ }
1599
+
1600
+ ._6H5AqG_overlayLeaveTo {
1601
+ opacity: 0;
1602
+ }
1603
+
1604
+ ._6H5AqG_panelEnter {
1605
+ transition-property: transform, opacity;
1606
+ transition-duration: .3s;
1607
+ transition-timing-function: ease-out;
1608
+ }
1609
+
1610
+ ._6H5AqG_panelEnterFrom {
1611
+ opacity: 0;
1612
+ transform: translate3d(-50%, 100%, 0);
1613
+ }
1614
+
1615
+ ._6H5AqG_panelEnterTo {
1616
+ opacity: 1;
1617
+ transform: translate3d(-50%, 0, 0);
1618
+ }
1619
+
1620
+ ._6H5AqG_panelLeave {
1621
+ transition-duration: .2s;
1622
+ transition-timing-function: ease-in;
1623
+ }
1624
+
1625
+ ._6H5AqG_panelLeaveFrom {
1626
+ opacity: 1;
1627
+ transform: translate3d(-50%, 0, 0);
1628
+ }
1629
+
1630
+ ._6H5AqG_panelLeaveTo {
1631
+ opacity: 0;
1632
+ transform: translate3d(-50%, 100%, 0);
1633
+ }
1634
+ .uk0hWG_modal {
1635
+ z-index: var(--z-index-modal);
1636
+ justify-content: center;
1637
+ align-items: center;
1638
+ display: flex;
1639
+ position: fixed;
1640
+ inset: 0;
1641
+ }
1642
+
1643
+ .uk0hWG_overlay {
1644
+ position: fixed;
1645
+ inset: 0;
1646
+ }
1647
+
1648
+ .uk0hWG_normalOverlay {
1649
+ background: #00000080;
1650
+ }
1651
+
1652
+ .uk0hWG_darkerOverlay {
1653
+ background: #000c;
1654
+ }
1655
+
1656
+ .uk0hWG_dialog {
1657
+ box-sizing: border-box;
1658
+ border-radius: var(--radius-lg);
1659
+ background: #fff;
1660
+ flex-direction: column;
1661
+ width: calc(100% - 32px);
1662
+ max-width: 600px;
1663
+ max-height: calc(100% - 48px);
1664
+ margin: 0 auto;
1665
+ display: flex;
1666
+ position: relative;
1667
+ overflow: hidden;
1668
+ }
1669
+
1670
+ .uk0hWG_dialog.uk0hWG_fixedHeight {
1671
+ height: calc(100% - 48px);
1672
+ }
1673
+
1674
+ .uk0hWG_scrollContainer {
1675
+ height: 100%;
1676
+ overflow-y: auto;
1677
+ }
1678
+
1679
+ .uk0hWG_mainContent {
1680
+ box-sizing: border-box;
1681
+ flex-direction: column;
1682
+ display: flex;
1683
+ }
1684
+
1685
+ .uk0hWG_mainContent.uk0hWG_fixedHeight {
1686
+ min-height: 100%;
1687
+ }
1688
+
1689
+ .uk0hWG_mainContent.uk0hWG_headerLess {
1690
+ padding-top: var(--size-spacing-xl);
1691
+ }
1692
+
1693
+ .uk0hWG_header {
1694
+ padding: var(--size-spacing-lg) var(--size-spacing-md);
1695
+ font-size: var(--text-heading-xs-size);
1696
+ font-weight: bold;
1697
+ line-height: var(--text-heading-xs-line);
1698
+ text-align: center;
1699
+ white-space: pre-wrap;
1700
+ background: var(--color-ubie-white);
1701
+ outline: none;
1702
+ }
1703
+
1704
+ .uk0hWG_header.uk0hWG_sticky {
1705
+ z-index: 1;
1706
+ position: sticky;
1707
+ top: 0;
1708
+ }
1709
+
1710
+ .uk0hWG_header.uk0hWG_sticky.uk0hWG_canScroll {
1711
+ border-bottom: 1px solid var(--color-outline);
1712
+ }
1713
+
1714
+ .uk0hWG_body {
1715
+ z-index: 0;
1716
+ padding-right: var(--size-spacing-md);
1717
+ padding-left: var(--size-spacing-md);
1718
+ text-align: center;
1719
+ }
1720
+
1721
+ .uk0hWG_body.uk0hWG_fixedHeight {
1722
+ flex-grow: 1;
1723
+ min-height: 400px;
1724
+ overflow: hidden;
1725
+ }
1726
+
1727
+ .uk0hWG_hero {
1728
+ flex: none;
1729
+ overflow: hidden;
1730
+ }
1731
+
1732
+ .uk0hWG_footer {
1733
+ padding: var(--size-spacing-lg) var(--size-spacing-md) var(--size-spacing-md);
1734
+ background-color: var(--color-ubie-white);
1735
+ }
1736
+
1737
+ .uk0hWG_footer.uk0hWG_sticky {
1738
+ position: sticky;
1739
+ bottom: 0;
1740
+ }
1741
+
1742
+ .uk0hWG_footer.uk0hWG_sticky.uk0hWG_canScroll {
1743
+ border-top: 1px solid var(--color-outline);
1744
+ }
1745
+
1746
+ .uk0hWG_panelEnter {
1747
+ transition-property: opacity;
1748
+ transition-duration: .25s;
1749
+ transition-timing-function: ease-out;
1750
+ }
1751
+
1752
+ .uk0hWG_panelEnterFrom {
1753
+ opacity: 0;
1754
+ }
1755
+
1756
+ .uk0hWG_panelEnterTo {
1757
+ opacity: 1;
1758
+ }
1759
+
1760
+ .uk0hWG_panelLeave {
1761
+ transition-duration: .2s;
1762
+ transition-timing-function: ease-in;
1763
+ }
1764
+
1765
+ .uk0hWG_panelLeaveFrom {
1766
+ opacity: 1;
1767
+ }
1768
+
1769
+ .uk0hWG_panelLeaveTo {
1770
+ opacity: 0;
1771
+ }
1772
+ .BTRgTq_pre {
1773
+ white-space: var(--white-space);
1774
+ display: block;
1775
+ }
1776
+
1777
+ .BTRgTq_pre.BTRgTq_inline {
1778
+ display: inline-block;
1779
+ }
1780
+ .iG-ReW_icon {
1781
+ box-sizing: border-box;
1782
+ background-color: var(--color-surface-container);
1783
+ border: 2px solid var(--color-outline);
1784
+ border-radius: 24px;
1785
+ flex: none;
1786
+ justify-content: center;
1787
+ align-items: center;
1788
+ display: inline-flex;
1789
+ }
1790
+
1791
+ .iG-ReW_text {
1792
+ hyphens: auto;
1793
+ overflow-wrap: anywhere;
1794
+ }
1795
+
1796
+ .iG-ReW_medium .iG-ReW_icon {
1797
+ width: 1.5rem;
1798
+ height: 1.5rem;
1799
+ }
1800
+
1801
+ .iG-ReW_small .iG-ReW_icon {
1802
+ width: 1.25rem;
1803
+ height: 1.25rem;
1804
+ }
1805
+
1806
+ @media (hover: hover) {
1807
+ .iG-ReW_label:hover .iG-ReW_icon {
1808
+ border-color: var(--color-ubie-blue-500);
1809
+ }
1810
+ }
1811
+
1812
+ .iG-ReW_icon:before {
1813
+ content: "";
1814
+ border-radius: 16px;
1815
+ }
1816
+
1817
+ .iG-ReW_medium .iG-ReW_icon:before {
1818
+ width: 1rem;
1819
+ height: 1rem;
1820
+ }
1821
+
1822
+ .iG-ReW_small .iG-ReW_icon:before {
1823
+ width: .75rem;
1824
+ height: .75rem;
1825
+ }
1826
+
1827
+ .iG-ReW_radio {
1828
+ opacity: 0;
1829
+ position: absolute;
1830
+ }
1831
+
1832
+ .iG-ReW_radio:checked + .iG-ReW_icon {
1833
+ border-color: var(--color-ubie-blue-600);
1834
+ }
1835
+
1836
+ .iG-ReW_radio:checked + .iG-ReW_icon:before {
1837
+ background: var(--color-ubie-blue-600);
1838
+ }
1839
+
1840
+ .iG-ReW_radio:disabled + .iG-ReW_icon + .iG-ReW_text {
1841
+ color: var(--color-placeholder);
1842
+ }
1843
+
1844
+ .iG-ReW_radio:disabled + .iG-ReW_icon {
1845
+ border-color: var(--color-placeholder);
1846
+ }
1847
+
1848
+ .iG-ReW_radio:checked:disabled + .iG-ReW_icon:before {
1849
+ background: var(--color-placeholder);
1850
+ }
1851
+
1852
+ .iG-ReW_radio:focus-visible + .iG-ReW_icon {
1853
+ border-color: var(--color-ubie-pink-500);
1854
+ }
1855
+
1856
+ .iG-ReW_label {
1857
+ gap: var(--size-spacing-xs);
1858
+ cursor: pointer;
1859
+ align-items: center;
1860
+ display: flex;
1861
+ }
1862
+
1863
+ .iG-ReW_medium .iG-ReW_label {
1864
+ font-size: var(--text-body-md-size);
1865
+ line-height: var(--text-body-md-narrow-line);
1866
+ }
1867
+
1868
+ .iG-ReW_small .iG-ReW_label {
1869
+ font-size: var(--text-body-sm-size);
1870
+ line-height: var(--text-body-sm-narrow-line);
1871
+ }
1872
+ .wnsRga_block {
1873
+ width: 100%;
1874
+ }
1875
+
1876
+ .wnsRga_radio {
1877
+ opacity: 0;
1878
+ position: absolute;
1879
+ }
1880
+
1881
+ .wnsRga_label {
1882
+ --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
1883
+ box-sizing: border-box;
1884
+ font-size: var(--text-body-md-size);
1885
+ hyphens: auto;
1886
+ font-weight: bold;
1887
+ line-height: var(--text-body-md-narrow-line);
1888
+ color: var(--color-on-surface);
1889
+ overflow-wrap: anywhere;
1890
+ vertical-align: text-top;
1891
+ cursor: pointer;
1892
+ outline: 1px solid var(--color-outline);
1893
+ transition: outline-color .3s var(--ease-out-quint),
1894
+ background-color .3s var(--ease-out-quint);
1895
+ background: #fff;
1896
+ border-radius: 8px;
1897
+ padding: 16px 12px 16px 44px;
1898
+ display: inline-block;
1899
+ position: relative;
1900
+ }
1901
+
1902
+ .wnsRga_label.wnsRga_checked {
1903
+ background: var(--color-ubie-blue-100);
1904
+ outline: 2px solid var(--color-ubie-blue-500);
1905
+ }
1906
+
1907
+ .wnsRga_label:before {
1908
+ box-sizing: border-box;
1909
+ content: "";
1910
+ outline: 2px solid var(--color-outline);
1911
+ border-radius: 50%;
1912
+ width: 20px;
1913
+ height: 20px;
1914
+ display: block;
1915
+ position: absolute;
1916
+ top: 50%;
1917
+ left: 12px;
1918
+ transform: translateY(-50%);
1919
+ }
1920
+
1921
+ @media (hover: hover) {
1922
+ .wnsRga_label:hover:not(.wnsRga_disabled, .wnsRga_checked):before {
1923
+ outline: 2px solid var(--color-ubie-blue-500);
1924
+ }
1925
+ }
1926
+
1927
+ .wnsRga_label.wnsRga_checked:before {
1928
+ outline: 2px solid var(--color-ubie-blue-600);
1929
+ }
1930
+
1931
+ .wnsRga_label.wnsRga_checked:after {
1932
+ box-sizing: border-box;
1933
+ content: "";
1934
+ background: var(--color-ubie-blue-600);
1935
+ border-radius: 50%;
1936
+ width: 16px;
1937
+ height: 16px;
1938
+ display: block;
1939
+ position: absolute;
1940
+ top: 50%;
1941
+ left: 14px;
1942
+ transform: translateY(-50%);
1943
+ }
1944
+
1945
+ .wnsRga_label:after {
1946
+ box-sizing: border-box;
1947
+ content: "";
1948
+ border-radius: 50%;
1949
+ display: block;
1950
+ position: absolute;
1951
+ top: 50%;
1952
+ left: 12px;
1953
+ transform: translateY(-50%);
1954
+ }
1955
+
1956
+ .wnsRga_label.wnsRga_checked.wnsRga_disabled:before {
1957
+ outline-color: var(--color-outline);
1958
+ }
1959
+
1960
+ .wnsRga_label.wnsRga_checked.wnsRga_disabled:after {
1961
+ background-color: var(--color-placeholder);
1962
+ }
1963
+
1964
+ .wnsRga_label:has(.wnsRga_radio:focus-visible) {
1965
+ box-shadow: 0 0 0 4px var(--color-ubie-pink-500);
1966
+ }
1967
+
1968
+ @media (hover: hover) {
1969
+ .wnsRga_label:hover {
1970
+ background-color: var(--color-ubie-blue-100);
1971
+ }
1972
+ }
1973
+
1974
+ .wnsRga_label.wnsRga_disabled {
1975
+ color: var(--color-placeholder);
1976
+ background-color: var(--color-outline-variant);
1977
+ outline-color: var(--color-placeholder);
1978
+ }
1979
+ .BEfV9q_wrapper {
1980
+ border: none;
1981
+ margin: 0;
1982
+ padding: 0;
1983
+ }
1984
+
1985
+ .BEfV9q_legend {
1986
+ gap: var(--size-spacing-xs);
1987
+ margin-bottom: var(--size-spacing-md);
1988
+ font-size: var(--text-body-sm-size);
1989
+ color: var(--color-on-surface-variant);
1990
+ align-items: center;
1991
+ padding: 0;
1992
+ font-weight: bold;
1993
+ display: flex;
1994
+ }
1995
+ .tb5TjW_wrapper {
1996
+ position: relative;
1997
+ }
1998
+
1999
+ .tb5TjW_select {
2000
+ width: 100%;
2001
+ min-height: 54px;
2002
+ font-size: var(--text-body-md-size);
2003
+ color: var(--color-on-surface);
2004
+ appearance: none;
2005
+ caret-color: var(--color-ubie-blue-600);
2006
+ background-color: var(--color-ubie-white);
2007
+ border: 2px solid var(--color-outline);
2008
+ transition: border-color .3s var(--ease-out-quint);
2009
+ border-radius: 8px;
2010
+ justify-content: space-between;
2011
+ align-items: center;
2012
+ padding: 0 64px 0 16px;
2013
+ font-weight: bold;
2014
+ line-height: 54px;
2015
+ display: flex;
2016
+ }
2017
+
2018
+ .tb5TjW_select::placeholder {
2019
+ color: var(--color-placeholder);
2020
+ }
2021
+
2022
+ .tb5TjW_select:focus {
2023
+ outline: none;
2024
+ }
2025
+
2026
+ .tb5TjW_select:focus-visible {
2027
+ border-color: var(--color-ubie-blue-500);
2028
+ }
2029
+
2030
+ @media (hover: hover) {
2031
+ .tb5TjW_select:hover {
2032
+ border: 2px solid var(--color-ubie-blue-400);
2033
+ }
2034
+ }
2035
+
2036
+ .tb5TjW_icon {
2037
+ width: 24px;
2038
+ height: 24px;
2039
+ color: var(--color-ubie-blue-600);
2040
+ pointer-events: none;
2041
+ position: absolute;
2042
+ top: 50%;
2043
+ right: 16px;
2044
+ transform: translateY(-50%);
2045
+ }
2046
+
2047
+ .tb5TjW_disabled .tb5TjW_select {
2048
+ color: var(--color-on-surface-variant);
2049
+ background-color: var(--color-outline-variant);
2050
+ border-color: var(--color-outline);
2051
+ }
2052
+
2053
+ .tb5TjW_disabled .tb5TjW_icon {
2054
+ color: var(--color-on-surface-variant);
2055
+ }
2056
+
2057
+ .tb5TjW_isInvalid .tb5TjW_select {
2058
+ background: var(--color-error-container);
2059
+ border-color: var(--color-error);
2060
+ }
2061
+
2062
+ .tb5TjW_isInvalid .tb5TjW_icon {
2063
+ color: var(--color-ubie-red-700);
2064
+ }
2065
+ ._5wFE1q_textArea {
2066
+ box-sizing: border-box;
2067
+ width: 100%;
2068
+ padding: var(--size-spacing-md) var(--size-spacing-sm) .875rem;
2069
+ font-size: var(--text-body-md-narrow-size);
2070
+ line-height: var(--text-body-md-narrow-line);
2071
+ color: var(--color-on-surface);
2072
+ text-align: inherit;
2073
+ appearance: none;
2074
+ caret-color: var(--color-ubie-blue-600);
2075
+ background-color: var(--color-ubie-white);
2076
+ border: 1px solid var(--color-outline);
2077
+ border-bottom-width: 2px;
2078
+ border-radius: 8px 8px 0 0;
2079
+ }
2080
+
2081
+ ._5wFE1q_textArea:disabled {
2082
+ color: var(--color-placeholder);
2083
+ background-color: var(--color-outline-variant);
2084
+ }
2085
+
2086
+ ._5wFE1q_textArea::placeholder, ._5wFE1q_textArea:disabled::placeholder {
2087
+ color: var(--color-placeholder);
2088
+ }
2089
+
2090
+ ._5wFE1q_textArea._5wFE1q_isInvalid, ._5wFE1q_textArea:user-invalid {
2091
+ background: var(--color-error-container);
2092
+ border-bottom-color: var(--color-ubie-red-700);
2093
+ }
2094
+
2095
+ @supports not selector(:user-invalid) {
2096
+ ._5wFE1q_textArea:invalid {
2097
+ background: var(--color-error-container);
2098
+ border-bottom-color: var(--color-ubie-red-700);
2099
+ }
2100
+ }
2101
+
2102
+ ._5wFE1q_textArea:focus {
2103
+ border-bottom-color: var(--color-ubie-blue-600);
2104
+ outline: none;
2105
+ }
2106
+ ._5OvBwa_stepper {
2107
+ margin: var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left);
2108
+ flex-direction: row;
2109
+ justify-content: stretch;
2110
+ align-items: stretch;
2111
+ display: flex;
2112
+ }
2113
+
2114
+ ._5OvBwa_stepperItem {
2115
+ flex-direction: column;
2116
+ flex: 1;
2117
+ align-items: center;
2118
+ gap: 8px;
2119
+ display: flex;
2120
+ position: relative;
2121
+ }
2122
+
2123
+ ._5OvBwa_borderLine {
2124
+ z-index: 1;
2125
+ flex-direction: row;
2126
+ align-items: center;
2127
+ display: flex;
2128
+ position: absolute;
2129
+ top: 12px;
2130
+ left: 0;
2131
+ right: 0;
2132
+ }
2133
+
2134
+ ._5OvBwa_iconSpacer {
2135
+ flex-shrink: 0;
2136
+ width: 32px;
2137
+ }
2138
+
2139
+ ._5OvBwa_leftBorder, ._5OvBwa_rightBorder {
2140
+ flex: 1;
2141
+ align-items: center;
2142
+ display: flex;
2143
+ }
2144
+
2145
+ ._5OvBwa_border._5OvBwa_hidden {
2146
+ display: none;
2147
+ }
2148
+
2149
+ ._5OvBwa_border {
2150
+ background-color: var(--stepper-border-color, var(--color-ubie-gray-300));
2151
+ width: 100%;
2152
+ height: 2px;
2153
+ }
2154
+
2155
+ ._5OvBwa_iconWrapper {
2156
+ z-index: 2;
2157
+ flex-shrink: 0;
2158
+ justify-content: center;
2159
+ align-items: center;
2160
+ width: 24px;
2161
+ height: 24px;
2162
+ display: flex;
2163
+ position: relative;
2164
+ }
2165
+
2166
+ ._5OvBwa_borderColorBlue {
2167
+ --stepper-border-color: var(--color-ubie-blue-600);
2168
+ }
2169
+
2170
+ ._5OvBwa_borderColorGray {
2171
+ --stepper-border-color: var(--color-ubie-gray-300);
2172
+ }
2173
+
2174
+ ._5OvBwa_doneCircle {
2175
+ width: 24px;
2176
+ height: 24px;
2177
+ color: var(--color-ubie-blue-600);
2178
+ border: 2px solid var(--color-ubie-blue-600);
2179
+ background-color: #fff;
2180
+ border-radius: 50%;
2181
+ justify-content: center;
2182
+ align-items: center;
2183
+ padding: 2px;
2184
+ display: flex;
2185
+ }
2186
+
2187
+ ._5OvBwa_currentCircle {
2188
+ background-color: var(--color-ubie-blue-600);
2189
+ border-radius: 50%;
2190
+ width: 24px;
2191
+ height: 24px;
2192
+ position: relative;
2193
+ }
2194
+
2195
+ ._5OvBwa_undoneCircle {
2196
+ border: 2px solid var(--stepper-border-color, var(--color-ubie-gray-300));
2197
+ background-color: #fff;
2198
+ border-radius: 50%;
2199
+ width: 24px;
2200
+ height: 24px;
2201
+ }
2202
+
2203
+ ._5OvBwa_current ._5OvBwa_iconWrapper, ._5OvBwa_done ._5OvBwa_iconWrapper {
2204
+ color: var(--color-ubie-blue-600);
2205
+ }
2206
+
2207
+ ._5OvBwa_undone ._5OvBwa_iconWrapper {
2208
+ color: var(--color-ubie-gray-300);
2209
+ }
2210
+
2211
+ ._5OvBwa_label {
2212
+ text-align: center;
2213
+ word-wrap: break-word;
2214
+ white-space: pre-wrap;
2215
+ width: 100%;
2216
+ font-family: sans-serif;
2217
+ font-size: 12px;
2218
+ line-height: 1.5;
2219
+ }
2220
+
2221
+ ._5OvBwa_currentLabel {
2222
+ color: #000;
2223
+ font-weight: 600;
2224
+ }
2225
+
2226
+ ._5OvBwa_doneLabel, ._5OvBwa_undoneLabel {
2227
+ color: #000;
2228
+ font-weight: 400;
2229
+ }
2230
+ .pPh6qG_root {
2231
+ cursor: pointer;
2232
+ -webkit-tap-highlight-color: transparent;
2233
+ border-radius: 3rem;
2234
+ width: 3rem;
2235
+ height: 1.5rem;
2236
+ padding: .125rem;
2237
+ transition: background-color .2s;
2238
+ display: inline-flex;
2239
+ position: relative;
2240
+ }
2241
+
2242
+ .pPh6qG_root, .pPh6qG_root * {
2243
+ box-sizing: border-box;
2244
+ }
2245
+
2246
+ .pPh6qG_root:has(input:focus-visible) {
2247
+ outline: 2px solid var(--color-ubie-pink-500);
2248
+ }
2249
+
2250
+ .pPh6qG_root:has(input:disabled) {
2251
+ cursor: default;
2252
+ background-color: var(--color-placeholder);
2253
+ }
2254
+
2255
+ .pPh6qG_on {
2256
+ background-color: var(--color-ubie-blue-600);
2257
+ }
2258
+
2259
+ .pPh6qG_off {
2260
+ background-color: var(--color-ubie-gray-500);
2261
+ }
2262
+
2263
+ @media (hover: hover) {
2264
+ .pPh6qG_on:hover {
2265
+ background-color: var(--color-ubie-blue-700);
2266
+ }
2267
+
2268
+ .pPh6qG_off:hover {
2269
+ background-color: var(--color-ubie-gray-700);
2270
+ }
2271
+ }
2272
+
2273
+ .pPh6qG_thumb {
2274
+ background-color: var(--color-ubie-white);
2275
+ border-radius: 50%;
2276
+ width: 1.25rem;
2277
+ height: 1.25rem;
2278
+ transition: transform .2s;
2279
+ }
2280
+
2281
+ .pPh6qG_thumbOn {
2282
+ transform: translateX(1.5rem);
2283
+ }
2284
+
2285
+ .pPh6qG_thumbOff {
2286
+ transform: translateX(0);
2287
+ }
2288
+
2289
+ .pPh6qG_input {
2290
+ clip: rect(0, 0, 0, 0);
2291
+ white-space: nowrap;
2292
+ border-width: 0;
2293
+ width: 1px;
2294
+ height: 1px;
2295
+ margin: -1px;
2296
+ padding: 0;
2297
+ position: absolute;
2298
+ overflow: hidden;
2299
+ }