1mpacto-react-ui 0.1.7 → 0.1.8
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.
- package/dist/assets/_colors.scss +40 -0
- package/dist/assets/_typography.scss +230 -0
- package/dist/assets/colors.css +20 -0
- package/dist/assets/core.css +1 -1
- package/dist/assets/fontfamily.css +1 -1
- package/dist/assets/style.css +1 -1
- package/dist/index.cjs +37 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3115 -3070
- package/dist/index.mjs.map +1 -1
- package/dist/package.json.d.ts +1 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +1 -1
- package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +3 -0
- package/dist/src/interfaces/components/Button/index.d.ts +1 -1
- package/dist/src/interfaces/components/Sidebar/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/assets/_colors.scss
CHANGED
|
@@ -240,6 +240,26 @@ $laba-red-06: #FB004E;
|
|
|
240
240
|
$laba-red-05: #FF5378;
|
|
241
241
|
$laba-red-02: #FFAEBF;
|
|
242
242
|
$laba-red-01: #FFEBEF;
|
|
243
|
+
$lpd-primary-50: #CEDBFE;
|
|
244
|
+
$lpd-primary-100: #B6CAFE;
|
|
245
|
+
$lpd-primary-200: #9DB8FE;
|
|
246
|
+
$lpd-primary-300: #6C94FD;
|
|
247
|
+
$lpd-primary-400: #3B71FD;
|
|
248
|
+
$lpd-primary-500: #0A4DFC;
|
|
249
|
+
$lpd-primary-600: #083ECA;
|
|
250
|
+
$lpd-primary-700: #062E97;
|
|
251
|
+
$lpd-primary-800: #041F65;
|
|
252
|
+
$lpd-primary-900: #03174C;
|
|
253
|
+
$lpd-secondary-50: #FEF5CE;
|
|
254
|
+
$lpd-secondary-100: #FEEFB5;
|
|
255
|
+
$lpd-secondary-200: #FDEA9D;
|
|
256
|
+
$lpd-secondary-300: #FDE06B;
|
|
257
|
+
$lpd-secondary-400: #FCD53A;
|
|
258
|
+
$lpd-secondary-500: #FBCB09;
|
|
259
|
+
$lpd-secondary-600: #C9A207;
|
|
260
|
+
$lpd-secondary-700: #977A05;
|
|
261
|
+
$lpd-secondary-800: #645104;
|
|
262
|
+
$lpd-secondary-900: #4B3D03;
|
|
243
263
|
|
|
244
264
|
$color-map:(
|
|
245
265
|
"transparent": transparent,
|
|
@@ -484,4 +504,24 @@ $color-map:(
|
|
|
484
504
|
"laba-red-05": #FF5378,
|
|
485
505
|
"laba-red-02": #FFAEBF,
|
|
486
506
|
"laba-red-01": #FFEBEF,
|
|
507
|
+
"lpd-primary-50": #CEDBFE,
|
|
508
|
+
"lpd-primary-100": #B6CAFE,
|
|
509
|
+
"lpd-primary-200": #9DB8FE,
|
|
510
|
+
"lpd-primary-300": #6C94FD,
|
|
511
|
+
"lpd-primary-400": #3B71FD,
|
|
512
|
+
"lpd-primary-500": #0A4DFC,
|
|
513
|
+
"lpd-primary-600": #083ECA,
|
|
514
|
+
"lpd-primary-700": #062E97,
|
|
515
|
+
"lpd-primary-800": #041F65,
|
|
516
|
+
"lpd-primary-900": #03174C,
|
|
517
|
+
"lpd-secondary-50": #FEF5CE,
|
|
518
|
+
"lpd-secondary-100": #FEEFB5,
|
|
519
|
+
"lpd-secondary-200": #FDEA9D,
|
|
520
|
+
"lpd-secondary-300": #FDE06B,
|
|
521
|
+
"lpd-secondary-400": #FCD53A,
|
|
522
|
+
"lpd-secondary-500": #FBCB09,
|
|
523
|
+
"lpd-secondary-600": #C9A207,
|
|
524
|
+
"lpd-secondary-700": #977A05,
|
|
525
|
+
"lpd-secondary-800": #645104,
|
|
526
|
+
"lpd-secondary-900": #4B3D03,
|
|
487
527
|
);
|
|
@@ -3,273 +3,503 @@
|
|
|
3
3
|
line-height: 72px;
|
|
4
4
|
font-weight: 700;
|
|
5
5
|
}
|
|
6
|
+
@mixin text-payhere-h1() {
|
|
7
|
+
font-size: 60px;
|
|
8
|
+
line-height: 72px;
|
|
9
|
+
font-weight: 700;
|
|
10
|
+
}
|
|
6
11
|
|
|
7
12
|
.text-payhere-h2 {
|
|
8
13
|
font-size: 48px;
|
|
9
14
|
line-height: 58px;
|
|
10
15
|
font-weight: 700;
|
|
11
16
|
}
|
|
17
|
+
@mixin text-payhere-h2() {
|
|
18
|
+
font-size: 48px;
|
|
19
|
+
line-height: 58px;
|
|
20
|
+
font-weight: 700;
|
|
21
|
+
}
|
|
12
22
|
|
|
13
23
|
.text-payhere-h3 {
|
|
14
24
|
font-size: 40px;
|
|
15
25
|
line-height: 48px;
|
|
16
26
|
font-weight: 700;
|
|
17
27
|
}
|
|
28
|
+
@mixin text-payhere-h3() {
|
|
29
|
+
font-size: 40px;
|
|
30
|
+
line-height: 48px;
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
}
|
|
18
33
|
|
|
19
34
|
.text-payhere-h4 {
|
|
20
35
|
font-size: 30px;
|
|
21
36
|
line-height: 38px;
|
|
22
37
|
font-weight: 700;
|
|
23
38
|
}
|
|
39
|
+
@mixin text-payhere-h4() {
|
|
40
|
+
font-size: 30px;
|
|
41
|
+
line-height: 38px;
|
|
42
|
+
font-weight: 700;
|
|
43
|
+
}
|
|
24
44
|
|
|
25
45
|
.text-payhere-h5 {
|
|
26
46
|
font-size: 28px;
|
|
27
47
|
line-height: 40px;
|
|
28
48
|
font-weight: 600;
|
|
29
49
|
}
|
|
50
|
+
@mixin text-payhere-h5() {
|
|
51
|
+
font-size: 28px;
|
|
52
|
+
line-height: 40px;
|
|
53
|
+
font-weight: 600;
|
|
54
|
+
}
|
|
30
55
|
|
|
31
56
|
.text-payhere-h6 {
|
|
32
57
|
font-size: 24px;
|
|
33
58
|
line-height: 30px;
|
|
34
59
|
font-weight: 600;
|
|
35
60
|
}
|
|
61
|
+
@mixin text-payhere-h6() {
|
|
62
|
+
font-size: 24px;
|
|
63
|
+
line-height: 30px;
|
|
64
|
+
font-weight: 600;
|
|
65
|
+
}
|
|
36
66
|
|
|
37
67
|
.text-payhere-body-lr {
|
|
38
68
|
font-size: 18px;
|
|
39
69
|
line-height: 26px;
|
|
40
70
|
font-weight: 400;
|
|
41
71
|
}
|
|
72
|
+
@mixin text-payhere-body-lr() {
|
|
73
|
+
font-size: 18px;
|
|
74
|
+
line-height: 26px;
|
|
75
|
+
font-weight: 400;
|
|
76
|
+
}
|
|
42
77
|
|
|
43
78
|
.text-payhere-body-lm {
|
|
44
79
|
font-size: 18px;
|
|
45
80
|
line-height: 26px;
|
|
46
81
|
font-weight: 500;
|
|
47
82
|
}
|
|
83
|
+
@mixin text-payhere-body-lm() {
|
|
84
|
+
font-size: 18px;
|
|
85
|
+
line-height: 26px;
|
|
86
|
+
font-weight: 500;
|
|
87
|
+
}
|
|
48
88
|
|
|
49
89
|
.text-payhere-body-ls {
|
|
50
90
|
font-size: 18px;
|
|
51
91
|
line-height: 26px;
|
|
52
92
|
font-weight: 600;
|
|
53
93
|
}
|
|
94
|
+
@mixin text-payhere-body-ls() {
|
|
95
|
+
font-size: 18px;
|
|
96
|
+
line-height: 26px;
|
|
97
|
+
font-weight: 600;
|
|
98
|
+
}
|
|
54
99
|
|
|
55
100
|
.text-payhere-body-lb {
|
|
56
101
|
font-size: 18px;
|
|
57
102
|
line-height: 26px;
|
|
58
103
|
font-weight: 700;
|
|
59
104
|
}
|
|
105
|
+
@mixin text-payhere-body-lb() {
|
|
106
|
+
font-size: 18px;
|
|
107
|
+
line-height: 26px;
|
|
108
|
+
font-weight: 700;
|
|
109
|
+
}
|
|
60
110
|
|
|
61
111
|
.text-payhere-body-mr {
|
|
62
112
|
font-size: 16px;
|
|
63
113
|
line-height: 24px;
|
|
64
114
|
font-weight: 400;
|
|
65
115
|
}
|
|
116
|
+
@mixin text-payhere-body-mr() {
|
|
117
|
+
font-size: 16px;
|
|
118
|
+
line-height: 24px;
|
|
119
|
+
font-weight: 400;
|
|
120
|
+
}
|
|
66
121
|
|
|
67
122
|
.text-payhere-body-mm {
|
|
68
123
|
font-size: 16px;
|
|
69
124
|
line-height: 24px;
|
|
70
125
|
font-weight: 500;
|
|
71
126
|
}
|
|
127
|
+
@mixin text-payhere-body-mm() {
|
|
128
|
+
font-size: 16px;
|
|
129
|
+
line-height: 24px;
|
|
130
|
+
font-weight: 500;
|
|
131
|
+
}
|
|
72
132
|
|
|
73
133
|
.text-payhere-body-ms {
|
|
74
134
|
font-size: 16px;
|
|
75
135
|
line-height: 24px;
|
|
76
136
|
font-weight: 600;
|
|
77
137
|
}
|
|
138
|
+
@mixin text-payhere-body-ms() {
|
|
139
|
+
font-size: 16px;
|
|
140
|
+
line-height: 24px;
|
|
141
|
+
font-weight: 600;
|
|
142
|
+
}
|
|
78
143
|
|
|
79
144
|
.text-payhere-body-mb {
|
|
80
145
|
font-size: 16px;
|
|
81
146
|
line-height: 24px;
|
|
82
147
|
font-weight: 700;
|
|
83
148
|
}
|
|
149
|
+
@mixin text-payhere-body-mb() {
|
|
150
|
+
font-size: 16px;
|
|
151
|
+
line-height: 24px;
|
|
152
|
+
font-weight: 700;
|
|
153
|
+
}
|
|
84
154
|
|
|
85
155
|
.text-payhere-label-r {
|
|
86
156
|
font-size: 15px;
|
|
87
157
|
line-height: 26px;
|
|
88
158
|
font-weight: 400;
|
|
89
159
|
}
|
|
160
|
+
@mixin text-payhere-label-r() {
|
|
161
|
+
font-size: 15px;
|
|
162
|
+
line-height: 26px;
|
|
163
|
+
font-weight: 400;
|
|
164
|
+
}
|
|
90
165
|
|
|
91
166
|
.text-payhere-label-m {
|
|
92
167
|
font-size: 15px;
|
|
93
168
|
line-height: 26px;
|
|
94
169
|
font-weight: 500;
|
|
95
170
|
}
|
|
171
|
+
@mixin text-payhere-label-m() {
|
|
172
|
+
font-size: 15px;
|
|
173
|
+
line-height: 26px;
|
|
174
|
+
font-weight: 500;
|
|
175
|
+
}
|
|
96
176
|
|
|
97
177
|
.text-payhere-body-sr {
|
|
98
178
|
font-size: 14px;
|
|
99
179
|
line-height: 22px;
|
|
100
180
|
font-weight: 400;
|
|
101
181
|
}
|
|
182
|
+
@mixin text-payhere-body-sr() {
|
|
183
|
+
font-size: 14px;
|
|
184
|
+
line-height: 22px;
|
|
185
|
+
font-weight: 400;
|
|
186
|
+
}
|
|
102
187
|
|
|
103
188
|
.text-payhere-body-sm {
|
|
104
189
|
font-size: 14px;
|
|
105
190
|
line-height: 22px;
|
|
106
191
|
font-weight: 500;
|
|
107
192
|
}
|
|
193
|
+
@mixin text-payhere-body-sm() {
|
|
194
|
+
font-size: 14px;
|
|
195
|
+
line-height: 22px;
|
|
196
|
+
font-weight: 500;
|
|
197
|
+
}
|
|
108
198
|
|
|
109
199
|
.text-payhere-body-esr {
|
|
110
200
|
font-size: 12px;
|
|
111
201
|
line-height: 20px;
|
|
112
202
|
font-weight: 400;
|
|
113
203
|
}
|
|
204
|
+
@mixin text-payhere-body-esr() {
|
|
205
|
+
font-size: 12px;
|
|
206
|
+
line-height: 20px;
|
|
207
|
+
font-weight: 400;
|
|
208
|
+
}
|
|
114
209
|
|
|
115
210
|
.text-payhere-body-esm {
|
|
116
211
|
font-size: 12px;
|
|
117
212
|
line-height: 20px;
|
|
118
213
|
font-weight: 500;
|
|
119
214
|
}
|
|
215
|
+
@mixin text-payhere-body-esm() {
|
|
216
|
+
font-size: 12px;
|
|
217
|
+
line-height: 20px;
|
|
218
|
+
font-weight: 500;
|
|
219
|
+
}
|
|
120
220
|
|
|
121
221
|
.text-laba-title-lb {
|
|
122
222
|
font-size: 36px;
|
|
123
223
|
line-height: 44px;
|
|
124
224
|
font-weight: 700;
|
|
125
225
|
}
|
|
226
|
+
@mixin text-laba-title-lb() {
|
|
227
|
+
font-size: 36px;
|
|
228
|
+
line-height: 44px;
|
|
229
|
+
font-weight: 700;
|
|
230
|
+
}
|
|
126
231
|
|
|
127
232
|
.text-laba-title-ls {
|
|
128
233
|
font-size: 36px;
|
|
129
234
|
line-height: 44px;
|
|
130
235
|
font-weight: 600;
|
|
131
236
|
}
|
|
237
|
+
@mixin text-laba-title-ls() {
|
|
238
|
+
font-size: 36px;
|
|
239
|
+
line-height: 44px;
|
|
240
|
+
font-weight: 600;
|
|
241
|
+
}
|
|
132
242
|
|
|
133
243
|
.text-laba-title-lr {
|
|
134
244
|
font-size: 36px;
|
|
135
245
|
line-height: 44px;
|
|
136
246
|
font-weight: 400;
|
|
137
247
|
}
|
|
248
|
+
@mixin text-laba-title-lr() {
|
|
249
|
+
font-size: 36px;
|
|
250
|
+
line-height: 44px;
|
|
251
|
+
font-weight: 400;
|
|
252
|
+
}
|
|
138
253
|
|
|
139
254
|
.text-laba-title-mb {
|
|
140
255
|
font-size: 32px;
|
|
141
256
|
line-height: 40px;
|
|
142
257
|
font-weight: 700;
|
|
143
258
|
}
|
|
259
|
+
@mixin text-laba-title-mb() {
|
|
260
|
+
font-size: 32px;
|
|
261
|
+
line-height: 40px;
|
|
262
|
+
font-weight: 700;
|
|
263
|
+
}
|
|
144
264
|
|
|
145
265
|
.text-laba-title-ms {
|
|
146
266
|
font-size: 32px;
|
|
147
267
|
line-height: 40px;
|
|
148
268
|
font-weight: 600;
|
|
149
269
|
}
|
|
270
|
+
@mixin text-laba-title-ms() {
|
|
271
|
+
font-size: 32px;
|
|
272
|
+
line-height: 40px;
|
|
273
|
+
font-weight: 600;
|
|
274
|
+
}
|
|
150
275
|
|
|
151
276
|
.text-laba-title-mr {
|
|
152
277
|
font-size: 32px;
|
|
153
278
|
line-height: 40px;
|
|
154
279
|
font-weight: 400;
|
|
155
280
|
}
|
|
281
|
+
@mixin text-laba-title-mr() {
|
|
282
|
+
font-size: 32px;
|
|
283
|
+
line-height: 40px;
|
|
284
|
+
font-weight: 400;
|
|
285
|
+
}
|
|
156
286
|
|
|
157
287
|
.text-laba-h1 {
|
|
158
288
|
font-size: 24px;
|
|
159
289
|
line-height: 30px;
|
|
160
290
|
font-weight: 700;
|
|
161
291
|
}
|
|
292
|
+
@mixin text-laba-h1() {
|
|
293
|
+
font-size: 24px;
|
|
294
|
+
line-height: 30px;
|
|
295
|
+
font-weight: 700;
|
|
296
|
+
}
|
|
162
297
|
|
|
163
298
|
.text-laba-h1-b {
|
|
164
299
|
font-size: 24px;
|
|
165
300
|
line-height: 30px;
|
|
166
301
|
font-weight: 700;
|
|
167
302
|
}
|
|
303
|
+
@mixin text-laba-h1-b() {
|
|
304
|
+
font-size: 24px;
|
|
305
|
+
line-height: 30px;
|
|
306
|
+
font-weight: 700;
|
|
307
|
+
}
|
|
168
308
|
|
|
169
309
|
.text-laba-h1-sb {
|
|
170
310
|
font-size: 24px;
|
|
171
311
|
line-height: 30px;
|
|
172
312
|
font-weight: 600;
|
|
173
313
|
}
|
|
314
|
+
@mixin text-laba-h1-sb() {
|
|
315
|
+
font-size: 24px;
|
|
316
|
+
line-height: 30px;
|
|
317
|
+
font-weight: 600;
|
|
318
|
+
}
|
|
174
319
|
|
|
175
320
|
.text-laba-h1-r {
|
|
176
321
|
font-size: 24px;
|
|
177
322
|
line-height: 30px;
|
|
178
323
|
font-weight: 400;
|
|
179
324
|
}
|
|
325
|
+
@mixin text-laba-h1-r() {
|
|
326
|
+
font-size: 24px;
|
|
327
|
+
line-height: 30px;
|
|
328
|
+
font-weight: 400;
|
|
329
|
+
}
|
|
180
330
|
|
|
181
331
|
.text-laba-h2 {
|
|
182
332
|
font-size: 18px;
|
|
183
333
|
line-height: 26px;
|
|
184
334
|
font-weight: 700;
|
|
185
335
|
}
|
|
336
|
+
@mixin text-laba-h2() {
|
|
337
|
+
font-size: 18px;
|
|
338
|
+
line-height: 26px;
|
|
339
|
+
font-weight: 700;
|
|
340
|
+
}
|
|
186
341
|
|
|
187
342
|
.text-laba-h2-b {
|
|
188
343
|
font-size: 18px;
|
|
189
344
|
line-height: 26px;
|
|
190
345
|
font-weight: 700;
|
|
191
346
|
}
|
|
347
|
+
@mixin text-laba-h2-b() {
|
|
348
|
+
font-size: 18px;
|
|
349
|
+
line-height: 26px;
|
|
350
|
+
font-weight: 700;
|
|
351
|
+
}
|
|
192
352
|
|
|
193
353
|
.text-laba-h2-sb {
|
|
194
354
|
font-size: 18px;
|
|
195
355
|
line-height: 26px;
|
|
196
356
|
font-weight: 600;
|
|
197
357
|
}
|
|
358
|
+
@mixin text-laba-h2-sb() {
|
|
359
|
+
font-size: 18px;
|
|
360
|
+
line-height: 26px;
|
|
361
|
+
font-weight: 600;
|
|
362
|
+
}
|
|
198
363
|
|
|
199
364
|
.text-laba-h2-r {
|
|
200
365
|
font-size: 18px;
|
|
201
366
|
line-height: 26px;
|
|
202
367
|
font-weight: 400;
|
|
203
368
|
}
|
|
369
|
+
@mixin text-laba-h2-r() {
|
|
370
|
+
font-size: 18px;
|
|
371
|
+
line-height: 26px;
|
|
372
|
+
font-weight: 400;
|
|
373
|
+
}
|
|
204
374
|
|
|
205
375
|
.text-laba-base-rb {
|
|
206
376
|
font-size: 16px;
|
|
207
377
|
line-height: 24px;
|
|
208
378
|
font-weight: 700;
|
|
209
379
|
}
|
|
380
|
+
@mixin text-laba-base-rb() {
|
|
381
|
+
font-size: 16px;
|
|
382
|
+
line-height: 24px;
|
|
383
|
+
font-weight: 700;
|
|
384
|
+
}
|
|
210
385
|
|
|
211
386
|
.text-laba-base-rs {
|
|
212
387
|
font-size: 16px;
|
|
213
388
|
line-height: 24px;
|
|
214
389
|
font-weight: 600;
|
|
215
390
|
}
|
|
391
|
+
@mixin text-laba-base-rs() {
|
|
392
|
+
font-size: 16px;
|
|
393
|
+
line-height: 24px;
|
|
394
|
+
font-weight: 600;
|
|
395
|
+
}
|
|
216
396
|
|
|
217
397
|
.text-laba-base-rr {
|
|
218
398
|
font-size: 16px;
|
|
219
399
|
line-height: 24px;
|
|
220
400
|
font-weight: 400;
|
|
221
401
|
}
|
|
402
|
+
@mixin text-laba-base-rr() {
|
|
403
|
+
font-size: 16px;
|
|
404
|
+
line-height: 24px;
|
|
405
|
+
font-weight: 400;
|
|
406
|
+
}
|
|
222
407
|
|
|
223
408
|
.text-laba-base-sb {
|
|
224
409
|
font-size: 14px;
|
|
225
410
|
line-height: 20px;
|
|
226
411
|
font-weight: 700;
|
|
227
412
|
}
|
|
413
|
+
@mixin text-laba-base-sb() {
|
|
414
|
+
font-size: 14px;
|
|
415
|
+
line-height: 20px;
|
|
416
|
+
font-weight: 700;
|
|
417
|
+
}
|
|
228
418
|
|
|
229
419
|
.text-laba-base-ss {
|
|
230
420
|
font-size: 14px;
|
|
231
421
|
line-height: 20px;
|
|
232
422
|
font-weight: 600;
|
|
233
423
|
}
|
|
424
|
+
@mixin text-laba-base-ss() {
|
|
425
|
+
font-size: 14px;
|
|
426
|
+
line-height: 20px;
|
|
427
|
+
font-weight: 600;
|
|
428
|
+
}
|
|
234
429
|
|
|
235
430
|
.text-laba-base-sr {
|
|
236
431
|
font-size: 14px;
|
|
237
432
|
line-height: 20px;
|
|
238
433
|
font-weight: 400;
|
|
239
434
|
}
|
|
435
|
+
@mixin text-laba-base-sr() {
|
|
436
|
+
font-size: 14px;
|
|
437
|
+
line-height: 20px;
|
|
438
|
+
font-weight: 400;
|
|
439
|
+
}
|
|
240
440
|
|
|
241
441
|
.text-laba-subtitle-rb {
|
|
242
442
|
font-size: 12px;
|
|
243
443
|
line-height: 16px;
|
|
244
444
|
font-weight: 700;
|
|
245
445
|
}
|
|
446
|
+
@mixin text-laba-subtitle-rb() {
|
|
447
|
+
font-size: 12px;
|
|
448
|
+
line-height: 16px;
|
|
449
|
+
font-weight: 700;
|
|
450
|
+
}
|
|
246
451
|
|
|
247
452
|
.text-laba-subtitle-rs {
|
|
248
453
|
font-size: 12px;
|
|
249
454
|
line-height: 16px;
|
|
250
455
|
font-weight: 600;
|
|
251
456
|
}
|
|
457
|
+
@mixin text-laba-subtitle-rs() {
|
|
458
|
+
font-size: 12px;
|
|
459
|
+
line-height: 16px;
|
|
460
|
+
font-weight: 600;
|
|
461
|
+
}
|
|
252
462
|
|
|
253
463
|
.text-laba-subtitle-rr {
|
|
254
464
|
font-size: 12px;
|
|
255
465
|
line-height: 16px;
|
|
256
466
|
font-weight: 400;
|
|
257
467
|
}
|
|
468
|
+
@mixin text-laba-subtitle-rr() {
|
|
469
|
+
font-size: 12px;
|
|
470
|
+
line-height: 16px;
|
|
471
|
+
font-weight: 400;
|
|
472
|
+
}
|
|
258
473
|
|
|
259
474
|
.text-laba-subtitle-sb {
|
|
260
475
|
font-size: 10px;
|
|
261
476
|
line-height: 12px;
|
|
262
477
|
font-weight: 700;
|
|
263
478
|
}
|
|
479
|
+
@mixin text-laba-subtitle-sb() {
|
|
480
|
+
font-size: 10px;
|
|
481
|
+
line-height: 12px;
|
|
482
|
+
font-weight: 700;
|
|
483
|
+
}
|
|
264
484
|
|
|
265
485
|
.text-laba-subtitle-ss {
|
|
266
486
|
font-size: 10px;
|
|
267
487
|
line-height: 12px;
|
|
268
488
|
font-weight: 600;
|
|
269
489
|
}
|
|
490
|
+
@mixin text-laba-subtitle-ss() {
|
|
491
|
+
font-size: 10px;
|
|
492
|
+
line-height: 12px;
|
|
493
|
+
font-weight: 600;
|
|
494
|
+
}
|
|
270
495
|
|
|
271
496
|
.text-laba-subtitle-sr {
|
|
272
497
|
font-size: 10px;
|
|
273
498
|
line-height: 12px;
|
|
274
499
|
font-weight: 400;
|
|
500
|
+
}
|
|
501
|
+
@mixin text-laba-subtitle-sr() {
|
|
502
|
+
font-size: 10px;
|
|
503
|
+
line-height: 12px;
|
|
504
|
+
font-weight: 400;
|
|
275
505
|
}
|
package/dist/assets/colors.css
CHANGED
|
@@ -241,4 +241,24 @@
|
|
|
241
241
|
--color-laba-red-05: #FF5378;
|
|
242
242
|
--color-laba-red-02: #FFAEBF;
|
|
243
243
|
--color-laba-red-01: #FFEBEF;
|
|
244
|
+
--color-lpd-primary-50: #CEDBFE;
|
|
245
|
+
--color-lpd-primary-100: #B6CAFE;
|
|
246
|
+
--color-lpd-primary-200: #9DB8FE;
|
|
247
|
+
--color-lpd-primary-300: #6C94FD;
|
|
248
|
+
--color-lpd-primary-400: #3B71FD;
|
|
249
|
+
--color-lpd-primary-500: #0A4DFC;
|
|
250
|
+
--color-lpd-primary-600: #083ECA;
|
|
251
|
+
--color-lpd-primary-700: #062E97;
|
|
252
|
+
--color-lpd-primary-800: #041F65;
|
|
253
|
+
--color-lpd-primary-900: #03174C;
|
|
254
|
+
--color-lpd-secondary-50: #FEF5CE;
|
|
255
|
+
--color-lpd-secondary-100: #FEEFB5;
|
|
256
|
+
--color-lpd-secondary-200: #FDEA9D;
|
|
257
|
+
--color-lpd-secondary-300: #FDE06B;
|
|
258
|
+
--color-lpd-secondary-400: #FCD53A;
|
|
259
|
+
--color-lpd-secondary-500: #FBCB09;
|
|
260
|
+
--color-lpd-secondary-600: #C9A207;
|
|
261
|
+
--color-lpd-secondary-700: #977A05;
|
|
262
|
+
--color-lpd-secondary-800: #645104;
|
|
263
|
+
--color-lpd-secondary-900: #4B3D03;
|
|
244
264
|
}
|
package/dist/assets/core.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.\!1ru-pointer-events-none{pointer-events:none!important}.\31ru-pointer-events-none{pointer-events:none}.\!1ru-absolute{position:absolute!important}.\31ru-absolute{position:absolute}.\31ru-relative{position:relative}.\31ru-left-0{left:0}.\31ru-top-0{top:0}.\31ru-z-\[999\]{z-index:999}.\31ru-m-5{margin:1.25rem}.\31ru-mx-0{margin-left:0;margin-right:0}.\31ru-mx-0\.5{margin-left:.125rem;margin-right:.125rem}.\31ru-my-2{margin-top:.5rem;margin-bottom:.5rem}.\!1ru-mt-6{margin-top:1.5rem!important}.\-1ru-mb-0{margin-bottom:0}.\-1ru-mb-0\.5{margin-bottom:-.125rem}.\-1ru-mt-0{margin-top:0}.\-1ru-mt-0\.5{margin-top:-.125rem}.\31ru-mb-\[1000px\]{margin-bottom:1000px}.\31ru-mt-5{margin-top:1.25rem}.\31ru-mt-\[1000px\]{margin-top:1000px}.\31ru-flex{display:flex}.\31ru-inline-flex{display:inline-flex}.\31ru-table{display:table}.\31ru-hidden{display:none}.\31ru-size-5{width:1.25rem;height:1.25rem}.\31ru-size-6{width:1.5rem;height:1.5rem}.\31ru-size-\[300px\]{width:300px;height:300px}.\31ru-size-\[500px\]{width:500px;height:500px}.\!1ru-h-\[14px\]{height:14px!important}.\31ru-h-16{height:4rem}.\31ru-h-20{height:5rem}.\31ru-h-3{height:.75rem}.\31ru-h-3\.5{height:.875rem}.\31ru-h-4{height:1rem}.\31ru-h-5{height:1.25rem}.\31ru-h-6{height:1.5rem}.\31ru-h-8{height:2rem}.\31ru-h-\[38px\]{height:38px}.\31ru-h-full{height:100%}.\31ru-min-h-12{min-height:3rem}.\!1ru-w-\[14px\]{width:14px!important}.\!1ru-w-full{width:100%!important}.\31ru-w-20{width:5rem}.\31ru-w-3{width:.75rem}.\31ru-w-3\.5{width:.875rem}.\31ru-w-4{width:1rem}.\31ru-w-5{width:1.25rem}.\31ru-w-6{width:1.5rem}.\31ru-w-\[250px\]{width:250px}.\31ru-w-\[296px\]{width:296px}.\31ru-w-fit{width:-moz-fit-content;width:fit-content}.\31ru-w-full{width:100%}.\!1ru-min-w-\[60px\]{min-width:60px!important}.\31ru-min-w-\[150px\]{min-width:150px}.\31ru-min-w-\[38px\]{min-width:38px}.\!1ru-max-w-\[70px\]{max-width:70px!important}.\31ru-max-w-\[800px\]{max-width:800px}.\31ru-flex-shrink-0{flex-shrink:0}.\-1ru-rotate-90{--tw-rotate:-90deg}.\-1ru-rotate-90,.\31ru-rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\31ru-rotate-180{--tw-rotate:180deg}.\31ru-rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\31ru-cursor-pointer{cursor:pointer}.\31ru-flex-row{flex-direction:row}.\31ru-flex-col{flex-direction:column}.\31ru-flex-wrap{flex-wrap:wrap}.\31ru-content-start{align-content:flex-start}.\31ru-items-center{align-items:center}.\31ru-justify-center{justify-content:center}.\31ru-justify-between{justify-content:space-between}.\31ru-justify-around{justify-content:space-around}.\31ru-gap-0{gap:0}.\31ru-gap-0\.5{gap:.125rem}.\31ru-gap-1{gap:.25rem}.\31ru-gap-1\.5{gap:.375rem}.\31ru-gap-10{gap:2.5rem}.\31ru-gap-11{gap:2.75rem}.\31ru-gap-12{gap:3rem}.\31ru-gap-14{gap:3.5rem}.\31ru-gap-16{gap:4rem}.\31ru-gap-2{gap:.5rem}.\31ru-gap-2\.5{gap:.625rem}.\31ru-gap-20{gap:5rem}.\31ru-gap-24{gap:6rem}.\31ru-gap-28{gap:7rem}.\31ru-gap-3{gap:.75rem}.\31ru-gap-3\.5{gap:.875rem}.\31ru-gap-32{gap:8rem}.\31ru-gap-36{gap:9rem}.\31ru-gap-4{gap:1rem}.\31ru-gap-40{gap:10rem}.\31ru-gap-44{gap:11rem}.\31ru-gap-48{gap:12rem}.\31ru-gap-5{gap:1.25rem}.\31ru-gap-52{gap:13rem}.\31ru-gap-56{gap:14rem}.\31ru-gap-6{gap:1.5rem}.\31ru-gap-60{gap:15rem}.\31ru-gap-64{gap:16rem}.\31ru-gap-7{gap:1.75rem}.\31ru-gap-72{gap:18rem}.\31ru-gap-8{gap:2rem}.\31ru-gap-80{gap:20rem}.\31ru-gap-9{gap:2.25rem}.\31ru-gap-96{gap:24rem}.\31ru-gap-px{gap:1px}.\31ru-gap-x-0{-moz-column-gap:0;column-gap:0}.\31ru-gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.\31ru-gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.\31ru-gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.\31ru-gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.\31ru-gap-x-11{-moz-column-gap:2.75rem;column-gap:2.75rem}.\31ru-gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.\31ru-gap-x-14{-moz-column-gap:3.5rem;column-gap:3.5rem}.\31ru-gap-x-16{-moz-column-gap:4rem;column-gap:4rem}.\31ru-gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.\31ru-gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.\31ru-gap-x-20{-moz-column-gap:5rem;column-gap:5rem}.\31ru-gap-x-24{-moz-column-gap:6rem;column-gap:6rem}.\31ru-gap-x-28{-moz-column-gap:7rem;column-gap:7rem}.\31ru-gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.\31ru-gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.\31ru-gap-x-32{-moz-column-gap:8rem;column-gap:8rem}.\31ru-gap-x-36{-moz-column-gap:9rem;column-gap:9rem}.\31ru-gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.\31ru-gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.\31ru-gap-x-44{-moz-column-gap:11rem;column-gap:11rem}.\31ru-gap-x-48{-moz-column-gap:12rem;column-gap:12rem}.\31ru-gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.\31ru-gap-x-52{-moz-column-gap:13rem;column-gap:13rem}.\31ru-gap-x-56{-moz-column-gap:14rem;column-gap:14rem}.\31ru-gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.\31ru-gap-x-60{-moz-column-gap:15rem;column-gap:15rem}.\31ru-gap-x-64{-moz-column-gap:16rem;column-gap:16rem}.\31ru-gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.\31ru-gap-x-72{-moz-column-gap:18rem;column-gap:18rem}.\31ru-gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.\31ru-gap-x-80{-moz-column-gap:20rem;column-gap:20rem}.\31ru-gap-x-9{-moz-column-gap:2.25rem;column-gap:2.25rem}.\31ru-gap-x-96{-moz-column-gap:24rem;column-gap:24rem}.\31ru-gap-x-px{-moz-column-gap:1px;column-gap:1px}.\31ru-gap-y-0{row-gap:0}.\31ru-gap-y-0\.5{row-gap:.125rem}.\31ru-gap-y-1{row-gap:.25rem}.\31ru-gap-y-1\.5{row-gap:.375rem}.\31ru-gap-y-10{row-gap:2.5rem}.\31ru-gap-y-11{row-gap:2.75rem}.\31ru-gap-y-12{row-gap:3rem}.\31ru-gap-y-14{row-gap:3.5rem}.\31ru-gap-y-16{row-gap:4rem}.\31ru-gap-y-2{row-gap:.5rem}.\31ru-gap-y-2\.5{row-gap:.625rem}.\31ru-gap-y-20{row-gap:5rem}.\31ru-gap-y-24{row-gap:6rem}.\31ru-gap-y-28{row-gap:7rem}.\31ru-gap-y-3{row-gap:.75rem}.\31ru-gap-y-3\.5{row-gap:.875rem}.\31ru-gap-y-32{row-gap:8rem}.\31ru-gap-y-36{row-gap:9rem}.\31ru-gap-y-4{row-gap:1rem}.\31ru-gap-y-40{row-gap:10rem}.\31ru-gap-y-44{row-gap:11rem}.\31ru-gap-y-48{row-gap:12rem}.\31ru-gap-y-5{row-gap:1.25rem}.\31ru-gap-y-52{row-gap:13rem}.\31ru-gap-y-56{row-gap:14rem}.\31ru-gap-y-6{row-gap:1.5rem}.\31ru-gap-y-60{row-gap:15rem}.\31ru-gap-y-64{row-gap:16rem}.\31ru-gap-y-7{row-gap:1.75rem}.\31ru-gap-y-72{row-gap:18rem}.\31ru-gap-y-8{row-gap:2rem}.\31ru-gap-y-80{row-gap:20rem}.\31ru-gap-y-9{row-gap:2.25rem}.\31ru-gap-y-96{row-gap:24rem}.\31ru-gap-y-px{row-gap:1px}.\31ru-overflow-auto{overflow:auto}.\31ru-overflow-hidden{overflow:hidden}.\31ru-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.\31ru-text-nowrap{text-wrap:nowrap}.\31ru-break-all{word-break:break-all}.\31ru-break-keep{word-break:keep-all}.\!1ru-rounded-md{border-radius:.375rem!important}.\31ru-rounded{border-radius:.25rem}.\31ru-rounded-2xl{border-radius:1rem}.\31ru-rounded-3xl{border-radius:1.5rem}.\31ru-rounded-full{border-radius:9999px}.\31ru-rounded-lg{border-radius:.5rem}.\31ru-rounded-md{border-radius:.375rem}.\31ru-rounded-none{border-radius:0}.\31ru-rounded-sm{border-radius:.125rem}.\31ru-rounded-xl{border-radius:.75rem}.\!1ru-rounded-s-lg{border-start-start-radius:.5rem!important;border-end-start-radius:.5rem!important}.\31ru-rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.\31ru-rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.\!1ru-rounded-tr-lg{border-top-right-radius:.5rem!important}.\31ru-border{border-width:1px}.\31ru-border-\[\#ccc\]{--tw-border-opacity:1;border-color:rgb(204 204 204/var(--tw-border-opacity))}.\!1ru-bg-laba-blue-10{--tw-bg-opacity:1!important;background-color:rgb(1 99 200/var(--tw-bg-opacity))!important}.\31ru-bg-laba-blue-02{--tw-bg-opacity:1;background-color:rgb(219 236 255/var(--tw-bg-opacity))}.\31ru-bg-laba-blue-10{--tw-bg-opacity:1;background-color:rgb(1 99 200/var(--tw-bg-opacity))}.\31ru-bg-laba-grey-02{--tw-bg-opacity:1;background-color:rgb(242 242 242/var(--tw-bg-opacity))}.\31ru-bg-red-300{--tw-bg-opacity:1;background-color:rgb(229 115 115/var(--tw-bg-opacity))}.\31ru-bg-red-900{--tw-bg-opacity:1;background-color:rgb(183 28 28/var(--tw-bg-opacity))}.\31ru-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.\31ru-object-contain{-o-object-fit:contain;object-fit:contain}.\!1ru-p-6{padding:1.5rem!important}.\31ru-p-10{padding:2.5rem}.\31ru-p-5{padding:1.25rem}.\31ru-px-2{padding-left:.5rem;padding-right:.5rem}.\31ru-px-3{padding-left:.75rem;padding-right:.75rem}.\31ru-px-4{padding-left:1rem;padding-right:1rem}.\31ru-py-1{padding-top:.25rem;padding-bottom:.25rem}.\31ru-py-2{padding-top:.5rem;padding-bottom:.5rem}.\!1ru-pl-2{padding-left:.5rem!important}.\!1ru-pt-2{padding-top:.5rem!important}.\31ru-pl-2{padding-left:.5rem}.\31ru-pt-2{padding-top:.5rem}.\31ru-pt-3{padding-top:.75rem}.\31ru-text-center{text-align:center}.\!1ru-font-lato{font-family:Lato!important}.\31ru-font-Inter{font-family:Inter}.\31ru-font-lato{font-family:Lato}.\!1ru-text-laba-subtitle-rr{font-size:12px!important;line-height:16px!important;font-weight:400!important}.\31ru-text-\[10px\]{font-size:10px}.\31ru-text-\[12px\]{font-size:12px}.\31ru-text-laba-base-rb{font-size:16px;line-height:24px;font-weight:700}.\31ru-text-laba-base-rr{font-size:16px;line-height:24px;font-weight:400}.\31ru-text-laba-base-rs{font-size:16px;line-height:24px;font-weight:600}.\31ru-text-laba-base-sb{font-size:14px;line-height:20px;font-weight:700}.\31ru-text-laba-base-sr{font-size:14px;line-height:20px;font-weight:400}.\31ru-text-laba-base-ss{font-size:14px;line-height:20px;font-weight:600}.\31ru-text-laba-h1,.\31ru-text-laba-h1-b{font-size:24px;line-height:30px;font-weight:700}.\31ru-text-laba-h1-r{font-size:24px;line-height:30px;font-weight:400}.\31ru-text-laba-h1-sb{font-size:24px;line-height:30px;font-weight:600}.\31ru-text-laba-h2,.\31ru-text-laba-h2-b{font-size:18px;line-height:26px;font-weight:700}.\31ru-text-laba-h2-r{font-size:18px;line-height:26px;font-weight:400}.\31ru-text-laba-h2-sb{font-size:18px;line-height:26px;font-weight:600}.\31ru-text-laba-subtitle-rb{font-size:12px;line-height:16px;font-weight:700}.\31ru-text-laba-subtitle-rr{font-size:12px;line-height:16px;font-weight:400}.\31ru-text-laba-subtitle-rs{font-size:12px;line-height:16px;font-weight:600}.\31ru-text-laba-subtitle-sb{font-size:10px;line-height:12px;font-weight:700}.\31ru-text-laba-subtitle-sr{font-size:10px;line-height:12px;font-weight:400}.\31ru-text-laba-subtitle-ss{font-size:10px;line-height:12px;font-weight:600}.\31ru-text-laba-title-lb{font-size:36px;line-height:44px;font-weight:700}.\31ru-text-laba-title-lr{font-size:36px;line-height:44px;font-weight:400}.\31ru-text-laba-title-ls{font-size:36px;line-height:44px;font-weight:600}.\31ru-text-laba-title-mb{font-size:32px;line-height:40px;font-weight:700}.\31ru-text-laba-title-mr{font-size:32px;line-height:40px;font-weight:400}.\31ru-text-laba-title-ms{font-size:32px;line-height:40px;font-weight:600}.\31ru-text-payhere-body-esm{font-size:12px;line-height:20px;font-weight:500}.\31ru-text-payhere-body-esr{font-size:12px;line-height:20px;font-weight:400}.\31ru-text-payhere-body-lb{font-size:18px;line-height:26px;font-weight:700}.\31ru-text-payhere-body-lm{font-size:18px;line-height:26px;font-weight:500}.\31ru-text-payhere-body-lr{font-size:18px;line-height:26px;font-weight:400}.\31ru-text-payhere-body-ls{font-size:18px;line-height:26px;font-weight:600}.\31ru-text-payhere-body-mb{font-size:16px;line-height:24px;font-weight:700}.\31ru-text-payhere-body-mm{font-size:16px;line-height:24px;font-weight:500}.\31ru-text-payhere-body-mr{font-size:16px;line-height:24px;font-weight:400}.\31ru-text-payhere-body-ms{font-size:16px;line-height:24px;font-weight:600}.\31ru-text-payhere-body-sm{font-size:14px;line-height:22px;font-weight:500}.\31ru-text-payhere-body-sr{font-size:14px;line-height:22px;font-weight:400}.\31ru-text-payhere-h1{font-size:60px;line-height:72px;font-weight:700}.\31ru-text-payhere-h2{font-size:48px;line-height:58px;font-weight:700}.\31ru-text-payhere-h3{font-size:40px;line-height:48px;font-weight:700}.\31ru-text-payhere-h4{font-size:30px;line-height:38px;font-weight:700}.\31ru-text-payhere-h5{font-size:28px;line-height:40px;font-weight:600}.\31ru-text-payhere-h6{font-size:24px;line-height:30px;font-weight:600}.\31ru-text-payhere-label-m{font-size:15px;line-height:26px;font-weight:500}.\31ru-text-payhere-label-r{font-size:15px;line-height:26px;font-weight:400}.\31ru-font-semibold{font-weight:600}.\!1ru-text-gray-500{--tw-text-opacity:1!important;color:rgb(158 158 158/var(--tw-text-opacity))!important}.\!1ru-text-laba-grey-10{--tw-text-opacity:1!important;color:rgb(137 137 137/var(--tw-text-opacity))!important}.\31ru-text-blue-700{--tw-text-opacity:1;color:rgb(25 118 210/var(--tw-text-opacity))}.\31ru-text-gray-400{--tw-text-opacity:1;color:rgb(189 189 189/var(--tw-text-opacity))}.\31ru-text-laba-blue-10{--tw-text-opacity:1;color:rgb(1 99 200/var(--tw-text-opacity))}.\31ru-text-laba-red-08{--tw-text-opacity:1;color:rgb(237 0 25/var(--tw-text-opacity))}.\31ru-text-red-600{--tw-text-opacity:1;color:rgb(229 57 53/var(--tw-text-opacity))}.\31ru-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.\31ru-opacity-0{opacity:0}.\31ru-opacity-50{opacity:.5}.\31ru-opacity-\[1\]{opacity:1}.\31ru-shadow-md{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.\31ru-shadow-md,.\31ru-shadow-none{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.\31ru-shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.\31ru-outline-none{outline:2px solid #0000;outline-offset:2px}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-100.ttf);font-weight:100}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-200.ttf);font-weight:200}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-300.ttf);font-weight:300}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-400.ttf);font-weight:400}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-500.ttf);font-weight:500}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-600.ttf);font-weight:600}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Lato-700.ttf);font-weight:700}@font-face{font-family:Inter;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Inter-Regular.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:andale-mono;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Andale-Mono.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Arial;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Arial-Regular.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Arial-Black;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Arial-Black.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Book-Antiqua;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Book-Antiqua.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Comic-Sans-MS;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Comic-Sans-MS.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Courier-New;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Courier-New.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Georgia;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Georgia.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Helvetica;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Helvetica.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Impact;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Impact.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Tahoma;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Tahoma.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Terminal;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Terminal.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Times-New-Roman;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Times-New-Roman.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Trebuchet-MS;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Trebuchet-MS.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Verdana;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Verdana.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Webdings;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Webdings.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Wingdings;src:url(https://unpkg.com/1mpacto-react-ui@0.1.7/dist/assets/fonts/Wingdings.ttf);font-weight:100 200 300 400 500 600 700}body{background:#fff}.Toastify__toast-container--top-center{pointer-events:none;width:100%}.disabled-text-editor *{all:unset;box-sizing:border-box}.no-tailwindcss-base,.no-tailwindcss-base *,.no-tailwindcss-base>*{font-size:revert;font-weight:revert;margin:revert;display:revert;vertical-align:revert;max-width:revert;height:revert;border:revert;outline:revert;list-style:revert;padding:revert}.hover\:1ru-bg-laba-blue-01:hover{--tw-bg-opacity:1;background-color:rgb(240 247 255/var(--tw-bg-opacity))}.hover\:1ru-bg-red-400:hover{--tw-bg-opacity:1;background-color:rgb(239 83 80/var(--tw-bg-opacity))}.hover\:1ru-text-laba-blue-05:hover{--tw-text-opacity:1;color:rgb(115 164 214/var(--tw-text-opacity))}
|
|
1
|
+
/*! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.\!1ru-pointer-events-none{pointer-events:none!important}.\31ru-pointer-events-none{pointer-events:none}.\!1ru-absolute{position:absolute!important}.\31ru-absolute{position:absolute}.\31ru-relative{position:relative}.\31ru-left-0{left:0}.\31ru-top-0{top:0}.\31ru-z-\[999\]{z-index:999}.\31ru-m-5{margin:1.25rem}.\31ru-mx-0{margin-left:0;margin-right:0}.\31ru-mx-0\.5{margin-left:.125rem;margin-right:.125rem}.\31ru-my-2{margin-top:.5rem;margin-bottom:.5rem}.\!1ru-mt-6{margin-top:1.5rem!important}.\-1ru-mb-0{margin-bottom:0}.\-1ru-mb-0\.5{margin-bottom:-.125rem}.\-1ru-mt-0{margin-top:0}.\-1ru-mt-0\.5{margin-top:-.125rem}.\31ru-mb-\[1000px\]{margin-bottom:1000px}.\31ru-mt-5{margin-top:1.25rem}.\31ru-mt-\[1000px\]{margin-top:1000px}.\31ru-flex{display:flex}.\31ru-inline-flex{display:inline-flex}.\31ru-table{display:table}.\31ru-hidden{display:none}.\31ru-size-5{width:1.25rem;height:1.25rem}.\31ru-size-6{width:1.5rem;height:1.5rem}.\31ru-size-\[300px\]{width:300px;height:300px}.\31ru-size-\[500px\]{width:500px;height:500px}.\!1ru-h-\[14px\]{height:14px!important}.\31ru-h-16{height:4rem}.\31ru-h-20{height:5rem}.\31ru-h-3{height:.75rem}.\31ru-h-3\.5{height:.875rem}.\31ru-h-4{height:1rem}.\31ru-h-5{height:1.25rem}.\31ru-h-6{height:1.5rem}.\31ru-h-8{height:2rem}.\31ru-h-\[38px\]{height:38px}.\31ru-h-full{height:100%}.\31ru-min-h-12{min-height:3rem}.\!1ru-w-\[14px\]{width:14px!important}.\!1ru-w-full{width:100%!important}.\31ru-w-20{width:5rem}.\31ru-w-3{width:.75rem}.\31ru-w-3\.5{width:.875rem}.\31ru-w-4{width:1rem}.\31ru-w-5{width:1.25rem}.\31ru-w-6{width:1.5rem}.\31ru-w-\[250px\]{width:250px}.\31ru-w-\[296px\]{width:296px}.\31ru-w-fit{width:-moz-fit-content;width:fit-content}.\31ru-w-full{width:100%}.\!1ru-min-w-\[60px\]{min-width:60px!important}.\31ru-min-w-\[150px\]{min-width:150px}.\31ru-min-w-\[38px\]{min-width:38px}.\!1ru-max-w-\[70px\]{max-width:70px!important}.\31ru-max-w-\[800px\]{max-width:800px}.\31ru-flex-shrink-0{flex-shrink:0}.\-1ru-rotate-90{--tw-rotate:-90deg}.\-1ru-rotate-90,.\31ru-rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\31ru-rotate-180{--tw-rotate:180deg}.\31ru-rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\31ru-cursor-pointer{cursor:pointer}.\31ru-flex-row{flex-direction:row}.\31ru-flex-col{flex-direction:column}.\31ru-flex-wrap{flex-wrap:wrap}.\31ru-content-start{align-content:flex-start}.\31ru-items-center{align-items:center}.\31ru-justify-center{justify-content:center}.\31ru-justify-between{justify-content:space-between}.\31ru-justify-around{justify-content:space-around}.\31ru-gap-0{gap:0}.\31ru-gap-0\.5{gap:.125rem}.\31ru-gap-1{gap:.25rem}.\31ru-gap-1\.5{gap:.375rem}.\31ru-gap-10{gap:2.5rem}.\31ru-gap-11{gap:2.75rem}.\31ru-gap-12{gap:3rem}.\31ru-gap-14{gap:3.5rem}.\31ru-gap-16{gap:4rem}.\31ru-gap-2{gap:.5rem}.\31ru-gap-2\.5{gap:.625rem}.\31ru-gap-20{gap:5rem}.\31ru-gap-24{gap:6rem}.\31ru-gap-28{gap:7rem}.\31ru-gap-3{gap:.75rem}.\31ru-gap-3\.5{gap:.875rem}.\31ru-gap-32{gap:8rem}.\31ru-gap-36{gap:9rem}.\31ru-gap-4{gap:1rem}.\31ru-gap-40{gap:10rem}.\31ru-gap-44{gap:11rem}.\31ru-gap-48{gap:12rem}.\31ru-gap-5{gap:1.25rem}.\31ru-gap-52{gap:13rem}.\31ru-gap-56{gap:14rem}.\31ru-gap-6{gap:1.5rem}.\31ru-gap-60{gap:15rem}.\31ru-gap-64{gap:16rem}.\31ru-gap-7{gap:1.75rem}.\31ru-gap-72{gap:18rem}.\31ru-gap-8{gap:2rem}.\31ru-gap-80{gap:20rem}.\31ru-gap-9{gap:2.25rem}.\31ru-gap-96{gap:24rem}.\31ru-gap-px{gap:1px}.\31ru-gap-x-0{-moz-column-gap:0;column-gap:0}.\31ru-gap-x-0\.5{-moz-column-gap:.125rem;column-gap:.125rem}.\31ru-gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.\31ru-gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.\31ru-gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.\31ru-gap-x-11{-moz-column-gap:2.75rem;column-gap:2.75rem}.\31ru-gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.\31ru-gap-x-14{-moz-column-gap:3.5rem;column-gap:3.5rem}.\31ru-gap-x-16{-moz-column-gap:4rem;column-gap:4rem}.\31ru-gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.\31ru-gap-x-2\.5{-moz-column-gap:.625rem;column-gap:.625rem}.\31ru-gap-x-20{-moz-column-gap:5rem;column-gap:5rem}.\31ru-gap-x-24{-moz-column-gap:6rem;column-gap:6rem}.\31ru-gap-x-28{-moz-column-gap:7rem;column-gap:7rem}.\31ru-gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.\31ru-gap-x-3\.5{-moz-column-gap:.875rem;column-gap:.875rem}.\31ru-gap-x-32{-moz-column-gap:8rem;column-gap:8rem}.\31ru-gap-x-36{-moz-column-gap:9rem;column-gap:9rem}.\31ru-gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.\31ru-gap-x-40{-moz-column-gap:10rem;column-gap:10rem}.\31ru-gap-x-44{-moz-column-gap:11rem;column-gap:11rem}.\31ru-gap-x-48{-moz-column-gap:12rem;column-gap:12rem}.\31ru-gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.\31ru-gap-x-52{-moz-column-gap:13rem;column-gap:13rem}.\31ru-gap-x-56{-moz-column-gap:14rem;column-gap:14rem}.\31ru-gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.\31ru-gap-x-60{-moz-column-gap:15rem;column-gap:15rem}.\31ru-gap-x-64{-moz-column-gap:16rem;column-gap:16rem}.\31ru-gap-x-7{-moz-column-gap:1.75rem;column-gap:1.75rem}.\31ru-gap-x-72{-moz-column-gap:18rem;column-gap:18rem}.\31ru-gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.\31ru-gap-x-80{-moz-column-gap:20rem;column-gap:20rem}.\31ru-gap-x-9{-moz-column-gap:2.25rem;column-gap:2.25rem}.\31ru-gap-x-96{-moz-column-gap:24rem;column-gap:24rem}.\31ru-gap-x-px{-moz-column-gap:1px;column-gap:1px}.\31ru-gap-y-0{row-gap:0}.\31ru-gap-y-0\.5{row-gap:.125rem}.\31ru-gap-y-1{row-gap:.25rem}.\31ru-gap-y-1\.5{row-gap:.375rem}.\31ru-gap-y-10{row-gap:2.5rem}.\31ru-gap-y-11{row-gap:2.75rem}.\31ru-gap-y-12{row-gap:3rem}.\31ru-gap-y-14{row-gap:3.5rem}.\31ru-gap-y-16{row-gap:4rem}.\31ru-gap-y-2{row-gap:.5rem}.\31ru-gap-y-2\.5{row-gap:.625rem}.\31ru-gap-y-20{row-gap:5rem}.\31ru-gap-y-24{row-gap:6rem}.\31ru-gap-y-28{row-gap:7rem}.\31ru-gap-y-3{row-gap:.75rem}.\31ru-gap-y-3\.5{row-gap:.875rem}.\31ru-gap-y-32{row-gap:8rem}.\31ru-gap-y-36{row-gap:9rem}.\31ru-gap-y-4{row-gap:1rem}.\31ru-gap-y-40{row-gap:10rem}.\31ru-gap-y-44{row-gap:11rem}.\31ru-gap-y-48{row-gap:12rem}.\31ru-gap-y-5{row-gap:1.25rem}.\31ru-gap-y-52{row-gap:13rem}.\31ru-gap-y-56{row-gap:14rem}.\31ru-gap-y-6{row-gap:1.5rem}.\31ru-gap-y-60{row-gap:15rem}.\31ru-gap-y-64{row-gap:16rem}.\31ru-gap-y-7{row-gap:1.75rem}.\31ru-gap-y-72{row-gap:18rem}.\31ru-gap-y-8{row-gap:2rem}.\31ru-gap-y-80{row-gap:20rem}.\31ru-gap-y-9{row-gap:2.25rem}.\31ru-gap-y-96{row-gap:24rem}.\31ru-gap-y-px{row-gap:1px}.\31ru-overflow-auto{overflow:auto}.\31ru-overflow-hidden{overflow:hidden}.\31ru-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.\31ru-text-nowrap{text-wrap:nowrap}.\31ru-break-all{word-break:break-all}.\31ru-break-keep{word-break:keep-all}.\!1ru-rounded-md{border-radius:.375rem!important}.\31ru-rounded{border-radius:.25rem}.\31ru-rounded-2xl{border-radius:1rem}.\31ru-rounded-3xl{border-radius:1.5rem}.\31ru-rounded-full{border-radius:9999px}.\31ru-rounded-lg{border-radius:.5rem}.\31ru-rounded-md{border-radius:.375rem}.\31ru-rounded-none{border-radius:0}.\31ru-rounded-sm{border-radius:.125rem}.\31ru-rounded-xl{border-radius:.75rem}.\!1ru-rounded-s-lg{border-start-start-radius:.5rem!important;border-end-start-radius:.5rem!important}.\31ru-rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.\31ru-rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.\!1ru-rounded-tr-lg{border-top-right-radius:.5rem!important}.\31ru-border{border-width:1px}.\31ru-border-\[\#ccc\]{--tw-border-opacity:1;border-color:rgb(204 204 204/var(--tw-border-opacity))}.\!1ru-bg-laba-blue-10{--tw-bg-opacity:1!important;background-color:rgb(1 99 200/var(--tw-bg-opacity))!important}.\31ru-bg-laba-blue-02{--tw-bg-opacity:1;background-color:rgb(219 236 255/var(--tw-bg-opacity))}.\31ru-bg-laba-blue-10{--tw-bg-opacity:1;background-color:rgb(1 99 200/var(--tw-bg-opacity))}.\31ru-bg-laba-grey-02{--tw-bg-opacity:1;background-color:rgb(242 242 242/var(--tw-bg-opacity))}.\31ru-bg-red-300{--tw-bg-opacity:1;background-color:rgb(229 115 115/var(--tw-bg-opacity))}.\31ru-bg-red-900{--tw-bg-opacity:1;background-color:rgb(183 28 28/var(--tw-bg-opacity))}.\31ru-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.\31ru-object-contain{-o-object-fit:contain;object-fit:contain}.\!1ru-p-6{padding:1.5rem!important}.\31ru-p-10{padding:2.5rem}.\31ru-p-5{padding:1.25rem}.\31ru-px-2{padding-left:.5rem;padding-right:.5rem}.\31ru-px-3{padding-left:.75rem;padding-right:.75rem}.\31ru-px-4{padding-left:1rem;padding-right:1rem}.\31ru-py-1{padding-top:.25rem;padding-bottom:.25rem}.\31ru-py-2{padding-top:.5rem;padding-bottom:.5rem}.\!1ru-pl-2{padding-left:.5rem!important}.\!1ru-pt-2{padding-top:.5rem!important}.\31ru-pl-2{padding-left:.5rem}.\31ru-pt-2{padding-top:.5rem}.\31ru-pt-3{padding-top:.75rem}.\31ru-text-center{text-align:center}.\!1ru-font-lato{font-family:Lato!important}.\31ru-font-Inter{font-family:Inter}.\31ru-font-lato{font-family:Lato}.\!1ru-text-laba-subtitle-rr{font-size:12px!important;line-height:16px!important;font-weight:400!important}.\31ru-text-\[10px\]{font-size:10px}.\31ru-text-\[12px\]{font-size:12px}.\31ru-text-laba-base-rb{font-size:16px;line-height:24px;font-weight:700}.\31ru-text-laba-base-rr{font-size:16px;line-height:24px;font-weight:400}.\31ru-text-laba-base-rs{font-size:16px;line-height:24px;font-weight:600}.\31ru-text-laba-base-sb{font-size:14px;line-height:20px;font-weight:700}.\31ru-text-laba-base-sr{font-size:14px;line-height:20px;font-weight:400}.\31ru-text-laba-base-ss{font-size:14px;line-height:20px;font-weight:600}.\31ru-text-laba-h1,.\31ru-text-laba-h1-b{font-size:24px;line-height:30px;font-weight:700}.\31ru-text-laba-h1-r{font-size:24px;line-height:30px;font-weight:400}.\31ru-text-laba-h1-sb{font-size:24px;line-height:30px;font-weight:600}.\31ru-text-laba-h2,.\31ru-text-laba-h2-b{font-size:18px;line-height:26px;font-weight:700}.\31ru-text-laba-h2-r{font-size:18px;line-height:26px;font-weight:400}.\31ru-text-laba-h2-sb{font-size:18px;line-height:26px;font-weight:600}.\31ru-text-laba-subtitle-rb{font-size:12px;line-height:16px;font-weight:700}.\31ru-text-laba-subtitle-rr{font-size:12px;line-height:16px;font-weight:400}.\31ru-text-laba-subtitle-rs{font-size:12px;line-height:16px;font-weight:600}.\31ru-text-laba-subtitle-sb{font-size:10px;line-height:12px;font-weight:700}.\31ru-text-laba-subtitle-sr{font-size:10px;line-height:12px;font-weight:400}.\31ru-text-laba-subtitle-ss{font-size:10px;line-height:12px;font-weight:600}.\31ru-text-laba-title-lb{font-size:36px;line-height:44px;font-weight:700}.\31ru-text-laba-title-lr{font-size:36px;line-height:44px;font-weight:400}.\31ru-text-laba-title-ls{font-size:36px;line-height:44px;font-weight:600}.\31ru-text-laba-title-mb{font-size:32px;line-height:40px;font-weight:700}.\31ru-text-laba-title-mr{font-size:32px;line-height:40px;font-weight:400}.\31ru-text-laba-title-ms{font-size:32px;line-height:40px;font-weight:600}.\31ru-text-payhere-body-esm{font-size:12px;line-height:20px;font-weight:500}.\31ru-text-payhere-body-esr{font-size:12px;line-height:20px;font-weight:400}.\31ru-text-payhere-body-lb{font-size:18px;line-height:26px;font-weight:700}.\31ru-text-payhere-body-lm{font-size:18px;line-height:26px;font-weight:500}.\31ru-text-payhere-body-lr{font-size:18px;line-height:26px;font-weight:400}.\31ru-text-payhere-body-ls{font-size:18px;line-height:26px;font-weight:600}.\31ru-text-payhere-body-mb{font-size:16px;line-height:24px;font-weight:700}.\31ru-text-payhere-body-mm{font-size:16px;line-height:24px;font-weight:500}.\31ru-text-payhere-body-mr{font-size:16px;line-height:24px;font-weight:400}.\31ru-text-payhere-body-ms{font-size:16px;line-height:24px;font-weight:600}.\31ru-text-payhere-body-sm{font-size:14px;line-height:22px;font-weight:500}.\31ru-text-payhere-body-sr{font-size:14px;line-height:22px;font-weight:400}.\31ru-text-payhere-h1{font-size:60px;line-height:72px;font-weight:700}.\31ru-text-payhere-h2{font-size:48px;line-height:58px;font-weight:700}.\31ru-text-payhere-h3{font-size:40px;line-height:48px;font-weight:700}.\31ru-text-payhere-h4{font-size:30px;line-height:38px;font-weight:700}.\31ru-text-payhere-h5{font-size:28px;line-height:40px;font-weight:600}.\31ru-text-payhere-h6{font-size:24px;line-height:30px;font-weight:600}.\31ru-text-payhere-label-m{font-size:15px;line-height:26px;font-weight:500}.\31ru-text-payhere-label-r{font-size:15px;line-height:26px;font-weight:400}.\31ru-font-semibold{font-weight:600}.\!1ru-text-gray-500{--tw-text-opacity:1!important;color:rgb(158 158 158/var(--tw-text-opacity))!important}.\!1ru-text-laba-grey-10{--tw-text-opacity:1!important;color:rgb(137 137 137/var(--tw-text-opacity))!important}.\31ru-text-blue-700{--tw-text-opacity:1;color:rgb(25 118 210/var(--tw-text-opacity))}.\31ru-text-gray-400{--tw-text-opacity:1;color:rgb(189 189 189/var(--tw-text-opacity))}.\31ru-text-laba-blue-10{--tw-text-opacity:1;color:rgb(1 99 200/var(--tw-text-opacity))}.\31ru-text-laba-red-08{--tw-text-opacity:1;color:rgb(237 0 25/var(--tw-text-opacity))}.\31ru-text-red-600{--tw-text-opacity:1;color:rgb(229 57 53/var(--tw-text-opacity))}.\31ru-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.\31ru-opacity-0{opacity:0}.\31ru-opacity-50{opacity:.5}.\31ru-opacity-\[1\]{opacity:1}.\31ru-shadow-md{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.\31ru-shadow-md,.\31ru-shadow-none{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.\31ru-shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.\31ru-outline-none{outline:2px solid #0000;outline-offset:2px}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-100.ttf);font-weight:100}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-200.ttf);font-weight:200}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-300.ttf);font-weight:300}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-400.ttf);font-weight:400}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-500.ttf);font-weight:500}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-600.ttf);font-weight:600}@font-face{font-family:Lato;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Lato-700.ttf);font-weight:700}@font-face{font-family:Inter;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Inter-Regular.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:andale-mono;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Andale-Mono.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Arial;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Arial-Regular.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Arial-Black;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Arial-Black.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Book-Antiqua;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Book-Antiqua.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Comic-Sans-MS;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Comic-Sans-MS.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Courier-New;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Courier-New.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Georgia;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Georgia.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Helvetica;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Helvetica.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Impact;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Impact.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Tahoma;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Tahoma.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Terminal;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Terminal.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Times-New-Roman;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Times-New-Roman.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Trebuchet-MS;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Trebuchet-MS.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Verdana;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Verdana.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Webdings;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Webdings.ttf);font-weight:100 200 300 400 500 600 700}@font-face{font-family:Wingdings;src:url(https://unpkg.com/1mpacto-react-ui@0.1.8/dist/assets/fonts/Wingdings.ttf);font-weight:100 200 300 400 500 600 700}body{background:#fff}.Toastify__toast-container--top-center{pointer-events:none;width:100%}.disabled-text-editor *{all:unset;box-sizing:border-box}.no-tailwindcss-base,.no-tailwindcss-base *,.no-tailwindcss-base>*{font-size:revert;font-weight:revert;margin:revert;display:revert;vertical-align:revert;max-width:revert;height:revert;border:revert;outline:revert;list-style:revert;padding:revert}.hover\:1ru-bg-laba-blue-01:hover{--tw-bg-opacity:1;background-color:rgb(240 247 255/var(--tw-bg-opacity))}.hover\:1ru-bg-red-400:hover{--tw-bg-opacity:1;background-color:rgb(239 83 80/var(--tw-bg-opacity))}.hover\:1ru-text-laba-blue-05:hover{--tw-text-opacity:1;color:rgb(115 164 214/var(--tw-text-opacity))}
|