@bagelink/vue 1.14.0 → 1.14.10
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/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/ArrayInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts.map +1 -1
- package/dist/form-flow/form-flow.d.ts.map +1 -1
- package/dist/index.cjs +122 -93
- package/dist/index.mjs +14780 -14718
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/ipapi.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/form/inputs/ArrayInput.vue +34 -6
- package/src/components/form/inputs/RichText/editor.css +2 -2
- package/src/components/form/inputs/RichText/index.vue +62 -4
- package/src/form-flow/form-flow.ts +2 -2
- package/src/styles/mobilLayout.css +1 -1
- package/src/styles/text.css +1559 -528
- package/src/utils/index.ts +2 -2
- package/src/utils/ipapi.ts +19 -6
package/src/styles/text.css
CHANGED
|
@@ -1,383 +1,532 @@
|
|
|
1
|
-
.txt-center,
|
|
1
|
+
.txt-center,
|
|
2
|
+
.text-center {
|
|
2
3
|
text-align: center;
|
|
3
4
|
}
|
|
4
5
|
|
|
5
|
-
.txt-start,
|
|
6
|
+
.txt-start,
|
|
7
|
+
.text-start {
|
|
6
8
|
text-align: start;
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
.txt-end,
|
|
11
|
+
.txt-end,
|
|
12
|
+
.text-end {
|
|
10
13
|
text-align: end;
|
|
11
14
|
}
|
|
12
15
|
|
|
13
|
-
.txt-left,
|
|
16
|
+
.txt-left,
|
|
17
|
+
.text-left {
|
|
14
18
|
text-align: left;
|
|
15
19
|
}
|
|
16
20
|
|
|
17
|
-
.txt-right,
|
|
21
|
+
.txt-right,
|
|
22
|
+
.text-right {
|
|
18
23
|
text-align: right;
|
|
19
24
|
}
|
|
20
25
|
|
|
21
|
-
.txt-justify,
|
|
26
|
+
.txt-justify,
|
|
27
|
+
.text-justify {
|
|
22
28
|
text-align: justify;
|
|
23
29
|
}
|
|
24
30
|
|
|
25
|
-
.txt-small,
|
|
31
|
+
.txt-small,
|
|
32
|
+
.text-small {
|
|
26
33
|
font-size: 12px;
|
|
27
34
|
}
|
|
28
35
|
|
|
29
36
|
.txt20,
|
|
30
|
-
.txt-20,
|
|
37
|
+
.txt-20,
|
|
38
|
+
.text-20,
|
|
39
|
+
.text20 {
|
|
31
40
|
font-size: 20px;
|
|
32
41
|
}
|
|
33
42
|
|
|
34
43
|
.txt24,
|
|
35
|
-
.txt-24,
|
|
44
|
+
.txt-24,
|
|
45
|
+
.text-24,
|
|
46
|
+
.text24 {
|
|
36
47
|
font-size: 24px;
|
|
37
48
|
}
|
|
38
49
|
|
|
39
50
|
.txt28,
|
|
40
|
-
.txt-28,
|
|
51
|
+
.txt-28,
|
|
52
|
+
.text-28,
|
|
53
|
+
.text28 {
|
|
41
54
|
font-size: 28px;
|
|
42
55
|
}
|
|
43
56
|
|
|
44
57
|
.txt30,
|
|
45
|
-
.txt-30,
|
|
58
|
+
.txt-30,
|
|
59
|
+
.text-30,
|
|
60
|
+
.text30 {
|
|
46
61
|
font-size: 30px;
|
|
47
62
|
}
|
|
48
63
|
|
|
49
64
|
.txt32,
|
|
50
|
-
.txt-32,
|
|
65
|
+
.txt-32,
|
|
66
|
+
.text-32,
|
|
67
|
+
.text32 {
|
|
51
68
|
font-size: 32px;
|
|
52
69
|
}
|
|
53
70
|
|
|
54
71
|
.txt36,
|
|
55
|
-
.txt-36,
|
|
72
|
+
.txt-36,
|
|
73
|
+
.text-36,
|
|
74
|
+
.text36 {
|
|
56
75
|
font-size: 36px;
|
|
57
76
|
}
|
|
58
77
|
|
|
59
78
|
.txt40,
|
|
60
|
-
.txt-40,
|
|
79
|
+
.txt-40,
|
|
80
|
+
.text-40,
|
|
81
|
+
.text40 {
|
|
61
82
|
font-size: 40px;
|
|
62
83
|
}
|
|
63
84
|
|
|
64
85
|
.txt44,
|
|
65
|
-
.txt-44,
|
|
86
|
+
.txt-44,
|
|
87
|
+
.text-44,
|
|
88
|
+
.text44 {
|
|
66
89
|
font-size: 44px;
|
|
67
90
|
}
|
|
68
91
|
|
|
69
92
|
.txt48,
|
|
70
|
-
.txt-48,
|
|
93
|
+
.txt-48,
|
|
94
|
+
.text-48,
|
|
95
|
+
.text48 {
|
|
71
96
|
font-size: 48px;
|
|
72
97
|
}
|
|
73
98
|
|
|
74
99
|
.txt50,
|
|
75
|
-
.txt-50,
|
|
100
|
+
.txt-50,
|
|
101
|
+
.text-50,
|
|
102
|
+
.text50 {
|
|
76
103
|
font-size: 50px;
|
|
77
104
|
}
|
|
78
105
|
|
|
79
106
|
.txt52,
|
|
80
|
-
.txt-52,
|
|
107
|
+
.txt-52,
|
|
108
|
+
.text-52,
|
|
109
|
+
.text52 {
|
|
81
110
|
font-size: 52px;
|
|
82
111
|
}
|
|
83
112
|
|
|
84
113
|
.txt56,
|
|
85
|
-
.txt-56,
|
|
114
|
+
.txt-56,
|
|
115
|
+
.text-56,
|
|
116
|
+
.text56 {
|
|
86
117
|
font-size: 56px;
|
|
87
118
|
}
|
|
88
119
|
|
|
89
120
|
.txt60,
|
|
90
|
-
.txt-60,
|
|
121
|
+
.txt-60,
|
|
122
|
+
.text-60,
|
|
123
|
+
.text60 {
|
|
91
124
|
font-size: 60px;
|
|
92
125
|
}
|
|
93
126
|
|
|
94
127
|
.txt64,
|
|
95
|
-
.txt-64,
|
|
128
|
+
.txt-64,
|
|
129
|
+
.text-64,
|
|
130
|
+
.text64 {
|
|
96
131
|
font-size: 64px;
|
|
97
132
|
}
|
|
98
133
|
|
|
99
134
|
.txt68,
|
|
100
|
-
.txt-68,
|
|
135
|
+
.txt-68,
|
|
136
|
+
.text-68,
|
|
137
|
+
.text68 {
|
|
101
138
|
font-size: 68px;
|
|
102
139
|
}
|
|
103
140
|
|
|
104
141
|
.txt70,
|
|
105
|
-
.txt-70,
|
|
142
|
+
.txt-70,
|
|
143
|
+
.text-70,
|
|
144
|
+
.text70 {
|
|
106
145
|
font-size: 70px;
|
|
107
146
|
}
|
|
108
147
|
|
|
109
148
|
.txt72,
|
|
110
|
-
.txt-72,
|
|
149
|
+
.txt-72,
|
|
150
|
+
.text-72,
|
|
151
|
+
.text72 {
|
|
111
152
|
font-size: 72px;
|
|
112
153
|
}
|
|
113
154
|
|
|
114
155
|
.txt80,
|
|
115
|
-
.txt-80,
|
|
156
|
+
.txt-80,
|
|
157
|
+
.text-80,
|
|
158
|
+
.text80 {
|
|
116
159
|
font-size: 80px;
|
|
117
160
|
}
|
|
118
161
|
|
|
119
162
|
.txt90,
|
|
120
|
-
.txt-90,
|
|
163
|
+
.txt-90,
|
|
164
|
+
.text-90,
|
|
165
|
+
.text90 {
|
|
121
166
|
font-size: 90px;
|
|
122
167
|
}
|
|
123
168
|
|
|
124
169
|
.txt100,
|
|
125
|
-
.txt-100,
|
|
170
|
+
.txt-100,
|
|
171
|
+
.text-100,
|
|
172
|
+
.text100 {
|
|
126
173
|
font-size: 100px;
|
|
127
174
|
}
|
|
128
175
|
|
|
129
176
|
.txt110,
|
|
130
|
-
.txt-110,
|
|
177
|
+
.txt-110,
|
|
178
|
+
.text-110,
|
|
179
|
+
.text110 {
|
|
131
180
|
font-size: 110px;
|
|
132
181
|
}
|
|
133
182
|
|
|
134
183
|
.txt120,
|
|
135
|
-
.txt-120,
|
|
184
|
+
.txt-120,
|
|
185
|
+
.text-120,
|
|
186
|
+
.text120 {
|
|
136
187
|
font-size: 120px;
|
|
137
188
|
}
|
|
138
189
|
|
|
139
190
|
.txt130,
|
|
140
|
-
.txt-130,
|
|
191
|
+
.txt-130,
|
|
192
|
+
.text-130,
|
|
193
|
+
.text130 {
|
|
141
194
|
font-size: 130px;
|
|
142
195
|
}
|
|
143
196
|
|
|
144
197
|
.txt140,
|
|
145
|
-
.txt-140,
|
|
198
|
+
.txt-140,
|
|
199
|
+
.text-140,
|
|
200
|
+
.text140 {
|
|
146
201
|
font-size: 140px;
|
|
147
202
|
}
|
|
148
203
|
|
|
149
204
|
.txt150,
|
|
150
|
-
.txt-150,
|
|
205
|
+
.txt-150,
|
|
206
|
+
.text-150,
|
|
207
|
+
.text150 {
|
|
151
208
|
font-size: 150px;
|
|
152
209
|
}
|
|
153
210
|
|
|
154
211
|
.txt19,
|
|
155
|
-
.txt-19,
|
|
212
|
+
.txt-19,
|
|
213
|
+
.text-19,
|
|
214
|
+
.text19 {
|
|
156
215
|
font-size: 19px;
|
|
157
216
|
}
|
|
158
217
|
|
|
159
218
|
.txt18,
|
|
160
|
-
.txt-18,
|
|
219
|
+
.txt-18,
|
|
220
|
+
.text-18,
|
|
221
|
+
.text18 {
|
|
161
222
|
font-size: 18px;
|
|
162
223
|
}
|
|
163
224
|
|
|
164
225
|
.txt17,
|
|
165
|
-
.txt-17,
|
|
226
|
+
.txt-17,
|
|
227
|
+
.text-17,
|
|
228
|
+
.text17 {
|
|
166
229
|
font-size: 17px;
|
|
167
230
|
}
|
|
168
231
|
|
|
169
232
|
.txt16,
|
|
170
|
-
.txt-16,
|
|
233
|
+
.txt-16,
|
|
234
|
+
.text-16,
|
|
235
|
+
.text16 {
|
|
171
236
|
font-size: 16px;
|
|
172
237
|
}
|
|
173
238
|
|
|
174
239
|
.txt15,
|
|
175
|
-
.txt-15,
|
|
240
|
+
.txt-15,
|
|
241
|
+
.text-15,
|
|
242
|
+
.text15 {
|
|
176
243
|
font-size: 15px;
|
|
177
244
|
}
|
|
178
245
|
|
|
179
246
|
.txt14,
|
|
180
|
-
.txt-14,
|
|
247
|
+
.txt-14,
|
|
248
|
+
.text-14,
|
|
249
|
+
.text14 {
|
|
181
250
|
font-size: 14px;
|
|
182
251
|
}
|
|
183
252
|
|
|
184
253
|
.txt13,
|
|
185
|
-
.txt-13,
|
|
254
|
+
.txt-13,
|
|
255
|
+
.text-13,
|
|
256
|
+
.text13 {
|
|
186
257
|
font-size: 13px;
|
|
187
258
|
}
|
|
188
259
|
|
|
189
260
|
.txt12,
|
|
190
|
-
.txt-12,
|
|
261
|
+
.txt-12,
|
|
262
|
+
.text-12,
|
|
263
|
+
.text12 {
|
|
191
264
|
font-size: 12px;
|
|
192
265
|
}
|
|
193
266
|
|
|
194
267
|
.txt11,
|
|
195
|
-
.txt-11,
|
|
268
|
+
.txt-11,
|
|
269
|
+
.text-11,
|
|
270
|
+
.text11 {
|
|
196
271
|
font-size: 11px;
|
|
197
272
|
}
|
|
198
273
|
|
|
199
274
|
.txt10,
|
|
200
|
-
.txt-10,
|
|
275
|
+
.txt-10,
|
|
276
|
+
.text-10,
|
|
277
|
+
.text10 {
|
|
201
278
|
font-size: 10px;
|
|
202
279
|
}
|
|
203
280
|
|
|
204
281
|
.txt9,
|
|
205
|
-
.txt-9,
|
|
282
|
+
.txt-9,
|
|
283
|
+
.text-9,
|
|
284
|
+
.text9 {
|
|
206
285
|
font-size: 9px;
|
|
207
286
|
}
|
|
208
287
|
|
|
209
288
|
.txt025rem,
|
|
210
|
-
.txt-025rem,
|
|
289
|
+
.txt-025rem,
|
|
290
|
+
.text-025rem,
|
|
291
|
+
.text025rem {
|
|
211
292
|
font-size: 0.25rem;
|
|
212
293
|
}
|
|
213
294
|
|
|
214
295
|
.txt05rem,
|
|
215
|
-
.txt-05rem,
|
|
296
|
+
.txt-05rem,
|
|
297
|
+
.text-05rem,
|
|
298
|
+
.text05rem {
|
|
216
299
|
font-size: 0.5rem;
|
|
217
300
|
}
|
|
218
301
|
|
|
219
302
|
.txt075rem,
|
|
220
|
-
.txt-075rem,
|
|
303
|
+
.txt-075rem,
|
|
304
|
+
.text-075rem,
|
|
305
|
+
.text075rem {
|
|
221
306
|
font-size: 0.75rem;
|
|
222
307
|
}
|
|
223
308
|
|
|
224
309
|
.txt1rem,
|
|
225
|
-
.txt-1rem,
|
|
310
|
+
.txt-1rem,
|
|
311
|
+
.text-1rem,
|
|
312
|
+
.text1rem {
|
|
226
313
|
font-size: 1rem;
|
|
227
314
|
}
|
|
228
315
|
|
|
229
316
|
.txt1-25rem,
|
|
230
|
-
.txt-1-25rem,
|
|
317
|
+
.txt-1-25rem,
|
|
318
|
+
.text-1-25rem,
|
|
319
|
+
.text1-25rem {
|
|
231
320
|
font-size: 1.25rem;
|
|
232
321
|
}
|
|
233
322
|
|
|
234
323
|
.txt1-5rem,
|
|
235
|
-
.txt-1-5rem,
|
|
324
|
+
.txt-1-5rem,
|
|
325
|
+
.text-1-5rem,
|
|
326
|
+
.text1-5rem {
|
|
236
327
|
font-size: 1.5rem;
|
|
237
328
|
}
|
|
238
329
|
|
|
239
330
|
.txt1-75rem,
|
|
240
|
-
.txt-1-75rem,
|
|
331
|
+
.txt-1-75rem,
|
|
332
|
+
.text-1-75rem,
|
|
333
|
+
.text1-75rem {
|
|
241
334
|
font-size: 1.75rem;
|
|
242
335
|
}
|
|
243
336
|
|
|
244
337
|
.txt2rem,
|
|
245
|
-
.txt-2rem,
|
|
338
|
+
.txt-2rem,
|
|
339
|
+
.text-2rem,
|
|
340
|
+
.text2rem {
|
|
246
341
|
font-size: 2rem;
|
|
247
342
|
}
|
|
248
343
|
|
|
249
344
|
.txt2-25rem,
|
|
250
|
-
.txt-2-25rem,
|
|
345
|
+
.txt-2-25rem,
|
|
346
|
+
.text-2-25rem,
|
|
347
|
+
.text2-25rem {
|
|
251
348
|
font-size: 2.25rem;
|
|
252
349
|
}
|
|
253
350
|
|
|
254
351
|
.txt2-5rem,
|
|
255
|
-
.txt-2-5rem,
|
|
352
|
+
.txt-2-5rem,
|
|
353
|
+
.text-2-5rem,
|
|
354
|
+
.text2-5rem {
|
|
256
355
|
font-size: 2.5rem;
|
|
257
356
|
}
|
|
258
357
|
|
|
259
358
|
.txt2-75rem,
|
|
260
|
-
.txt-2-75rem,
|
|
359
|
+
.txt-2-75rem,
|
|
360
|
+
.text-2-75rem,
|
|
361
|
+
.text2-75rem {
|
|
261
362
|
font-size: 2.75rem;
|
|
262
363
|
}
|
|
263
364
|
|
|
264
365
|
.txt3rem,
|
|
265
|
-
.txt-3rem,
|
|
366
|
+
.txt-3rem,
|
|
367
|
+
.text-3rem,
|
|
368
|
+
.text3rem {
|
|
266
369
|
font-size: 3rem;
|
|
267
370
|
}
|
|
268
371
|
|
|
269
372
|
.txt3-25rem,
|
|
270
|
-
.txt-3-25rem,
|
|
373
|
+
.txt-3-25rem,
|
|
374
|
+
.text-3-25rem,
|
|
375
|
+
.text3-25rem {
|
|
271
376
|
font-size: 3.25rem;
|
|
272
377
|
}
|
|
273
378
|
|
|
274
379
|
.txt3-5rem,
|
|
275
|
-
.txt-3-5rem,
|
|
380
|
+
.txt-3-5rem,
|
|
381
|
+
.text-3-5rem,
|
|
382
|
+
.text3-5rem {
|
|
276
383
|
font-size: 3.5rem;
|
|
277
384
|
}
|
|
278
385
|
|
|
279
386
|
.txt3-75rem,
|
|
280
|
-
.txt-3-75rem,
|
|
387
|
+
.txt-3-75rem,
|
|
388
|
+
.text-3-75rem,
|
|
389
|
+
.text3-75rem {
|
|
281
390
|
font-size: 3.75rem;
|
|
282
391
|
}
|
|
283
392
|
|
|
284
393
|
.txt4rem,
|
|
285
|
-
.txt-4rem,
|
|
394
|
+
.txt-4rem,
|
|
395
|
+
.text-4rem,
|
|
396
|
+
.text4rem {
|
|
286
397
|
font-size: 4rem;
|
|
287
398
|
}
|
|
288
399
|
|
|
289
400
|
.txt4-25rem,
|
|
290
|
-
.txt-4-25rem,
|
|
401
|
+
.txt-4-25rem,
|
|
402
|
+
.text-4-25rem,
|
|
403
|
+
.text4-25rem {
|
|
291
404
|
font-size: 4.25rem;
|
|
292
405
|
}
|
|
293
406
|
|
|
294
407
|
.txt4-5rem,
|
|
295
|
-
.txt-4-5rem,
|
|
408
|
+
.txt-4-5rem,
|
|
409
|
+
.text-4-5rem,
|
|
410
|
+
.text4-5rem {
|
|
296
411
|
font-size: 4.5rem;
|
|
297
412
|
}
|
|
298
413
|
|
|
299
414
|
.txt4-75rem,
|
|
300
|
-
.txt-4-75rem,
|
|
415
|
+
.txt-4-75rem,
|
|
416
|
+
.text-4-75rem,
|
|
417
|
+
.text4-75rem {
|
|
301
418
|
font-size: 4.75rem;
|
|
302
419
|
}
|
|
303
420
|
|
|
304
421
|
.txt5rem,
|
|
305
|
-
.txt-5rem,
|
|
422
|
+
.txt-5rem,
|
|
423
|
+
.text-5rem,
|
|
424
|
+
.text5rem {
|
|
306
425
|
font-size: 5rem;
|
|
307
426
|
}
|
|
308
427
|
|
|
309
428
|
.txt5-25rem,
|
|
310
|
-
.txt-5-25rem,
|
|
429
|
+
.txt-5-25rem,
|
|
430
|
+
.text-5-25rem,
|
|
431
|
+
.text5-25rem {
|
|
311
432
|
font-size: 5.25rem;
|
|
312
433
|
}
|
|
313
434
|
|
|
314
435
|
.txt5-5rem,
|
|
315
|
-
.txt-5-5rem,
|
|
436
|
+
.txt-5-5rem,
|
|
437
|
+
.text-5-5rem,
|
|
438
|
+
.text5-5rem {
|
|
316
439
|
font-size: 5.5rem;
|
|
317
440
|
}
|
|
318
441
|
|
|
319
442
|
.txt5-75rem,
|
|
320
|
-
.txt-5-75rem,
|
|
443
|
+
.txt-5-75rem,
|
|
444
|
+
.text-5-75rem,
|
|
445
|
+
.text5-75rem {
|
|
321
446
|
font-size: 5.75rem;
|
|
322
447
|
}
|
|
323
448
|
|
|
324
449
|
.txt6rem,
|
|
325
|
-
.txt-6rem,
|
|
450
|
+
.txt-6rem,
|
|
451
|
+
.text-6rem,
|
|
452
|
+
.text6rem {
|
|
326
453
|
font-size: 6rem;
|
|
327
454
|
}
|
|
328
455
|
|
|
329
456
|
.txt6-25rem,
|
|
330
|
-
.txt-6-25rem,
|
|
457
|
+
.txt-6-25rem,
|
|
458
|
+
.text-6-25rem,
|
|
459
|
+
.text6-25rem {
|
|
331
460
|
font-size: 6.25rem;
|
|
332
461
|
}
|
|
333
462
|
|
|
334
463
|
.txt6-5rem,
|
|
335
|
-
.txt-6-5rem,
|
|
464
|
+
.txt-6-5rem,
|
|
465
|
+
.text-6-5rem,
|
|
466
|
+
.text6-5rem {
|
|
336
467
|
font-size: 6.5rem;
|
|
337
468
|
}
|
|
338
469
|
|
|
339
470
|
.txt6-75rem,
|
|
340
|
-
.txt-6-75rem,
|
|
471
|
+
.txt-6-75rem,
|
|
472
|
+
.text-6-75rem,
|
|
473
|
+
.text6-75rem {
|
|
341
474
|
font-size: 6.75rem;
|
|
342
475
|
}
|
|
343
476
|
|
|
344
477
|
.txt7rem,
|
|
345
|
-
.txt-7rem,
|
|
478
|
+
.txt-7rem,
|
|
479
|
+
.text-7rem,
|
|
480
|
+
.text7rem {
|
|
346
481
|
font-size: 7rem;
|
|
347
482
|
}
|
|
348
483
|
|
|
349
484
|
.txt7-25rem,
|
|
350
|
-
.txt-7-25rem,
|
|
485
|
+
.txt-7-25rem,
|
|
486
|
+
.text-7-25rem,
|
|
487
|
+
.text7-25rem {
|
|
351
488
|
font-size: 7.25rem;
|
|
352
489
|
}
|
|
353
490
|
|
|
354
491
|
.txt7-5rem,
|
|
355
|
-
.txt-7-5rem,
|
|
492
|
+
.txt-7-5rem,
|
|
493
|
+
.text-7-5rem,
|
|
494
|
+
.text7-5rem {
|
|
356
495
|
font-size: 7.5rem;
|
|
357
496
|
}
|
|
358
497
|
|
|
359
498
|
.txt7-75rem,
|
|
360
|
-
.txt-7-75rem,
|
|
499
|
+
.txt-7-75rem,
|
|
500
|
+
.text-7-75rem,
|
|
501
|
+
.text7-75rem {
|
|
361
502
|
font-size: 7.75rem;
|
|
362
503
|
}
|
|
363
504
|
|
|
364
505
|
.txt8rem,
|
|
365
|
-
.txt-8rem,
|
|
506
|
+
.txt-8rem,
|
|
507
|
+
.text-8rem,
|
|
508
|
+
.text8rem {
|
|
366
509
|
font-size: 8rem;
|
|
367
510
|
}
|
|
368
511
|
|
|
369
512
|
.txt8-25rem,
|
|
370
|
-
.txt-8-25rem,
|
|
513
|
+
.txt-8-25rem,
|
|
514
|
+
.text-8-25rem,
|
|
515
|
+
.text8-25rem {
|
|
371
516
|
font-size: 8.25rem;
|
|
372
517
|
}
|
|
373
518
|
|
|
374
519
|
.txt8-5rem,
|
|
375
|
-
.txt-8-5rem,
|
|
520
|
+
.txt-8-5rem,
|
|
521
|
+
.text-8-5rem,
|
|
522
|
+
.text8-5rem {
|
|
376
523
|
font-size: 8.5rem;
|
|
377
524
|
}
|
|
378
525
|
|
|
379
526
|
.txt8-75rem,
|
|
380
|
-
.txt-8-75rem,
|
|
527
|
+
.txt-8-75rem,
|
|
528
|
+
.text-8-75rem,
|
|
529
|
+
.text8-75rem {
|
|
381
530
|
font-size: 8.75rem;
|
|
382
531
|
}
|
|
383
532
|
|
|
@@ -386,901 +535,1250 @@
|
|
|
386
535
|
}
|
|
387
536
|
|
|
388
537
|
.txt-gray,
|
|
389
|
-
.txtgray,
|
|
538
|
+
.txtgray,
|
|
539
|
+
.textgray,
|
|
540
|
+
.text-gray {
|
|
390
541
|
color: var(--bgl-gray);
|
|
391
542
|
}
|
|
392
543
|
|
|
393
544
|
.txt-primary,
|
|
394
|
-
.txtprimary,
|
|
545
|
+
.txtprimary,
|
|
546
|
+
.textprimary,
|
|
547
|
+
.text-primary {
|
|
395
548
|
color: var(--bgl-primary);
|
|
396
549
|
}
|
|
397
550
|
|
|
398
551
|
.txt-black,
|
|
399
|
-
.txtblack,
|
|
552
|
+
.txtblack,
|
|
553
|
+
.textblack,
|
|
554
|
+
.text-black {
|
|
400
555
|
color: var(--bgl-black);
|
|
401
556
|
}
|
|
402
557
|
|
|
403
558
|
.txt-red,
|
|
404
|
-
.txtred,
|
|
559
|
+
.txtred,
|
|
560
|
+
.textred,
|
|
561
|
+
.text-red {
|
|
405
562
|
color: var(--bgl-red);
|
|
406
563
|
}
|
|
407
564
|
|
|
408
565
|
.txt-white,
|
|
409
|
-
.txtwhite,
|
|
566
|
+
.txtwhite,
|
|
567
|
+
.textwhite,
|
|
568
|
+
.text-white {
|
|
410
569
|
color: var(--bgl-white);
|
|
411
570
|
}
|
|
412
571
|
|
|
413
572
|
.txt-green,
|
|
414
|
-
.txtgreen,
|
|
573
|
+
.txtgreen,
|
|
574
|
+
.textgreen,
|
|
575
|
+
.text-green {
|
|
415
576
|
color: var(--bgl-green);
|
|
416
577
|
}
|
|
417
578
|
|
|
418
579
|
.txt-yellow,
|
|
419
|
-
.txtyellow,
|
|
580
|
+
.txtyellow,
|
|
581
|
+
.textyellow,
|
|
582
|
+
.text-yellow {
|
|
420
583
|
color: var(--bgl-yellow);
|
|
421
584
|
}
|
|
422
585
|
|
|
423
586
|
.txt-purple,
|
|
424
|
-
.txtpurple,
|
|
587
|
+
.txtpurple,
|
|
588
|
+
.textpurple,
|
|
589
|
+
.text-purple {
|
|
425
590
|
color: var(--bgl-purple);
|
|
426
591
|
}
|
|
427
592
|
|
|
428
593
|
.txt-brown,
|
|
429
|
-
.txtbrown,
|
|
594
|
+
.txtbrown,
|
|
595
|
+
.textbrown,
|
|
596
|
+
.text-brown {
|
|
430
597
|
color: var(--bgl-brown);
|
|
431
598
|
}
|
|
432
599
|
|
|
433
600
|
.txt-orange,
|
|
434
|
-
.txtorange,
|
|
601
|
+
.txtorange,
|
|
602
|
+
.textorange,
|
|
603
|
+
.text-orange {
|
|
435
604
|
color: var(--bgl-orange);
|
|
436
605
|
}
|
|
437
606
|
|
|
438
607
|
.txt-turquoise,
|
|
439
|
-
.txtturquoise,
|
|
608
|
+
.txtturquoise,
|
|
609
|
+
.textturquoise,
|
|
610
|
+
.text-turquoise {
|
|
440
611
|
color: var(--bgl-turquoise);
|
|
441
612
|
}
|
|
442
613
|
|
|
443
614
|
.txt-pink,
|
|
444
|
-
.txtpink,
|
|
615
|
+
.txtpink,
|
|
616
|
+
.textpink,
|
|
617
|
+
.text-pink {
|
|
445
618
|
color: var(--bgl-pink);
|
|
446
619
|
}
|
|
447
620
|
|
|
448
621
|
.txt-blue,
|
|
449
|
-
.txtblue,
|
|
622
|
+
.txtblue,
|
|
623
|
+
.textblue,
|
|
624
|
+
.text-blue {
|
|
450
625
|
color: var(--bgl-blue);
|
|
451
626
|
}
|
|
452
627
|
|
|
453
628
|
.txt-primary-10,
|
|
454
|
-
.txtprimary-10,
|
|
629
|
+
.txtprimary-10,
|
|
630
|
+
.textprimary-10,
|
|
631
|
+
.text-primary-10 {
|
|
455
632
|
color: var(--bgl-primary-10);
|
|
456
633
|
}
|
|
457
634
|
|
|
458
635
|
.txt-blue-10,
|
|
459
|
-
.txtblue-10,
|
|
636
|
+
.txtblue-10,
|
|
637
|
+
.textblue-10,
|
|
638
|
+
.text-blue-10 {
|
|
460
639
|
color: var(--bgl-blue-10);
|
|
461
640
|
}
|
|
462
641
|
|
|
463
642
|
.txt-green-10,
|
|
464
|
-
.txtgreen-10,
|
|
643
|
+
.txtgreen-10,
|
|
644
|
+
.textgreen-10,
|
|
645
|
+
.text-green-10 {
|
|
465
646
|
color: var(--bgl-green-10);
|
|
466
647
|
}
|
|
467
648
|
|
|
468
649
|
.txt-red-10,
|
|
469
|
-
.txtred-10,
|
|
650
|
+
.txtred-10,
|
|
651
|
+
.textred-10,
|
|
652
|
+
.text-red-10 {
|
|
470
653
|
color: var(--bgl-red-10);
|
|
471
654
|
}
|
|
472
655
|
|
|
473
656
|
.txt-yellow-10,
|
|
474
|
-
.txtyellow-10,
|
|
657
|
+
.txtyellow-10,
|
|
658
|
+
.textyellow-10,
|
|
659
|
+
.text-yellow-10 {
|
|
475
660
|
color: var(--bgl-yellow-10);
|
|
476
661
|
}
|
|
477
662
|
|
|
478
663
|
.txt-purple-10,
|
|
479
|
-
.txtpurple-10,
|
|
664
|
+
.txtpurple-10,
|
|
665
|
+
.textpurple-10,
|
|
666
|
+
.text-purple-10 {
|
|
480
667
|
color: var(--bgl-purple-10);
|
|
481
668
|
}
|
|
482
669
|
|
|
483
670
|
.txt-brown-10,
|
|
484
|
-
.txtbrown-10,
|
|
671
|
+
.txtbrown-10,
|
|
672
|
+
.textbrown-10,
|
|
673
|
+
.text-brown-10 {
|
|
485
674
|
color: var(--bgl-brown-10);
|
|
486
675
|
}
|
|
487
676
|
|
|
488
677
|
.txt-orange-10,
|
|
489
|
-
.txtorange-10,
|
|
678
|
+
.txtorange-10,
|
|
679
|
+
.textorange-10,
|
|
680
|
+
.text-orange-10 {
|
|
490
681
|
color: var(--bgl-orange-10);
|
|
491
682
|
}
|
|
492
683
|
|
|
493
684
|
.txt-turquoise-10,
|
|
494
|
-
.txtturquoise-10,
|
|
685
|
+
.txtturquoise-10,
|
|
686
|
+
.textturquoise-10,
|
|
687
|
+
.text-turquoise-10 {
|
|
495
688
|
color: var(--bgl-turquoise-10);
|
|
496
689
|
}
|
|
497
690
|
|
|
498
691
|
.txt-gray-10,
|
|
499
|
-
.txtgray-10,
|
|
692
|
+
.txtgray-10,
|
|
693
|
+
.textgray-10,
|
|
694
|
+
.text-gray-10 {
|
|
500
695
|
color: var(--bgl-gray-10);
|
|
501
696
|
}
|
|
502
697
|
|
|
503
698
|
.txt-black-10,
|
|
504
|
-
.txtblack-10,
|
|
699
|
+
.txtblack-10,
|
|
700
|
+
.textblack-10,
|
|
701
|
+
.text-black-10 {
|
|
505
702
|
color: var(--bgl-black-10);
|
|
506
703
|
}
|
|
507
704
|
|
|
508
705
|
.txt-pink-10,
|
|
509
|
-
.txtpink-10,
|
|
706
|
+
.txtpink-10,
|
|
707
|
+
.textpink-10,
|
|
708
|
+
.text-pink-10 {
|
|
510
709
|
color: var(--bgl-pink-10);
|
|
511
710
|
}
|
|
512
711
|
|
|
513
712
|
.txt-primary-20,
|
|
514
|
-
.txtprimary-20,
|
|
713
|
+
.txtprimary-20,
|
|
714
|
+
.textprimary-20,
|
|
715
|
+
.text-primary-20 {
|
|
515
716
|
color: var(--bgl-primary-20);
|
|
516
717
|
}
|
|
517
718
|
|
|
518
719
|
.txt-blue-20,
|
|
519
|
-
.txtblue-20,
|
|
720
|
+
.txtblue-20,
|
|
721
|
+
.textblue-20,
|
|
722
|
+
.text-blue-20 {
|
|
520
723
|
color: var(--bgl-blue-20);
|
|
521
724
|
}
|
|
522
725
|
|
|
523
726
|
.txt-green-20,
|
|
524
|
-
.txtgreen-20,
|
|
727
|
+
.txtgreen-20,
|
|
728
|
+
.textgreen-20,
|
|
729
|
+
.text-green-20 {
|
|
525
730
|
color: var(--bgl-green-20);
|
|
526
731
|
}
|
|
527
732
|
|
|
528
733
|
.txt-red-20,
|
|
529
|
-
.txtred-20,
|
|
734
|
+
.txtred-20,
|
|
735
|
+
.textred-20,
|
|
736
|
+
.text-red-20 {
|
|
530
737
|
color: var(--bgl-red-20);
|
|
531
738
|
}
|
|
532
739
|
|
|
533
740
|
.txt-yellow-20,
|
|
534
|
-
.txtyellow-20,
|
|
741
|
+
.txtyellow-20,
|
|
742
|
+
.textyellow-20,
|
|
743
|
+
.text-yellow-20 {
|
|
535
744
|
color: var(--bgl-yellow-20);
|
|
536
745
|
}
|
|
537
746
|
|
|
538
747
|
.txt-purple-20,
|
|
539
|
-
.txtpurple-20,
|
|
748
|
+
.txtpurple-20,
|
|
749
|
+
.textpurple-20,
|
|
750
|
+
.text-purple-20 {
|
|
540
751
|
color: var(--bgl-purple-20);
|
|
541
752
|
}
|
|
542
753
|
|
|
543
754
|
.txt-brown-20,
|
|
544
|
-
.txtbrown-20,
|
|
755
|
+
.txtbrown-20,
|
|
756
|
+
.textbrown-20,
|
|
757
|
+
.text-brown-20 {
|
|
545
758
|
color: var(--bgl-brown-20);
|
|
546
759
|
}
|
|
547
760
|
|
|
548
761
|
.txt-orange-20,
|
|
549
|
-
.txtorange-20,
|
|
762
|
+
.txtorange-20,
|
|
763
|
+
.textorange-20,
|
|
764
|
+
.text-orange-20 {
|
|
550
765
|
color: var(--bgl-orange-20);
|
|
551
766
|
}
|
|
552
767
|
|
|
553
768
|
.txt-turquoise-20,
|
|
554
|
-
.txtturquoise-20,
|
|
769
|
+
.txtturquoise-20,
|
|
770
|
+
.textturquoise-20,
|
|
771
|
+
.text-turquoise-20 {
|
|
555
772
|
color: var(--bgl-turquoise-20);
|
|
556
773
|
}
|
|
557
774
|
|
|
558
775
|
.txt-gray-20,
|
|
559
|
-
.txtgray-20,
|
|
776
|
+
.txtgray-20,
|
|
777
|
+
.textgray-20,
|
|
778
|
+
.text-gray-20 {
|
|
560
779
|
color: var(--bgl-gray-20);
|
|
561
780
|
}
|
|
562
781
|
|
|
563
782
|
.txt-black-20,
|
|
564
|
-
.txtblack-20,
|
|
783
|
+
.txtblack-20,
|
|
784
|
+
.textblack-20,
|
|
785
|
+
.text-black-20 {
|
|
565
786
|
color: var(--bgl-black-20);
|
|
566
787
|
}
|
|
567
788
|
|
|
568
789
|
.txt-pink-20,
|
|
569
|
-
.txtpink-20,
|
|
790
|
+
.txtpink-20,
|
|
791
|
+
.textpink-20,
|
|
792
|
+
.text-pink-20 {
|
|
570
793
|
color: var(--bgl-pink-20);
|
|
571
794
|
}
|
|
572
795
|
|
|
573
796
|
.txt-primary-30,
|
|
574
|
-
.txtprimary-30,
|
|
797
|
+
.txtprimary-30,
|
|
798
|
+
.textprimary-30,
|
|
799
|
+
.text-primary-30 {
|
|
575
800
|
color: var(--bgl-primary-30);
|
|
576
801
|
}
|
|
577
802
|
|
|
578
803
|
.txt-blue-30,
|
|
579
|
-
.txtblue-30,
|
|
804
|
+
.txtblue-30,
|
|
805
|
+
.textblue-30,
|
|
806
|
+
.text-blue-30 {
|
|
580
807
|
color: var(--bgl-blue-30);
|
|
581
808
|
}
|
|
582
809
|
|
|
583
810
|
.txt-green-30,
|
|
584
|
-
.txtgreen-30,
|
|
811
|
+
.txtgreen-30,
|
|
812
|
+
.textgreen-30,
|
|
813
|
+
.text-green-30 {
|
|
585
814
|
color: var(--bgl-green-30);
|
|
586
815
|
}
|
|
587
816
|
|
|
588
817
|
.txt-red-30,
|
|
589
|
-
.txtred-30,
|
|
818
|
+
.txtred-30,
|
|
819
|
+
.textred-30,
|
|
820
|
+
.text-red-30 {
|
|
590
821
|
color: var(--bgl-red-30);
|
|
591
822
|
}
|
|
592
823
|
|
|
593
824
|
.txt-yellow-30,
|
|
594
|
-
.txtyellow-30,
|
|
825
|
+
.txtyellow-30,
|
|
826
|
+
.textyellow-30,
|
|
827
|
+
.text-yellow-30 {
|
|
595
828
|
color: var(--bgl-yellow-30);
|
|
596
829
|
}
|
|
597
830
|
|
|
598
831
|
.txt-purple-30,
|
|
599
|
-
.txtpurple-30,
|
|
832
|
+
.txtpurple-30,
|
|
833
|
+
.textpurple-30,
|
|
834
|
+
.text-purple-30 {
|
|
600
835
|
color: var(--bgl-purple-30);
|
|
601
836
|
}
|
|
602
837
|
|
|
603
838
|
.txt-brown-30,
|
|
604
|
-
.txtbrown-30,
|
|
839
|
+
.txtbrown-30,
|
|
840
|
+
.textbrown-30,
|
|
841
|
+
.text-brown-30 {
|
|
605
842
|
color: var(--bgl-brown-30);
|
|
606
843
|
}
|
|
607
844
|
|
|
608
845
|
.txt-orange-30,
|
|
609
|
-
.txtorange-30,
|
|
846
|
+
.txtorange-30,
|
|
847
|
+
.textorange-30,
|
|
848
|
+
.text-orange-30 {
|
|
610
849
|
color: var(--bgl-orange-30);
|
|
611
850
|
}
|
|
612
851
|
|
|
613
852
|
.txt-turquoise-30,
|
|
614
|
-
.txtturquoise-30,
|
|
853
|
+
.txtturquoise-30,
|
|
854
|
+
.textturquoise-30,
|
|
855
|
+
.text-turquoise-30 {
|
|
615
856
|
color: var(--bgl-turquoise-30);
|
|
616
857
|
}
|
|
617
858
|
|
|
618
859
|
.txt-gray-30,
|
|
619
|
-
.txtgray-30,
|
|
860
|
+
.txtgray-30,
|
|
861
|
+
.textgray-30,
|
|
862
|
+
.text-gray-30 {
|
|
620
863
|
color: var(--bgl-gray-30);
|
|
621
864
|
}
|
|
622
865
|
|
|
623
866
|
.txt-black-30,
|
|
624
|
-
.txtblack-30,
|
|
867
|
+
.txtblack-30,
|
|
868
|
+
.textblack-30,
|
|
869
|
+
.text-black-30 {
|
|
625
870
|
color: var(--bgl-black-30);
|
|
626
871
|
}
|
|
627
872
|
|
|
628
873
|
.txt-pink-30,
|
|
629
|
-
.txtpink-30,
|
|
874
|
+
.txtpink-30,
|
|
875
|
+
.textpink-30,
|
|
876
|
+
.text-pink-30 {
|
|
630
877
|
color: var(--bgl-pink-30);
|
|
631
878
|
}
|
|
632
879
|
|
|
633
880
|
.txt-primary-40,
|
|
634
|
-
.txtprimary-40,
|
|
881
|
+
.txtprimary-40,
|
|
882
|
+
.textprimary-40,
|
|
883
|
+
.text-primary-40 {
|
|
635
884
|
color: var(--bgl-primary-40);
|
|
636
885
|
}
|
|
637
886
|
|
|
638
887
|
.txt-blue-40,
|
|
639
|
-
.txtblue-40,
|
|
888
|
+
.txtblue-40,
|
|
889
|
+
.textblue-40,
|
|
890
|
+
.text-blue-40 {
|
|
640
891
|
color: var(--bgl-blue-40);
|
|
641
892
|
}
|
|
642
893
|
|
|
643
894
|
.txt-green-40,
|
|
644
|
-
.txtgreen-40,
|
|
895
|
+
.txtgreen-40,
|
|
896
|
+
.textgreen-40,
|
|
897
|
+
.text-green-40 {
|
|
645
898
|
color: var(--bgl-green-40);
|
|
646
899
|
}
|
|
647
900
|
|
|
648
901
|
.txt-red-40,
|
|
649
|
-
.txtred-40,
|
|
902
|
+
.txtred-40,
|
|
903
|
+
.textred-40,
|
|
904
|
+
.text-red-40 {
|
|
650
905
|
color: var(--bgl-red-40);
|
|
651
906
|
}
|
|
652
907
|
|
|
653
908
|
.txt-yellow-40,
|
|
654
|
-
.txtyellow-40,
|
|
909
|
+
.txtyellow-40,
|
|
910
|
+
.textyellow-40,
|
|
911
|
+
.text-yellow-40 {
|
|
655
912
|
color: var(--bgl-yellow-40);
|
|
656
913
|
}
|
|
657
914
|
|
|
658
915
|
.txt-purple-40,
|
|
659
|
-
.txtpurple-40,
|
|
916
|
+
.txtpurple-40,
|
|
917
|
+
.textpurple-40,
|
|
918
|
+
.text-purple-40 {
|
|
660
919
|
color: var(--bgl-purple-40);
|
|
661
920
|
}
|
|
662
921
|
|
|
663
922
|
.txt-brown-40,
|
|
664
|
-
.txtbrown-40,
|
|
923
|
+
.txtbrown-40,
|
|
924
|
+
.textbrown-40,
|
|
925
|
+
.text-brown-40 {
|
|
665
926
|
color: var(--bgl-brown-40);
|
|
666
927
|
}
|
|
667
928
|
|
|
668
929
|
.txt-orange-40,
|
|
669
|
-
.txtorange-40,
|
|
930
|
+
.txtorange-40,
|
|
931
|
+
.textorange-40,
|
|
932
|
+
.text-orange-40 {
|
|
670
933
|
color: var(--bgl-orange-40);
|
|
671
934
|
}
|
|
672
935
|
|
|
673
936
|
.txt-turquoise-40,
|
|
674
|
-
.txtturquoise-40,
|
|
937
|
+
.txtturquoise-40,
|
|
938
|
+
.textturquoise-40,
|
|
939
|
+
.text-turquoise-40 {
|
|
675
940
|
color: var(--bgl-turquoise-40);
|
|
676
941
|
}
|
|
677
942
|
|
|
678
943
|
.txt-gray-40,
|
|
679
|
-
.txtgray-40,
|
|
944
|
+
.txtgray-40,
|
|
945
|
+
.textgray-40,
|
|
946
|
+
.text-gray-40 {
|
|
680
947
|
color: var(--bgl-gray-40);
|
|
681
948
|
}
|
|
682
949
|
|
|
683
950
|
.txt-black-40,
|
|
684
|
-
.txtblack-40,
|
|
951
|
+
.txtblack-40,
|
|
952
|
+
.textblack-40,
|
|
953
|
+
.text-black-40 {
|
|
685
954
|
color: var(--bgl-black-40);
|
|
686
955
|
}
|
|
687
956
|
|
|
688
957
|
.txt-pink-40,
|
|
689
|
-
.txtpink-40,
|
|
958
|
+
.txtpink-40,
|
|
959
|
+
.textpink-40,
|
|
960
|
+
.text-pink-40 {
|
|
690
961
|
color: var(--bgl-pink-40);
|
|
691
962
|
}
|
|
692
963
|
|
|
693
964
|
.txt-primary-50,
|
|
694
|
-
.txtprimary-50,
|
|
965
|
+
.txtprimary-50,
|
|
966
|
+
.textprimary-50,
|
|
967
|
+
.text-primary-50 {
|
|
695
968
|
color: var(--bgl-primary-50);
|
|
696
969
|
}
|
|
697
970
|
|
|
698
971
|
.txt-blue-50,
|
|
699
|
-
.txtblue-50,
|
|
972
|
+
.txtblue-50,
|
|
973
|
+
.textblue-50,
|
|
974
|
+
.text-blue-50 {
|
|
700
975
|
color: var(--bgl-blue-50);
|
|
701
976
|
}
|
|
702
977
|
|
|
703
978
|
.txt-green-50,
|
|
704
|
-
.txtgreen-50,
|
|
979
|
+
.txtgreen-50,
|
|
980
|
+
.textgreen-50,
|
|
981
|
+
.text-green-50 {
|
|
705
982
|
color: var(--bgl-green-50);
|
|
706
983
|
}
|
|
707
984
|
|
|
708
985
|
.txt-red-50,
|
|
709
|
-
.txtred-50,
|
|
986
|
+
.txtred-50,
|
|
987
|
+
.textred-50,
|
|
988
|
+
.text-red-50 {
|
|
710
989
|
color: var(--bgl-red-50);
|
|
711
990
|
}
|
|
712
991
|
|
|
713
992
|
.txt-yellow-50,
|
|
714
|
-
.txtyellow-50,
|
|
993
|
+
.txtyellow-50,
|
|
994
|
+
.textyellow-50,
|
|
995
|
+
.text-yellow-50 {
|
|
715
996
|
color: var(--bgl-yellow-50);
|
|
716
997
|
}
|
|
717
998
|
|
|
718
999
|
.txt-purple-50,
|
|
719
|
-
.txtpurple-50,
|
|
1000
|
+
.txtpurple-50,
|
|
1001
|
+
.textpurple-50,
|
|
1002
|
+
.text-purple-50 {
|
|
720
1003
|
color: var(--bgl-purple-50);
|
|
721
1004
|
}
|
|
722
1005
|
|
|
723
1006
|
.txt-brown-50,
|
|
724
|
-
.txtbrown-50,
|
|
1007
|
+
.txtbrown-50,
|
|
1008
|
+
.textbrown-50,
|
|
1009
|
+
.text-brown-50 {
|
|
725
1010
|
color: var(--bgl-brown-50);
|
|
726
1011
|
}
|
|
727
1012
|
|
|
728
1013
|
.txt-orange-50,
|
|
729
|
-
.txtorange-50,
|
|
1014
|
+
.txtorange-50,
|
|
1015
|
+
.textorange-50,
|
|
1016
|
+
.text-orange-50 {
|
|
730
1017
|
color: var(--bgl-orange-50);
|
|
731
1018
|
}
|
|
732
1019
|
|
|
733
1020
|
.txt-turquoise-50,
|
|
734
|
-
.txtturquoise-50,
|
|
1021
|
+
.txtturquoise-50,
|
|
1022
|
+
.textturquoise-50,
|
|
1023
|
+
.text-turquoise-50 {
|
|
735
1024
|
color: var(--bgl-turquoise-50);
|
|
736
1025
|
}
|
|
737
1026
|
|
|
738
1027
|
.txt-gray-50,
|
|
739
|
-
.txtgray-50,
|
|
1028
|
+
.txtgray-50,
|
|
1029
|
+
.textgray-50,
|
|
1030
|
+
.text-gray-50 {
|
|
740
1031
|
color: var(--bgl-gray-50);
|
|
741
1032
|
}
|
|
742
1033
|
|
|
743
1034
|
.txt-black-50,
|
|
744
|
-
.txtblack-50,
|
|
1035
|
+
.txtblack-50,
|
|
1036
|
+
.textblack-50,
|
|
1037
|
+
.text-black-50 {
|
|
745
1038
|
color: var(--bgl-black-50);
|
|
746
1039
|
}
|
|
747
1040
|
|
|
748
1041
|
.txt-pink-50,
|
|
749
|
-
.txtpink-50,
|
|
1042
|
+
.txtpink-50,
|
|
1043
|
+
.textpink-50,
|
|
1044
|
+
.text-pink-50 {
|
|
750
1045
|
color: var(--bgl-pink-50);
|
|
751
1046
|
}
|
|
752
1047
|
|
|
753
1048
|
.txt-primary-60,
|
|
754
|
-
.txtprimary-60,
|
|
1049
|
+
.txtprimary-60,
|
|
1050
|
+
.textprimary-60,
|
|
1051
|
+
.text-primary-60 {
|
|
755
1052
|
color: var(--bgl-primary-60);
|
|
756
1053
|
}
|
|
757
1054
|
|
|
758
1055
|
.txt-blue-60,
|
|
759
|
-
.txtblue-60,
|
|
1056
|
+
.txtblue-60,
|
|
1057
|
+
.textblue-60,
|
|
1058
|
+
.text-blue-60 {
|
|
760
1059
|
color: var(--bgl-blue-60);
|
|
761
1060
|
}
|
|
762
1061
|
|
|
763
1062
|
.txt-green-60,
|
|
764
|
-
.txtgreen-60,
|
|
1063
|
+
.txtgreen-60,
|
|
1064
|
+
.textgreen-60,
|
|
1065
|
+
.text-green-60 {
|
|
765
1066
|
color: var(--bgl-green-60);
|
|
766
1067
|
}
|
|
767
1068
|
|
|
768
1069
|
.txt-red-60,
|
|
769
|
-
.txtred-60,
|
|
1070
|
+
.txtred-60,
|
|
1071
|
+
.textred-60,
|
|
1072
|
+
.text-red-60 {
|
|
770
1073
|
color: var(--bgl-red-60);
|
|
771
1074
|
}
|
|
772
1075
|
|
|
773
1076
|
.txt-yellow-60,
|
|
774
|
-
.txtyellow-60,
|
|
1077
|
+
.txtyellow-60,
|
|
1078
|
+
.textyellow-60,
|
|
1079
|
+
.text-yellow-60 {
|
|
775
1080
|
color: var(--bgl-yellow-60);
|
|
776
1081
|
}
|
|
777
1082
|
|
|
778
1083
|
.txt-purple-60,
|
|
779
|
-
.txtpurple-60,
|
|
1084
|
+
.txtpurple-60,
|
|
1085
|
+
.textpurple-60,
|
|
1086
|
+
.text-purple-60 {
|
|
780
1087
|
color: var(--bgl-purple-60);
|
|
781
1088
|
}
|
|
782
1089
|
|
|
783
1090
|
.txt-brown-60,
|
|
784
|
-
.txtbrown-60,
|
|
1091
|
+
.txtbrown-60,
|
|
1092
|
+
.textbrown-60,
|
|
1093
|
+
.text-brown-60 {
|
|
785
1094
|
color: var(--bgl-brown-60);
|
|
786
1095
|
}
|
|
787
1096
|
|
|
788
1097
|
.txt-orange-60,
|
|
789
|
-
.txtorange-60,
|
|
1098
|
+
.txtorange-60,
|
|
1099
|
+
.textorange-60,
|
|
1100
|
+
.text-orange-60 {
|
|
790
1101
|
color: var(--bgl-orange-60);
|
|
791
1102
|
}
|
|
792
1103
|
|
|
793
1104
|
.txt-turquoise-60,
|
|
794
|
-
.txtturquoise-60,
|
|
1105
|
+
.txtturquoise-60,
|
|
1106
|
+
.textturquoise-60,
|
|
1107
|
+
.text-turquoise-60 {
|
|
795
1108
|
color: var(--bgl-turquoise-60);
|
|
796
1109
|
}
|
|
797
1110
|
|
|
798
1111
|
.txt-gray-60,
|
|
799
|
-
.txtgray-60,
|
|
1112
|
+
.txtgray-60,
|
|
1113
|
+
.textgray-60,
|
|
1114
|
+
.text-gray-60 {
|
|
800
1115
|
color: var(--bgl-gray-60);
|
|
801
1116
|
}
|
|
802
1117
|
|
|
803
1118
|
.txt-black-60,
|
|
804
|
-
.txtblack-60,
|
|
1119
|
+
.txtblack-60,
|
|
1120
|
+
.textblack-60,
|
|
1121
|
+
.text-black-60 {
|
|
805
1122
|
color: var(--bgl-black-60);
|
|
806
1123
|
}
|
|
807
1124
|
|
|
808
1125
|
.txt-pink-60,
|
|
809
|
-
.txtpink-60,
|
|
1126
|
+
.txtpink-60,
|
|
1127
|
+
.textpink-60,
|
|
1128
|
+
.text-pink-60 {
|
|
810
1129
|
color: var(--bgl-pink-60);
|
|
811
1130
|
}
|
|
812
1131
|
|
|
813
1132
|
.txt-primary-70,
|
|
814
|
-
.txtprimary-70,
|
|
1133
|
+
.txtprimary-70,
|
|
1134
|
+
.textprimary-70,
|
|
1135
|
+
.text-primary-70 {
|
|
815
1136
|
color: var(--bgl-primary-70);
|
|
816
1137
|
}
|
|
817
1138
|
|
|
818
1139
|
.txt-blue-70,
|
|
819
|
-
.txtblue-70,
|
|
1140
|
+
.txtblue-70,
|
|
1141
|
+
.textblue-70,
|
|
1142
|
+
.text-blue-70 {
|
|
820
1143
|
color: var(--bgl-blue-70);
|
|
821
1144
|
}
|
|
822
1145
|
|
|
823
1146
|
.txt-green-70,
|
|
824
|
-
.txtgreen-70,
|
|
1147
|
+
.txtgreen-70,
|
|
1148
|
+
.textgreen-70,
|
|
1149
|
+
.text-green-70 {
|
|
825
1150
|
color: var(--bgl-green-70);
|
|
826
1151
|
}
|
|
827
1152
|
|
|
828
1153
|
.txt-red-70,
|
|
829
|
-
.txtred-70,
|
|
1154
|
+
.txtred-70,
|
|
1155
|
+
.textred-70,
|
|
1156
|
+
.text-red-70 {
|
|
830
1157
|
color: var(--bgl-red-70);
|
|
831
1158
|
}
|
|
832
1159
|
|
|
833
1160
|
.txt-yellow-70,
|
|
834
|
-
.txtyellow-70,
|
|
1161
|
+
.txtyellow-70,
|
|
1162
|
+
.textyellow-70,
|
|
1163
|
+
.text-yellow-70 {
|
|
835
1164
|
color: var(--bgl-yellow-70);
|
|
836
1165
|
}
|
|
837
1166
|
|
|
838
1167
|
.txt-purple-70,
|
|
839
|
-
.txtpurple-70,
|
|
1168
|
+
.txtpurple-70,
|
|
1169
|
+
.textpurple-70,
|
|
1170
|
+
.text-purple-70 {
|
|
840
1171
|
color: var(--bgl-purple-70);
|
|
841
1172
|
}
|
|
842
1173
|
|
|
843
1174
|
.txt-brown-70,
|
|
844
|
-
.txtbrown-70,
|
|
1175
|
+
.txtbrown-70,
|
|
1176
|
+
.textbrown-70,
|
|
1177
|
+
.text-brown-70 {
|
|
845
1178
|
color: var(--bgl-brown-70);
|
|
846
1179
|
}
|
|
847
1180
|
|
|
848
1181
|
.txt-orange-70,
|
|
849
|
-
.txtorange-70,
|
|
1182
|
+
.txtorange-70,
|
|
1183
|
+
.textorange-70,
|
|
1184
|
+
.text-orange-70 {
|
|
850
1185
|
color: var(--bgl-orange-70);
|
|
851
1186
|
}
|
|
852
1187
|
|
|
853
1188
|
.txt-turquoise-70,
|
|
854
|
-
.txtturquoise-70,
|
|
1189
|
+
.txtturquoise-70,
|
|
1190
|
+
.textturquoise-70,
|
|
1191
|
+
.text-turquoise-70 {
|
|
855
1192
|
color: var(--bgl-turquoise-70);
|
|
856
1193
|
}
|
|
857
1194
|
|
|
858
1195
|
.txt-gray-70,
|
|
859
|
-
.txtgray-70,
|
|
1196
|
+
.txtgray-70,
|
|
1197
|
+
.textgray-70,
|
|
1198
|
+
.text-gray-70 {
|
|
860
1199
|
color: var(--bgl-gray-70);
|
|
861
1200
|
}
|
|
862
1201
|
|
|
863
1202
|
.txt-black-70,
|
|
864
|
-
.txtblack-70,
|
|
1203
|
+
.txtblack-70,
|
|
1204
|
+
.textblack-70,
|
|
1205
|
+
.text-black-70 {
|
|
865
1206
|
color: var(--bgl-black-70);
|
|
866
1207
|
}
|
|
867
1208
|
|
|
868
1209
|
.txt-pink-70,
|
|
869
|
-
.txtpink-70,
|
|
1210
|
+
.txtpink-70,
|
|
1211
|
+
.textpink-70,
|
|
1212
|
+
.text-pink-70 {
|
|
870
1213
|
color: var(--bgl-pink-70);
|
|
871
1214
|
}
|
|
872
1215
|
|
|
873
1216
|
.txt-primary-80,
|
|
874
|
-
.txtprimary-80,
|
|
1217
|
+
.txtprimary-80,
|
|
1218
|
+
.textprimary-80,
|
|
1219
|
+
.text-primary-80 {
|
|
875
1220
|
color: var(--bgl-primary-80);
|
|
876
1221
|
}
|
|
877
1222
|
|
|
878
1223
|
.txt-blue-80,
|
|
879
|
-
.txtblue-80,
|
|
1224
|
+
.txtblue-80,
|
|
1225
|
+
.textblue-80,
|
|
1226
|
+
.text-blue-80 {
|
|
880
1227
|
color: var(--bgl-blue-80);
|
|
881
1228
|
}
|
|
882
1229
|
|
|
883
1230
|
.txt-green-80,
|
|
884
|
-
.txtgreen-80,
|
|
1231
|
+
.txtgreen-80,
|
|
1232
|
+
.textgreen-80,
|
|
1233
|
+
.text-green-80 {
|
|
885
1234
|
color: var(--bgl-green-80);
|
|
886
1235
|
}
|
|
887
1236
|
|
|
888
1237
|
.txt-red-80,
|
|
889
|
-
.txtred-80,
|
|
1238
|
+
.txtred-80,
|
|
1239
|
+
.textred-80,
|
|
1240
|
+
.text-red-80 {
|
|
890
1241
|
color: var(--bgl-red-80);
|
|
891
1242
|
}
|
|
892
1243
|
|
|
893
1244
|
.txt-yellow-80,
|
|
894
|
-
.txtyellow-80,
|
|
1245
|
+
.txtyellow-80,
|
|
1246
|
+
.textyellow-80,
|
|
1247
|
+
.text-yellow-80 {
|
|
895
1248
|
color: var(--bgl-yellow-80);
|
|
896
1249
|
}
|
|
897
1250
|
|
|
898
1251
|
.txt-purple-80,
|
|
899
|
-
.txtpurple-80,
|
|
1252
|
+
.txtpurple-80,
|
|
1253
|
+
.textpurple-80,
|
|
1254
|
+
.text-purple-80 {
|
|
900
1255
|
color: var(--bgl-purple-80);
|
|
901
1256
|
}
|
|
902
1257
|
|
|
903
1258
|
.txt-brown-80,
|
|
904
|
-
.txtbrown-80,
|
|
1259
|
+
.txtbrown-80,
|
|
1260
|
+
.textbrown-80,
|
|
1261
|
+
.text-brown-80 {
|
|
905
1262
|
color: var(--bgl-brown-80);
|
|
906
1263
|
}
|
|
907
1264
|
|
|
908
1265
|
.txt-orange-80,
|
|
909
|
-
.txtorange-80,
|
|
1266
|
+
.txtorange-80,
|
|
1267
|
+
.textorange-80,
|
|
1268
|
+
.text-orange-80 {
|
|
910
1269
|
color: var(--bgl-orange-80);
|
|
911
1270
|
}
|
|
912
1271
|
|
|
913
1272
|
.txt-turquoise-80,
|
|
914
|
-
.txtturquoise-80,
|
|
1273
|
+
.txtturquoise-80,
|
|
1274
|
+
.textturquoise-80,
|
|
1275
|
+
.text-turquoise-80 {
|
|
915
1276
|
color: var(--bgl-turquoise-80);
|
|
916
1277
|
}
|
|
917
1278
|
|
|
918
1279
|
.txt-gray-80,
|
|
919
|
-
.txtgray-80,
|
|
1280
|
+
.txtgray-80,
|
|
1281
|
+
.textgray-80,
|
|
1282
|
+
.text-gray-80 {
|
|
920
1283
|
color: var(--bgl-gray-80);
|
|
921
1284
|
}
|
|
922
1285
|
|
|
923
1286
|
.txt-black-80,
|
|
924
|
-
.txtblack-80,
|
|
1287
|
+
.txtblack-80,
|
|
1288
|
+
.textblack-80,
|
|
1289
|
+
.text-black-80 {
|
|
925
1290
|
color: var(--bgl-black-80);
|
|
926
1291
|
}
|
|
927
1292
|
|
|
928
1293
|
.txt-pink-80,
|
|
929
|
-
.txtpink-80,
|
|
1294
|
+
.txtpink-80,
|
|
1295
|
+
.textpink-80,
|
|
1296
|
+
.text-pink-80 {
|
|
930
1297
|
color: var(--bgl-pink-80);
|
|
931
1298
|
}
|
|
932
1299
|
|
|
933
1300
|
.txt-primary-90,
|
|
934
|
-
.txtprimary-90,
|
|
1301
|
+
.txtprimary-90,
|
|
1302
|
+
.textprimary-90,
|
|
1303
|
+
.text-primary-90 {
|
|
935
1304
|
color: var(--bgl-primary-90);
|
|
936
1305
|
}
|
|
937
1306
|
|
|
938
1307
|
.txt-blue-90,
|
|
939
|
-
.txtblue-90,
|
|
1308
|
+
.txtblue-90,
|
|
1309
|
+
.textblue-90,
|
|
1310
|
+
.text-blue-90 {
|
|
940
1311
|
color: var(--bgl-blue-90);
|
|
941
1312
|
}
|
|
942
1313
|
|
|
943
1314
|
.txt-green-90,
|
|
944
|
-
.txtgreen-90,
|
|
1315
|
+
.txtgreen-90,
|
|
1316
|
+
.textgreen-90,
|
|
1317
|
+
.text-green-90 {
|
|
945
1318
|
color: var(--bgl-green-90);
|
|
946
1319
|
}
|
|
947
1320
|
|
|
948
1321
|
.txt-red-90,
|
|
949
|
-
.txtred-90,
|
|
1322
|
+
.txtred-90,
|
|
1323
|
+
.textred-90,
|
|
1324
|
+
.text-red-90 {
|
|
950
1325
|
color: var(--bgl-red-90);
|
|
951
1326
|
}
|
|
952
1327
|
|
|
953
1328
|
.txt-yellow-90,
|
|
954
|
-
.txtyellow-90,
|
|
1329
|
+
.txtyellow-90,
|
|
1330
|
+
.textyellow-90,
|
|
1331
|
+
.text-yellow-90 {
|
|
955
1332
|
color: var(--bgl-yellow-90);
|
|
956
1333
|
}
|
|
957
1334
|
|
|
958
1335
|
.txt-purple-90,
|
|
959
|
-
.txtpurple-90,
|
|
1336
|
+
.txtpurple-90,
|
|
1337
|
+
.textpurple-90,
|
|
1338
|
+
.text-purple-90 {
|
|
960
1339
|
color: var(--bgl-purple-90);
|
|
961
1340
|
}
|
|
962
1341
|
|
|
963
1342
|
.txt-brown-90,
|
|
964
|
-
.txtbrown-90,
|
|
1343
|
+
.txtbrown-90,
|
|
1344
|
+
.textbrown-90,
|
|
1345
|
+
.text-brown-90 {
|
|
965
1346
|
color: var(--bgl-brown-90);
|
|
966
1347
|
}
|
|
967
1348
|
|
|
968
1349
|
.txt-orange-90,
|
|
969
|
-
.txtorange-90,
|
|
1350
|
+
.txtorange-90,
|
|
1351
|
+
.textorange-90,
|
|
1352
|
+
.text-orange-90 {
|
|
970
1353
|
color: var(--bgl-orange-90);
|
|
971
1354
|
}
|
|
972
1355
|
|
|
973
1356
|
.txt-turquoise-90,
|
|
974
|
-
.txtturquoise-90,
|
|
1357
|
+
.txtturquoise-90,
|
|
1358
|
+
.textturquoise-90,
|
|
1359
|
+
.text-turquoise-90 {
|
|
975
1360
|
color: var(--bgl-turquoise-90);
|
|
976
1361
|
}
|
|
977
1362
|
|
|
978
1363
|
.txt-gray-90,
|
|
979
|
-
.txtgray-90,
|
|
1364
|
+
.txtgray-90,
|
|
1365
|
+
.textgray-90,
|
|
1366
|
+
.text-gray-90 {
|
|
980
1367
|
color: var(--bgl-gray-90);
|
|
981
1368
|
}
|
|
982
1369
|
|
|
983
1370
|
.txt-black-90,
|
|
984
|
-
.txtblack-90,
|
|
1371
|
+
.txtblack-90,
|
|
1372
|
+
.textblack-90,
|
|
1373
|
+
.text-black-90 {
|
|
985
1374
|
color: var(--bgl-black-90);
|
|
986
1375
|
}
|
|
987
1376
|
|
|
988
1377
|
.txt-pink-90,
|
|
989
|
-
.txtpink-90,
|
|
1378
|
+
.txtpink-90,
|
|
1379
|
+
.textpink-90,
|
|
1380
|
+
.text-pink-90 {
|
|
990
1381
|
color: var(--bgl-pink-90);
|
|
991
1382
|
}
|
|
992
1383
|
|
|
993
1384
|
.txt-primary-100,
|
|
994
|
-
.txtprimary-100,
|
|
1385
|
+
.txtprimary-100,
|
|
1386
|
+
.textprimary-100,
|
|
1387
|
+
.text-primary-100 {
|
|
995
1388
|
color: var(--bgl-primary-100);
|
|
996
1389
|
}
|
|
997
1390
|
|
|
998
1391
|
.txt-blue-100,
|
|
999
|
-
.txtblue-100,
|
|
1392
|
+
.txtblue-100,
|
|
1393
|
+
.textblue-100,
|
|
1394
|
+
.text-blue-100 {
|
|
1000
1395
|
color: var(--bgl-blue-100);
|
|
1001
1396
|
}
|
|
1002
1397
|
|
|
1003
1398
|
.txt-green-100,
|
|
1004
|
-
.txtgreen-100,
|
|
1399
|
+
.txtgreen-100,
|
|
1400
|
+
.textgreen-100,
|
|
1401
|
+
.text-green-100 {
|
|
1005
1402
|
color: var(--bgl-green-100);
|
|
1006
1403
|
}
|
|
1007
1404
|
|
|
1008
1405
|
.txt-red-100,
|
|
1009
|
-
.txtred-100,
|
|
1406
|
+
.txtred-100,
|
|
1407
|
+
.textred-100,
|
|
1408
|
+
.text-red-100 {
|
|
1010
1409
|
color: var(--bgl-red-100);
|
|
1011
1410
|
}
|
|
1012
1411
|
|
|
1013
1412
|
.txt-yellow-100,
|
|
1014
|
-
.txtyellow-100,
|
|
1413
|
+
.txtyellow-100,
|
|
1414
|
+
.textyellow-100,
|
|
1415
|
+
.text-yellow-100 {
|
|
1015
1416
|
color: var(--bgl-yellow-100);
|
|
1016
1417
|
}
|
|
1017
1418
|
|
|
1018
1419
|
.txt-purple-100,
|
|
1019
|
-
.txtpurple-100,
|
|
1420
|
+
.txtpurple-100,
|
|
1421
|
+
.textpurple-100,
|
|
1422
|
+
.text-purple-100 {
|
|
1020
1423
|
color: var(--bgl-purple-100);
|
|
1021
1424
|
}
|
|
1022
1425
|
|
|
1023
1426
|
.txt-brown-100,
|
|
1024
|
-
.txtbrown-100,
|
|
1427
|
+
.txtbrown-100,
|
|
1428
|
+
.textbrown-100,
|
|
1429
|
+
.text-brown-100 {
|
|
1025
1430
|
color: var(--bgl-brown-100);
|
|
1026
1431
|
}
|
|
1027
1432
|
|
|
1028
1433
|
.txt-orange-100,
|
|
1029
|
-
.txtorange-100,
|
|
1434
|
+
.txtorange-100,
|
|
1435
|
+
.textorange-100,
|
|
1436
|
+
.text-orange-100 {
|
|
1030
1437
|
color: var(--bgl-orange-100);
|
|
1031
1438
|
}
|
|
1032
1439
|
|
|
1033
1440
|
.txt-turquoise-100,
|
|
1034
|
-
.txtturquoise-100,
|
|
1441
|
+
.txtturquoise-100,
|
|
1442
|
+
.textturquoise-100,
|
|
1443
|
+
.text-turquoise-100 {
|
|
1035
1444
|
color: var(--bgl-turquoise-100);
|
|
1036
1445
|
}
|
|
1037
1446
|
|
|
1038
1447
|
.txt-gray-100,
|
|
1039
|
-
.txtgray-100,
|
|
1448
|
+
.txtgray-100,
|
|
1449
|
+
.textgray-100,
|
|
1450
|
+
.text-gray-100 {
|
|
1040
1451
|
color: var(--bgl-gray-100);
|
|
1041
1452
|
}
|
|
1042
1453
|
|
|
1043
1454
|
.txt-black-100,
|
|
1044
|
-
.txtblack-100,
|
|
1455
|
+
.txtblack-100,
|
|
1456
|
+
.textblack-100,
|
|
1457
|
+
.text-black-100 {
|
|
1045
1458
|
color: var(--bgl-black-100);
|
|
1046
1459
|
}
|
|
1047
1460
|
|
|
1048
1461
|
.txt-pink-100,
|
|
1049
|
-
.txtpink-100,
|
|
1462
|
+
.txtpink-100,
|
|
1463
|
+
.textpink-100,
|
|
1464
|
+
.text-pink-100 {
|
|
1050
1465
|
color: var(--bgl-pink-100);
|
|
1051
1466
|
}
|
|
1052
1467
|
|
|
1053
1468
|
.txt-primary-110,
|
|
1054
|
-
.txtprimary-110,
|
|
1469
|
+
.txtprimary-110,
|
|
1470
|
+
.textprimary-110,
|
|
1471
|
+
.text-primary-110 {
|
|
1055
1472
|
color: var(--bgl-primary-110);
|
|
1056
1473
|
}
|
|
1057
1474
|
|
|
1058
1475
|
.txt-blue-110,
|
|
1059
|
-
.txtblue-110,
|
|
1476
|
+
.txtblue-110,
|
|
1477
|
+
.textblue-110,
|
|
1478
|
+
.text-blue-110 {
|
|
1060
1479
|
color: var(--bgl-blue-110);
|
|
1061
1480
|
}
|
|
1062
1481
|
|
|
1063
1482
|
.txt-green-110,
|
|
1064
|
-
.txtgreen-110,
|
|
1483
|
+
.txtgreen-110,
|
|
1484
|
+
.textgreen-110,
|
|
1485
|
+
.text-green-110 {
|
|
1065
1486
|
color: var(--bgl-green-110);
|
|
1066
1487
|
}
|
|
1067
1488
|
|
|
1068
1489
|
.txt-red-110,
|
|
1069
|
-
.txtred-110,
|
|
1490
|
+
.txtred-110,
|
|
1491
|
+
.textred-110,
|
|
1492
|
+
.text-red-110 {
|
|
1070
1493
|
color: var(--bgl-red-110);
|
|
1071
1494
|
}
|
|
1072
1495
|
|
|
1073
1496
|
.txt-yellow-110,
|
|
1074
|
-
.txtyellow-110,
|
|
1497
|
+
.txtyellow-110,
|
|
1498
|
+
.textyellow-110,
|
|
1499
|
+
.text-yellow-110 {
|
|
1075
1500
|
color: var(--bgl-yellow-110);
|
|
1076
1501
|
}
|
|
1077
1502
|
|
|
1078
1503
|
.txt-purple-110,
|
|
1079
|
-
.txtpurple-110,
|
|
1504
|
+
.txtpurple-110,
|
|
1505
|
+
.textpurple-110,
|
|
1506
|
+
.text-purple-110 {
|
|
1080
1507
|
color: var(--bgl-purple-110);
|
|
1081
1508
|
}
|
|
1082
1509
|
|
|
1083
1510
|
.txt-brown-110,
|
|
1084
|
-
.txtbrown-110,
|
|
1511
|
+
.txtbrown-110,
|
|
1512
|
+
.textbrown-110,
|
|
1513
|
+
.text-brown-110 {
|
|
1085
1514
|
color: var(--bgl-brown-110);
|
|
1086
1515
|
}
|
|
1087
1516
|
|
|
1088
1517
|
.txt-orange-110,
|
|
1089
|
-
.txtorange-110,
|
|
1518
|
+
.txtorange-110,
|
|
1519
|
+
.textorange-110,
|
|
1520
|
+
.text-orange-110 {
|
|
1090
1521
|
color: var(--bgl-orange-110);
|
|
1091
1522
|
}
|
|
1092
1523
|
|
|
1093
1524
|
.txt-turquoise-110,
|
|
1094
|
-
.txtturquoise-110,
|
|
1525
|
+
.txtturquoise-110,
|
|
1526
|
+
.textturquoise-110,
|
|
1527
|
+
.text-turquoise-110 {
|
|
1095
1528
|
color: var(--bgl-turquoise-110);
|
|
1096
1529
|
}
|
|
1097
1530
|
|
|
1098
1531
|
.txt-gray-110,
|
|
1099
|
-
.txtgray-110,
|
|
1532
|
+
.txtgray-110,
|
|
1533
|
+
.textgray-110,
|
|
1534
|
+
.text-gray-110 {
|
|
1100
1535
|
color: var(--bgl-gray-110);
|
|
1101
1536
|
}
|
|
1102
1537
|
|
|
1103
1538
|
.txt-black-110,
|
|
1104
|
-
.txtblack-110,
|
|
1539
|
+
.txtblack-110,
|
|
1540
|
+
.textblack-110,
|
|
1541
|
+
.text-black-110 {
|
|
1105
1542
|
color: var(--bgl-black-110);
|
|
1106
1543
|
}
|
|
1107
1544
|
|
|
1108
1545
|
.txt-pink-110,
|
|
1109
|
-
.txtpink-110,
|
|
1546
|
+
.txtpink-110,
|
|
1547
|
+
.textpink-110,
|
|
1548
|
+
.text-pink-110 {
|
|
1110
1549
|
color: var(--bgl-pink-110);
|
|
1111
1550
|
}
|
|
1112
1551
|
|
|
1113
1552
|
.txt-primary-120,
|
|
1114
|
-
.txtprimary-120,
|
|
1553
|
+
.txtprimary-120,
|
|
1554
|
+
.textprimary-120,
|
|
1555
|
+
.text-primary-120 {
|
|
1115
1556
|
color: var(--bgl-primary-120);
|
|
1116
1557
|
}
|
|
1117
1558
|
|
|
1118
1559
|
.txt-blue-120,
|
|
1119
|
-
.txtblue-120,
|
|
1560
|
+
.txtblue-120,
|
|
1561
|
+
.textblue-120,
|
|
1562
|
+
.text-blue-120 {
|
|
1120
1563
|
color: var(--bgl-blue-120);
|
|
1121
1564
|
}
|
|
1122
1565
|
|
|
1123
1566
|
.txt-green-120,
|
|
1124
|
-
.txtgreen-120,
|
|
1567
|
+
.txtgreen-120,
|
|
1568
|
+
.textgreen-120,
|
|
1569
|
+
.text-green-120 {
|
|
1125
1570
|
color: var(--bgl-green-120);
|
|
1126
1571
|
}
|
|
1127
1572
|
|
|
1128
1573
|
.txt-red-120,
|
|
1129
|
-
.txtred-120,
|
|
1574
|
+
.txtred-120,
|
|
1575
|
+
.textred-120,
|
|
1576
|
+
.text-red-120 {
|
|
1130
1577
|
color: var(--bgl-red-120);
|
|
1131
1578
|
}
|
|
1132
1579
|
|
|
1133
1580
|
.txt-yellow-120,
|
|
1134
|
-
.txtyellow-120,
|
|
1581
|
+
.txtyellow-120,
|
|
1582
|
+
.textyellow-120,
|
|
1583
|
+
.text-yellow-120 {
|
|
1135
1584
|
color: var(--bgl-yellow-120);
|
|
1136
1585
|
}
|
|
1137
1586
|
|
|
1138
1587
|
.txt-purple-120,
|
|
1139
|
-
.txtpurple-120,
|
|
1588
|
+
.txtpurple-120,
|
|
1589
|
+
.textpurple-120,
|
|
1590
|
+
.text-purple-120 {
|
|
1140
1591
|
color: var(--bgl-purple-120);
|
|
1141
1592
|
}
|
|
1142
1593
|
|
|
1143
1594
|
.txt-brown-120,
|
|
1144
|
-
.txtbrown-120,
|
|
1595
|
+
.txtbrown-120,
|
|
1596
|
+
.textbrown-120,
|
|
1597
|
+
.text-brown-120 {
|
|
1145
1598
|
color: var(--bgl-brown-120);
|
|
1146
1599
|
}
|
|
1147
1600
|
|
|
1148
1601
|
.txt-orange-120,
|
|
1149
|
-
.txtorange-120,
|
|
1602
|
+
.txtorange-120,
|
|
1603
|
+
.textorange-120,
|
|
1604
|
+
.text-orange-120 {
|
|
1150
1605
|
color: var(--bgl-orange-120);
|
|
1151
1606
|
}
|
|
1152
1607
|
|
|
1153
1608
|
.txt-turquoise-120,
|
|
1154
|
-
.txtturquoise-120,
|
|
1609
|
+
.txtturquoise-120,
|
|
1610
|
+
.textturquoise-120,
|
|
1611
|
+
.text-turquoise-120 {
|
|
1155
1612
|
color: var(--bgl-turquoise-120);
|
|
1156
1613
|
}
|
|
1157
1614
|
|
|
1158
1615
|
.txt-gray-120,
|
|
1159
|
-
.txtgray-120,
|
|
1616
|
+
.txtgray-120,
|
|
1617
|
+
.textgray-120,
|
|
1618
|
+
.text-gray-120 {
|
|
1160
1619
|
color: var(--bgl-gray-120);
|
|
1161
1620
|
}
|
|
1162
1621
|
|
|
1163
1622
|
.txt-black-120,
|
|
1164
|
-
.txtblack-120,
|
|
1623
|
+
.txtblack-120,
|
|
1624
|
+
.textblack-120,
|
|
1625
|
+
.text-black-120 {
|
|
1165
1626
|
color: var(--bgl-black-120);
|
|
1166
1627
|
}
|
|
1167
1628
|
|
|
1168
1629
|
.txt-pink-120,
|
|
1169
|
-
.txtpink-120,
|
|
1630
|
+
.txtpink-120,
|
|
1631
|
+
.textpink-120,
|
|
1632
|
+
.text-pink-120 {
|
|
1170
1633
|
color: var(--bgl-pink-120);
|
|
1171
1634
|
}
|
|
1172
1635
|
|
|
1173
1636
|
.txt-primary-130,
|
|
1174
|
-
.txtprimary-130,
|
|
1637
|
+
.txtprimary-130,
|
|
1638
|
+
.textprimary-130,
|
|
1639
|
+
.text-primary-130 {
|
|
1175
1640
|
color: var(--bgl-primary-130);
|
|
1176
1641
|
}
|
|
1177
1642
|
|
|
1178
1643
|
.txt-blue-130,
|
|
1179
|
-
.txtblue-130,
|
|
1644
|
+
.txtblue-130,
|
|
1645
|
+
.textblue-130,
|
|
1646
|
+
.text-blue-130 {
|
|
1180
1647
|
color: var(--bgl-blue-130);
|
|
1181
1648
|
}
|
|
1182
1649
|
|
|
1183
1650
|
.txt-green-130,
|
|
1184
|
-
.txtgreen-130,
|
|
1651
|
+
.txtgreen-130,
|
|
1652
|
+
.textgreen-130,
|
|
1653
|
+
.text-green-130 {
|
|
1185
1654
|
color: var(--bgl-green-130);
|
|
1186
1655
|
}
|
|
1187
1656
|
|
|
1188
1657
|
.txt-red-130,
|
|
1189
|
-
.txtred-130,
|
|
1658
|
+
.txtred-130,
|
|
1659
|
+
.textred-130,
|
|
1660
|
+
.text-red-130 {
|
|
1190
1661
|
color: var(--bgl-red-130);
|
|
1191
1662
|
}
|
|
1192
1663
|
|
|
1193
1664
|
.txt-yellow-130,
|
|
1194
|
-
.txtyellow-130,
|
|
1665
|
+
.txtyellow-130,
|
|
1666
|
+
.textyellow-130,
|
|
1667
|
+
.text-yellow-130 {
|
|
1195
1668
|
color: var(--bgl-yellow-130);
|
|
1196
1669
|
}
|
|
1197
1670
|
|
|
1198
1671
|
.txt-purple-130,
|
|
1199
|
-
.txtpurple-130,
|
|
1672
|
+
.txtpurple-130,
|
|
1673
|
+
.textpurple-130,
|
|
1674
|
+
.text-purple-130 {
|
|
1200
1675
|
color: var(--bgl-purple-130);
|
|
1201
1676
|
}
|
|
1202
1677
|
|
|
1203
1678
|
.txt-brown-130,
|
|
1204
|
-
.txtbrown-130,
|
|
1679
|
+
.txtbrown-130,
|
|
1680
|
+
.textbrown-130,
|
|
1681
|
+
.text-brown-130 {
|
|
1205
1682
|
color: var(--bgl-brown-130);
|
|
1206
1683
|
}
|
|
1207
1684
|
|
|
1208
1685
|
.txt-orange-130,
|
|
1209
|
-
.txtorange-130,
|
|
1686
|
+
.txtorange-130,
|
|
1687
|
+
.textorange-130,
|
|
1688
|
+
.text-orange-130 {
|
|
1210
1689
|
color: var(--bgl-orange-130);
|
|
1211
1690
|
}
|
|
1212
1691
|
|
|
1213
1692
|
.txt-turquoise-130,
|
|
1214
|
-
.txtturquoise-130,
|
|
1693
|
+
.txtturquoise-130,
|
|
1694
|
+
.textturquoise-130,
|
|
1695
|
+
.text-turquoise-130 {
|
|
1215
1696
|
color: var(--bgl-turquoise-130);
|
|
1216
1697
|
}
|
|
1217
1698
|
|
|
1218
1699
|
.txt-gray-130,
|
|
1219
|
-
.txtgray-130,
|
|
1700
|
+
.txtgray-130,
|
|
1701
|
+
.textgray-130,
|
|
1702
|
+
.text-gray-130 {
|
|
1220
1703
|
color: var(--bgl-gray-130);
|
|
1221
1704
|
}
|
|
1222
1705
|
|
|
1223
1706
|
.txt-black-130,
|
|
1224
|
-
.txtblack-130,
|
|
1707
|
+
.txtblack-130,
|
|
1708
|
+
.textblack-130,
|
|
1709
|
+
.text-black-130 {
|
|
1225
1710
|
color: var(--bgl-black-130);
|
|
1226
1711
|
}
|
|
1227
1712
|
|
|
1228
1713
|
.txt-pink-130,
|
|
1229
|
-
.txtpink-130,
|
|
1714
|
+
.txtpink-130,
|
|
1715
|
+
.textpink-130,
|
|
1716
|
+
.text-pink-130 {
|
|
1230
1717
|
color: var(--bgl-pink-130);
|
|
1231
1718
|
}
|
|
1232
1719
|
|
|
1233
1720
|
.font-thin,
|
|
1234
|
-
.txt-thin,
|
|
1721
|
+
.txt-thin,
|
|
1722
|
+
.text-thin {
|
|
1235
1723
|
font-weight: 100;
|
|
1236
1724
|
}
|
|
1237
1725
|
|
|
1238
1726
|
.extra-light,
|
|
1239
1727
|
.font-extra-light,
|
|
1240
|
-
.txt-extra-light,
|
|
1728
|
+
.txt-extra-light,
|
|
1729
|
+
.text-extra-light,
|
|
1241
1730
|
.font-ultra-light,
|
|
1242
|
-
.txt-ultra-light,
|
|
1731
|
+
.txt-ultra-light,
|
|
1732
|
+
.text-ultra-light {
|
|
1243
1733
|
font-weight: 200;
|
|
1244
1734
|
}
|
|
1245
1735
|
|
|
1246
1736
|
.light,
|
|
1247
1737
|
.txt-light,
|
|
1248
|
-
.font-light,
|
|
1738
|
+
.font-light,
|
|
1739
|
+
.text-light {
|
|
1249
1740
|
font-weight: 300;
|
|
1250
1741
|
}
|
|
1251
1742
|
|
|
1252
1743
|
.regular,
|
|
1253
1744
|
.txt-regular,
|
|
1254
|
-
.font-regular,
|
|
1745
|
+
.font-regular,
|
|
1746
|
+
.text-regular {
|
|
1255
1747
|
font-weight: 400;
|
|
1256
1748
|
}
|
|
1257
1749
|
|
|
1258
1750
|
.medium,
|
|
1259
1751
|
.txt-medium,
|
|
1260
|
-
.font-medium,
|
|
1752
|
+
.font-medium,
|
|
1753
|
+
.text-medium {
|
|
1261
1754
|
font-weight: 500;
|
|
1262
1755
|
}
|
|
1263
1756
|
|
|
1264
1757
|
.semi,
|
|
1265
1758
|
.semibold,
|
|
1266
|
-
.txt-semi,
|
|
1759
|
+
.txt-semi,
|
|
1760
|
+
.text-semi,
|
|
1267
1761
|
.txt-semibold,
|
|
1268
1762
|
.font-semi,
|
|
1269
|
-
.font-semibold,
|
|
1763
|
+
.font-semibold,
|
|
1764
|
+
.text-semibold {
|
|
1270
1765
|
font-weight: 600;
|
|
1271
1766
|
}
|
|
1272
1767
|
|
|
1273
1768
|
.bold,
|
|
1274
1769
|
.txt-bold,
|
|
1275
|
-
.font-bold,
|
|
1770
|
+
.font-bold,
|
|
1771
|
+
.text-bold {
|
|
1276
1772
|
font-weight: 700;
|
|
1277
1773
|
}
|
|
1278
1774
|
|
|
1279
1775
|
.extra-bold,
|
|
1280
1776
|
.font-extra-bold,
|
|
1281
|
-
.txt-extra-bold,
|
|
1777
|
+
.txt-extra-bold,
|
|
1778
|
+
.text-extra-bold,
|
|
1282
1779
|
.font-ultra-bold,
|
|
1283
|
-
.txt-ultra-bold,
|
|
1780
|
+
.txt-ultra-bold,
|
|
1781
|
+
.text-ultra-bold {
|
|
1284
1782
|
font-weight: 800;
|
|
1285
1783
|
}
|
|
1286
1784
|
|
|
@@ -1484,23 +1982,30 @@
|
|
|
1484
1982
|
text-wrap: pretty;
|
|
1485
1983
|
}
|
|
1486
1984
|
|
|
1487
|
-
.white-space,
|
|
1985
|
+
.white-space,
|
|
1986
|
+
.white-space-nowrap,
|
|
1987
|
+
.whitespace,
|
|
1988
|
+
.whitespace-nowrap {
|
|
1488
1989
|
white-space: nowrap;
|
|
1489
1990
|
}
|
|
1490
1991
|
|
|
1491
|
-
.white-space-break-spaces,
|
|
1992
|
+
.white-space-break-spaces,
|
|
1993
|
+
.whitespace-break-spaces {
|
|
1492
1994
|
white-space: break-spaces;
|
|
1493
1995
|
}
|
|
1494
1996
|
|
|
1495
|
-
.white-space-pre,
|
|
1997
|
+
.white-space-pre,
|
|
1998
|
+
.whitespace-pre {
|
|
1496
1999
|
white-space: pre;
|
|
1497
2000
|
}
|
|
1498
2001
|
|
|
1499
|
-
.white-space-pre-line,
|
|
2002
|
+
.white-space-pre-line,
|
|
2003
|
+
.whitespace-pre-line {
|
|
1500
2004
|
white-space: pre-line;
|
|
1501
2005
|
}
|
|
1502
2006
|
|
|
1503
|
-
.white-space-pre-wrap,
|
|
2007
|
+
.white-space-pre-wrap,
|
|
2008
|
+
.whitespace-pre-wrap {
|
|
1504
2009
|
white-space: pre-wrap;
|
|
1505
2010
|
}
|
|
1506
2011
|
|
|
@@ -1520,12 +2025,33 @@
|
|
|
1520
2025
|
font-family: monospace !important;
|
|
1521
2026
|
}
|
|
1522
2027
|
|
|
1523
|
-
.line-through,
|
|
2028
|
+
.line-through,
|
|
2029
|
+
.decoration-line-through,
|
|
2030
|
+
.strike-through {
|
|
1524
2031
|
text-decoration: line-through !important;
|
|
1525
2032
|
}
|
|
1526
2033
|
|
|
2034
|
+
[dir="rtl"] .ltrRtlDir,
|
|
2035
|
+
[dir="rtl"] .ltr-rtl-dir,
|
|
2036
|
+
[dir="rtl"] .ltr-rtl,
|
|
2037
|
+
[dir="rtl"] .rtl-ltr {
|
|
2038
|
+
direction: ltr !important;
|
|
2039
|
+
text-align: right !important;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
1527
2042
|
@media screen and (max-width: 910px) {
|
|
1528
|
-
|
|
2043
|
+
|
|
2044
|
+
[dir="rtl"] .m_ltrRtlDir,
|
|
2045
|
+
[dir="rtl"] .m_ltr-rtl-dir,
|
|
2046
|
+
[dir="rtl"] .m_ltr-ltr,
|
|
2047
|
+
[dir="rtl"] .m_rtl-ltr {
|
|
2048
|
+
direction: ltr !important;
|
|
2049
|
+
text-align: right !important;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
.m_line-through,
|
|
2053
|
+
.m_decoration-line-through,
|
|
2054
|
+
.m_strike-through {
|
|
1529
2055
|
text-decoration: line-through !important;
|
|
1530
2056
|
}
|
|
1531
2057
|
|
|
@@ -1552,386 +2078,535 @@
|
|
|
1552
2078
|
font-size: 12px;
|
|
1553
2079
|
}
|
|
1554
2080
|
|
|
1555
|
-
.m_txt-center,
|
|
2081
|
+
.m_txt-center,
|
|
2082
|
+
.m_text-center {
|
|
1556
2083
|
text-align: center;
|
|
1557
2084
|
}
|
|
1558
2085
|
|
|
1559
|
-
.m_txt-start,
|
|
2086
|
+
.m_txt-start,
|
|
2087
|
+
.m_text-start {
|
|
1560
2088
|
text-align: start;
|
|
1561
2089
|
}
|
|
1562
2090
|
|
|
1563
|
-
.m_txt-end,
|
|
2091
|
+
.m_txt-end,
|
|
2092
|
+
.m_text-end {
|
|
1564
2093
|
text-align: end;
|
|
1565
2094
|
}
|
|
1566
2095
|
|
|
1567
|
-
.m_txt-left,
|
|
2096
|
+
.m_txt-left,
|
|
2097
|
+
.m_text-left {
|
|
1568
2098
|
text-align: left;
|
|
1569
2099
|
}
|
|
1570
2100
|
|
|
1571
|
-
.m_txt-right,
|
|
2101
|
+
.m_txt-right,
|
|
2102
|
+
.m_text-right {
|
|
1572
2103
|
text-align: right;
|
|
1573
2104
|
}
|
|
1574
2105
|
|
|
1575
|
-
.m_txt-justify,
|
|
2106
|
+
.m_txt-justify,
|
|
2107
|
+
.m_text-justify {
|
|
1576
2108
|
text-align: justify;
|
|
1577
2109
|
}
|
|
1578
2110
|
|
|
1579
|
-
.m_txt-small,
|
|
2111
|
+
.m_txt-small,
|
|
2112
|
+
.m_text-small {
|
|
1580
2113
|
font-size: 12px;
|
|
1581
2114
|
}
|
|
1582
2115
|
|
|
1583
2116
|
.m_txt20,
|
|
1584
|
-
.m_txt-20,
|
|
2117
|
+
.m_txt-20,
|
|
2118
|
+
.m_text-20,
|
|
2119
|
+
.m_text20 {
|
|
1585
2120
|
font-size: 20px;
|
|
1586
2121
|
}
|
|
1587
2122
|
|
|
1588
2123
|
.m_txt24,
|
|
1589
|
-
.m_txt-24,
|
|
2124
|
+
.m_txt-24,
|
|
2125
|
+
.m_text-24,
|
|
2126
|
+
.m_text24 {
|
|
1590
2127
|
font-size: 24px;
|
|
1591
2128
|
}
|
|
1592
2129
|
|
|
1593
2130
|
.m_txt28,
|
|
1594
|
-
.m_txt-28,
|
|
2131
|
+
.m_txt-28,
|
|
2132
|
+
.m_text-28,
|
|
2133
|
+
.m_text28 {
|
|
1595
2134
|
font-size: 28px;
|
|
1596
2135
|
}
|
|
1597
2136
|
|
|
1598
2137
|
.m_txt30,
|
|
1599
|
-
.m_txt-30,
|
|
2138
|
+
.m_txt-30,
|
|
2139
|
+
.m_text-30,
|
|
2140
|
+
.m_text30 {
|
|
1600
2141
|
font-size: 30px;
|
|
1601
2142
|
}
|
|
1602
2143
|
|
|
1603
2144
|
.m_txt32,
|
|
1604
|
-
.m_txt-32,
|
|
2145
|
+
.m_txt-32,
|
|
2146
|
+
.m_text-32,
|
|
2147
|
+
.m_text32 {
|
|
1605
2148
|
font-size: 32px;
|
|
1606
2149
|
}
|
|
1607
2150
|
|
|
1608
2151
|
.m_txt36,
|
|
1609
|
-
.m_txt-36,
|
|
2152
|
+
.m_txt-36,
|
|
2153
|
+
.m_text-36,
|
|
2154
|
+
.m_text36 {
|
|
1610
2155
|
font-size: 36px;
|
|
1611
2156
|
}
|
|
1612
2157
|
|
|
1613
2158
|
.m_txt40,
|
|
1614
|
-
.m_txt-40,
|
|
2159
|
+
.m_txt-40,
|
|
2160
|
+
.m_text-40,
|
|
2161
|
+
.m_text40 {
|
|
1615
2162
|
font-size: 40px;
|
|
1616
2163
|
}
|
|
1617
2164
|
|
|
1618
2165
|
.m_txt44,
|
|
1619
|
-
.m_txt-44,
|
|
2166
|
+
.m_txt-44,
|
|
2167
|
+
.m_text-44,
|
|
2168
|
+
.m_text44 {
|
|
1620
2169
|
font-size: 44px;
|
|
1621
2170
|
}
|
|
1622
2171
|
|
|
1623
2172
|
.m_txt48,
|
|
1624
|
-
.m_txt-48,
|
|
2173
|
+
.m_txt-48,
|
|
2174
|
+
.m_text-48,
|
|
2175
|
+
.m_text48 {
|
|
1625
2176
|
font-size: 48px;
|
|
1626
2177
|
}
|
|
1627
2178
|
|
|
1628
2179
|
.m_txt50,
|
|
1629
|
-
.m_txt-50,
|
|
2180
|
+
.m_txt-50,
|
|
2181
|
+
.m_text-50,
|
|
2182
|
+
.m_text50 {
|
|
1630
2183
|
font-size: 50px;
|
|
1631
2184
|
}
|
|
1632
2185
|
|
|
1633
2186
|
.m_txt52,
|
|
1634
|
-
.m_txt-52,
|
|
2187
|
+
.m_txt-52,
|
|
2188
|
+
.m_text-52,
|
|
2189
|
+
.m_text52 {
|
|
1635
2190
|
font-size: 52px;
|
|
1636
2191
|
}
|
|
1637
2192
|
|
|
1638
2193
|
.m_txt56,
|
|
1639
|
-
.m_txt-56,
|
|
2194
|
+
.m_txt-56,
|
|
2195
|
+
.m_text-56,
|
|
2196
|
+
.m_text56 {
|
|
1640
2197
|
font-size: 56px;
|
|
1641
2198
|
}
|
|
1642
2199
|
|
|
1643
2200
|
.m_txt60,
|
|
1644
|
-
.m_txt-60,
|
|
2201
|
+
.m_txt-60,
|
|
2202
|
+
.m_text-60,
|
|
2203
|
+
.m_text60 {
|
|
1645
2204
|
font-size: 60px;
|
|
1646
2205
|
}
|
|
1647
2206
|
|
|
1648
2207
|
.m_txt64,
|
|
1649
|
-
.m_txt-64,
|
|
2208
|
+
.m_txt-64,
|
|
2209
|
+
.m_text-64,
|
|
2210
|
+
.m_text64 {
|
|
1650
2211
|
font-size: 64px;
|
|
1651
2212
|
}
|
|
1652
2213
|
|
|
1653
2214
|
.m_txt68,
|
|
1654
|
-
.m_txt-68,
|
|
2215
|
+
.m_txt-68,
|
|
2216
|
+
.m_text-68,
|
|
2217
|
+
.m_text68 {
|
|
1655
2218
|
font-size: 68px;
|
|
1656
2219
|
}
|
|
1657
2220
|
|
|
1658
2221
|
.m_txt70,
|
|
1659
|
-
.m_txt-70,
|
|
2222
|
+
.m_txt-70,
|
|
2223
|
+
.m_text-70,
|
|
2224
|
+
.m_text70 {
|
|
1660
2225
|
font-size: 70px;
|
|
1661
2226
|
}
|
|
1662
2227
|
|
|
1663
2228
|
.m_txt72,
|
|
1664
|
-
.m_txt-72,
|
|
2229
|
+
.m_txt-72,
|
|
2230
|
+
.m_text-72,
|
|
2231
|
+
.m_text72 {
|
|
1665
2232
|
font-size: 72px;
|
|
1666
2233
|
}
|
|
1667
2234
|
|
|
1668
2235
|
.m_txt80,
|
|
1669
|
-
.m_txt-80,
|
|
2236
|
+
.m_txt-80,
|
|
2237
|
+
.m_text-80,
|
|
2238
|
+
.m_text80 {
|
|
1670
2239
|
font-size: 80px;
|
|
1671
2240
|
}
|
|
1672
2241
|
|
|
1673
2242
|
.m_txt90,
|
|
1674
|
-
.m_txt-90,
|
|
2243
|
+
.m_txt-90,
|
|
2244
|
+
.m_text-90,
|
|
2245
|
+
.m_text90 {
|
|
1675
2246
|
font-size: 90px;
|
|
1676
2247
|
}
|
|
1677
2248
|
|
|
1678
2249
|
.m_txt100,
|
|
1679
|
-
.m_txt-100,
|
|
2250
|
+
.m_txt-100,
|
|
2251
|
+
.m_text-100,
|
|
2252
|
+
.m_text100 {
|
|
1680
2253
|
font-size: 100px;
|
|
1681
2254
|
}
|
|
1682
2255
|
|
|
1683
2256
|
.m_txt110,
|
|
1684
|
-
.m_txt-110,
|
|
2257
|
+
.m_txt-110,
|
|
2258
|
+
.m_text-110,
|
|
2259
|
+
.m_text110 {
|
|
1685
2260
|
font-size: 110px;
|
|
1686
2261
|
}
|
|
1687
2262
|
|
|
1688
2263
|
.m_txt120,
|
|
1689
|
-
.m_txt-120,
|
|
2264
|
+
.m_txt-120,
|
|
2265
|
+
.m_text-120,
|
|
2266
|
+
.m_text120 {
|
|
1690
2267
|
font-size: 120px;
|
|
1691
2268
|
}
|
|
1692
2269
|
|
|
1693
2270
|
.m_txt130,
|
|
1694
|
-
.m_txt-130,
|
|
2271
|
+
.m_txt-130,
|
|
2272
|
+
.m_text-130,
|
|
2273
|
+
.m_text130 {
|
|
1695
2274
|
font-size: 130px;
|
|
1696
2275
|
}
|
|
1697
2276
|
|
|
1698
2277
|
.m_txt140,
|
|
1699
|
-
.m_txt-140,
|
|
2278
|
+
.m_txt-140,
|
|
2279
|
+
.m_text-140,
|
|
2280
|
+
.m_text140 {
|
|
1700
2281
|
font-size: 140px;
|
|
1701
2282
|
}
|
|
1702
2283
|
|
|
1703
2284
|
.m_txt150,
|
|
1704
|
-
.m_txt-150,
|
|
2285
|
+
.m_txt-150,
|
|
2286
|
+
.m_text-150,
|
|
2287
|
+
.m_text150 {
|
|
1705
2288
|
font-size: 150px;
|
|
1706
2289
|
}
|
|
1707
2290
|
|
|
1708
2291
|
.m_txt19,
|
|
1709
|
-
.m_txt-19,
|
|
2292
|
+
.m_txt-19,
|
|
2293
|
+
.m_text-19,
|
|
2294
|
+
.m_text19 {
|
|
1710
2295
|
font-size: 19px;
|
|
1711
2296
|
}
|
|
1712
2297
|
|
|
1713
2298
|
.m_txt18,
|
|
1714
|
-
.m_txt-18,
|
|
2299
|
+
.m_txt-18,
|
|
2300
|
+
.m_text-18,
|
|
2301
|
+
.m_text18 {
|
|
1715
2302
|
font-size: 18px;
|
|
1716
2303
|
}
|
|
1717
2304
|
|
|
1718
2305
|
.m_txt17,
|
|
1719
|
-
.m_txt-17,
|
|
2306
|
+
.m_txt-17,
|
|
2307
|
+
.m_text-17,
|
|
2308
|
+
.m_text17 {
|
|
1720
2309
|
font-size: 17px;
|
|
1721
2310
|
}
|
|
1722
2311
|
|
|
1723
2312
|
.m_txt16,
|
|
1724
|
-
.m_txt-16,
|
|
2313
|
+
.m_txt-16,
|
|
2314
|
+
.m_text-16,
|
|
2315
|
+
.m_text16 {
|
|
1725
2316
|
font-size: 16px;
|
|
1726
2317
|
}
|
|
1727
2318
|
|
|
1728
2319
|
.m_txt15,
|
|
1729
|
-
.m_txt-15,
|
|
2320
|
+
.m_txt-15,
|
|
2321
|
+
.m_text-15,
|
|
2322
|
+
.m_text15 {
|
|
1730
2323
|
font-size: 15px;
|
|
1731
2324
|
}
|
|
1732
2325
|
|
|
1733
2326
|
.m_txt14,
|
|
1734
|
-
.m_txt-14,
|
|
2327
|
+
.m_txt-14,
|
|
2328
|
+
.m_text-14,
|
|
2329
|
+
.m_text14 {
|
|
1735
2330
|
font-size: 14px;
|
|
1736
2331
|
}
|
|
1737
2332
|
|
|
1738
2333
|
.m_txt13,
|
|
1739
|
-
.m_txt-13,
|
|
2334
|
+
.m_txt-13,
|
|
2335
|
+
.m_text-13,
|
|
2336
|
+
.m_text13 {
|
|
1740
2337
|
font-size: 13px;
|
|
1741
2338
|
}
|
|
1742
2339
|
|
|
1743
2340
|
.m_txt12,
|
|
1744
|
-
.m_txt-12,
|
|
2341
|
+
.m_txt-12,
|
|
2342
|
+
.m_text-12,
|
|
2343
|
+
.m_text12 {
|
|
1745
2344
|
font-size: 12px;
|
|
1746
2345
|
}
|
|
1747
2346
|
|
|
1748
2347
|
.m_txt11,
|
|
1749
|
-
.m_txt-11,
|
|
2348
|
+
.m_txt-11,
|
|
2349
|
+
.m_text-11,
|
|
2350
|
+
.m_text11 {
|
|
1750
2351
|
font-size: 11px;
|
|
1751
2352
|
}
|
|
1752
2353
|
|
|
1753
2354
|
.m_txt10,
|
|
1754
|
-
.m_txt-10,
|
|
2355
|
+
.m_txt-10,
|
|
2356
|
+
.m_text-10,
|
|
2357
|
+
.m_text10 {
|
|
1755
2358
|
font-size: 10px;
|
|
1756
2359
|
}
|
|
1757
2360
|
|
|
1758
2361
|
.m_txt9,
|
|
1759
|
-
.m_txt-9,
|
|
2362
|
+
.m_txt-9,
|
|
2363
|
+
.m_text-9,
|
|
2364
|
+
.m_text9 {
|
|
1760
2365
|
font-size: 9px;
|
|
1761
2366
|
}
|
|
1762
2367
|
|
|
1763
2368
|
.m_txt025,
|
|
1764
|
-
.m_txt-025,
|
|
2369
|
+
.m_txt-025,
|
|
2370
|
+
.m_text-025,
|
|
2371
|
+
.m_text025 {
|
|
1765
2372
|
font-size: 0.25rem;
|
|
1766
2373
|
}
|
|
1767
2374
|
|
|
1768
2375
|
.m_txt05,
|
|
1769
|
-
.m_txt-05,
|
|
2376
|
+
.m_txt-05,
|
|
2377
|
+
.m_text-05,
|
|
2378
|
+
.m_text05 {
|
|
1770
2379
|
font-size: 0.5rem;
|
|
1771
2380
|
}
|
|
1772
2381
|
|
|
1773
2382
|
.m_txt075,
|
|
1774
|
-
.m_txt-075,
|
|
2383
|
+
.m_txt-075,
|
|
2384
|
+
.m_text-075,
|
|
2385
|
+
.m_text075 {
|
|
1775
2386
|
font-size: 0.75rem;
|
|
1776
2387
|
}
|
|
1777
2388
|
|
|
1778
2389
|
.m_txt1rem,
|
|
1779
|
-
.m_txt-1rem,
|
|
2390
|
+
.m_txt-1rem,
|
|
2391
|
+
.m_text-1rem,
|
|
2392
|
+
.m_text1rem {
|
|
1780
2393
|
font-size: 1rem;
|
|
1781
2394
|
}
|
|
1782
2395
|
|
|
1783
2396
|
.m_txt1-25rem,
|
|
1784
|
-
.m_txt-1-25rem,
|
|
2397
|
+
.m_txt-1-25rem,
|
|
2398
|
+
.m_text-1-25rem,
|
|
2399
|
+
.m_text1-25rem {
|
|
1785
2400
|
font-size: 1.25rem;
|
|
1786
2401
|
}
|
|
1787
2402
|
|
|
1788
2403
|
.m_txt1-5rem,
|
|
1789
|
-
.m_txt-1-5rem,
|
|
2404
|
+
.m_txt-1-5rem,
|
|
2405
|
+
.m_text-1-5rem,
|
|
2406
|
+
.m_text1-5rem {
|
|
1790
2407
|
font-size: 1.5rem;
|
|
1791
2408
|
}
|
|
1792
2409
|
|
|
1793
2410
|
.m_txt1-75rem,
|
|
1794
|
-
.m_txt-1-75rem,
|
|
2411
|
+
.m_txt-1-75rem,
|
|
2412
|
+
.m_text-1-75rem,
|
|
2413
|
+
.m_text1-75rem {
|
|
1795
2414
|
font-size: 1.75rem;
|
|
1796
2415
|
}
|
|
1797
2416
|
|
|
1798
2417
|
.m_txt2rem,
|
|
1799
|
-
.m_txt-2rem,
|
|
2418
|
+
.m_txt-2rem,
|
|
2419
|
+
.m_text-2rem,
|
|
2420
|
+
.m_text2rem {
|
|
1800
2421
|
font-size: 2rem;
|
|
1801
2422
|
}
|
|
1802
2423
|
|
|
1803
2424
|
.m_txt2-25rem,
|
|
1804
|
-
.m_txt-2-25rem,
|
|
2425
|
+
.m_txt-2-25rem,
|
|
2426
|
+
.m_text-2-25rem,
|
|
2427
|
+
.m_text2-25rem {
|
|
1805
2428
|
font-size: 2.25rem;
|
|
1806
2429
|
}
|
|
1807
2430
|
|
|
1808
2431
|
.m_txt2-5rem,
|
|
1809
|
-
.m_txt-2-5rem,
|
|
2432
|
+
.m_txt-2-5rem,
|
|
2433
|
+
.m_text-2-5rem,
|
|
2434
|
+
.m_text2-5rem {
|
|
1810
2435
|
font-size: 2.5rem;
|
|
1811
2436
|
}
|
|
1812
2437
|
|
|
1813
2438
|
.m_txt2-75rem,
|
|
1814
|
-
.m_txt-2-75rem,
|
|
2439
|
+
.m_txt-2-75rem,
|
|
2440
|
+
.m_text-2-75rem,
|
|
2441
|
+
.m_text2-75rem {
|
|
1815
2442
|
font-size: 2.75rem;
|
|
1816
2443
|
}
|
|
1817
2444
|
|
|
1818
2445
|
.m_txt3rem,
|
|
1819
|
-
.m_txt-3rem,
|
|
2446
|
+
.m_txt-3rem,
|
|
2447
|
+
.m_text-3rem,
|
|
2448
|
+
.m_text3rem {
|
|
1820
2449
|
font-size: 3rem;
|
|
1821
2450
|
}
|
|
1822
2451
|
|
|
1823
2452
|
.m_txt3-25rem,
|
|
1824
|
-
.m_txt-3-25rem,
|
|
2453
|
+
.m_txt-3-25rem,
|
|
2454
|
+
.m_text-3-25rem,
|
|
2455
|
+
.m_text3-25rem {
|
|
1825
2456
|
font-size: 3.25rem;
|
|
1826
2457
|
}
|
|
1827
2458
|
|
|
1828
2459
|
.m_txt3-5rem,
|
|
1829
|
-
.m_txt-3-5rem,
|
|
2460
|
+
.m_txt-3-5rem,
|
|
2461
|
+
.m_text-3-5rem,
|
|
2462
|
+
.m_text3-5rem {
|
|
1830
2463
|
font-size: 3.5rem;
|
|
1831
2464
|
}
|
|
1832
2465
|
|
|
1833
2466
|
.m_txt3-75rem,
|
|
1834
|
-
.m_txt-3-75rem,
|
|
2467
|
+
.m_txt-3-75rem,
|
|
2468
|
+
.m_text-3-75rem,
|
|
2469
|
+
.m_text3-75rem {
|
|
1835
2470
|
font-size: 3.75rem;
|
|
1836
2471
|
}
|
|
1837
2472
|
|
|
1838
2473
|
.m_txt4rem,
|
|
1839
|
-
.m_txt-4rem,
|
|
2474
|
+
.m_txt-4rem,
|
|
2475
|
+
.m_text-4rem,
|
|
2476
|
+
.m_text4rem {
|
|
1840
2477
|
font-size: 4rem;
|
|
1841
2478
|
}
|
|
1842
2479
|
|
|
1843
2480
|
.m_txt4-25rem,
|
|
1844
|
-
.m_txt-4-25rem,
|
|
2481
|
+
.m_txt-4-25rem,
|
|
2482
|
+
.m_text-4-25rem,
|
|
2483
|
+
.m_text4-25rem {
|
|
1845
2484
|
font-size: 4.25rem;
|
|
1846
2485
|
}
|
|
1847
2486
|
|
|
1848
2487
|
.m_txt4-5rem,
|
|
1849
|
-
.m_txt-4-5rem,
|
|
2488
|
+
.m_txt-4-5rem,
|
|
2489
|
+
.m_text-4-5rem,
|
|
2490
|
+
.m_text4-5rem {
|
|
1850
2491
|
font-size: 4.5rem;
|
|
1851
2492
|
}
|
|
1852
2493
|
|
|
1853
2494
|
.m_txt4-75rem,
|
|
1854
|
-
.m_txt-4-75rem,
|
|
2495
|
+
.m_txt-4-75rem,
|
|
2496
|
+
.m_text-4-75rem,
|
|
2497
|
+
.m_text4-75rem {
|
|
1855
2498
|
font-size: 4.75rem;
|
|
1856
2499
|
}
|
|
1857
2500
|
|
|
1858
2501
|
.m_txt5rem,
|
|
1859
|
-
.m_txt-5rem,
|
|
2502
|
+
.m_txt-5rem,
|
|
2503
|
+
.m_text-5rem,
|
|
2504
|
+
.m_text5rem {
|
|
1860
2505
|
font-size: 5rem;
|
|
1861
2506
|
}
|
|
1862
2507
|
|
|
1863
2508
|
.m_txt5-25rem,
|
|
1864
|
-
.m_txt-5-25rem,
|
|
2509
|
+
.m_txt-5-25rem,
|
|
2510
|
+
.m_text-5-25rem,
|
|
2511
|
+
.m_text5-25rem {
|
|
1865
2512
|
font-size: 5.25rem;
|
|
1866
2513
|
}
|
|
1867
2514
|
|
|
1868
2515
|
.m_txt5-5rem,
|
|
1869
|
-
.m_txt-5-5rem,
|
|
2516
|
+
.m_txt-5-5rem,
|
|
2517
|
+
.m_text-5-5rem,
|
|
2518
|
+
.m_text5-5rem {
|
|
1870
2519
|
font-size: 5.5rem;
|
|
1871
2520
|
}
|
|
1872
2521
|
|
|
1873
2522
|
.m_txt5-75rem,
|
|
1874
|
-
.m_txt-5-75rem,
|
|
2523
|
+
.m_txt-5-75rem,
|
|
2524
|
+
.m_text-5-75rem,
|
|
2525
|
+
.m_text5-75rem {
|
|
1875
2526
|
font-size: 5.75rem;
|
|
1876
2527
|
}
|
|
1877
2528
|
|
|
1878
2529
|
.m_txt6rem,
|
|
1879
|
-
.m_txt-6rem,
|
|
2530
|
+
.m_txt-6rem,
|
|
2531
|
+
.m_text-6rem,
|
|
2532
|
+
.m_text6rem {
|
|
1880
2533
|
font-size: 6rem;
|
|
1881
2534
|
}
|
|
1882
2535
|
|
|
1883
2536
|
.m_txt6-25rem,
|
|
1884
|
-
.m_txt-6-25rem,
|
|
2537
|
+
.m_txt-6-25rem,
|
|
2538
|
+
.m_text-6-25rem,
|
|
2539
|
+
.m_text6-25rem {
|
|
1885
2540
|
font-size: 6.25rem;
|
|
1886
2541
|
}
|
|
1887
2542
|
|
|
1888
2543
|
.m_txt6-5rem,
|
|
1889
|
-
.m_txt-6-5rem,
|
|
2544
|
+
.m_txt-6-5rem,
|
|
2545
|
+
.m_text-6-5rem,
|
|
2546
|
+
.m_text6-5rem {
|
|
1890
2547
|
font-size: 6.5rem;
|
|
1891
2548
|
}
|
|
1892
2549
|
|
|
1893
2550
|
.m_txt6-75rem,
|
|
1894
|
-
.m_txt-6-75rem,
|
|
2551
|
+
.m_txt-6-75rem,
|
|
2552
|
+
.m_text-6-75rem,
|
|
2553
|
+
.m_text6-75rem {
|
|
1895
2554
|
font-size: 6.75rem;
|
|
1896
2555
|
}
|
|
1897
2556
|
|
|
1898
2557
|
.m_txt7rem,
|
|
1899
|
-
.m_txt-7rem,
|
|
2558
|
+
.m_txt-7rem,
|
|
2559
|
+
.m_text-7rem,
|
|
2560
|
+
.m_text7rem {
|
|
1900
2561
|
font-size: 7rem;
|
|
1901
2562
|
}
|
|
1902
2563
|
|
|
1903
2564
|
.m_txt7-25rem,
|
|
1904
|
-
.m_txt-7-25rem,
|
|
2565
|
+
.m_txt-7-25rem,
|
|
2566
|
+
.m_text-7-25rem,
|
|
2567
|
+
.m_text7-25rem {
|
|
1905
2568
|
font-size: 7.25rem;
|
|
1906
2569
|
}
|
|
1907
2570
|
|
|
1908
2571
|
.m_txt7-5rem,
|
|
1909
|
-
.m_txt-7-5rem,
|
|
2572
|
+
.m_txt-7-5rem,
|
|
2573
|
+
.m_text-7-5rem,
|
|
2574
|
+
.m_text7-5rem {
|
|
1910
2575
|
font-size: 7.5rem;
|
|
1911
2576
|
}
|
|
1912
2577
|
|
|
1913
2578
|
.m_txt7-75rem,
|
|
1914
|
-
.m_txt-7-75rem,
|
|
2579
|
+
.m_txt-7-75rem,
|
|
2580
|
+
.m_text-7-75rem,
|
|
2581
|
+
.m_text7-75rem {
|
|
1915
2582
|
font-size: 7.75rem;
|
|
1916
2583
|
}
|
|
1917
2584
|
|
|
1918
2585
|
.m_txt8rem,
|
|
1919
|
-
.m_txt-8rem,
|
|
2586
|
+
.m_txt-8rem,
|
|
2587
|
+
.m_text-8rem,
|
|
2588
|
+
.m_text8rem {
|
|
1920
2589
|
font-size: 8rem;
|
|
1921
2590
|
}
|
|
1922
2591
|
|
|
1923
2592
|
.m_txt8-25rem,
|
|
1924
|
-
.m_txt-8-25rem,
|
|
2593
|
+
.m_txt-8-25rem,
|
|
2594
|
+
.m_text-8-25rem,
|
|
2595
|
+
.m_text8-25rem {
|
|
1925
2596
|
font-size: 8.25rem;
|
|
1926
2597
|
}
|
|
1927
2598
|
|
|
1928
2599
|
.m_txt8-5rem,
|
|
1929
|
-
.m_txt-8-5rem,
|
|
2600
|
+
.m_txt-8-5rem,
|
|
2601
|
+
.m_text-8-5rem,
|
|
2602
|
+
.m_text8-5rem {
|
|
1930
2603
|
font-size: 8.5rem;
|
|
1931
2604
|
}
|
|
1932
2605
|
|
|
1933
2606
|
.m_txt8-75rem,
|
|
1934
|
-
.m_txt-8-75rem,
|
|
2607
|
+
.m_txt-8-75rem,
|
|
2608
|
+
.m_text-8-75rem,
|
|
2609
|
+
.m_text8-75rem {
|
|
1935
2610
|
font-size: 8.75rem;
|
|
1936
2611
|
}
|
|
1937
2612
|
|
|
@@ -1940,901 +2615,1250 @@
|
|
|
1940
2615
|
}
|
|
1941
2616
|
|
|
1942
2617
|
.m_txt-gray,
|
|
1943
|
-
.m_txtgray,
|
|
2618
|
+
.m_txtgray,
|
|
2619
|
+
.m_textgray,
|
|
2620
|
+
.m_text-gray {
|
|
1944
2621
|
color: var(--bgl-gray);
|
|
1945
2622
|
}
|
|
1946
2623
|
|
|
1947
2624
|
.m_txt-primary,
|
|
1948
|
-
.m_txtprimary,
|
|
2625
|
+
.m_txtprimary,
|
|
2626
|
+
.m_textprimary,
|
|
2627
|
+
.m_text-primary {
|
|
1949
2628
|
color: var(--bgl-primary);
|
|
1950
2629
|
}
|
|
1951
2630
|
|
|
1952
2631
|
.m_txt-black,
|
|
1953
|
-
.m_txtblack,
|
|
2632
|
+
.m_txtblack,
|
|
2633
|
+
.m_textblack,
|
|
2634
|
+
.m_text-black {
|
|
1954
2635
|
color: var(--bgl-black);
|
|
1955
2636
|
}
|
|
1956
2637
|
|
|
1957
2638
|
.m_txt-red,
|
|
1958
|
-
.m_txtred,
|
|
2639
|
+
.m_txtred,
|
|
2640
|
+
.m_textred,
|
|
2641
|
+
.m_text-red {
|
|
1959
2642
|
color: var(--bgl-red);
|
|
1960
2643
|
}
|
|
1961
2644
|
|
|
1962
2645
|
.m_txt-white,
|
|
1963
|
-
.m_txtwhite,
|
|
2646
|
+
.m_txtwhite,
|
|
2647
|
+
.m_textwhite,
|
|
2648
|
+
.m_text-white {
|
|
1964
2649
|
color: var(--bgl-white);
|
|
1965
2650
|
}
|
|
1966
2651
|
|
|
1967
2652
|
.m_txt-green,
|
|
1968
|
-
.m_txtgreen,
|
|
2653
|
+
.m_txtgreen,
|
|
2654
|
+
.m_textgreen,
|
|
2655
|
+
.m_text-green {
|
|
1969
2656
|
color: var(--bgl-green);
|
|
1970
2657
|
}
|
|
1971
2658
|
|
|
1972
2659
|
.m_txt-yellow,
|
|
1973
|
-
.m_txtyellow,
|
|
2660
|
+
.m_txtyellow,
|
|
2661
|
+
.m_textyellow,
|
|
2662
|
+
.m_text-yellow {
|
|
1974
2663
|
color: var(--bgl-yellow);
|
|
1975
2664
|
}
|
|
1976
2665
|
|
|
1977
2666
|
.m_txt-purple,
|
|
1978
|
-
.m_txtpurple,
|
|
2667
|
+
.m_txtpurple,
|
|
2668
|
+
.m_textpurple,
|
|
2669
|
+
.m_text-purple {
|
|
1979
2670
|
color: var(--bgl-purple);
|
|
1980
2671
|
}
|
|
1981
2672
|
|
|
1982
2673
|
.m_txt-brown,
|
|
1983
|
-
.m_txtbrown,
|
|
2674
|
+
.m_txtbrown,
|
|
2675
|
+
.m_textbrown,
|
|
2676
|
+
.m_text-brown {
|
|
1984
2677
|
color: var(--bgl-brown);
|
|
1985
2678
|
}
|
|
1986
2679
|
|
|
1987
2680
|
.m_txt-orange,
|
|
1988
|
-
.m_txtorange,
|
|
2681
|
+
.m_txtorange,
|
|
2682
|
+
.m_textorange,
|
|
2683
|
+
.m_text-orange {
|
|
1989
2684
|
color: var(--bgl-orange);
|
|
1990
2685
|
}
|
|
1991
2686
|
|
|
1992
2687
|
.m_txt-turquoise,
|
|
1993
|
-
.m_txtturquoise,
|
|
2688
|
+
.m_txtturquoise,
|
|
2689
|
+
.m_textturquoise,
|
|
2690
|
+
.m_text-turquoise {
|
|
1994
2691
|
color: var(--bgl-turquoise);
|
|
1995
2692
|
}
|
|
1996
2693
|
|
|
1997
2694
|
.m_txt-pink,
|
|
1998
|
-
.m_txtpink,
|
|
2695
|
+
.m_txtpink,
|
|
2696
|
+
.m_textpink,
|
|
2697
|
+
.m_text-pink {
|
|
1999
2698
|
color: var(--bgl-pink);
|
|
2000
2699
|
}
|
|
2001
2700
|
|
|
2002
2701
|
.m_txt-blue,
|
|
2003
|
-
.m_txtblue,
|
|
2702
|
+
.m_txtblue,
|
|
2703
|
+
.m_textblue,
|
|
2704
|
+
.m_text-blue {
|
|
2004
2705
|
color: var(--bgl-blue);
|
|
2005
2706
|
}
|
|
2006
2707
|
|
|
2007
2708
|
.m_txt-primary-10,
|
|
2008
|
-
.m_txtprimary-10,
|
|
2709
|
+
.m_txtprimary-10,
|
|
2710
|
+
.m_textprimary-10,
|
|
2711
|
+
.m_text-primary-10 {
|
|
2009
2712
|
color: var(--bgl-primary-10);
|
|
2010
2713
|
}
|
|
2011
2714
|
|
|
2012
2715
|
.m_txt-blue-10,
|
|
2013
|
-
.m_txtblue-10,
|
|
2716
|
+
.m_txtblue-10,
|
|
2717
|
+
.m_textblue-10,
|
|
2718
|
+
.m_text-blue-10 {
|
|
2014
2719
|
color: var(--bgl-blue-10);
|
|
2015
2720
|
}
|
|
2016
2721
|
|
|
2017
2722
|
.m_txt-green-10,
|
|
2018
|
-
.m_txtgreen-10,
|
|
2723
|
+
.m_txtgreen-10,
|
|
2724
|
+
.m_textgreen-10,
|
|
2725
|
+
.m_text-green-10 {
|
|
2019
2726
|
color: var(--bgl-green-10);
|
|
2020
2727
|
}
|
|
2021
2728
|
|
|
2022
2729
|
.m_txt-red-10,
|
|
2023
|
-
.m_txtred-10,
|
|
2730
|
+
.m_txtred-10,
|
|
2731
|
+
.m_textred-10,
|
|
2732
|
+
.m_text-red-10 {
|
|
2024
2733
|
color: var(--bgl-red-10);
|
|
2025
2734
|
}
|
|
2026
2735
|
|
|
2027
2736
|
.m_txt-yellow-10,
|
|
2028
|
-
.m_txtyellow-10,
|
|
2737
|
+
.m_txtyellow-10,
|
|
2738
|
+
.m_textyellow-10,
|
|
2739
|
+
.m_text-yellow-10 {
|
|
2029
2740
|
color: var(--bgl-yellow-10);
|
|
2030
2741
|
}
|
|
2031
2742
|
|
|
2032
2743
|
.m_txt-purple-10,
|
|
2033
|
-
.m_txtpurple-10,
|
|
2744
|
+
.m_txtpurple-10,
|
|
2745
|
+
.m_textpurple-10,
|
|
2746
|
+
.m_text-purple-10 {
|
|
2034
2747
|
color: var(--bgl-purple-10);
|
|
2035
2748
|
}
|
|
2036
2749
|
|
|
2037
2750
|
.m_txt-brown-10,
|
|
2038
|
-
.m_txtbrown-10,
|
|
2751
|
+
.m_txtbrown-10,
|
|
2752
|
+
.m_textbrown-10,
|
|
2753
|
+
.m_text-brown-10 {
|
|
2039
2754
|
color: var(--bgl-brown-10);
|
|
2040
2755
|
}
|
|
2041
2756
|
|
|
2042
2757
|
.m_txt-orange-10,
|
|
2043
|
-
.m_txtorange-10,
|
|
2758
|
+
.m_txtorange-10,
|
|
2759
|
+
.m_textorange-10,
|
|
2760
|
+
.m_text-orange-10 {
|
|
2044
2761
|
color: var(--bgl-orange-10);
|
|
2045
2762
|
}
|
|
2046
2763
|
|
|
2047
2764
|
.m_txt-turquoise-10,
|
|
2048
|
-
.m_txtturquoise-10,
|
|
2765
|
+
.m_txtturquoise-10,
|
|
2766
|
+
.m_textturquoise-10,
|
|
2767
|
+
.m_text-turquoise-10 {
|
|
2049
2768
|
color: var(--bgl-turquoise-10);
|
|
2050
2769
|
}
|
|
2051
2770
|
|
|
2052
2771
|
.m_txt-gray-10,
|
|
2053
|
-
.m_txtgray-10,
|
|
2772
|
+
.m_txtgray-10,
|
|
2773
|
+
.m_textgray-10,
|
|
2774
|
+
.m_text-gray-10 {
|
|
2054
2775
|
color: var(--bgl-gray-10);
|
|
2055
2776
|
}
|
|
2056
2777
|
|
|
2057
2778
|
.m_txt-black-10,
|
|
2058
|
-
.m_txtblack-10,
|
|
2779
|
+
.m_txtblack-10,
|
|
2780
|
+
.m_textblack-10,
|
|
2781
|
+
.m_text-black-10 {
|
|
2059
2782
|
color: var(--bgl-black-10);
|
|
2060
2783
|
}
|
|
2061
2784
|
|
|
2062
2785
|
.m_txt-pink-10,
|
|
2063
|
-
.m_txtpink-10,
|
|
2786
|
+
.m_txtpink-10,
|
|
2787
|
+
.m_textpink-10,
|
|
2788
|
+
.m_text-pink-10 {
|
|
2064
2789
|
color: var(--bgl-pink-10);
|
|
2065
2790
|
}
|
|
2066
2791
|
|
|
2067
2792
|
.m_txt-primary-20,
|
|
2068
|
-
.m_txtprimary-20,
|
|
2793
|
+
.m_txtprimary-20,
|
|
2794
|
+
.m_textprimary-20,
|
|
2795
|
+
.m_text-primary-20 {
|
|
2069
2796
|
color: var(--bgl-primary-20);
|
|
2070
2797
|
}
|
|
2071
2798
|
|
|
2072
2799
|
.m_txt-blue-20,
|
|
2073
|
-
.m_txtblue-20,
|
|
2800
|
+
.m_txtblue-20,
|
|
2801
|
+
.m_textblue-20,
|
|
2802
|
+
.m_text-blue-20 {
|
|
2074
2803
|
color: var(--bgl-blue-20);
|
|
2075
2804
|
}
|
|
2076
2805
|
|
|
2077
2806
|
.m_txt-green-20,
|
|
2078
|
-
.m_txtgreen-20,
|
|
2807
|
+
.m_txtgreen-20,
|
|
2808
|
+
.m_textgreen-20,
|
|
2809
|
+
.m_text-green-20 {
|
|
2079
2810
|
color: var(--bgl-green-20);
|
|
2080
2811
|
}
|
|
2081
2812
|
|
|
2082
2813
|
.m_txt-red-20,
|
|
2083
|
-
.m_txtred-20,
|
|
2814
|
+
.m_txtred-20,
|
|
2815
|
+
.m_textred-20,
|
|
2816
|
+
.m_text-red-20 {
|
|
2084
2817
|
color: var(--bgl-red-20);
|
|
2085
2818
|
}
|
|
2086
2819
|
|
|
2087
2820
|
.m_txt-yellow-20,
|
|
2088
|
-
.m_txtyellow-20,
|
|
2821
|
+
.m_txtyellow-20,
|
|
2822
|
+
.m_textyellow-20,
|
|
2823
|
+
.m_text-yellow-20 {
|
|
2089
2824
|
color: var(--bgl-yellow-20);
|
|
2090
2825
|
}
|
|
2091
2826
|
|
|
2092
2827
|
.m_txt-purple-20,
|
|
2093
|
-
.m_txtpurple-20,
|
|
2828
|
+
.m_txtpurple-20,
|
|
2829
|
+
.m_textpurple-20,
|
|
2830
|
+
.m_text-purple-20 {
|
|
2094
2831
|
color: var(--bgl-purple-20);
|
|
2095
2832
|
}
|
|
2096
2833
|
|
|
2097
2834
|
.m_txt-brown-20,
|
|
2098
|
-
.m_txtbrown-20,
|
|
2835
|
+
.m_txtbrown-20,
|
|
2836
|
+
.m_textbrown-20,
|
|
2837
|
+
.m_text-brown-20 {
|
|
2099
2838
|
color: var(--bgl-brown-20);
|
|
2100
2839
|
}
|
|
2101
2840
|
|
|
2102
2841
|
.m_txt-orange-20,
|
|
2103
|
-
.m_txtorange-20,
|
|
2842
|
+
.m_txtorange-20,
|
|
2843
|
+
.m_textorange-20,
|
|
2844
|
+
.m_text-orange-20 {
|
|
2104
2845
|
color: var(--bgl-orange-20);
|
|
2105
2846
|
}
|
|
2106
2847
|
|
|
2107
2848
|
.m_txt-turquoise-20,
|
|
2108
|
-
.m_txtturquoise-20,
|
|
2849
|
+
.m_txtturquoise-20,
|
|
2850
|
+
.m_textturquoise-20,
|
|
2851
|
+
.m_text-turquoise-20 {
|
|
2109
2852
|
color: var(--bgl-turquoise-20);
|
|
2110
2853
|
}
|
|
2111
2854
|
|
|
2112
2855
|
.m_txt-gray-20,
|
|
2113
|
-
.m_txtgray-20,
|
|
2856
|
+
.m_txtgray-20,
|
|
2857
|
+
.m_textgray-20,
|
|
2858
|
+
.m_text-gray-20 {
|
|
2114
2859
|
color: var(--bgl-gray-20);
|
|
2115
2860
|
}
|
|
2116
2861
|
|
|
2117
2862
|
.m_txt-black-20,
|
|
2118
|
-
.m_txtblack-20,
|
|
2863
|
+
.m_txtblack-20,
|
|
2864
|
+
.m_textblack-20,
|
|
2865
|
+
.m_text-black-20 {
|
|
2119
2866
|
color: var(--bgl-black-20);
|
|
2120
2867
|
}
|
|
2121
2868
|
|
|
2122
2869
|
.m_txt-pink-20,
|
|
2123
|
-
.m_txtpink-20,
|
|
2870
|
+
.m_txtpink-20,
|
|
2871
|
+
.m_textpink-20,
|
|
2872
|
+
.m_text-pink-20 {
|
|
2124
2873
|
color: var(--bgl-pink-20);
|
|
2125
2874
|
}
|
|
2126
2875
|
|
|
2127
2876
|
.m_txt-primary-30,
|
|
2128
|
-
.m_txtprimary-30,
|
|
2877
|
+
.m_txtprimary-30,
|
|
2878
|
+
.m_textprimary-30,
|
|
2879
|
+
.m_text-primary-30 {
|
|
2129
2880
|
color: var(--bgl-primary-30);
|
|
2130
2881
|
}
|
|
2131
2882
|
|
|
2132
2883
|
.m_txt-blue-30,
|
|
2133
|
-
.m_txtblue-30,
|
|
2884
|
+
.m_txtblue-30,
|
|
2885
|
+
.m_textblue-30,
|
|
2886
|
+
.m_text-blue-30 {
|
|
2134
2887
|
color: var(--bgl-blue-30);
|
|
2135
2888
|
}
|
|
2136
2889
|
|
|
2137
2890
|
.m_txt-green-30,
|
|
2138
|
-
.m_txtgreen-30,
|
|
2891
|
+
.m_txtgreen-30,
|
|
2892
|
+
.m_textgreen-30,
|
|
2893
|
+
.m_text-green-30 {
|
|
2139
2894
|
color: var(--bgl-green-30);
|
|
2140
2895
|
}
|
|
2141
2896
|
|
|
2142
2897
|
.m_txt-red-30,
|
|
2143
|
-
.m_txtred-30,
|
|
2898
|
+
.m_txtred-30,
|
|
2899
|
+
.m_textred-30,
|
|
2900
|
+
.m_text-red-30 {
|
|
2144
2901
|
color: var(--bgl-red-30);
|
|
2145
2902
|
}
|
|
2146
2903
|
|
|
2147
2904
|
.m_txt-yellow-30,
|
|
2148
|
-
.m_txtyellow-30,
|
|
2905
|
+
.m_txtyellow-30,
|
|
2906
|
+
.m_textyellow-30,
|
|
2907
|
+
.m_text-yellow-30 {
|
|
2149
2908
|
color: var(--bgl-yellow-30);
|
|
2150
2909
|
}
|
|
2151
2910
|
|
|
2152
2911
|
.m_txt-purple-30,
|
|
2153
|
-
.m_txtpurple-30,
|
|
2912
|
+
.m_txtpurple-30,
|
|
2913
|
+
.m_textpurple-30,
|
|
2914
|
+
.m_text-purple-30 {
|
|
2154
2915
|
color: var(--bgl-purple-30);
|
|
2155
2916
|
}
|
|
2156
2917
|
|
|
2157
2918
|
.m_txt-brown-30,
|
|
2158
|
-
.m_txtbrown-30,
|
|
2919
|
+
.m_txtbrown-30,
|
|
2920
|
+
.m_textbrown-30,
|
|
2921
|
+
.m_text-brown-30 {
|
|
2159
2922
|
color: var(--bgl-brown-30);
|
|
2160
2923
|
}
|
|
2161
2924
|
|
|
2162
2925
|
.m_txt-orange-30,
|
|
2163
|
-
.m_txtorange-30,
|
|
2926
|
+
.m_txtorange-30,
|
|
2927
|
+
.m_textorange-30,
|
|
2928
|
+
.m_text-orange-30 {
|
|
2164
2929
|
color: var(--bgl-orange-30);
|
|
2165
2930
|
}
|
|
2166
2931
|
|
|
2167
2932
|
.m_txt-turquoise-30,
|
|
2168
|
-
.m_txtturquoise-30,
|
|
2933
|
+
.m_txtturquoise-30,
|
|
2934
|
+
.m_textturquoise-30,
|
|
2935
|
+
.m_text-turquoise-30 {
|
|
2169
2936
|
color: var(--bgl-turquoise-30);
|
|
2170
2937
|
}
|
|
2171
2938
|
|
|
2172
2939
|
.m_txt-gray-30,
|
|
2173
|
-
.m_txtgray-30,
|
|
2940
|
+
.m_txtgray-30,
|
|
2941
|
+
.m_textgray-30,
|
|
2942
|
+
.m_text-gray-30 {
|
|
2174
2943
|
color: var(--bgl-gray-30);
|
|
2175
2944
|
}
|
|
2176
2945
|
|
|
2177
2946
|
.m_txt-black-30,
|
|
2178
|
-
.m_txtblack-30,
|
|
2947
|
+
.m_txtblack-30,
|
|
2948
|
+
.m_textblack-30,
|
|
2949
|
+
.m_text-black-30 {
|
|
2179
2950
|
color: var(--bgl-black-30);
|
|
2180
2951
|
}
|
|
2181
2952
|
|
|
2182
2953
|
.m_txt-pink-30,
|
|
2183
|
-
.m_txtpink-30,
|
|
2954
|
+
.m_txtpink-30,
|
|
2955
|
+
.m_textpink-30,
|
|
2956
|
+
.m_text-pink-30 {
|
|
2184
2957
|
color: var(--bgl-pink-30);
|
|
2185
2958
|
}
|
|
2186
2959
|
|
|
2187
2960
|
.m_txt-primary-40,
|
|
2188
|
-
.m_txtprimary-40,
|
|
2961
|
+
.m_txtprimary-40,
|
|
2962
|
+
.m_textprimary-40,
|
|
2963
|
+
.m_text-primary-40 {
|
|
2189
2964
|
color: var(--bgl-primary-40);
|
|
2190
2965
|
}
|
|
2191
2966
|
|
|
2192
2967
|
.m_txt-blue-40,
|
|
2193
|
-
.m_txtblue-40,
|
|
2968
|
+
.m_txtblue-40,
|
|
2969
|
+
.m_textblue-40,
|
|
2970
|
+
.m_text-blue-40 {
|
|
2194
2971
|
color: var(--bgl-blue-40);
|
|
2195
2972
|
}
|
|
2196
2973
|
|
|
2197
2974
|
.m_txt-green-40,
|
|
2198
|
-
.m_txtgreen-40,
|
|
2975
|
+
.m_txtgreen-40,
|
|
2976
|
+
.m_textgreen-40,
|
|
2977
|
+
.m_text-green-40 {
|
|
2199
2978
|
color: var(--bgl-green-40);
|
|
2200
2979
|
}
|
|
2201
2980
|
|
|
2202
2981
|
.m_txt-red-40,
|
|
2203
|
-
.m_txtred-40,
|
|
2982
|
+
.m_txtred-40,
|
|
2983
|
+
.m_textred-40,
|
|
2984
|
+
.m_text-red-40 {
|
|
2204
2985
|
color: var(--bgl-red-40);
|
|
2205
2986
|
}
|
|
2206
2987
|
|
|
2207
2988
|
.m_txt-yellow-40,
|
|
2208
|
-
.m_txtyellow-40,
|
|
2989
|
+
.m_txtyellow-40,
|
|
2990
|
+
.m_textyellow-40,
|
|
2991
|
+
.m_text-yellow-40 {
|
|
2209
2992
|
color: var(--bgl-yellow-40);
|
|
2210
2993
|
}
|
|
2211
2994
|
|
|
2212
2995
|
.m_txt-purple-40,
|
|
2213
|
-
.m_txtpurple-40,
|
|
2996
|
+
.m_txtpurple-40,
|
|
2997
|
+
.m_textpurple-40,
|
|
2998
|
+
.m_text-purple-40 {
|
|
2214
2999
|
color: var(--bgl-purple-40);
|
|
2215
3000
|
}
|
|
2216
3001
|
|
|
2217
3002
|
.m_txt-brown-40,
|
|
2218
|
-
.m_txtbrown-40,
|
|
3003
|
+
.m_txtbrown-40,
|
|
3004
|
+
.m_textbrown-40,
|
|
3005
|
+
.m_text-brown-40 {
|
|
2219
3006
|
color: var(--bgl-brown-40);
|
|
2220
3007
|
}
|
|
2221
3008
|
|
|
2222
3009
|
.m_txt-orange-40,
|
|
2223
|
-
.m_txtorange-40,
|
|
3010
|
+
.m_txtorange-40,
|
|
3011
|
+
.m_textorange-40,
|
|
3012
|
+
.m_text-orange-40 {
|
|
2224
3013
|
color: var(--bgl-orange-40);
|
|
2225
3014
|
}
|
|
2226
3015
|
|
|
2227
3016
|
.m_txt-turquoise-40,
|
|
2228
|
-
.m_txtturquoise-40,
|
|
3017
|
+
.m_txtturquoise-40,
|
|
3018
|
+
.m_textturquoise-40,
|
|
3019
|
+
.m_text-turquoise-40 {
|
|
2229
3020
|
color: var(--bgl-turquoise-40);
|
|
2230
3021
|
}
|
|
2231
3022
|
|
|
2232
3023
|
.m_txt-gray-40,
|
|
2233
|
-
.m_txtgray-40,
|
|
3024
|
+
.m_txtgray-40,
|
|
3025
|
+
.m_textgray-40,
|
|
3026
|
+
.m_text-gray-40 {
|
|
2234
3027
|
color: var(--bgl-gray-40);
|
|
2235
3028
|
}
|
|
2236
3029
|
|
|
2237
3030
|
.m_txt-black-40,
|
|
2238
|
-
.m_txtblack-40,
|
|
3031
|
+
.m_txtblack-40,
|
|
3032
|
+
.m_textblack-40,
|
|
3033
|
+
.m_text-black-40 {
|
|
2239
3034
|
color: var(--bgl-black-40);
|
|
2240
3035
|
}
|
|
2241
3036
|
|
|
2242
3037
|
.m_txt-pink-40,
|
|
2243
|
-
.m_txtpink-40,
|
|
3038
|
+
.m_txtpink-40,
|
|
3039
|
+
.m_textpink-40,
|
|
3040
|
+
.m_text-pink-40 {
|
|
2244
3041
|
color: var(--bgl-pink-40);
|
|
2245
3042
|
}
|
|
2246
3043
|
|
|
2247
3044
|
.m_txt-primary-50,
|
|
2248
|
-
.m_txtprimary-50,
|
|
3045
|
+
.m_txtprimary-50,
|
|
3046
|
+
.m_textprimary-50,
|
|
3047
|
+
.m_text-primary-50 {
|
|
2249
3048
|
color: var(--bgl-primary-50);
|
|
2250
3049
|
}
|
|
2251
3050
|
|
|
2252
3051
|
.m_txt-blue-50,
|
|
2253
|
-
.m_txtblue-50,
|
|
3052
|
+
.m_txtblue-50,
|
|
3053
|
+
.m_textblue-50,
|
|
3054
|
+
.m_text-blue-50 {
|
|
2254
3055
|
color: var(--bgl-blue-50);
|
|
2255
3056
|
}
|
|
2256
3057
|
|
|
2257
3058
|
.m_txt-green-50,
|
|
2258
|
-
.m_txtgreen-50,
|
|
3059
|
+
.m_txtgreen-50,
|
|
3060
|
+
.m_textgreen-50,
|
|
3061
|
+
.m_text-green-50 {
|
|
2259
3062
|
color: var(--bgl-green-50);
|
|
2260
3063
|
}
|
|
2261
3064
|
|
|
2262
3065
|
.m_txt-red-50,
|
|
2263
|
-
.m_txtred-50,
|
|
3066
|
+
.m_txtred-50,
|
|
3067
|
+
.m_textred-50,
|
|
3068
|
+
.m_text-red-50 {
|
|
2264
3069
|
color: var(--bgl-red-50);
|
|
2265
3070
|
}
|
|
2266
3071
|
|
|
2267
3072
|
.m_txt-yellow-50,
|
|
2268
|
-
.m_txtyellow-50,
|
|
3073
|
+
.m_txtyellow-50,
|
|
3074
|
+
.m_textyellow-50,
|
|
3075
|
+
.m_text-yellow-50 {
|
|
2269
3076
|
color: var(--bgl-yellow-50);
|
|
2270
3077
|
}
|
|
2271
3078
|
|
|
2272
3079
|
.m_txt-purple-50,
|
|
2273
|
-
.m_txtpurple-50,
|
|
3080
|
+
.m_txtpurple-50,
|
|
3081
|
+
.m_textpurple-50,
|
|
3082
|
+
.m_text-purple-50 {
|
|
2274
3083
|
color: var(--bgl-purple-50);
|
|
2275
3084
|
}
|
|
2276
3085
|
|
|
2277
3086
|
.m_txt-brown-50,
|
|
2278
|
-
.m_txtbrown-50,
|
|
3087
|
+
.m_txtbrown-50,
|
|
3088
|
+
.m_textbrown-50,
|
|
3089
|
+
.m_text-brown-50 {
|
|
2279
3090
|
color: var(--bgl-brown-50);
|
|
2280
3091
|
}
|
|
2281
3092
|
|
|
2282
3093
|
.m_txt-orange-50,
|
|
2283
|
-
.m_txtorange-50,
|
|
3094
|
+
.m_txtorange-50,
|
|
3095
|
+
.m_textorange-50,
|
|
3096
|
+
.m_text-orange-50 {
|
|
2284
3097
|
color: var(--bgl-orange-50);
|
|
2285
3098
|
}
|
|
2286
3099
|
|
|
2287
3100
|
.m_txt-turquoise-50,
|
|
2288
|
-
.m_txtturquoise-50,
|
|
3101
|
+
.m_txtturquoise-50,
|
|
3102
|
+
.m_textturquoise-50,
|
|
3103
|
+
.m_text-turquoise-50 {
|
|
2289
3104
|
color: var(--bgl-turquoise-50);
|
|
2290
3105
|
}
|
|
2291
3106
|
|
|
2292
3107
|
.m_txt-gray-50,
|
|
2293
|
-
.m_txtgray-50,
|
|
3108
|
+
.m_txtgray-50,
|
|
3109
|
+
.m_textgray-50,
|
|
3110
|
+
.m_text-gray-50 {
|
|
2294
3111
|
color: var(--bgl-gray-50);
|
|
2295
3112
|
}
|
|
2296
3113
|
|
|
2297
3114
|
.m_txt-black-50,
|
|
2298
|
-
.m_txtblack-50,
|
|
3115
|
+
.m_txtblack-50,
|
|
3116
|
+
.m_textblack-50,
|
|
3117
|
+
.m_text-black-50 {
|
|
2299
3118
|
color: var(--bgl-black-50);
|
|
2300
3119
|
}
|
|
2301
3120
|
|
|
2302
3121
|
.m_txt-pink-50,
|
|
2303
|
-
.m_txtpink-50,
|
|
3122
|
+
.m_txtpink-50,
|
|
3123
|
+
.m_textpink-50,
|
|
3124
|
+
.m_text-pink-50 {
|
|
2304
3125
|
color: var(--bgl-pink-50);
|
|
2305
3126
|
}
|
|
2306
3127
|
|
|
2307
3128
|
.m_txt-primary-60,
|
|
2308
|
-
.m_txtprimary-60,
|
|
3129
|
+
.m_txtprimary-60,
|
|
3130
|
+
.m_textprimary-60,
|
|
3131
|
+
.m_text-primary-60 {
|
|
2309
3132
|
color: var(--bgl-primary-60);
|
|
2310
3133
|
}
|
|
2311
3134
|
|
|
2312
3135
|
.m_txt-blue-60,
|
|
2313
|
-
.m_txtblue-60,
|
|
3136
|
+
.m_txtblue-60,
|
|
3137
|
+
.m_textblue-60,
|
|
3138
|
+
.m_text-blue-60 {
|
|
2314
3139
|
color: var(--bgl-blue-60);
|
|
2315
3140
|
}
|
|
2316
3141
|
|
|
2317
3142
|
.m_txt-green-60,
|
|
2318
|
-
.m_txtgreen-60,
|
|
3143
|
+
.m_txtgreen-60,
|
|
3144
|
+
.m_textgreen-60,
|
|
3145
|
+
.m_text-green-60 {
|
|
2319
3146
|
color: var(--bgl-green-60);
|
|
2320
3147
|
}
|
|
2321
3148
|
|
|
2322
3149
|
.m_txt-red-60,
|
|
2323
|
-
.m_txtred-60,
|
|
3150
|
+
.m_txtred-60,
|
|
3151
|
+
.m_textred-60,
|
|
3152
|
+
.m_text-red-60 {
|
|
2324
3153
|
color: var(--bgl-red-60);
|
|
2325
3154
|
}
|
|
2326
3155
|
|
|
2327
3156
|
.m_txt-yellow-60,
|
|
2328
|
-
.m_txtyellow-60,
|
|
3157
|
+
.m_txtyellow-60,
|
|
3158
|
+
.m_textyellow-60,
|
|
3159
|
+
.m_text-yellow-60 {
|
|
2329
3160
|
color: var(--bgl-yellow-60);
|
|
2330
3161
|
}
|
|
2331
3162
|
|
|
2332
3163
|
.m_txt-purple-60,
|
|
2333
|
-
.m_txtpurple-60,
|
|
3164
|
+
.m_txtpurple-60,
|
|
3165
|
+
.m_textpurple-60,
|
|
3166
|
+
.m_text-purple-60 {
|
|
2334
3167
|
color: var(--bgl-purple-60);
|
|
2335
3168
|
}
|
|
2336
3169
|
|
|
2337
3170
|
.m_txt-brown-60,
|
|
2338
|
-
.m_txtbrown-60,
|
|
3171
|
+
.m_txtbrown-60,
|
|
3172
|
+
.m_textbrown-60,
|
|
3173
|
+
.m_text-brown-60 {
|
|
2339
3174
|
color: var(--bgl-brown-60);
|
|
2340
3175
|
}
|
|
2341
3176
|
|
|
2342
3177
|
.m_txt-orange-60,
|
|
2343
|
-
.m_txtorange-60,
|
|
3178
|
+
.m_txtorange-60,
|
|
3179
|
+
.m_textorange-60,
|
|
3180
|
+
.m_text-orange-60 {
|
|
2344
3181
|
color: var(--bgl-orange-60);
|
|
2345
3182
|
}
|
|
2346
3183
|
|
|
2347
3184
|
.m_txt-turquoise-60,
|
|
2348
|
-
.m_txtturquoise-60,
|
|
3185
|
+
.m_txtturquoise-60,
|
|
3186
|
+
.m_textturquoise-60,
|
|
3187
|
+
.m_text-turquoise-60 {
|
|
2349
3188
|
color: var(--bgl-turquoise-60);
|
|
2350
3189
|
}
|
|
2351
3190
|
|
|
2352
3191
|
.m_txt-gray-60,
|
|
2353
|
-
.m_txtgray-60,
|
|
3192
|
+
.m_txtgray-60,
|
|
3193
|
+
.m_textgray-60,
|
|
3194
|
+
.m_text-gray-60 {
|
|
2354
3195
|
color: var(--bgl-gray-60);
|
|
2355
3196
|
}
|
|
2356
3197
|
|
|
2357
3198
|
.m_txt-black-60,
|
|
2358
|
-
.m_txtblack-60,
|
|
3199
|
+
.m_txtblack-60,
|
|
3200
|
+
.m_textblack-60,
|
|
3201
|
+
.m_text-black-60 {
|
|
2359
3202
|
color: var(--bgl-black-60);
|
|
2360
3203
|
}
|
|
2361
3204
|
|
|
2362
3205
|
.m_txt-pink-60,
|
|
2363
|
-
.m_txtpink-60,
|
|
3206
|
+
.m_txtpink-60,
|
|
3207
|
+
.m_textpink-60,
|
|
3208
|
+
.m_text-pink-60 {
|
|
2364
3209
|
color: var(--bgl-pink-60);
|
|
2365
3210
|
}
|
|
2366
3211
|
|
|
2367
3212
|
.m_txt-primary-70,
|
|
2368
|
-
.m_txtprimary-70,
|
|
3213
|
+
.m_txtprimary-70,
|
|
3214
|
+
.m_textprimary-70,
|
|
3215
|
+
.m_text-primary-70 {
|
|
2369
3216
|
color: var(--bgl-primary-70);
|
|
2370
3217
|
}
|
|
2371
3218
|
|
|
2372
3219
|
.m_txt-blue-70,
|
|
2373
|
-
.m_txtblue-70,
|
|
3220
|
+
.m_txtblue-70,
|
|
3221
|
+
.m_textblue-70,
|
|
3222
|
+
.m_text-blue-70 {
|
|
2374
3223
|
color: var(--bgl-blue-70);
|
|
2375
3224
|
}
|
|
2376
3225
|
|
|
2377
3226
|
.m_txt-green-70,
|
|
2378
|
-
.m_txtgreen-70,
|
|
3227
|
+
.m_txtgreen-70,
|
|
3228
|
+
.m_textgreen-70,
|
|
3229
|
+
.m_text-green-70 {
|
|
2379
3230
|
color: var(--bgl-green-70);
|
|
2380
3231
|
}
|
|
2381
3232
|
|
|
2382
3233
|
.m_txt-red-70,
|
|
2383
|
-
.m_txtred-70,
|
|
3234
|
+
.m_txtred-70,
|
|
3235
|
+
.m_textred-70,
|
|
3236
|
+
.m_text-red-70 {
|
|
2384
3237
|
color: var(--bgl-red-70);
|
|
2385
3238
|
}
|
|
2386
3239
|
|
|
2387
3240
|
.m_txt-yellow-70,
|
|
2388
|
-
.m_txtyellow-70,
|
|
3241
|
+
.m_txtyellow-70,
|
|
3242
|
+
.m_textyellow-70,
|
|
3243
|
+
.m_text-yellow-70 {
|
|
2389
3244
|
color: var(--bgl-yellow-70);
|
|
2390
3245
|
}
|
|
2391
3246
|
|
|
2392
3247
|
.m_txt-purple-70,
|
|
2393
|
-
.m_txtpurple-70,
|
|
3248
|
+
.m_txtpurple-70,
|
|
3249
|
+
.m_textpurple-70,
|
|
3250
|
+
.m_text-purple-70 {
|
|
2394
3251
|
color: var(--bgl-purple-70);
|
|
2395
3252
|
}
|
|
2396
3253
|
|
|
2397
3254
|
.m_txt-brown-70,
|
|
2398
|
-
.m_txtbrown-70,
|
|
3255
|
+
.m_txtbrown-70,
|
|
3256
|
+
.m_textbrown-70,
|
|
3257
|
+
.m_text-brown-70 {
|
|
2399
3258
|
color: var(--bgl-brown-70);
|
|
2400
3259
|
}
|
|
2401
3260
|
|
|
2402
3261
|
.m_txt-orange-70,
|
|
2403
|
-
.m_txtorange-70,
|
|
3262
|
+
.m_txtorange-70,
|
|
3263
|
+
.m_textorange-70,
|
|
3264
|
+
.m_text-orange-70 {
|
|
2404
3265
|
color: var(--bgl-orange-70);
|
|
2405
3266
|
}
|
|
2406
3267
|
|
|
2407
3268
|
.m_txt-turquoise-70,
|
|
2408
|
-
.m_txtturquoise-70,
|
|
3269
|
+
.m_txtturquoise-70,
|
|
3270
|
+
.m_textturquoise-70,
|
|
3271
|
+
.m_text-turquoise-70 {
|
|
2409
3272
|
color: var(--bgl-turquoise-70);
|
|
2410
3273
|
}
|
|
2411
3274
|
|
|
2412
3275
|
.m_txt-gray-70,
|
|
2413
|
-
.m_txtgray-70,
|
|
3276
|
+
.m_txtgray-70,
|
|
3277
|
+
.m_textgray-70,
|
|
3278
|
+
.m_text-gray-70 {
|
|
2414
3279
|
color: var(--bgl-gray-70);
|
|
2415
3280
|
}
|
|
2416
3281
|
|
|
2417
3282
|
.m_txt-black-70,
|
|
2418
|
-
.m_txtblack-70,
|
|
3283
|
+
.m_txtblack-70,
|
|
3284
|
+
.m_textblack-70,
|
|
3285
|
+
.m_text-black-70 {
|
|
2419
3286
|
color: var(--bgl-black-70);
|
|
2420
3287
|
}
|
|
2421
3288
|
|
|
2422
3289
|
.m_txt-pink-70,
|
|
2423
|
-
.m_txtpink-70,
|
|
3290
|
+
.m_txtpink-70,
|
|
3291
|
+
.m_textpink-70,
|
|
3292
|
+
.m_text-pink-70 {
|
|
2424
3293
|
color: var(--bgl-pink-70);
|
|
2425
3294
|
}
|
|
2426
3295
|
|
|
2427
3296
|
.m_txt-primary-80,
|
|
2428
|
-
.m_txtprimary-80,
|
|
3297
|
+
.m_txtprimary-80,
|
|
3298
|
+
.m_textprimary-80,
|
|
3299
|
+
.m_text-primary-80 {
|
|
2429
3300
|
color: var(--bgl-primary-80);
|
|
2430
3301
|
}
|
|
2431
3302
|
|
|
2432
3303
|
.m_txt-blue-80,
|
|
2433
|
-
.m_txtblue-80,
|
|
3304
|
+
.m_txtblue-80,
|
|
3305
|
+
.m_textblue-80,
|
|
3306
|
+
.m_text-blue-80 {
|
|
2434
3307
|
color: var(--bgl-blue-80);
|
|
2435
3308
|
}
|
|
2436
3309
|
|
|
2437
3310
|
.m_txt-green-80,
|
|
2438
|
-
.m_txtgreen-80,
|
|
3311
|
+
.m_txtgreen-80,
|
|
3312
|
+
.m_textgreen-80,
|
|
3313
|
+
.m_text-green-80 {
|
|
2439
3314
|
color: var(--bgl-green-80);
|
|
2440
3315
|
}
|
|
2441
3316
|
|
|
2442
3317
|
.m_txt-red-80,
|
|
2443
|
-
.m_txtred-80,
|
|
3318
|
+
.m_txtred-80,
|
|
3319
|
+
.m_textred-80,
|
|
3320
|
+
.m_text-red-80 {
|
|
2444
3321
|
color: var(--bgl-red-80);
|
|
2445
3322
|
}
|
|
2446
3323
|
|
|
2447
3324
|
.m_txt-yellow-80,
|
|
2448
|
-
.m_txtyellow-80,
|
|
3325
|
+
.m_txtyellow-80,
|
|
3326
|
+
.m_textyellow-80,
|
|
3327
|
+
.m_text-yellow-80 {
|
|
2449
3328
|
color: var(--bgl-yellow-80);
|
|
2450
3329
|
}
|
|
2451
3330
|
|
|
2452
3331
|
.m_txt-purple-80,
|
|
2453
|
-
.m_txtpurple-80,
|
|
3332
|
+
.m_txtpurple-80,
|
|
3333
|
+
.m_textpurple-80,
|
|
3334
|
+
.m_text-purple-80 {
|
|
2454
3335
|
color: var(--bgl-purple-80);
|
|
2455
3336
|
}
|
|
2456
3337
|
|
|
2457
3338
|
.m_txt-brown-80,
|
|
2458
|
-
.m_txtbrown-80,
|
|
3339
|
+
.m_txtbrown-80,
|
|
3340
|
+
.m_textbrown-80,
|
|
3341
|
+
.m_text-brown-80 {
|
|
2459
3342
|
color: var(--bgl-brown-80);
|
|
2460
3343
|
}
|
|
2461
3344
|
|
|
2462
3345
|
.m_txt-orange-80,
|
|
2463
|
-
.m_txtorange-80,
|
|
3346
|
+
.m_txtorange-80,
|
|
3347
|
+
.m_textorange-80,
|
|
3348
|
+
.m_text-orange-80 {
|
|
2464
3349
|
color: var(--bgl-orange-80);
|
|
2465
3350
|
}
|
|
2466
3351
|
|
|
2467
3352
|
.m_txt-turquoise-80,
|
|
2468
|
-
.m_txtturquoise-80,
|
|
3353
|
+
.m_txtturquoise-80,
|
|
3354
|
+
.m_textturquoise-80,
|
|
3355
|
+
.m_text-turquoise-80 {
|
|
2469
3356
|
color: var(--bgl-turquoise-80);
|
|
2470
3357
|
}
|
|
2471
3358
|
|
|
2472
3359
|
.m_txt-gray-80,
|
|
2473
|
-
.m_txtgray-80,
|
|
3360
|
+
.m_txtgray-80,
|
|
3361
|
+
.m_textgray-80,
|
|
3362
|
+
.m_text-gray-80 {
|
|
2474
3363
|
color: var(--bgl-gray-80);
|
|
2475
3364
|
}
|
|
2476
3365
|
|
|
2477
3366
|
.m_txt-black-80,
|
|
2478
|
-
.m_txtblack-80,
|
|
3367
|
+
.m_txtblack-80,
|
|
3368
|
+
.m_textblack-80,
|
|
3369
|
+
.m_text-black-80 {
|
|
2479
3370
|
color: var(--bgl-black-80);
|
|
2480
3371
|
}
|
|
2481
3372
|
|
|
2482
3373
|
.m_txt-pink-80,
|
|
2483
|
-
.m_txtpink-80,
|
|
3374
|
+
.m_txtpink-80,
|
|
3375
|
+
.m_textpink-80,
|
|
3376
|
+
.m_text-pink-80 {
|
|
2484
3377
|
color: var(--bgl-pink-80);
|
|
2485
3378
|
}
|
|
2486
3379
|
|
|
2487
3380
|
.m_txt-primary-90,
|
|
2488
|
-
.m_txtprimary-90,
|
|
3381
|
+
.m_txtprimary-90,
|
|
3382
|
+
.m_textprimary-90,
|
|
3383
|
+
.m_text-primary-90 {
|
|
2489
3384
|
color: var(--bgl-primary-90);
|
|
2490
3385
|
}
|
|
2491
3386
|
|
|
2492
3387
|
.m_txt-blue-90,
|
|
2493
|
-
.m_txtblue-90,
|
|
3388
|
+
.m_txtblue-90,
|
|
3389
|
+
.m_textblue-90,
|
|
3390
|
+
.m_text-blue-90 {
|
|
2494
3391
|
color: var(--bgl-blue-90);
|
|
2495
3392
|
}
|
|
2496
3393
|
|
|
2497
3394
|
.m_txt-green-90,
|
|
2498
|
-
.m_txtgreen-90,
|
|
3395
|
+
.m_txtgreen-90,
|
|
3396
|
+
.m_textgreen-90,
|
|
3397
|
+
.m_text-green-90 {
|
|
2499
3398
|
color: var(--bgl-green-90);
|
|
2500
3399
|
}
|
|
2501
3400
|
|
|
2502
3401
|
.m_txt-red-90,
|
|
2503
|
-
.m_txtred-90,
|
|
3402
|
+
.m_txtred-90,
|
|
3403
|
+
.m_textred-90,
|
|
3404
|
+
.m_text-red-90 {
|
|
2504
3405
|
color: var(--bgl-red-90);
|
|
2505
3406
|
}
|
|
2506
3407
|
|
|
2507
3408
|
.m_txt-yellow-90,
|
|
2508
|
-
.m_txtyellow-90,
|
|
3409
|
+
.m_txtyellow-90,
|
|
3410
|
+
.m_textyellow-90,
|
|
3411
|
+
.m_text-yellow-90 {
|
|
2509
3412
|
color: var(--bgl-yellow-90);
|
|
2510
3413
|
}
|
|
2511
3414
|
|
|
2512
3415
|
.m_txt-purple-90,
|
|
2513
|
-
.m_txtpurple-90,
|
|
3416
|
+
.m_txtpurple-90,
|
|
3417
|
+
.m_textpurple-90,
|
|
3418
|
+
.m_text-purple-90 {
|
|
2514
3419
|
color: var(--bgl-purple-90);
|
|
2515
3420
|
}
|
|
2516
3421
|
|
|
2517
3422
|
.m_txt-brown-90,
|
|
2518
|
-
.m_txtbrown-90,
|
|
3423
|
+
.m_txtbrown-90,
|
|
3424
|
+
.m_textbrown-90,
|
|
3425
|
+
.m_text-brown-90 {
|
|
2519
3426
|
color: var(--bgl-brown-90);
|
|
2520
3427
|
}
|
|
2521
3428
|
|
|
2522
3429
|
.m_txt-orange-90,
|
|
2523
|
-
.m_txtorange-90,
|
|
3430
|
+
.m_txtorange-90,
|
|
3431
|
+
.m_textorange-90,
|
|
3432
|
+
.m_text-orange-90 {
|
|
2524
3433
|
color: var(--bgl-orange-90);
|
|
2525
3434
|
}
|
|
2526
3435
|
|
|
2527
3436
|
.m_txt-turquoise-90,
|
|
2528
|
-
.m_txtturquoise-90,
|
|
3437
|
+
.m_txtturquoise-90,
|
|
3438
|
+
.m_textturquoise-90,
|
|
3439
|
+
.m_text-turquoise-90 {
|
|
2529
3440
|
color: var(--bgl-turquoise-90);
|
|
2530
3441
|
}
|
|
2531
3442
|
|
|
2532
3443
|
.m_txt-gray-90,
|
|
2533
|
-
.m_txtgray-90,
|
|
3444
|
+
.m_txtgray-90,
|
|
3445
|
+
.m_textgray-90,
|
|
3446
|
+
.m_text-gray-90 {
|
|
2534
3447
|
color: var(--bgl-gray-90);
|
|
2535
3448
|
}
|
|
2536
3449
|
|
|
2537
3450
|
.m_txt-black-90,
|
|
2538
|
-
.m_txtblack-90,
|
|
3451
|
+
.m_txtblack-90,
|
|
3452
|
+
.m_textblack-90,
|
|
3453
|
+
.m_text-black-90 {
|
|
2539
3454
|
color: var(--bgl-black-90);
|
|
2540
3455
|
}
|
|
2541
3456
|
|
|
2542
3457
|
.m_txt-pink-90,
|
|
2543
|
-
.m_txtpink-90,
|
|
3458
|
+
.m_txtpink-90,
|
|
3459
|
+
.m_textpink-90,
|
|
3460
|
+
.m_text-pink-90 {
|
|
2544
3461
|
color: var(--bgl-pink-90);
|
|
2545
3462
|
}
|
|
2546
3463
|
|
|
2547
3464
|
.m_txt-primary-100,
|
|
2548
|
-
.m_txtprimary-100,
|
|
3465
|
+
.m_txtprimary-100,
|
|
3466
|
+
.m_textprimary-100,
|
|
3467
|
+
.m_text-primary-100 {
|
|
2549
3468
|
color: var(--bgl-primary-100);
|
|
2550
3469
|
}
|
|
2551
3470
|
|
|
2552
3471
|
.m_txt-blue-100,
|
|
2553
|
-
.m_txtblue-100,
|
|
3472
|
+
.m_txtblue-100,
|
|
3473
|
+
.m_textblue-100,
|
|
3474
|
+
.m_text-blue-100 {
|
|
2554
3475
|
color: var(--bgl-blue-100);
|
|
2555
3476
|
}
|
|
2556
3477
|
|
|
2557
3478
|
.m_txt-green-100,
|
|
2558
|
-
.m_txtgreen-100,
|
|
3479
|
+
.m_txtgreen-100,
|
|
3480
|
+
.m_textgreen-100,
|
|
3481
|
+
.m_text-green-100 {
|
|
2559
3482
|
color: var(--bgl-green-100);
|
|
2560
3483
|
}
|
|
2561
3484
|
|
|
2562
3485
|
.m_txt-red-100,
|
|
2563
|
-
.m_txtred-100,
|
|
3486
|
+
.m_txtred-100,
|
|
3487
|
+
.m_textred-100,
|
|
3488
|
+
.m_text-red-100 {
|
|
2564
3489
|
color: var(--bgl-red-100);
|
|
2565
3490
|
}
|
|
2566
3491
|
|
|
2567
3492
|
.m_txt-yellow-100,
|
|
2568
|
-
.m_txtyellow-100,
|
|
3493
|
+
.m_txtyellow-100,
|
|
3494
|
+
.m_textyellow-100,
|
|
3495
|
+
.m_text-yellow-100 {
|
|
2569
3496
|
color: var(--bgl-yellow-100);
|
|
2570
3497
|
}
|
|
2571
3498
|
|
|
2572
3499
|
.m_txt-purple-100,
|
|
2573
|
-
.m_txtpurple-100,
|
|
3500
|
+
.m_txtpurple-100,
|
|
3501
|
+
.m_textpurple-100,
|
|
3502
|
+
.m_text-purple-100 {
|
|
2574
3503
|
color: var(--bgl-purple-100);
|
|
2575
3504
|
}
|
|
2576
3505
|
|
|
2577
3506
|
.m_txt-brown-100,
|
|
2578
|
-
.m_txtbrown-100,
|
|
3507
|
+
.m_txtbrown-100,
|
|
3508
|
+
.m_textbrown-100,
|
|
3509
|
+
.m_text-brown-100 {
|
|
2579
3510
|
color: var(--bgl-brown-100);
|
|
2580
3511
|
}
|
|
2581
3512
|
|
|
2582
3513
|
.m_txt-orange-100,
|
|
2583
|
-
.m_txtorange-100,
|
|
3514
|
+
.m_txtorange-100,
|
|
3515
|
+
.m_textorange-100,
|
|
3516
|
+
.m_text-orange-100 {
|
|
2584
3517
|
color: var(--bgl-orange-100);
|
|
2585
3518
|
}
|
|
2586
3519
|
|
|
2587
3520
|
.m_txt-turquoise-100,
|
|
2588
|
-
.m_txtturquoise-100,
|
|
3521
|
+
.m_txtturquoise-100,
|
|
3522
|
+
.m_textturquoise-100,
|
|
3523
|
+
.m_text-turquoise-100 {
|
|
2589
3524
|
color: var(--bgl-turquoise-100);
|
|
2590
3525
|
}
|
|
2591
3526
|
|
|
2592
3527
|
.m_txt-gray-100,
|
|
2593
|
-
.m_txtgray-100,
|
|
3528
|
+
.m_txtgray-100,
|
|
3529
|
+
.m_textgray-100,
|
|
3530
|
+
.m_text-gray-100 {
|
|
2594
3531
|
color: var(--bgl-gray-100);
|
|
2595
3532
|
}
|
|
2596
3533
|
|
|
2597
3534
|
.m_txt-black-100,
|
|
2598
|
-
.m_txtblack-100,
|
|
3535
|
+
.m_txtblack-100,
|
|
3536
|
+
.m_textblack-100,
|
|
3537
|
+
.m_text-black-100 {
|
|
2599
3538
|
color: var(--bgl-black-100);
|
|
2600
3539
|
}
|
|
2601
3540
|
|
|
2602
3541
|
.m_txt-pink-100,
|
|
2603
|
-
.m_txtpink-100,
|
|
3542
|
+
.m_txtpink-100,
|
|
3543
|
+
.m_textpink-100,
|
|
3544
|
+
.m_text-pink-100 {
|
|
2604
3545
|
color: var(--bgl-pink-100);
|
|
2605
3546
|
}
|
|
2606
3547
|
|
|
2607
3548
|
.m_txt-primary-110,
|
|
2608
|
-
.m_txtprimary-110,
|
|
3549
|
+
.m_txtprimary-110,
|
|
3550
|
+
.m_textprimary-110,
|
|
3551
|
+
.m_text-primary-110 {
|
|
2609
3552
|
color: var(--bgl-primary-110);
|
|
2610
3553
|
}
|
|
2611
3554
|
|
|
2612
3555
|
.m_txt-blue-110,
|
|
2613
|
-
.m_txtblue-110,
|
|
3556
|
+
.m_txtblue-110,
|
|
3557
|
+
.m_textblue-110,
|
|
3558
|
+
.m_text-blue-110 {
|
|
2614
3559
|
color: var(--bgl-blue-110);
|
|
2615
3560
|
}
|
|
2616
3561
|
|
|
2617
3562
|
.m_txt-green-110,
|
|
2618
|
-
.m_txtgreen-110,
|
|
3563
|
+
.m_txtgreen-110,
|
|
3564
|
+
.m_textgreen-110,
|
|
3565
|
+
.m_text-green-110 {
|
|
2619
3566
|
color: var(--bgl-green-110);
|
|
2620
3567
|
}
|
|
2621
3568
|
|
|
2622
3569
|
.m_txt-red-110,
|
|
2623
|
-
.m_txtred-110,
|
|
3570
|
+
.m_txtred-110,
|
|
3571
|
+
.m_textred-110,
|
|
3572
|
+
.m_text-red-110 {
|
|
2624
3573
|
color: var(--bgl-red-110);
|
|
2625
3574
|
}
|
|
2626
3575
|
|
|
2627
3576
|
.m_txt-yellow-110,
|
|
2628
|
-
.m_txtyellow-110,
|
|
3577
|
+
.m_txtyellow-110,
|
|
3578
|
+
.m_textyellow-110,
|
|
3579
|
+
.m_text-yellow-110 {
|
|
2629
3580
|
color: var(--bgl-yellow-110);
|
|
2630
3581
|
}
|
|
2631
3582
|
|
|
2632
3583
|
.m_txt-purple-110,
|
|
2633
|
-
.m_txtpurple-110,
|
|
3584
|
+
.m_txtpurple-110,
|
|
3585
|
+
.m_textpurple-110,
|
|
3586
|
+
.m_text-purple-110 {
|
|
2634
3587
|
color: var(--bgl-purple-110);
|
|
2635
3588
|
}
|
|
2636
3589
|
|
|
2637
3590
|
.m_txt-brown-110,
|
|
2638
|
-
.m_txtbrown-110,
|
|
3591
|
+
.m_txtbrown-110,
|
|
3592
|
+
.m_textbrown-110,
|
|
3593
|
+
.m_text-brown-110 {
|
|
2639
3594
|
color: var(--bgl-brown-110);
|
|
2640
3595
|
}
|
|
2641
3596
|
|
|
2642
3597
|
.m_txt-orange-110,
|
|
2643
|
-
.m_txtorange-110,
|
|
3598
|
+
.m_txtorange-110,
|
|
3599
|
+
.m_textorange-110,
|
|
3600
|
+
.m_text-orange-110 {
|
|
2644
3601
|
color: var(--bgl-orange-110);
|
|
2645
3602
|
}
|
|
2646
3603
|
|
|
2647
3604
|
.m_txt-turquoise-110,
|
|
2648
|
-
.m_txtturquoise-110,
|
|
3605
|
+
.m_txtturquoise-110,
|
|
3606
|
+
.m_textturquoise-110,
|
|
3607
|
+
.m_text-turquoise-110 {
|
|
2649
3608
|
color: var(--bgl-turquoise-110);
|
|
2650
3609
|
}
|
|
2651
3610
|
|
|
2652
3611
|
.m_txt-gray-110,
|
|
2653
|
-
.m_txtgray-110,
|
|
3612
|
+
.m_txtgray-110,
|
|
3613
|
+
.m_textgray-110,
|
|
3614
|
+
.m_text-gray-110 {
|
|
2654
3615
|
color: var(--bgl-gray-110);
|
|
2655
3616
|
}
|
|
2656
3617
|
|
|
2657
3618
|
.m_txt-black-110,
|
|
2658
|
-
.m_txtblack-110,
|
|
3619
|
+
.m_txtblack-110,
|
|
3620
|
+
.m_textblack-110,
|
|
3621
|
+
.m_text-black-110 {
|
|
2659
3622
|
color: var(--bgl-black-110);
|
|
2660
3623
|
}
|
|
2661
3624
|
|
|
2662
3625
|
.m_txt-pink-110,
|
|
2663
|
-
.m_txtpink-110,
|
|
3626
|
+
.m_txtpink-110,
|
|
3627
|
+
.m_textpink-110,
|
|
3628
|
+
.m_text-pink-110 {
|
|
2664
3629
|
color: var(--bgl-pink-110);
|
|
2665
3630
|
}
|
|
2666
3631
|
|
|
2667
3632
|
.m_txt-primary-120,
|
|
2668
|
-
.m_txtprimary-120,
|
|
3633
|
+
.m_txtprimary-120,
|
|
3634
|
+
.m_textprimary-120,
|
|
3635
|
+
.m_text-primary-120 {
|
|
2669
3636
|
color: var(--bgl-primary-120);
|
|
2670
3637
|
}
|
|
2671
3638
|
|
|
2672
3639
|
.m_txt-blue-120,
|
|
2673
|
-
.m_txtblue-120,
|
|
3640
|
+
.m_txtblue-120,
|
|
3641
|
+
.m_textblue-120,
|
|
3642
|
+
.m_text-blue-120 {
|
|
2674
3643
|
color: var(--bgl-blue-120);
|
|
2675
3644
|
}
|
|
2676
3645
|
|
|
2677
3646
|
.m_txt-green-120,
|
|
2678
|
-
.m_txtgreen-120,
|
|
3647
|
+
.m_txtgreen-120,
|
|
3648
|
+
.m_textgreen-120,
|
|
3649
|
+
.m_text-green-120 {
|
|
2679
3650
|
color: var(--bgl-green-120);
|
|
2680
3651
|
}
|
|
2681
3652
|
|
|
2682
3653
|
.m_txt-red-120,
|
|
2683
|
-
.m_txtred-120,
|
|
3654
|
+
.m_txtred-120,
|
|
3655
|
+
.m_textred-120,
|
|
3656
|
+
.m_text-red-120 {
|
|
2684
3657
|
color: var(--bgl-red-120);
|
|
2685
3658
|
}
|
|
2686
3659
|
|
|
2687
3660
|
.m_txt-yellow-120,
|
|
2688
|
-
.m_txtyellow-120,
|
|
3661
|
+
.m_txtyellow-120,
|
|
3662
|
+
.m_textyellow-120,
|
|
3663
|
+
.m_text-yellow-120 {
|
|
2689
3664
|
color: var(--bgl-yellow-120);
|
|
2690
3665
|
}
|
|
2691
3666
|
|
|
2692
3667
|
.m_txt-purple-120,
|
|
2693
|
-
.m_txtpurple-120,
|
|
3668
|
+
.m_txtpurple-120,
|
|
3669
|
+
.m_textpurple-120,
|
|
3670
|
+
.m_text-purple-120 {
|
|
2694
3671
|
color: var(--bgl-purple-120);
|
|
2695
3672
|
}
|
|
2696
3673
|
|
|
2697
3674
|
.m_txt-brown-120,
|
|
2698
|
-
.m_txtbrown-120,
|
|
3675
|
+
.m_txtbrown-120,
|
|
3676
|
+
.m_textbrown-120,
|
|
3677
|
+
.m_text-brown-120 {
|
|
2699
3678
|
color: var(--bgl-brown-120);
|
|
2700
3679
|
}
|
|
2701
3680
|
|
|
2702
3681
|
.m_txt-orange-120,
|
|
2703
|
-
.m_txtorange-120,
|
|
3682
|
+
.m_txtorange-120,
|
|
3683
|
+
.m_textorange-120,
|
|
3684
|
+
.m_text-orange-120 {
|
|
2704
3685
|
color: var(--bgl-orange-120);
|
|
2705
3686
|
}
|
|
2706
3687
|
|
|
2707
3688
|
.m_txt-turquoise-120,
|
|
2708
|
-
.m_txtturquoise-120,
|
|
3689
|
+
.m_txtturquoise-120,
|
|
3690
|
+
.m_textturquoise-120,
|
|
3691
|
+
.m_text-turquoise-120 {
|
|
2709
3692
|
color: var(--bgl-turquoise-120);
|
|
2710
3693
|
}
|
|
2711
3694
|
|
|
2712
3695
|
.m_txt-gray-120,
|
|
2713
|
-
.m_txtgray-120,
|
|
3696
|
+
.m_txtgray-120,
|
|
3697
|
+
.m_textgray-120,
|
|
3698
|
+
.m_text-gray-120 {
|
|
2714
3699
|
color: var(--bgl-gray-120);
|
|
2715
3700
|
}
|
|
2716
3701
|
|
|
2717
3702
|
.m_txt-black-120,
|
|
2718
|
-
.m_txtblack-120,
|
|
3703
|
+
.m_txtblack-120,
|
|
3704
|
+
.m_textblack-120,
|
|
3705
|
+
.m_text-black-120 {
|
|
2719
3706
|
color: var(--bgl-black-120);
|
|
2720
3707
|
}
|
|
2721
3708
|
|
|
2722
3709
|
.m_txt-pink-120,
|
|
2723
|
-
.m_txtpink-120,
|
|
3710
|
+
.m_txtpink-120,
|
|
3711
|
+
.m_textpink-120,
|
|
3712
|
+
.m_text-pink-120 {
|
|
2724
3713
|
color: var(--bgl-pink-120);
|
|
2725
3714
|
}
|
|
2726
3715
|
|
|
2727
3716
|
.m_txt-primary-130,
|
|
2728
|
-
.m_txtprimary-130,
|
|
3717
|
+
.m_txtprimary-130,
|
|
3718
|
+
.m_textprimary-130,
|
|
3719
|
+
.m_text-primary-130 {
|
|
2729
3720
|
color: var(--bgl-primary-130);
|
|
2730
3721
|
}
|
|
2731
3722
|
|
|
2732
3723
|
.m_txt-blue-130,
|
|
2733
|
-
.m_txtblue-130,
|
|
3724
|
+
.m_txtblue-130,
|
|
3725
|
+
.m_textblue-130,
|
|
3726
|
+
.m_text-blue-130 {
|
|
2734
3727
|
color: var(--bgl-blue-130);
|
|
2735
3728
|
}
|
|
2736
3729
|
|
|
2737
3730
|
.m_txt-green-130,
|
|
2738
|
-
.m_txtgreen-130,
|
|
3731
|
+
.m_txtgreen-130,
|
|
3732
|
+
.m_textgreen-130,
|
|
3733
|
+
.m_text-green-130 {
|
|
2739
3734
|
color: var(--bgl-green-130);
|
|
2740
3735
|
}
|
|
2741
3736
|
|
|
2742
3737
|
.m_txt-red-130,
|
|
2743
|
-
.m_txtred-130,
|
|
3738
|
+
.m_txtred-130,
|
|
3739
|
+
.m_textred-130,
|
|
3740
|
+
.m_text-red-130 {
|
|
2744
3741
|
color: var(--bgl-red-130);
|
|
2745
3742
|
}
|
|
2746
3743
|
|
|
2747
3744
|
.m_txt-yellow-130,
|
|
2748
|
-
.m_txtyellow-130,
|
|
3745
|
+
.m_txtyellow-130,
|
|
3746
|
+
.m_textyellow-130,
|
|
3747
|
+
.m_text-yellow-130 {
|
|
2749
3748
|
color: var(--bgl-yellow-130);
|
|
2750
3749
|
}
|
|
2751
3750
|
|
|
2752
3751
|
.m_txt-purple-130,
|
|
2753
|
-
.m_txtpurple-130,
|
|
3752
|
+
.m_txtpurple-130,
|
|
3753
|
+
.m_textpurple-130,
|
|
3754
|
+
.m_text-purple-130 {
|
|
2754
3755
|
color: var(--bgl-purple-130);
|
|
2755
3756
|
}
|
|
2756
3757
|
|
|
2757
3758
|
.m_txt-brown-130,
|
|
2758
|
-
.m_txtbrown-130,
|
|
3759
|
+
.m_txtbrown-130,
|
|
3760
|
+
.m_textbrown-130,
|
|
3761
|
+
.m_text-brown-130 {
|
|
2759
3762
|
color: var(--bgl-brown-130);
|
|
2760
3763
|
}
|
|
2761
3764
|
|
|
2762
3765
|
.m_txt-orange-130,
|
|
2763
|
-
.m_txtorange-130,
|
|
3766
|
+
.m_txtorange-130,
|
|
3767
|
+
.m_textorange-130,
|
|
3768
|
+
.m_text-orange-130 {
|
|
2764
3769
|
color: var(--bgl-orange-130);
|
|
2765
3770
|
}
|
|
2766
3771
|
|
|
2767
3772
|
.m_txt-turquoise-130,
|
|
2768
|
-
.m_txtturquoise-130,
|
|
3773
|
+
.m_txtturquoise-130,
|
|
3774
|
+
.m_textturquoise-130,
|
|
3775
|
+
.m_text-turquoise-130 {
|
|
2769
3776
|
color: var(--bgl-turquoise-130);
|
|
2770
3777
|
}
|
|
2771
3778
|
|
|
2772
3779
|
.m_txt-gray-130,
|
|
2773
|
-
.m_txtgray-130,
|
|
3780
|
+
.m_txtgray-130,
|
|
3781
|
+
.m_textgray-130,
|
|
3782
|
+
.m_text-gray-130 {
|
|
2774
3783
|
color: var(--bgl-gray-130);
|
|
2775
3784
|
}
|
|
2776
3785
|
|
|
2777
3786
|
.m_txt-black-130,
|
|
2778
|
-
.m_txtblack-130,
|
|
3787
|
+
.m_txtblack-130,
|
|
3788
|
+
.m_textblack-130,
|
|
3789
|
+
.m_text-black-130 {
|
|
2779
3790
|
color: var(--bgl-black-130);
|
|
2780
3791
|
}
|
|
2781
3792
|
|
|
2782
3793
|
.m_txt-pink-130,
|
|
2783
|
-
.m_txtpink-130,
|
|
3794
|
+
.m_txtpink-130,
|
|
3795
|
+
.m_textpink-130,
|
|
3796
|
+
.m_text-pink-130 {
|
|
2784
3797
|
color: var(--bgl-pink-130);
|
|
2785
3798
|
}
|
|
2786
3799
|
|
|
2787
3800
|
.m_font-thin,
|
|
2788
|
-
.m_txt-thin,
|
|
3801
|
+
.m_txt-thin,
|
|
3802
|
+
.m_text-thin {
|
|
2789
3803
|
font-weight: 100;
|
|
2790
3804
|
}
|
|
2791
3805
|
|
|
2792
3806
|
.m_extra-light,
|
|
2793
3807
|
.m_font-extra-light,
|
|
2794
|
-
.m_txt-extra-light,
|
|
3808
|
+
.m_txt-extra-light,
|
|
3809
|
+
.m_text-extra-light,
|
|
2795
3810
|
.m_font-ultra-light,
|
|
2796
|
-
.m_txt-ultra-light,
|
|
3811
|
+
.m_txt-ultra-light,
|
|
3812
|
+
.m_text-ultra-light {
|
|
2797
3813
|
font-weight: 200;
|
|
2798
3814
|
}
|
|
2799
3815
|
|
|
2800
3816
|
.m_light,
|
|
2801
3817
|
.m_txt-light,
|
|
2802
|
-
.m_font-light,
|
|
3818
|
+
.m_font-light,
|
|
3819
|
+
.m_text-light {
|
|
2803
3820
|
font-weight: 300;
|
|
2804
3821
|
}
|
|
2805
3822
|
|
|
2806
3823
|
.m_regular,
|
|
2807
3824
|
.m_txt-regular,
|
|
2808
|
-
.m_font-regular,
|
|
3825
|
+
.m_font-regular,
|
|
3826
|
+
.m_text-regular {
|
|
2809
3827
|
font-weight: 400;
|
|
2810
3828
|
}
|
|
2811
3829
|
|
|
2812
3830
|
.m_medium,
|
|
2813
3831
|
.m_txt-medium,
|
|
2814
|
-
.m_font-medium,
|
|
3832
|
+
.m_font-medium,
|
|
3833
|
+
.m_text-medium {
|
|
2815
3834
|
font-weight: 500;
|
|
2816
3835
|
}
|
|
2817
3836
|
|
|
2818
3837
|
.m_semi,
|
|
2819
3838
|
.m_semibold,
|
|
2820
|
-
.m_txt-semi,
|
|
3839
|
+
.m_txt-semi,
|
|
3840
|
+
.m_text-semi,
|
|
2821
3841
|
.m_txt-semibold,
|
|
2822
3842
|
.m_font-semi,
|
|
2823
|
-
.m_font-semibold,
|
|
3843
|
+
.m_font-semibold,
|
|
3844
|
+
.m_text-semibold {
|
|
2824
3845
|
font-weight: 600;
|
|
2825
3846
|
}
|
|
2826
3847
|
|
|
2827
3848
|
.m_bold,
|
|
2828
3849
|
.m_txt-bold,
|
|
2829
|
-
.m_font-bold,
|
|
3850
|
+
.m_font-bold,
|
|
3851
|
+
.m_text-bold {
|
|
2830
3852
|
font-weight: 700;
|
|
2831
3853
|
}
|
|
2832
3854
|
|
|
2833
3855
|
.m_extra-bold,
|
|
2834
3856
|
.m_font-extra-bold,
|
|
2835
|
-
.m_txt-extra-bold,
|
|
3857
|
+
.m_txt-extra-bold,
|
|
3858
|
+
.m_text-extra-bold,
|
|
2836
3859
|
.m_font-ultra-bold,
|
|
2837
|
-
.m_txt-ultra-bold,
|
|
3860
|
+
.m_txt-ultra-bold,
|
|
3861
|
+
.m_text-ultra-bold {
|
|
2838
3862
|
font-weight: 800;
|
|
2839
3863
|
}
|
|
2840
3864
|
|
|
@@ -3025,23 +4049,30 @@
|
|
|
3025
4049
|
text-transform: capitalize;
|
|
3026
4050
|
}
|
|
3027
4051
|
|
|
3028
|
-
.m_white-space,
|
|
4052
|
+
.m_white-space,
|
|
4053
|
+
.m_white-space-nowrap,
|
|
4054
|
+
.m_whitespace,
|
|
4055
|
+
.m_whitespace-nowrap {
|
|
3029
4056
|
white-space: nowrap;
|
|
3030
4057
|
}
|
|
3031
4058
|
|
|
3032
|
-
.m_white-space-break-spaces,
|
|
4059
|
+
.m_white-space-break-spaces,
|
|
4060
|
+
.m_whitespace-break-spaces {
|
|
3033
4061
|
white-space: break-spaces;
|
|
3034
4062
|
}
|
|
3035
4063
|
|
|
3036
|
-
.m_white-space-pre,
|
|
4064
|
+
.m_white-space-pre,
|
|
4065
|
+
.m_whitespace-pre {
|
|
3037
4066
|
white-space: pre;
|
|
3038
4067
|
}
|
|
3039
4068
|
|
|
3040
|
-
.m_white-space-pre-line,
|
|
4069
|
+
.m_white-space-pre-line,
|
|
4070
|
+
.m_whitespace-pre-line {
|
|
3041
4071
|
white-space: pre-line;
|
|
3042
4072
|
}
|
|
3043
4073
|
|
|
3044
|
-
.m_white-space-pre-wrap,
|
|
4074
|
+
.m_white-space-pre-wrap,
|
|
4075
|
+
.m_whitespace-pre-wrap {
|
|
3045
4076
|
white-space: pre-wrap;
|
|
3046
4077
|
}
|
|
3047
4078
|
}
|