q2-tecton-theme 1.13.0-alpha.0 → 1.13.2
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/index.js +1 -0
- package/dist/q2-tecton-theme.css +1 -1228
- package/package.json +10 -7
- package/rollup.config.js +21 -0
- package/src/index.js +2 -0
- package/src/{q2-tecton-theme.css → q2-tecton-theme.scss} +237 -33
package/dist/q2-tecton-theme.css
CHANGED
@@ -1,1228 +1 @@
|
|
1
|
-
@import url("https://fonts.googleapis.com/css?family=Dosis:300,400,500&display=swap");
|
2
|
-
|
3
|
-
/*
|
4
|
-
Tecton Normalize
|
5
|
-
Inpsired by base q2-app _bootstrap.scss but conflicting resets are removed.
|
6
|
-
Wrapped in data-tecton-module for use in platforms
|
7
|
-
*/
|
8
|
-
|
9
|
-
[data-tecton-module] article,
|
10
|
-
[data-tecton-module] aside,
|
11
|
-
[data-tecton-module] details,
|
12
|
-
[data-tecton-module] figcaption,
|
13
|
-
[data-tecton-module] figure,
|
14
|
-
[data-tecton-module] footer,
|
15
|
-
[data-tecton-module] header,
|
16
|
-
[data-tecton-module] hgroup,
|
17
|
-
[data-tecton-module] main,
|
18
|
-
[data-tecton-module] nav,
|
19
|
-
[data-tecton-module] section,
|
20
|
-
[data-tecton-module] address,
|
21
|
-
[data-tecton-module] summary {
|
22
|
-
display: block;
|
23
|
-
}
|
24
|
-
[data-tecton-module] audio,
|
25
|
-
[data-tecton-module] canvas,
|
26
|
-
[data-tecton-module] video {
|
27
|
-
display: inline-block;
|
28
|
-
}
|
29
|
-
[data-tecton-module] audio:not([controls]) {
|
30
|
-
display: none;
|
31
|
-
height: 0;
|
32
|
-
}
|
33
|
-
[data-tecton-module] [hidden] {
|
34
|
-
display: none;
|
35
|
-
}
|
36
|
-
[data-tecton-module] html {
|
37
|
-
font-family: sans-serif;
|
38
|
-
/* stylelint-disable */
|
39
|
-
-webkit-text-size-adjust: 100%;
|
40
|
-
-ms-text-size-adjust: 100%;
|
41
|
-
/* stylelint-enable */
|
42
|
-
}
|
43
|
-
[data-tecton-module] body {
|
44
|
-
margin: 0;
|
45
|
-
}
|
46
|
-
[data-tecton-module] a:focus {
|
47
|
-
outline: thin dotted;
|
48
|
-
}
|
49
|
-
[data-tecton-module] a:active,
|
50
|
-
[data-tecton-module] a:hover {
|
51
|
-
outline: 0;
|
52
|
-
}
|
53
|
-
[data-tecton-module] b,
|
54
|
-
[data-tecton-module] strong {
|
55
|
-
font-weight: 700;
|
56
|
-
}
|
57
|
-
[data-tecton-module] dfn {
|
58
|
-
font-style: italic;
|
59
|
-
}
|
60
|
-
[data-tecton-module] hr {
|
61
|
-
height: 0;
|
62
|
-
margin-top: 20px;
|
63
|
-
margin-bottom: 20px;
|
64
|
-
border: 0;
|
65
|
-
border-top: 1px solid #eeeeee;
|
66
|
-
box-sizing: content-box;
|
67
|
-
}
|
68
|
-
[data-tecton-module] div,
|
69
|
-
[data-tecton-module] input,
|
70
|
-
[data-tecton-module] a {
|
71
|
-
box-sizing: border-box;
|
72
|
-
}
|
73
|
-
[data-tecton-module] code,
|
74
|
-
[data-tecton-module] kbd,
|
75
|
-
[data-tecton-module] pre,
|
76
|
-
[data-tecton-module] samp {
|
77
|
-
font-family: monospace, serif;
|
78
|
-
font-size: 1em;
|
79
|
-
}
|
80
|
-
[data-tecton-module] pre {
|
81
|
-
white-space: pre-wrap;
|
82
|
-
}
|
83
|
-
[data-tecton-module] q {
|
84
|
-
quotes: "“" "”" "‘" "’";
|
85
|
-
}
|
86
|
-
[data-tecton-module] sub,
|
87
|
-
[data-tecton-module] sup {
|
88
|
-
position: relative;
|
89
|
-
font-size: 75%;
|
90
|
-
line-height: 0;
|
91
|
-
vertical-align: baseline;
|
92
|
-
}
|
93
|
-
[data-tecton-module] sup {
|
94
|
-
top: -0.5em;
|
95
|
-
}
|
96
|
-
[data-tecton-module] sub {
|
97
|
-
bottom: -0.25em;
|
98
|
-
}
|
99
|
-
[data-tecton-module] img {
|
100
|
-
border: 0;
|
101
|
-
}
|
102
|
-
[data-tecton-module] svg:not(:root) {
|
103
|
-
overflow: hidden;
|
104
|
-
}
|
105
|
-
[data-tecton-module] figure {
|
106
|
-
margin: 0;
|
107
|
-
}
|
108
|
-
[data-tecton-module] legend {
|
109
|
-
padding: 0;
|
110
|
-
border: 0;
|
111
|
-
}
|
112
|
-
[data-tecton-module] button,
|
113
|
-
[data-tecton-module] input,
|
114
|
-
[data-tecton-module] select,
|
115
|
-
[data-tecton-module] textarea {
|
116
|
-
margin: 0;
|
117
|
-
box-sizing: border-box;
|
118
|
-
font-family: inherit;
|
119
|
-
line-height: inherit;
|
120
|
-
font-size: 100%;
|
121
|
-
}
|
122
|
-
[data-tecton-module] button,
|
123
|
-
[data-tecton-module] input {
|
124
|
-
line-height: normal;
|
125
|
-
}
|
126
|
-
[data-tecton-module] button,
|
127
|
-
[data-tecton-module] select {
|
128
|
-
text-transform: none;
|
129
|
-
}
|
130
|
-
[data-tecton-module] button,
|
131
|
-
[data-tecton-module] html input[type="button"],
|
132
|
-
[data-tecton-module] input[type="reset"],
|
133
|
-
[data-tecton-module] input[type="submit"] {
|
134
|
-
cursor: pointer;
|
135
|
-
/* stylelint-disable */
|
136
|
-
-webkit-appearance: button;
|
137
|
-
/* stylelint-enable */
|
138
|
-
}
|
139
|
-
[data-tecton-module] button[disabled],
|
140
|
-
[data-tecton-module] html input[disabled] {
|
141
|
-
cursor: default;
|
142
|
-
}
|
143
|
-
[data-tecton-module] input[type="checkbox"],
|
144
|
-
[data-tecton-module] input[type="radio"] {
|
145
|
-
padding: 0;
|
146
|
-
box-sizing: border-box;
|
147
|
-
}
|
148
|
-
[data-tecton-module] input[type="search"] {
|
149
|
-
box-sizing: content-box;
|
150
|
-
/* stylelint-disable */
|
151
|
-
-webkit-appearance: textfield;
|
152
|
-
/* stylelint-enable */
|
153
|
-
}
|
154
|
-
[data-tecton-module] input[type="search"]::-webkit-search-cancel-button,
|
155
|
-
[data-tecton-module] input[type="search"]::-webkit-search-decoration {
|
156
|
-
/* stylelint-disable */
|
157
|
-
-webkit-appearance: none;
|
158
|
-
/* stylelint-enable */
|
159
|
-
}
|
160
|
-
[data-tecton-module] button::-moz-focus-inner,
|
161
|
-
[data-tecton-module] input::-moz-focus-inner {
|
162
|
-
padding: 0;
|
163
|
-
border: 0;
|
164
|
-
}
|
165
|
-
[data-tecton-module] textarea {
|
166
|
-
overflow: auto;
|
167
|
-
vertical-align: top;
|
168
|
-
}
|
169
|
-
[data-tecton-module] table {
|
170
|
-
border-collapse: collapse;
|
171
|
-
border-spacing: 0;
|
172
|
-
}
|
173
|
-
[data-tecton-module] button,
|
174
|
-
[data-tecton-module] input,
|
175
|
-
[data-tecton-module] select[multiple],
|
176
|
-
[data-tecton-module] textarea {
|
177
|
-
background-image: none;
|
178
|
-
}
|
179
|
-
[data-tecton-module] .sr-only {
|
180
|
-
position: absolute;
|
181
|
-
width: 1px;
|
182
|
-
height: 1px;
|
183
|
-
padding: 0;
|
184
|
-
margin: -1px;
|
185
|
-
overflow: hidden;
|
186
|
-
clip: rect(0 0 0 0);
|
187
|
-
border: 0;
|
188
|
-
}
|
189
|
-
[data-tecton-module] cite {
|
190
|
-
font-style: normal;
|
191
|
-
}
|
192
|
-
[data-tecton-module] p {
|
193
|
-
margin: 0 0 10px;
|
194
|
-
}
|
195
|
-
[data-tecton-module] ul,
|
196
|
-
[data-tecton-module] ol {
|
197
|
-
margin-top: 0;
|
198
|
-
margin-bottom: 10px;
|
199
|
-
}
|
200
|
-
[data-tecton-module] ul ul,
|
201
|
-
[data-tecton-module] ol ul,
|
202
|
-
[data-tecton-module] ul ol,
|
203
|
-
[data-tecton-module] ol ol {
|
204
|
-
margin-bottom: 0;
|
205
|
-
}
|
206
|
-
[data-tecton-module] dl {
|
207
|
-
margin-bottom: 20px;
|
208
|
-
}
|
209
|
-
[data-tecton-module] dt,
|
210
|
-
[data-tecton-module] dd {
|
211
|
-
line-height: 1.428571429;
|
212
|
-
}
|
213
|
-
[data-tecton-module] dt {
|
214
|
-
font-weight: 700;
|
215
|
-
}
|
216
|
-
[data-tecton-module] dd {
|
217
|
-
margin-left: 0;
|
218
|
-
}
|
219
|
-
[data-tecton-module] address {
|
220
|
-
display: block;
|
221
|
-
}
|
222
|
-
[data-tecton-module] h1,
|
223
|
-
[data-tecton-module] h2,
|
224
|
-
[data-tecton-module] h3,
|
225
|
-
[data-tecton-module] .heading-1,
|
226
|
-
[data-tecton-module] .heading-2,
|
227
|
-
[data-tecton-module] .heading-3 {
|
228
|
-
margin-top: 1.4285714286rem;
|
229
|
-
margin-bottom: 0.7142857143rem;
|
230
|
-
}
|
231
|
-
[data-tecton-module] h4,
|
232
|
-
[data-tecton-module] h5,
|
233
|
-
[data-tecton-module] h6,
|
234
|
-
[data-tecton-module] .heading-4,
|
235
|
-
[data-tecton-module] .heading-5,
|
236
|
-
[data-tecton-module] .heading-6 {
|
237
|
-
margin-top: 0.7142857143rem;
|
238
|
-
margin-bottom: 0.7142857143rem;
|
239
|
-
}
|
240
|
-
[data-tecton-module] h1,
|
241
|
-
[data-tecton-module] .heading-1 {
|
242
|
-
font-size: 2.0714285714rem;
|
243
|
-
font-weight: 400;
|
244
|
-
}
|
245
|
-
@media screen and (max-width: 767px) {
|
246
|
-
[data-tecton-module] h1,
|
247
|
-
[data-tecton-module] .heading-1 {
|
248
|
-
font-size: 1.7857142857rem;
|
249
|
-
}
|
250
|
-
}
|
251
|
-
[data-tecton-module] h2,
|
252
|
-
[data-tecton-module] .heading-2 {
|
253
|
-
font-size: 1.4285714286rem;
|
254
|
-
font-weight: 600;
|
255
|
-
text-transform: uppercase;
|
256
|
-
letter-spacing: 0.5px;
|
257
|
-
}
|
258
|
-
[data-tecton-module] h3,
|
259
|
-
[data-tecton-module] .heading-3 {
|
260
|
-
font-size: 1.2142857143rem;
|
261
|
-
font-weight: 600;
|
262
|
-
}
|
263
|
-
[data-tecton-module] h4,
|
264
|
-
[data-tecton-module] .heading-4 {
|
265
|
-
font-size: 1rem;
|
266
|
-
font-weight: 600;
|
267
|
-
}
|
268
|
-
[data-tecton-module] h5,
|
269
|
-
[data-tecton-module] h6,
|
270
|
-
[data-tecton-module] .heading-5,
|
271
|
-
[data-tecton-module] .heading-6 {
|
272
|
-
font-size: inherit;
|
273
|
-
font-weight: 400;
|
274
|
-
}
|
275
|
-
[data-tecton-module] p {
|
276
|
-
font-size: 1rem;
|
277
|
-
font-weight: 400;
|
278
|
-
line-height: 1.5;
|
279
|
-
}
|
280
|
-
[data-tecton-module] small,
|
281
|
-
[data-tecton-module] .small-copy {
|
282
|
-
font-size: 0.8571428571rem;
|
283
|
-
font-weight: 400;
|
284
|
-
}
|
285
|
-
[data-tecton-module] .light {
|
286
|
-
font-weight: 300;
|
287
|
-
}
|
288
|
-
[data-tecton-module] .semibold {
|
289
|
-
font-weight: 600;
|
290
|
-
}
|
291
|
-
[data-tecton-module] .bold {
|
292
|
-
font-weight: 700;
|
293
|
-
}
|
294
|
-
[data-tecton-module] .empty-state,
|
295
|
-
[data-tecton-module] .no-history {
|
296
|
-
font-style: italic;
|
297
|
-
}
|
298
|
-
|
299
|
-
[data-tecton-module] .mrg\(a\) {
|
300
|
-
margin: auto;
|
301
|
-
}
|
302
|
-
[data-tecton-module] .mrg-y\(a\) {
|
303
|
-
margin-top: auto;
|
304
|
-
margin-bottom: auto;
|
305
|
-
}
|
306
|
-
[data-tecton-module] .mrg-x\(a\) {
|
307
|
-
margin-left: auto;
|
308
|
-
margin-right: auto;
|
309
|
-
}
|
310
|
-
[data-tecton-module] .mrg-t\(a\) {
|
311
|
-
margin-top: auto;
|
312
|
-
}
|
313
|
-
[data-tecton-module] .mrg-b\(a\) {
|
314
|
-
margin-bottom: auto;
|
315
|
-
}
|
316
|
-
[data-tecton-module] .mrg-l\(a\) {
|
317
|
-
margin-left: auto;
|
318
|
-
}
|
319
|
-
[data-tecton-module] .mrg-r\(a\) {
|
320
|
-
margin-right: auto;
|
321
|
-
}
|
322
|
-
[data-tecton-module] .pad\(a\) {
|
323
|
-
padding: auto;
|
324
|
-
}
|
325
|
-
[data-tecton-module] .pad-y\(a\) {
|
326
|
-
padding-top: auto;
|
327
|
-
padding-bottom: auto;
|
328
|
-
}
|
329
|
-
[data-tecton-module] .pad-x\(a\) {
|
330
|
-
padding-left: auto;
|
331
|
-
padding-right: auto;
|
332
|
-
}
|
333
|
-
[data-tecton-module] .pad-t\(a\) {
|
334
|
-
padding-top: auto;
|
335
|
-
}
|
336
|
-
[data-tecton-module] .pad-b\(a\) {
|
337
|
-
padding-bottom: auto;
|
338
|
-
}
|
339
|
-
[data-tecton-module] .pad-l\(a\) {
|
340
|
-
padding-left: auto;
|
341
|
-
}
|
342
|
-
[data-tecton-module] .pad-r\(a\) {
|
343
|
-
padding-right: auto;
|
344
|
-
}
|
345
|
-
[data-tecton-module] .w\(a\) {
|
346
|
-
width: auto;
|
347
|
-
}
|
348
|
-
[data-tecton-module] .h\(a\) {
|
349
|
-
height: auto;
|
350
|
-
}
|
351
|
-
[data-tecton-module] .mrg\(0\) {
|
352
|
-
margin: 0px;
|
353
|
-
}
|
354
|
-
[data-tecton-module] .mrg-y\(0\) {
|
355
|
-
margin-top: 0px;
|
356
|
-
margin-bottom: 0px;
|
357
|
-
}
|
358
|
-
[data-tecton-module] .mrg-x\(0\) {
|
359
|
-
margin-left: 0px;
|
360
|
-
margin-right: 0px;
|
361
|
-
}
|
362
|
-
[data-tecton-module] .mrg-t\(0\) {
|
363
|
-
margin-top: 0px;
|
364
|
-
}
|
365
|
-
[data-tecton-module] .mrg-b\(0\) {
|
366
|
-
margin-bottom: 0px;
|
367
|
-
}
|
368
|
-
[data-tecton-module] .mrg-l\(0\) {
|
369
|
-
margin-left: 0px;
|
370
|
-
}
|
371
|
-
[data-tecton-module] .mrg-r\(0\) {
|
372
|
-
margin-right: 0px;
|
373
|
-
}
|
374
|
-
[data-tecton-module] .pad\(0\) {
|
375
|
-
padding: 0px;
|
376
|
-
}
|
377
|
-
[data-tecton-module] .pad-y\(0\) {
|
378
|
-
padding-top: 0px;
|
379
|
-
padding-bottom: 0px;
|
380
|
-
}
|
381
|
-
[data-tecton-module] .pad-x\(0\) {
|
382
|
-
padding-left: 0px;
|
383
|
-
padding-right: 0px;
|
384
|
-
}
|
385
|
-
[data-tecton-module] .pad-t\(0\) {
|
386
|
-
padding-top: 0px;
|
387
|
-
}
|
388
|
-
[data-tecton-module] .pad-b\(0\) {
|
389
|
-
padding-bottom: 0px;
|
390
|
-
}
|
391
|
-
[data-tecton-module] .pad-l\(0\) {
|
392
|
-
padding-left: 0px;
|
393
|
-
}
|
394
|
-
[data-tecton-module] .pad-r\(0\) {
|
395
|
-
padding-right: 0px;
|
396
|
-
}
|
397
|
-
[data-tecton-module] .w\(0\) {
|
398
|
-
width: 0px;
|
399
|
-
}
|
400
|
-
[data-tecton-module] .h\(0\) {
|
401
|
-
height: 0px;
|
402
|
-
}
|
403
|
-
[data-tecton-module] .mrg\(1\) {
|
404
|
-
margin: 5px;
|
405
|
-
}
|
406
|
-
[data-tecton-module] .mrg-y\(1\) {
|
407
|
-
margin-top: 5px;
|
408
|
-
margin-bottom: 5px;
|
409
|
-
}
|
410
|
-
[data-tecton-module] .mrg-x\(1\) {
|
411
|
-
margin-left: 5px;
|
412
|
-
margin-right: 5px;
|
413
|
-
}
|
414
|
-
[data-tecton-module] .mrg-t\(1\) {
|
415
|
-
margin-top: 5px;
|
416
|
-
}
|
417
|
-
[data-tecton-module] .mrg-b\(1\) {
|
418
|
-
margin-bottom: 5px;
|
419
|
-
}
|
420
|
-
[data-tecton-module] .mrg-l\(1\) {
|
421
|
-
margin-left: 5px;
|
422
|
-
}
|
423
|
-
[data-tecton-module] .mrg-r\(1\) {
|
424
|
-
margin-right: 5px;
|
425
|
-
}
|
426
|
-
[data-tecton-module] .pad\(1\) {
|
427
|
-
padding: 5px;
|
428
|
-
}
|
429
|
-
[data-tecton-module] .pad-y\(1\) {
|
430
|
-
padding-top: 5px;
|
431
|
-
padding-bottom: 5px;
|
432
|
-
}
|
433
|
-
[data-tecton-module] .pad-x\(1\) {
|
434
|
-
padding-left: 5px;
|
435
|
-
padding-right: 5px;
|
436
|
-
}
|
437
|
-
[data-tecton-module] .pad-t\(1\) {
|
438
|
-
padding-top: 5px;
|
439
|
-
}
|
440
|
-
[data-tecton-module] .pad-b\(1\) {
|
441
|
-
padding-bottom: 5px;
|
442
|
-
}
|
443
|
-
[data-tecton-module] .pad-l\(1\) {
|
444
|
-
padding-left: 5px;
|
445
|
-
}
|
446
|
-
[data-tecton-module] .pad-r\(1\) {
|
447
|
-
padding-right: 5px;
|
448
|
-
}
|
449
|
-
[data-tecton-module] .w\(1\) {
|
450
|
-
width: 5px;
|
451
|
-
}
|
452
|
-
[data-tecton-module] .h\(1\) {
|
453
|
-
height: 5px;
|
454
|
-
}
|
455
|
-
[data-tecton-module] .mrg\(2\) {
|
456
|
-
margin: 10px;
|
457
|
-
}
|
458
|
-
[data-tecton-module] .mrg-y\(2\) {
|
459
|
-
margin-top: 10px;
|
460
|
-
margin-bottom: 10px;
|
461
|
-
}
|
462
|
-
[data-tecton-module] .mrg-x\(2\) {
|
463
|
-
margin-left: 10px;
|
464
|
-
margin-right: 10px;
|
465
|
-
}
|
466
|
-
[data-tecton-module] .mrg-t\(2\) {
|
467
|
-
margin-top: 10px;
|
468
|
-
}
|
469
|
-
[data-tecton-module] .mrg-b\(2\) {
|
470
|
-
margin-bottom: 10px;
|
471
|
-
}
|
472
|
-
[data-tecton-module] .mrg-l\(2\) {
|
473
|
-
margin-left: 10px;
|
474
|
-
}
|
475
|
-
[data-tecton-module] .mrg-r\(2\) {
|
476
|
-
margin-right: 10px;
|
477
|
-
}
|
478
|
-
[data-tecton-module] .pad\(2\) {
|
479
|
-
padding: 10px;
|
480
|
-
}
|
481
|
-
[data-tecton-module] .pad-y\(2\) {
|
482
|
-
padding-top: 10px;
|
483
|
-
padding-bottom: 10px;
|
484
|
-
}
|
485
|
-
[data-tecton-module] .pad-x\(2\) {
|
486
|
-
padding-left: 10px;
|
487
|
-
padding-right: 10px;
|
488
|
-
}
|
489
|
-
[data-tecton-module] .pad-t\(2\) {
|
490
|
-
padding-top: 10px;
|
491
|
-
}
|
492
|
-
[data-tecton-module] .pad-b\(2\) {
|
493
|
-
padding-bottom: 10px;
|
494
|
-
}
|
495
|
-
[data-tecton-module] .pad-l\(2\) {
|
496
|
-
padding-left: 10px;
|
497
|
-
}
|
498
|
-
[data-tecton-module] .pad-r\(2\) {
|
499
|
-
padding-right: 10px;
|
500
|
-
}
|
501
|
-
[data-tecton-module] .w\(2\) {
|
502
|
-
width: 10px;
|
503
|
-
}
|
504
|
-
[data-tecton-module] .h\(2\) {
|
505
|
-
height: 10px;
|
506
|
-
}
|
507
|
-
[data-tecton-module] .mrg\(3\) {
|
508
|
-
margin: 15px;
|
509
|
-
}
|
510
|
-
[data-tecton-module] .mrg-y\(3\) {
|
511
|
-
margin-top: 15px;
|
512
|
-
margin-bottom: 15px;
|
513
|
-
}
|
514
|
-
[data-tecton-module] .mrg-x\(3\) {
|
515
|
-
margin-left: 15px;
|
516
|
-
margin-right: 15px;
|
517
|
-
}
|
518
|
-
[data-tecton-module] .mrg-t\(3\) {
|
519
|
-
margin-top: 15px;
|
520
|
-
}
|
521
|
-
[data-tecton-module] .mrg-b\(3\) {
|
522
|
-
margin-bottom: 15px;
|
523
|
-
}
|
524
|
-
[data-tecton-module] .mrg-l\(3\) {
|
525
|
-
margin-left: 15px;
|
526
|
-
}
|
527
|
-
[data-tecton-module] .mrg-r\(3\) {
|
528
|
-
margin-right: 15px;
|
529
|
-
}
|
530
|
-
[data-tecton-module] .pad\(3\) {
|
531
|
-
padding: 15px;
|
532
|
-
}
|
533
|
-
[data-tecton-module] .pad-y\(3\) {
|
534
|
-
padding-top: 15px;
|
535
|
-
padding-bottom: 15px;
|
536
|
-
}
|
537
|
-
[data-tecton-module] .pad-x\(3\) {
|
538
|
-
padding-left: 15px;
|
539
|
-
padding-right: 15px;
|
540
|
-
}
|
541
|
-
[data-tecton-module] .pad-t\(3\) {
|
542
|
-
padding-top: 15px;
|
543
|
-
}
|
544
|
-
[data-tecton-module] .pad-b\(3\) {
|
545
|
-
padding-bottom: 15px;
|
546
|
-
}
|
547
|
-
[data-tecton-module] .pad-l\(3\) {
|
548
|
-
padding-left: 15px;
|
549
|
-
}
|
550
|
-
[data-tecton-module] .pad-r\(3\) {
|
551
|
-
padding-right: 15px;
|
552
|
-
}
|
553
|
-
[data-tecton-module] .w\(3\) {
|
554
|
-
width: 15px;
|
555
|
-
}
|
556
|
-
[data-tecton-module] .h\(3\) {
|
557
|
-
height: 15px;
|
558
|
-
}
|
559
|
-
[data-tecton-module] .mrg\(4\) {
|
560
|
-
margin: 30px;
|
561
|
-
}
|
562
|
-
[data-tecton-module] .mrg-y\(4\) {
|
563
|
-
margin-top: 30px;
|
564
|
-
margin-bottom: 30px;
|
565
|
-
}
|
566
|
-
[data-tecton-module] .mrg-x\(4\) {
|
567
|
-
margin-left: 30px;
|
568
|
-
margin-right: 30px;
|
569
|
-
}
|
570
|
-
[data-tecton-module] .mrg-t\(4\) {
|
571
|
-
margin-top: 30px;
|
572
|
-
}
|
573
|
-
[data-tecton-module] .mrg-b\(4\) {
|
574
|
-
margin-bottom: 30px;
|
575
|
-
}
|
576
|
-
[data-tecton-module] .mrg-l\(4\) {
|
577
|
-
margin-left: 30px;
|
578
|
-
}
|
579
|
-
[data-tecton-module] .mrg-r\(4\) {
|
580
|
-
margin-right: 30px;
|
581
|
-
}
|
582
|
-
[data-tecton-module] .pad\(4\) {
|
583
|
-
padding: 30px;
|
584
|
-
}
|
585
|
-
[data-tecton-module] .pad-y\(4\) {
|
586
|
-
padding-top: 30px;
|
587
|
-
padding-bottom: 30px;
|
588
|
-
}
|
589
|
-
[data-tecton-module] .pad-x\(4\) {
|
590
|
-
padding-left: 30px;
|
591
|
-
padding-right: 30px;
|
592
|
-
}
|
593
|
-
[data-tecton-module] .pad-t\(4\) {
|
594
|
-
padding-top: 30px;
|
595
|
-
}
|
596
|
-
[data-tecton-module] .pad-b\(4\) {
|
597
|
-
padding-bottom: 30px;
|
598
|
-
}
|
599
|
-
[data-tecton-module] .pad-l\(4\) {
|
600
|
-
padding-left: 30px;
|
601
|
-
}
|
602
|
-
[data-tecton-module] .pad-r\(4\) {
|
603
|
-
padding-right: 30px;
|
604
|
-
}
|
605
|
-
[data-tecton-module] .w\(4\) {
|
606
|
-
width: 30px;
|
607
|
-
}
|
608
|
-
[data-tecton-module] .h\(4\) {
|
609
|
-
height: 30px;
|
610
|
-
}
|
611
|
-
[data-tecton-module] .mrg\(5\) {
|
612
|
-
margin: 45px;
|
613
|
-
}
|
614
|
-
[data-tecton-module] .mrg-y\(5\) {
|
615
|
-
margin-top: 45px;
|
616
|
-
margin-bottom: 45px;
|
617
|
-
}
|
618
|
-
[data-tecton-module] .mrg-x\(5\) {
|
619
|
-
margin-left: 45px;
|
620
|
-
margin-right: 45px;
|
621
|
-
}
|
622
|
-
[data-tecton-module] .mrg-t\(5\) {
|
623
|
-
margin-top: 45px;
|
624
|
-
}
|
625
|
-
[data-tecton-module] .mrg-b\(5\) {
|
626
|
-
margin-bottom: 45px;
|
627
|
-
}
|
628
|
-
[data-tecton-module] .mrg-l\(5\) {
|
629
|
-
margin-left: 45px;
|
630
|
-
}
|
631
|
-
[data-tecton-module] .mrg-r\(5\) {
|
632
|
-
margin-right: 45px;
|
633
|
-
}
|
634
|
-
[data-tecton-module] .pad\(5\) {
|
635
|
-
padding: 45px;
|
636
|
-
}
|
637
|
-
[data-tecton-module] .pad-y\(5\) {
|
638
|
-
padding-top: 45px;
|
639
|
-
padding-bottom: 45px;
|
640
|
-
}
|
641
|
-
[data-tecton-module] .pad-x\(5\) {
|
642
|
-
padding-left: 45px;
|
643
|
-
padding-right: 45px;
|
644
|
-
}
|
645
|
-
[data-tecton-module] .pad-t\(5\) {
|
646
|
-
padding-top: 45px;
|
647
|
-
}
|
648
|
-
[data-tecton-module] .pad-b\(5\) {
|
649
|
-
padding-bottom: 45px;
|
650
|
-
}
|
651
|
-
[data-tecton-module] .pad-l\(5\) {
|
652
|
-
padding-left: 45px;
|
653
|
-
}
|
654
|
-
[data-tecton-module] .pad-r\(5\) {
|
655
|
-
padding-right: 45px;
|
656
|
-
}
|
657
|
-
[data-tecton-module] .w\(5\) {
|
658
|
-
width: 45px;
|
659
|
-
}
|
660
|
-
[data-tecton-module] .h\(5\) {
|
661
|
-
height: 45px;
|
662
|
-
}
|
663
|
-
[data-tecton-module] .mrg\(6\) {
|
664
|
-
margin: 60px;
|
665
|
-
}
|
666
|
-
[data-tecton-module] .mrg-y\(6\) {
|
667
|
-
margin-top: 60px;
|
668
|
-
margin-bottom: 60px;
|
669
|
-
}
|
670
|
-
[data-tecton-module] .mrg-x\(6\) {
|
671
|
-
margin-left: 60px;
|
672
|
-
margin-right: 60px;
|
673
|
-
}
|
674
|
-
[data-tecton-module] .mrg-t\(6\) {
|
675
|
-
margin-top: 60px;
|
676
|
-
}
|
677
|
-
[data-tecton-module] .mrg-b\(6\) {
|
678
|
-
margin-bottom: 60px;
|
679
|
-
}
|
680
|
-
[data-tecton-module] .mrg-l\(6\) {
|
681
|
-
margin-left: 60px;
|
682
|
-
}
|
683
|
-
[data-tecton-module] .mrg-r\(6\) {
|
684
|
-
margin-right: 60px;
|
685
|
-
}
|
686
|
-
[data-tecton-module] .pad\(6\) {
|
687
|
-
padding: 60px;
|
688
|
-
}
|
689
|
-
[data-tecton-module] .pad-y\(6\) {
|
690
|
-
padding-top: 60px;
|
691
|
-
padding-bottom: 60px;
|
692
|
-
}
|
693
|
-
[data-tecton-module] .pad-x\(6\) {
|
694
|
-
padding-left: 60px;
|
695
|
-
padding-right: 60px;
|
696
|
-
}
|
697
|
-
[data-tecton-module] .pad-t\(6\) {
|
698
|
-
padding-top: 60px;
|
699
|
-
}
|
700
|
-
[data-tecton-module] .pad-b\(6\) {
|
701
|
-
padding-bottom: 60px;
|
702
|
-
}
|
703
|
-
[data-tecton-module] .pad-l\(6\) {
|
704
|
-
padding-left: 60px;
|
705
|
-
}
|
706
|
-
[data-tecton-module] .pad-r\(6\) {
|
707
|
-
padding-right: 60px;
|
708
|
-
}
|
709
|
-
[data-tecton-module] .w\(6\) {
|
710
|
-
width: 60px;
|
711
|
-
}
|
712
|
-
[data-tecton-module] .h\(6\) {
|
713
|
-
height: 60px;
|
714
|
-
}
|
715
|
-
|
716
|
-
[data-tecton-module] .h\(1x\) {
|
717
|
-
height: var(--tct-scale-1x, var(--app-scale-1x, 5px));
|
718
|
-
}
|
719
|
-
[data-tecton-module] .w\(1x\) {
|
720
|
-
width: var(--tct-scale-1x, var(--app-scale-1x, 5px));
|
721
|
-
}
|
722
|
-
[data-tecton-module] .h\(2x\) {
|
723
|
-
height: var(--tct-scale-2x, var(--app-scale-2x, 10px));
|
724
|
-
}
|
725
|
-
[data-tecton-module] .w\(2x\) {
|
726
|
-
width: var(--tct-scale-2x, var(--app-scale-2x, 10px));
|
727
|
-
}
|
728
|
-
[data-tecton-module] .h\(3x\) {
|
729
|
-
height: var(--tct-scale-3x, var(--app-scale-3x, 15px));
|
730
|
-
}
|
731
|
-
[data-tecton-module] .w\(3x\) {
|
732
|
-
width: var(--tct-scale-3x, var(--app-scale-3x, 15px));
|
733
|
-
}
|
734
|
-
[data-tecton-module] .h\(4x\) {
|
735
|
-
height: var(--tct-scale-4x, var(--app-scale-4x, 20px));
|
736
|
-
}
|
737
|
-
[data-tecton-module] .w\(4x\) {
|
738
|
-
width: var(--tct-scale-4x, var(--app-scale-4x, 20px));
|
739
|
-
}
|
740
|
-
[data-tecton-module] .h\(5x\) {
|
741
|
-
height: var(--tct-scale-5x, var(--app-scale-5x, 25px));
|
742
|
-
}
|
743
|
-
[data-tecton-module] .w\(5x\) {
|
744
|
-
width: var(--tct-scale-5x, var(--app-scale-5x, 25px));
|
745
|
-
}
|
746
|
-
[data-tecton-module] .h\(6x\) {
|
747
|
-
height: var(--tct-scale-6x, var(--app-scale-6x, 30px));
|
748
|
-
}
|
749
|
-
[data-tecton-module] .w\(6x\) {
|
750
|
-
width: var(--tct-scale-6x, var(--app-scale-6x, 30px));
|
751
|
-
}
|
752
|
-
[data-tecton-module] .h\(7x\) {
|
753
|
-
height: var(--tct-scale-7x, var(--app-scale-7x, 35px));
|
754
|
-
}
|
755
|
-
[data-tecton-module] .w\(7x\) {
|
756
|
-
width: var(--tct-scale-7x, var(--app-scale-7x, 35px));
|
757
|
-
}
|
758
|
-
[data-tecton-module] .h\(8x\) {
|
759
|
-
height: var(--tct-scale-8x, var(--app-scale-8x, 40px));
|
760
|
-
}
|
761
|
-
[data-tecton-module] .w\(8x\) {
|
762
|
-
width: var(--tct-scale-8x, var(--app-scale-8x, 40px));
|
763
|
-
}
|
764
|
-
[data-tecton-module] .h\(9x\) {
|
765
|
-
height: var(--tct-scale-9x, var(--app-scale-9x, 45px));
|
766
|
-
}
|
767
|
-
[data-tecton-module] .w\(9x\) {
|
768
|
-
width: var(--tct-scale-9x, var(--app-scale-9x, 45px));
|
769
|
-
}
|
770
|
-
[data-tecton-module] .h\(10x\) {
|
771
|
-
height: var(--tct-scale-10x, var(--app-scale-10x, 50px));
|
772
|
-
}
|
773
|
-
[data-tecton-module] .w\(10x\) {
|
774
|
-
width: var(--tct-scale-10x, var(--app-scale-10x, 50px));
|
775
|
-
}
|
776
|
-
[data-tecton-module] .h\(11x\) {
|
777
|
-
height: var(--tct-scale-11x, var(--app-scale-11x, 55px));
|
778
|
-
}
|
779
|
-
[data-tecton-module] .w\(11x\) {
|
780
|
-
width: var(--tct-scale-11x, var(--app-scale-11x, 55px));
|
781
|
-
}
|
782
|
-
[data-tecton-module] .h\(12x\) {
|
783
|
-
height: var(--tct-scale-12x, var(--app-scale-12x, 60px));
|
784
|
-
}
|
785
|
-
[data-tecton-module] .w\(12x\) {
|
786
|
-
width: var(--tct-scale-12x, var(--app-scale-12x, 60px));
|
787
|
-
}
|
788
|
-
[data-tecton-module] .tooltipped {
|
789
|
-
position: relative;
|
790
|
-
}
|
791
|
-
|
792
|
-
@keyframes tooltippedFade {
|
793
|
-
from {
|
794
|
-
opacity: 0;
|
795
|
-
}
|
796
|
-
to {
|
797
|
-
opacity: 1;
|
798
|
-
}
|
799
|
-
}
|
800
|
-
[data-tecton-module] .tooltipped:before {
|
801
|
-
position: absolute;
|
802
|
-
z-index: 1000001;
|
803
|
-
width: 0;
|
804
|
-
height: 0;
|
805
|
-
color: var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));
|
806
|
-
pointer-events: none;
|
807
|
-
content: "";
|
808
|
-
border: var(--app-tooltip-size, 5px) solid transparent;
|
809
|
-
}
|
810
|
-
[data-tecton-module] .tooltipped:after {
|
811
|
-
position: absolute;
|
812
|
-
z-index: 1000000;
|
813
|
-
padding: var(--app-tooltip-size, 5px) 8px;
|
814
|
-
font-family: "OpenSans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
815
|
-
font-weight: 600;
|
816
|
-
font-size: 12px;
|
817
|
-
line-height: 1.5;
|
818
|
-
color: var(--app-tooltip-text-color, #ffffff);
|
819
|
-
text-align: center;
|
820
|
-
text-decoration: none;
|
821
|
-
text-shadow: none;
|
822
|
-
text-transform: none;
|
823
|
-
letter-spacing: normal;
|
824
|
-
word-wrap: break-word;
|
825
|
-
white-space: pre;
|
826
|
-
pointer-events: none;
|
827
|
-
content: attr(aria-label);
|
828
|
-
background: var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));
|
829
|
-
border-radius: 3px;
|
830
|
-
}
|
831
|
-
[data-tecton-module] .tooltipped[label][stencil-hydrated]:after {
|
832
|
-
content: attr(label);
|
833
|
-
}
|
834
|
-
[data-tecton-module] .tooltipped:before,
|
835
|
-
[data-tecton-module] .tooltipped:after {
|
836
|
-
display: inline-block;
|
837
|
-
visibility: hidden;
|
838
|
-
opacity: 0;
|
839
|
-
transition: all 250ms ease-in-out 0s;
|
840
|
-
}
|
841
|
-
[data-tecton-module] .tooltipped:hover:before,
|
842
|
-
[data-tecton-module] .tooltipped:hover:after,
|
843
|
-
[data-tecton-module] .tooltipped:active:before,
|
844
|
-
[data-tecton-module] .tooltipped:active:after,
|
845
|
-
[data-tecton-module] .tooltipped:focus:before,
|
846
|
-
[data-tecton-module] .tooltipped:focus:after,
|
847
|
-
[data-tecton-module] .tooltipped:focus-within:before,
|
848
|
-
[data-tecton-module] .tooltipped:focus-within:after {
|
849
|
-
text-decoration: none;
|
850
|
-
visibility: visible;
|
851
|
-
opacity: 1;
|
852
|
-
}
|
853
|
-
[data-tecton-module] .tooltipped:hover:before,
|
854
|
-
[data-tecton-module] .tooltipped:hover:after,
|
855
|
-
[data-tecton-module] .tooltipped:active:before,
|
856
|
-
[data-tecton-module] .tooltipped:active:after {
|
857
|
-
transition: all 250ms ease-in-out;
|
858
|
-
}
|
859
|
-
[data-tecton-module] .tooltipped:hover:before,
|
860
|
-
[data-tecton-module] .tooltipped:hover:after {
|
861
|
-
transition-delay: 1s;
|
862
|
-
}
|
863
|
-
[data-tecton-module] .tooltipped:focus:before,
|
864
|
-
[data-tecton-module] .tooltipped:focus:after,
|
865
|
-
[data-tecton-module] .tooltipped:focus-within:before,
|
866
|
-
[data-tecton-module] .tooltipped:focus-within:after {
|
867
|
-
animation-timing-function: ease-in-out;
|
868
|
-
animation-fill-mode: forwards;
|
869
|
-
animation-name: tooltippedFade, tooltippedFade;
|
870
|
-
animation-direction: normal, reverse;
|
871
|
-
animation-duration: var(--app-tooltip-transition-duration, 250ms);
|
872
|
-
animation-delay: 0ms,
|
873
|
-
calc(
|
874
|
-
var(--app-tooltip-visible-duration, 2s) +
|
875
|
-
var(--app-tooltip-transition-duration, 250ms)
|
876
|
-
);
|
877
|
-
}
|
878
|
-
[data-tecton-module]
|
879
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):hover:before,
|
880
|
-
[data-tecton-module]
|
881
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):hover:after,
|
882
|
-
[data-tecton-module]
|
883
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):active:before,
|
884
|
-
[data-tecton-module]
|
885
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):active:after,
|
886
|
-
[data-tecton-module]
|
887
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus:before,
|
888
|
-
[data-tecton-module]
|
889
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus:after,
|
890
|
-
[data-tecton-module]
|
891
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:hover:before,
|
892
|
-
[data-tecton-module]
|
893
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:hover:after,
|
894
|
-
[data-tecton-module]
|
895
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:active:before,
|
896
|
-
[data-tecton-module]
|
897
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:active:after,
|
898
|
-
[data-tecton-module]
|
899
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:focus:before,
|
900
|
-
[data-tecton-module]
|
901
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:focus:after,
|
902
|
-
[data-tecton-module]
|
903
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):hover:before,
|
904
|
-
[data-tecton-module]
|
905
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):hover:after,
|
906
|
-
[data-tecton-module]
|
907
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):active:before,
|
908
|
-
[data-tecton-module]
|
909
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):active:after,
|
910
|
-
[data-tecton-module]
|
911
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):focus:before,
|
912
|
-
[data-tecton-module]
|
913
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):focus:after {
|
914
|
-
display: none;
|
915
|
-
}
|
916
|
-
[data-tecton-module]
|
917
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus-within:before,
|
918
|
-
[data-tecton-module]
|
919
|
-
.tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus-within:after,
|
920
|
-
[data-tecton-module]
|
921
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:focus-within:before,
|
922
|
-
[data-tecton-module]
|
923
|
-
.tooltipped:not([stencil-hydrated])[aria-label=""]:focus-within:after,
|
924
|
-
[data-tecton-module]
|
925
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):focus-within:before,
|
926
|
-
[data-tecton-module]
|
927
|
-
.tooltipped:not([stencil-hydrated]):not([aria-label]):focus-within:after {
|
928
|
-
display: none;
|
929
|
-
}
|
930
|
-
[data-tecton-module] .tooltipped-multiline:after {
|
931
|
-
width: -webkit-max-content;
|
932
|
-
width: -moz-max-content;
|
933
|
-
width: max-content;
|
934
|
-
max-width: var(--app-tooltip-multiline-max-width, 200px);
|
935
|
-
word-break: break-word;
|
936
|
-
word-wrap: normal;
|
937
|
-
white-space: pre-line;
|
938
|
-
border-collapse: separate;
|
939
|
-
text-align: left;
|
940
|
-
}
|
941
|
-
[data-tecton-module] .tooltipped-multiline.tooltipped-s:after,
|
942
|
-
[data-tecton-module] .tooltipped-multiline.tooltipped-n:after {
|
943
|
-
right: auto;
|
944
|
-
left: 50%;
|
945
|
-
transform: translateX(-50%);
|
946
|
-
}
|
947
|
-
[data-tecton-module] .tooltipped-multiline.tooltipped-w:after,
|
948
|
-
[data-tecton-module] .tooltipped-multiline.tooltipped-e:after {
|
949
|
-
right: 100%;
|
950
|
-
}
|
951
|
-
[data-tecton-module] .tooltipped-multiline:hover:after,
|
952
|
-
[data-tecton-module] .tooltipped-multiline:active:after,
|
953
|
-
[data-tecton-module] .tooltipped-multiline:focus:after {
|
954
|
-
display: table-cell;
|
955
|
-
}
|
956
|
-
[data-tecton-module] .tooltipped-multiline:focus-within:after {
|
957
|
-
display: table-cell;
|
958
|
-
}
|
959
|
-
[data-tecton-module] .tooltipped-sticky:before,
|
960
|
-
[data-tecton-module] .tooltipped-sticky:after {
|
961
|
-
display: inline-block;
|
962
|
-
}
|
963
|
-
[data-tecton-module] .tooltipped-sticky.tooltipped-multiline:after {
|
964
|
-
display: table-cell;
|
965
|
-
}
|
966
|
-
[data-tecton-module] .tooltipped-s:after,
|
967
|
-
[data-tecton-module] .tooltipped-se:after,
|
968
|
-
[data-tecton-module] .tooltipped-sw:after {
|
969
|
-
top: 100%;
|
970
|
-
right: 50%;
|
971
|
-
margin-top: var(--app-tooltip-size, 5px);
|
972
|
-
}
|
973
|
-
[data-tecton-module] .tooltipped-s:before,
|
974
|
-
[data-tecton-module] .tooltipped-se:before,
|
975
|
-
[data-tecton-module] .tooltipped-sw:before {
|
976
|
-
top: auto;
|
977
|
-
right: 50%;
|
978
|
-
bottom: var(--app-tooltip-position, -5px);
|
979
|
-
margin-right: var(--app-tooltip-position, -5px);
|
980
|
-
border-bottom-color: var(
|
981
|
-
--app-tooltip-background-color,
|
982
|
-
rgba(0, 0, 0, 0.8)
|
983
|
-
);
|
984
|
-
}
|
985
|
-
[data-tecton-module] .tooltipped-se:after {
|
986
|
-
right: auto;
|
987
|
-
left: 50%;
|
988
|
-
margin-left: var(--app-tooltip-body-offset, -15px);
|
989
|
-
}
|
990
|
-
[data-tecton-module] .tooltipped-sw:after {
|
991
|
-
margin-right: var(--app-tooltip-body-offset, -15px);
|
992
|
-
}
|
993
|
-
[data-tecton-module] .tooltipped-n:after,
|
994
|
-
[data-tecton-module] .tooltipped-ne:after,
|
995
|
-
[data-tecton-module] .tooltipped-nw:after {
|
996
|
-
right: 50%;
|
997
|
-
bottom: 100%;
|
998
|
-
margin-bottom: var(--app-tooltip-size, 5px);
|
999
|
-
}
|
1000
|
-
[data-tecton-module] .tooltipped-n:before,
|
1001
|
-
[data-tecton-module] .tooltipped-ne:before,
|
1002
|
-
[data-tecton-module] .tooltipped-nw:before {
|
1003
|
-
top: var(--app-tooltip-position, -5px);
|
1004
|
-
right: 50%;
|
1005
|
-
bottom: auto;
|
1006
|
-
margin-right: var(--app-tooltip-position, -5px);
|
1007
|
-
border-top-color: var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));
|
1008
|
-
}
|
1009
|
-
[data-tecton-module] .tooltipped-ne:after {
|
1010
|
-
right: auto;
|
1011
|
-
left: 50%;
|
1012
|
-
margin-left: var(--app-tooltip-body-offset, -15px);
|
1013
|
-
}
|
1014
|
-
[data-tecton-module] .tooltipped-nw:after {
|
1015
|
-
margin-right: var(--app-tooltip-body-offset, -15px);
|
1016
|
-
}
|
1017
|
-
[data-tecton-module] .tooltipped-s:after,
|
1018
|
-
[data-tecton-module] .tooltipped-n:after {
|
1019
|
-
transform: translateX(50%);
|
1020
|
-
}
|
1021
|
-
[data-tecton-module] .tooltipped-w:after {
|
1022
|
-
right: 100%;
|
1023
|
-
bottom: 50%;
|
1024
|
-
margin-right: var(--app-tooltip-size, 5px);
|
1025
|
-
transform: translateY(50%);
|
1026
|
-
}
|
1027
|
-
[data-tecton-module] .tooltipped-w:before {
|
1028
|
-
top: 50%;
|
1029
|
-
bottom: 50%;
|
1030
|
-
left: var(--app-tooltip-position, -5px);
|
1031
|
-
margin-top: var(--app-tooltip-position, -5px);
|
1032
|
-
border-left-color: var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));
|
1033
|
-
}
|
1034
|
-
[data-tecton-module] .tooltipped-e:after {
|
1035
|
-
bottom: 50%;
|
1036
|
-
left: 100%;
|
1037
|
-
margin-left: var(--app-tooltip-size, 5px);
|
1038
|
-
transform: translateY(50%);
|
1039
|
-
}
|
1040
|
-
[data-tecton-module] .tooltipped-e:before {
|
1041
|
-
top: 50%;
|
1042
|
-
right: var(--app-tooltip-position, -5px);
|
1043
|
-
bottom: 50%;
|
1044
|
-
margin-top: var(--app-tooltip-position, -5px);
|
1045
|
-
border-right-color: var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));
|
1046
|
-
}
|
1047
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):hover:before,
|
1048
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):hover:after,
|
1049
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):active:before,
|
1050
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):active:after,
|
1051
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus:before,
|
1052
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus:after,
|
1053
|
-
[data-tecton-module].phone
|
1054
|
-
.tooltipped:not(.tooltip-popover):focus-within:before,
|
1055
|
-
[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus-within:after,
|
1056
|
-
[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):hover:before,
|
1057
|
-
[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):hover:after,
|
1058
|
-
[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):active:before,
|
1059
|
-
[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):active:after,
|
1060
|
-
[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):focus:before,
|
1061
|
-
[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):focus:after,
|
1062
|
-
[data-tecton-module].tablet
|
1063
|
-
.tooltipped:not(.tooltip-popover):focus-within:before,
|
1064
|
-
[data-tecton-module].tablet
|
1065
|
-
.tooltipped:not(.tooltip-popover):focus-within:after {
|
1066
|
-
display: none;
|
1067
|
-
}
|
1068
|
-
|
1069
|
-
/* TODO: Merge the theme with fallback colors */
|
1070
|
-
|
1071
|
-
:root {
|
1072
|
-
/* default theme */
|
1073
|
-
|
1074
|
-
/*button */
|
1075
|
-
--tct-btn-font-size: 14px;
|
1076
|
-
--tct-btn-padding: 10px;
|
1077
|
-
|
1078
|
-
/* primary btn */
|
1079
|
-
--tct-btn-primary-bg: #510098;
|
1080
|
-
--tct-btn-primary-font-color: #ffffff;
|
1081
|
-
--tct-btn-primary-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.12);
|
1082
|
-
--tct-btn-primary-border-color: transparent;
|
1083
|
-
--tct-btn-primary-border-width: 0px;
|
1084
|
-
--tct-btn-primary-border-radius: 5px;
|
1085
|
-
--tct-btn-primary-font-weight: 400;
|
1086
|
-
--tct-btn-primary-text-transform: none;
|
1087
|
-
--tct-btn-primary-letter-spacing: normal;
|
1088
|
-
|
1089
|
-
/* primary btn hover effects */
|
1090
|
-
--tct-btn-primary-hover-bg: #510098;
|
1091
|
-
--tct-btn-primary-hover-font-color: #ffffff;
|
1092
|
-
--tct-btn-primary-hover-box-shadow: 8px 8px 8px rgba(98, 0, 255, 0.2);
|
1093
|
-
--tct-btn-primary-hover-border-color: transparent;
|
1094
|
-
|
1095
|
-
/* secondary btn */
|
1096
|
-
--tct-btn-secondary-bg: #8058bc;
|
1097
|
-
--tct-btn-secondary-font-color: #ffffff;
|
1098
|
-
--tct-btn-secondary-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.12);
|
1099
|
-
--tct-btn-secondary-border-color: transparent;
|
1100
|
-
--tct-btn-secondary-border-width: 0px;
|
1101
|
-
--tct-btn-secondary-border-radius: 5px;
|
1102
|
-
--tct-btn-secondary-font-weight: 400;
|
1103
|
-
--tct-btn-secondary-text-transform: none;
|
1104
|
-
--tct-btn-secondary-letter-spacing: normal;
|
1105
|
-
|
1106
|
-
/* secondary btn hover effects */
|
1107
|
-
--tct-btn-secondary-hover-bg: #8058bc;
|
1108
|
-
--tct-btn-secondary-hover-font-color: #ffffff;
|
1109
|
-
--tct-btn-secondary-hover-box-shadow: 8px 8px 8px rgba(98, 0, 255, 0.2);
|
1110
|
-
|
1111
|
-
/* neutral btn */
|
1112
|
-
--tct-btn-default-bg: #ffffff;
|
1113
|
-
--tct-btn-default-font-color: #510098;
|
1114
|
-
--tct-btn-default-font-weight: 400;
|
1115
|
-
|
1116
|
-
/* neutral btn hover effects */
|
1117
|
-
--tct-btn-default-hover-bg: #ffffff;
|
1118
|
-
--tct-btn-default-hover-font-color: #510098;
|
1119
|
-
--tct-btn-default-hover-box-shadow: 8px 8px 8px rgba(98, 0, 255, 0.2);
|
1120
|
-
|
1121
|
-
/*icon buttons */
|
1122
|
-
--tct-btn-icon-width: 50px;
|
1123
|
-
--tct-btn-icon-height: 50px;
|
1124
|
-
--tct-btn-icon-color: #510098;
|
1125
|
-
|
1126
|
-
/* icon button hover effects */
|
1127
|
-
--tct-btn-icon-hover-bg: #f2f2f2;
|
1128
|
-
--tct-btn-icon-active-bg: #f2f2f2;
|
1129
|
-
|
1130
|
-
/* badge buttons */
|
1131
|
-
--tct-btn-badge-font-size: 14px;
|
1132
|
-
--tct-btn-badge-bg: #510098;
|
1133
|
-
--tct-btn-badge-font-color: #ffffff;
|
1134
|
-
|
1135
|
-
/* badge hover effects */
|
1136
|
-
--tct-btn-badge-hover-bg: #8058bc;
|
1137
|
-
--tct-btn-badge-hover-font-color: #ffffff;
|
1138
|
-
|
1139
|
-
/* badge active */
|
1140
|
-
--tct-btn-badge-active-bg: #8058bc;
|
1141
|
-
--tct-btn-badge-active-font-color: #ffffff;
|
1142
|
-
|
1143
|
-
/* buttons disabled */
|
1144
|
-
--tct-btn-disabled-opacity: 0.6;
|
1145
|
-
--tct-btn-primary-disabled-bg: #510098;
|
1146
|
-
--tct-btn-primary-disabled-font-color: #ffffff;
|
1147
|
-
--tct-btn-primary-disabled-box-shadow: transparent;
|
1148
|
-
|
1149
|
-
--tct-btn-secondary-disabled-bg: #8058bc;
|
1150
|
-
--tct-btn-secondary-disabled-font-color: #ffffff;
|
1151
|
-
--tct-btn-secondary-disabled-box-shadow: transparent;
|
1152
|
-
|
1153
|
-
--tct-btn-neutral-disabled-bg: #ffffff;
|
1154
|
-
--tct-btn-neutral-disabled-font-color: #510098;
|
1155
|
-
--tct-btn-neutral-disabled-box-shadow: transparent;
|
1156
|
-
|
1157
|
-
/* checkbox with label */
|
1158
|
-
--tct-checkbox-font-weight: 300;
|
1159
|
-
--tct-input-label-optional-font-size: 14px;
|
1160
|
-
--tct-input-label-optional-font-weight: 300;
|
1161
|
-
|
1162
|
-
/* checkbox favorite */
|
1163
|
-
--t-checkbox-favorite-fill-color: #8058bc;
|
1164
|
-
--t-checkbox-favorite-stroke-width: 1;
|
1165
|
-
|
1166
|
-
/* checkbox disabled */
|
1167
|
-
--tct-checkbox-disabled-opacity: 0.6;
|
1168
|
-
|
1169
|
-
/* calendar */
|
1170
|
-
--tct-calendar-label-font-size: 16px;
|
1171
|
-
--tct-calendar-month-font-size: 14px;
|
1172
|
-
--tct-calendar-day-heading-font-size: 14px;
|
1173
|
-
--t-calendar-day-hover-bg: rgba(245, 238, 255, 0.5);
|
1174
|
-
--tct-calendar-day-selected-font-color: #510098;
|
1175
|
-
--tct-calendar-activity-indicator-color: #510098;
|
1176
|
-
|
1177
|
-
/* collapsible sections */
|
1178
|
-
--tct-section-bg: #ffffff;
|
1179
|
-
--tct-section-font-color: #090313;
|
1180
|
-
|
1181
|
-
/* dropdowns */
|
1182
|
-
--tct-dropdown-item-bg: #ffffff;
|
1183
|
-
--tct-dropdown-item-font-color: #090313;
|
1184
|
-
--tct-dropdown-item-selected-bg: #f1f1f1;
|
1185
|
-
|
1186
|
-
/* icons */
|
1187
|
-
--t-icon-size: 20px;
|
1188
|
-
--t-icon-stroke-width: 1;
|
1189
|
-
--t-icon-cap: round;
|
1190
|
-
--t-icon-stroke-primary: #090313;
|
1191
|
-
|
1192
|
-
/* inputs */
|
1193
|
-
--tct-input-font-size: 14px;
|
1194
|
-
--tct-input-placeholder-font-color: #797979;
|
1195
|
-
--tct-input-height: 40px;
|
1196
|
-
--tct-input-bg: #fefefe;
|
1197
|
-
--tct-input-font-color: #4b4b4b;
|
1198
|
-
|
1199
|
-
/* input label */
|
1200
|
-
--tct-input-label-font-color: #090313;
|
1201
|
-
--tct-input-label-font-size: 16px;
|
1202
|
-
--tct-input-label-font-weight: 500;
|
1203
|
-
|
1204
|
-
/* input borders */
|
1205
|
-
--tct-input-border-top-width: 0.5px;
|
1206
|
-
--tct-input-border-right-width: 0.5px;
|
1207
|
-
--tct-input-border-bottom-width: 0.5px;
|
1208
|
-
--tct-input-border-left-width: 0.5px;
|
1209
|
-
--tct-input-border-color: #510098;
|
1210
|
-
|
1211
|
-
/* loaders */
|
1212
|
-
--tct-loading-skeleton-shimmer-color: rgba(254, 254, 254, 0.5);
|
1213
|
-
--tct-loading-spinner-size: 40px;
|
1214
|
-
|
1215
|
-
/* messages */
|
1216
|
-
--tct-message-bg: #f5f5f5;
|
1217
|
-
--tct-input-messages-font-color: #090313;
|
1218
|
-
--tct-message-bar-width: 6px;
|
1219
|
-
--tct-message-padding: 15px;
|
1220
|
-
|
1221
|
-
/* options */
|
1222
|
-
--tct-tab-alt-active-color: #510098;
|
1223
|
-
--tct-optgroup-header-font-weight: 400;
|
1224
|
-
|
1225
|
-
/* selects */
|
1226
|
-
--tct-select-margin-top: 20px;
|
1227
|
-
--tct-select-margin-bottom: 20px;
|
1228
|
-
}
|
1
|
+
[data-tecton-module] article,[data-tecton-module] aside,[data-tecton-module] details,[data-tecton-module] figcaption,[data-tecton-module] figure,[data-tecton-module] footer,[data-tecton-module] header,[data-tecton-module] hgroup,[data-tecton-module] main,[data-tecton-module] nav,[data-tecton-module] section,[data-tecton-module] address,[data-tecton-module] summary{display:block}[data-tecton-module] audio,[data-tecton-module] canvas,[data-tecton-module] video{display:inline-block}[data-tecton-module] audio:not([controls]){display:none;height:0}[data-tecton-module] [hidden]{display:none}[data-tecton-module] html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}[data-tecton-module] body{margin:0}[data-tecton-module] a:focus{outline:thin dotted}[data-tecton-module] a:active,[data-tecton-module] a:hover{outline:0}[data-tecton-module] b,[data-tecton-module] strong{font-weight:700}[data-tecton-module] dfn{font-style:italic}[data-tecton-module] hr{height:0;margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee;box-sizing:content-box}[data-tecton-module] div,[data-tecton-module] input,[data-tecton-module] a{box-sizing:border-box}[data-tecton-module] code,[data-tecton-module] kbd,[data-tecton-module] pre,[data-tecton-module] samp{font-family:monospace,serif;font-size:1em}[data-tecton-module] pre{white-space:pre-wrap}[data-tecton-module] q{quotes:"“" "”" "‘" "’"}[data-tecton-module] sub,[data-tecton-module] sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}[data-tecton-module] sup{top:-0.5em}[data-tecton-module] sub{bottom:-0.25em}[data-tecton-module] img{border:0}[data-tecton-module] svg:not(:root){overflow:hidden}[data-tecton-module] figure{margin:0}[data-tecton-module] legend{padding:0;border:0}[data-tecton-module] button,[data-tecton-module] input,[data-tecton-module] select,[data-tecton-module] textarea{margin:0;box-sizing:border-box;font-family:inherit;line-height:inherit;font-size:100%}[data-tecton-module] button,[data-tecton-module] input{line-height:normal}[data-tecton-module] button,[data-tecton-module] select{text-transform:none}[data-tecton-module] button,[data-tecton-module] html input[type=button],[data-tecton-module] input[type=reset],[data-tecton-module] input[type=submit]{cursor:pointer;-webkit-appearance:button}[data-tecton-module] button[disabled],[data-tecton-module] html input[disabled]{cursor:default}[data-tecton-module] input[type=checkbox],[data-tecton-module] input[type=radio]{padding:0;box-sizing:border-box}[data-tecton-module] input[type=search]{box-sizing:content-box;-webkit-appearance:textfield}[data-tecton-module] input[type=search]::-webkit-search-cancel-button,[data-tecton-module] input[type=search]::-webkit-search-decoration{-webkit-appearance:none}[data-tecton-module] button::-moz-focus-inner,[data-tecton-module] input::-moz-focus-inner{padding:0;border:0}[data-tecton-module] textarea{overflow:auto;vertical-align:top}[data-tecton-module] table{border-collapse:collapse;border-spacing:0}[data-tecton-module] button,[data-tecton-module] input,[data-tecton-module] select[multiple],[data-tecton-module] textarea{background-image:none}[data-tecton-module] .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);border:0}[data-tecton-module] cite{font-style:normal}[data-tecton-module] p{margin:0 0 10px}[data-tecton-module] ul,[data-tecton-module] ol{margin-top:0;margin-bottom:10px}[data-tecton-module] ul ul,[data-tecton-module] ol ul,[data-tecton-module] ul ol,[data-tecton-module] ol ol{margin-bottom:0}[data-tecton-module] dl{margin-bottom:20px}[data-tecton-module] dt,[data-tecton-module] dd{line-height:1.428571429}[data-tecton-module] dt{font-weight:700}[data-tecton-module] dd{margin-left:0}[data-tecton-module] address{display:block}[data-tecton-module] h1,[data-tecton-module] h2,[data-tecton-module] h3,[data-tecton-module] .heading-1,[data-tecton-module] .heading-2,[data-tecton-module] .heading-3{margin-top:1.4285714286rem;margin-bottom:.7142857143rem}[data-tecton-module] h4,[data-tecton-module] h5,[data-tecton-module] h6,[data-tecton-module] .heading-4,[data-tecton-module] .heading-5,[data-tecton-module] .heading-6{margin-top:.7142857143rem;margin-bottom:.7142857143rem}[data-tecton-module] h1,[data-tecton-module] .heading-1{font-size:2.0714285714rem;font-weight:400}@media screen and (max-width: 767px){[data-tecton-module] h1,[data-tecton-module] .heading-1{font-size:1.7857142857rem}}[data-tecton-module] h2,[data-tecton-module] .heading-2{font-size:1.4285714286rem;font-weight:600;text-transform:uppercase;letter-spacing:.5px}[data-tecton-module] h3,[data-tecton-module] .heading-3{font-size:1.2142857143rem;font-weight:600}[data-tecton-module] h4,[data-tecton-module] .heading-4{font-size:1rem;font-weight:600}[data-tecton-module] h5,[data-tecton-module] h6,[data-tecton-module] .heading-5,[data-tecton-module] .heading-6{font-size:inherit;font-weight:400}[data-tecton-module] p{font-size:1rem;font-weight:400;line-height:1.5}[data-tecton-module] small,[data-tecton-module] .small-copy{font-size:.8571428571rem;font-weight:400}[data-tecton-module] .light{font-weight:300}[data-tecton-module] .semibold{font-weight:600}[data-tecton-module] .bold{font-weight:700}[data-tecton-module] .empty-state,[data-tecton-module] .no-history{font-style:italic}[data-tecton-module] .mrg\(a\){margin:auto}[data-tecton-module] .mrg-y\(a\){margin-top:auto;margin-bottom:auto}[data-tecton-module] .mrg-x\(a\){margin-left:auto;margin-right:auto}[data-tecton-module] .mrg-t\(a\){margin-top:auto}[data-tecton-module] .mrg-b\(a\){margin-bottom:auto}[data-tecton-module] .mrg-l\(a\){margin-left:auto}[data-tecton-module] .mrg-r\(a\){margin-right:auto}[data-tecton-module] .pad\(a\){padding:auto}[data-tecton-module] .pad-y\(a\){padding-top:auto;padding-bottom:auto}[data-tecton-module] .pad-x\(a\){padding-left:auto;padding-right:auto}[data-tecton-module] .pad-t\(a\){padding-top:auto}[data-tecton-module] .pad-b\(a\){padding-bottom:auto}[data-tecton-module] .pad-l\(a\){padding-left:auto}[data-tecton-module] .pad-r\(a\){padding-right:auto}[data-tecton-module] .w\(a\){width:auto}[data-tecton-module] .h\(a\){height:auto}[data-tecton-module] .mrg\(0\){margin:0px}[data-tecton-module] .mrg-y\(0\){margin-top:0px;margin-bottom:0px}[data-tecton-module] .mrg-x\(0\){margin-left:0px;margin-right:0px}[data-tecton-module] .mrg-t\(0\){margin-top:0px}[data-tecton-module] .mrg-b\(0\){margin-bottom:0px}[data-tecton-module] .mrg-l\(0\){margin-left:0px}[data-tecton-module] .mrg-r\(0\){margin-right:0px}[data-tecton-module] .pad\(0\){padding:0px}[data-tecton-module] .pad-y\(0\){padding-top:0px;padding-bottom:0px}[data-tecton-module] .pad-x\(0\){padding-left:0px;padding-right:0px}[data-tecton-module] .pad-t\(0\){padding-top:0px}[data-tecton-module] .pad-b\(0\){padding-bottom:0px}[data-tecton-module] .pad-l\(0\){padding-left:0px}[data-tecton-module] .pad-r\(0\){padding-right:0px}[data-tecton-module] .w\(0\){width:0px}[data-tecton-module] .h\(0\){height:0px}[data-tecton-module] .mrg\(1\){margin:5px}[data-tecton-module] .mrg-y\(1\){margin-top:5px;margin-bottom:5px}[data-tecton-module] .mrg-x\(1\){margin-left:5px;margin-right:5px}[data-tecton-module] .mrg-t\(1\){margin-top:5px}[data-tecton-module] .mrg-b\(1\){margin-bottom:5px}[data-tecton-module] .mrg-l\(1\){margin-left:5px}[data-tecton-module] .mrg-r\(1\){margin-right:5px}[data-tecton-module] .pad\(1\){padding:5px}[data-tecton-module] .pad-y\(1\){padding-top:5px;padding-bottom:5px}[data-tecton-module] .pad-x\(1\){padding-left:5px;padding-right:5px}[data-tecton-module] .pad-t\(1\){padding-top:5px}[data-tecton-module] .pad-b\(1\){padding-bottom:5px}[data-tecton-module] .pad-l\(1\){padding-left:5px}[data-tecton-module] .pad-r\(1\){padding-right:5px}[data-tecton-module] .w\(1\){width:5px}[data-tecton-module] .h\(1\){height:5px}[data-tecton-module] .mrg\(2\){margin:10px}[data-tecton-module] .mrg-y\(2\){margin-top:10px;margin-bottom:10px}[data-tecton-module] .mrg-x\(2\){margin-left:10px;margin-right:10px}[data-tecton-module] .mrg-t\(2\){margin-top:10px}[data-tecton-module] .mrg-b\(2\){margin-bottom:10px}[data-tecton-module] .mrg-l\(2\){margin-left:10px}[data-tecton-module] .mrg-r\(2\){margin-right:10px}[data-tecton-module] .pad\(2\){padding:10px}[data-tecton-module] .pad-y\(2\){padding-top:10px;padding-bottom:10px}[data-tecton-module] .pad-x\(2\){padding-left:10px;padding-right:10px}[data-tecton-module] .pad-t\(2\){padding-top:10px}[data-tecton-module] .pad-b\(2\){padding-bottom:10px}[data-tecton-module] .pad-l\(2\){padding-left:10px}[data-tecton-module] .pad-r\(2\){padding-right:10px}[data-tecton-module] .w\(2\){width:10px}[data-tecton-module] .h\(2\){height:10px}[data-tecton-module] .mrg\(3\){margin:15px}[data-tecton-module] .mrg-y\(3\){margin-top:15px;margin-bottom:15px}[data-tecton-module] .mrg-x\(3\){margin-left:15px;margin-right:15px}[data-tecton-module] .mrg-t\(3\){margin-top:15px}[data-tecton-module] .mrg-b\(3\){margin-bottom:15px}[data-tecton-module] .mrg-l\(3\){margin-left:15px}[data-tecton-module] .mrg-r\(3\){margin-right:15px}[data-tecton-module] .pad\(3\){padding:15px}[data-tecton-module] .pad-y\(3\){padding-top:15px;padding-bottom:15px}[data-tecton-module] .pad-x\(3\){padding-left:15px;padding-right:15px}[data-tecton-module] .pad-t\(3\){padding-top:15px}[data-tecton-module] .pad-b\(3\){padding-bottom:15px}[data-tecton-module] .pad-l\(3\){padding-left:15px}[data-tecton-module] .pad-r\(3\){padding-right:15px}[data-tecton-module] .w\(3\){width:15px}[data-tecton-module] .h\(3\){height:15px}[data-tecton-module] .mrg\(4\){margin:30px}[data-tecton-module] .mrg-y\(4\){margin-top:30px;margin-bottom:30px}[data-tecton-module] .mrg-x\(4\){margin-left:30px;margin-right:30px}[data-tecton-module] .mrg-t\(4\){margin-top:30px}[data-tecton-module] .mrg-b\(4\){margin-bottom:30px}[data-tecton-module] .mrg-l\(4\){margin-left:30px}[data-tecton-module] .mrg-r\(4\){margin-right:30px}[data-tecton-module] .pad\(4\){padding:30px}[data-tecton-module] .pad-y\(4\){padding-top:30px;padding-bottom:30px}[data-tecton-module] .pad-x\(4\){padding-left:30px;padding-right:30px}[data-tecton-module] .pad-t\(4\){padding-top:30px}[data-tecton-module] .pad-b\(4\){padding-bottom:30px}[data-tecton-module] .pad-l\(4\){padding-left:30px}[data-tecton-module] .pad-r\(4\){padding-right:30px}[data-tecton-module] .w\(4\){width:30px}[data-tecton-module] .h\(4\){height:30px}[data-tecton-module] .mrg\(5\){margin:45px}[data-tecton-module] .mrg-y\(5\){margin-top:45px;margin-bottom:45px}[data-tecton-module] .mrg-x\(5\){margin-left:45px;margin-right:45px}[data-tecton-module] .mrg-t\(5\){margin-top:45px}[data-tecton-module] .mrg-b\(5\){margin-bottom:45px}[data-tecton-module] .mrg-l\(5\){margin-left:45px}[data-tecton-module] .mrg-r\(5\){margin-right:45px}[data-tecton-module] .pad\(5\){padding:45px}[data-tecton-module] .pad-y\(5\){padding-top:45px;padding-bottom:45px}[data-tecton-module] .pad-x\(5\){padding-left:45px;padding-right:45px}[data-tecton-module] .pad-t\(5\){padding-top:45px}[data-tecton-module] .pad-b\(5\){padding-bottom:45px}[data-tecton-module] .pad-l\(5\){padding-left:45px}[data-tecton-module] .pad-r\(5\){padding-right:45px}[data-tecton-module] .w\(5\){width:45px}[data-tecton-module] .h\(5\){height:45px}[data-tecton-module] .mrg\(6\){margin:60px}[data-tecton-module] .mrg-y\(6\){margin-top:60px;margin-bottom:60px}[data-tecton-module] .mrg-x\(6\){margin-left:60px;margin-right:60px}[data-tecton-module] .mrg-t\(6\){margin-top:60px}[data-tecton-module] .mrg-b\(6\){margin-bottom:60px}[data-tecton-module] .mrg-l\(6\){margin-left:60px}[data-tecton-module] .mrg-r\(6\){margin-right:60px}[data-tecton-module] .pad\(6\){padding:60px}[data-tecton-module] .pad-y\(6\){padding-top:60px;padding-bottom:60px}[data-tecton-module] .pad-x\(6\){padding-left:60px;padding-right:60px}[data-tecton-module] .pad-t\(6\){padding-top:60px}[data-tecton-module] .pad-b\(6\){padding-bottom:60px}[data-tecton-module] .pad-l\(6\){padding-left:60px}[data-tecton-module] .pad-r\(6\){padding-right:60px}[data-tecton-module] .w\(6\){width:60px}[data-tecton-module] .h\(6\){height:60px}[data-tecton-module] .h\(1x\){height:var(--tct-scale-1x, var(--app-scale-1x, 5px))}[data-tecton-module] .w\(1x\){width:var(--tct-scale-1x, var(--app-scale-1x, 5px))}[data-tecton-module] .h\(2x\){height:var(--tct-scale-2x, var(--app-scale-2x, 10px))}[data-tecton-module] .w\(2x\){width:var(--tct-scale-2x, var(--app-scale-2x, 10px))}[data-tecton-module] .h\(3x\){height:var(--tct-scale-3x, var(--app-scale-3x, 15px))}[data-tecton-module] .w\(3x\){width:var(--tct-scale-3x, var(--app-scale-3x, 15px))}[data-tecton-module] .h\(4x\){height:var(--tct-scale-4x, var(--app-scale-4x, 20px))}[data-tecton-module] .w\(4x\){width:var(--tct-scale-4x, var(--app-scale-4x, 20px))}[data-tecton-module] .h\(5x\){height:var(--tct-scale-5x, var(--app-scale-5x, 25px))}[data-tecton-module] .w\(5x\){width:var(--tct-scale-5x, var(--app-scale-5x, 25px))}[data-tecton-module] .h\(6x\){height:var(--tct-scale-6x, var(--app-scale-6x, 30px))}[data-tecton-module] .w\(6x\){width:var(--tct-scale-6x, var(--app-scale-6x, 30px))}[data-tecton-module] .h\(7x\){height:var(--tct-scale-7x, var(--app-scale-7x, 35px))}[data-tecton-module] .w\(7x\){width:var(--tct-scale-7x, var(--app-scale-7x, 35px))}[data-tecton-module] .h\(8x\){height:var(--tct-scale-8x, var(--app-scale-8x, 40px))}[data-tecton-module] .w\(8x\){width:var(--tct-scale-8x, var(--app-scale-8x, 40px))}[data-tecton-module] .h\(9x\){height:var(--tct-scale-9x, var(--app-scale-9x, 45px))}[data-tecton-module] .w\(9x\){width:var(--tct-scale-9x, var(--app-scale-9x, 45px))}[data-tecton-module] .h\(10x\){height:var(--tct-scale-10x, var(--app-scale-10x, 50px))}[data-tecton-module] .w\(10x\){width:var(--tct-scale-10x, var(--app-scale-10x, 50px))}[data-tecton-module] .h\(11x\){height:var(--tct-scale-11x, var(--app-scale-11x, 55px))}[data-tecton-module] .w\(11x\){width:var(--tct-scale-11x, var(--app-scale-11x, 55px))}[data-tecton-module] .h\(12x\){height:var(--tct-scale-12x, var(--app-scale-12x, 60px))}[data-tecton-module] .w\(12x\){width:var(--tct-scale-12x, var(--app-scale-12x, 60px))}[data-tecton-module] .tooltipped{position:relative}@keyframes tooltippedFade{from{opacity:0}to{opacity:1}}[data-tecton-module] .tooltipped:before{position:absolute;z-index:1000001;width:0;height:0;color:var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));pointer-events:none;content:"";border:var(--app-tooltip-size, 5px) solid transparent}[data-tecton-module] .tooltipped:after{position:absolute;z-index:1000000;padding:var(--app-tooltip-size, 5px) 8px;font-family:"OpenSans","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:600;font-size:12px;line-height:1.5;color:var(--app-tooltip-text-color, #ffffff);text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8));border-radius:3px}[data-tecton-module] .tooltipped[label][stencil-hydrated]:after{content:attr(label)}[data-tecton-module] .tooltipped:before,[data-tecton-module] .tooltipped:after{display:inline-block;visibility:hidden;opacity:0;transition:all 250ms ease-in-out 0s}[data-tecton-module] .tooltipped:hover:before,[data-tecton-module] .tooltipped:hover:after,[data-tecton-module] .tooltipped:active:before,[data-tecton-module] .tooltipped:active:after,[data-tecton-module] .tooltipped:focus:before,[data-tecton-module] .tooltipped:focus:after,[data-tecton-module] .tooltipped:focus-within:before,[data-tecton-module] .tooltipped:focus-within:after{text-decoration:none;visibility:visible;opacity:1}[data-tecton-module] .tooltipped:hover:before,[data-tecton-module] .tooltipped:hover:after,[data-tecton-module] .tooltipped:active:before,[data-tecton-module] .tooltipped:active:after{transition:all 250ms ease-in-out}[data-tecton-module] .tooltipped:hover:before,[data-tecton-module] .tooltipped:hover:after{transition-delay:1s}[data-tecton-module] .tooltipped:focus:before,[data-tecton-module] .tooltipped:focus:after,[data-tecton-module] .tooltipped:focus-within:before,[data-tecton-module] .tooltipped:focus-within:after{animation-timing-function:ease-in-out;animation-fill-mode:forwards;animation-name:tooltippedFade,tooltippedFade;animation-direction:normal,reverse;animation-duration:var(--app-tooltip-transition-duration, 250ms);animation-delay:0ms,calc( var(--app-tooltip-visible-duration, 2s) + var(--app-tooltip-transition-duration, 250ms) )}[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):hover:before,[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):hover:after,[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):active:before,[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):active:after,[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus:before,[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus:after,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:hover:before,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:hover:after,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:active:before,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:active:after,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:focus:before,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:focus:after,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):hover:before,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):hover:after,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):active:before,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):active:after,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):focus:before,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):focus:after{display:none}[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus-within:before,[data-tecton-module] .tooltipped[stencil-hydrated]:not([label]):not([aria-label]):focus-within:after,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:focus-within:before,[data-tecton-module] .tooltipped:not([stencil-hydrated])[aria-label=""]:focus-within:after,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):focus-within:before,[data-tecton-module] .tooltipped:not([stencil-hydrated]):not([aria-label]):focus-within:after{display:none}[data-tecton-module] .tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:var(--app-tooltip-multiline-max-width, 200px);word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate;text-align:left}[data-tecton-module] .tooltipped-multiline.tooltipped-s:after,[data-tecton-module] .tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;transform:translateX(-50%)}[data-tecton-module] .tooltipped-multiline.tooltipped-w:after,[data-tecton-module] .tooltipped-multiline.tooltipped-e:after{right:100%}[data-tecton-module] .tooltipped-multiline:hover:after,[data-tecton-module] .tooltipped-multiline:active:after,[data-tecton-module] .tooltipped-multiline:focus:after{display:table-cell}[data-tecton-module] .tooltipped-multiline:focus-within:after{display:table-cell}[data-tecton-module] .tooltipped-sticky:before,[data-tecton-module] .tooltipped-sticky:after{display:inline-block}[data-tecton-module] .tooltipped-sticky.tooltipped-multiline:after{display:table-cell}[data-tecton-module] .tooltipped-s:after,[data-tecton-module] .tooltipped-se:after,[data-tecton-module] .tooltipped-sw:after{top:100%;right:50%;margin-top:var(--app-tooltip-size, 5px)}[data-tecton-module] .tooltipped-s:before,[data-tecton-module] .tooltipped-se:before,[data-tecton-module] .tooltipped-sw:before{top:auto;right:50%;bottom:var(--app-tooltip-position, -5px);margin-right:var(--app-tooltip-position, -5px);border-bottom-color:var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8))}[data-tecton-module] .tooltipped-se:after{right:auto;left:50%;margin-left:var(--app-tooltip-body-offset, -15px)}[data-tecton-module] .tooltipped-sw:after{margin-right:var(--app-tooltip-body-offset, -15px)}[data-tecton-module] .tooltipped-n:after,[data-tecton-module] .tooltipped-ne:after,[data-tecton-module] .tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:var(--app-tooltip-size, 5px)}[data-tecton-module] .tooltipped-n:before,[data-tecton-module] .tooltipped-ne:before,[data-tecton-module] .tooltipped-nw:before{top:var(--app-tooltip-position, -5px);right:50%;bottom:auto;margin-right:var(--app-tooltip-position, -5px);border-top-color:var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8))}[data-tecton-module] .tooltipped-ne:after{right:auto;left:50%;margin-left:var(--app-tooltip-body-offset, -15px)}[data-tecton-module] .tooltipped-nw:after{margin-right:var(--app-tooltip-body-offset, -15px)}[data-tecton-module] .tooltipped-s:after,[data-tecton-module] .tooltipped-n:after{transform:translateX(50%)}[data-tecton-module] .tooltipped-w:after{right:100%;bottom:50%;margin-right:var(--app-tooltip-size, 5px);transform:translateY(50%)}[data-tecton-module] .tooltipped-w:before{top:50%;bottom:50%;left:var(--app-tooltip-position, -5px);margin-top:var(--app-tooltip-position, -5px);border-left-color:var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8))}[data-tecton-module] .tooltipped-e:after{bottom:50%;left:100%;margin-left:var(--app-tooltip-size, 5px);transform:translateY(50%)}[data-tecton-module] .tooltipped-e:before{top:50%;right:var(--app-tooltip-position, -5px);bottom:50%;margin-top:var(--app-tooltip-position, -5px);border-right-color:var(--app-tooltip-background-color, rgba(0, 0, 0, 0.8))}[data-tecton-module].phone .tooltipped:not(.tooltip-popover):hover:before,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):hover:after,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):active:before,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):active:after,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus:before,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus:after,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus-within:before,[data-tecton-module].phone .tooltipped:not(.tooltip-popover):focus-within:after,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):hover:before,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):hover:after,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):active:before,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):active:after,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):focus:before,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):focus:after,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):focus-within:before,[data-tecton-module].tablet .tooltipped:not(.tooltip-popover):focus-within:after{display:none}:root{--tct-btn-font-size: 14px;--tct-btn-padding: 10px;--tct-btn-primary-bg: #510098;--tct-btn-primary-font-color: #ffffff;--tct-btn-primary-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.12);--tct-btn-primary-border-color: transparent;--tct-btn-primary-border-width: 0px;--tct-btn-primary-border-radius: 5px;--tct-btn-primary-font-weight: 400;--tct-btn-primary-text-transform: none;--tct-btn-primary-letter-spacing: normal;--tct-btn-primary-hover-bg: #510098;--tct-btn-primary-hover-font-color: #ffffff;--tct-btn-primary-hover-box-shadow: 8px 8px 8px rgba(98, 0, 255, 0.2);--tct-btn-primary-hover-border-color: transparent;--tct-btn-secondary-bg: #8058bc;--tct-btn-secondary-font-color: #ffffff;--tct-btn-secondary-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.12);--tct-btn-secondary-border-color: transparent;--tct-btn-secondary-border-width: 0px;--tct-btn-secondary-border-radius: 5px;--tct-btn-secondary-font-weight: 400;--tct-btn-secondary-text-transform: none;--tct-btn-secondary-letter-spacing: normal;--tct-btn-secondary-hover-bg: #8058bc;--tct-btn-secondary-hover-font-color: #ffffff;--tct-btn-secondary-hover-box-shadow: 8px 8px 8px rgba(98, 0, 255, 0.2);--tct-btn-default-bg: #ffffff;--tct-btn-default-font-color: #510098;--tct-btn-default-font-weight: 400;--tct-btn-default-hover-bg: #ffffff;--tct-btn-default-hover-font-color: #510098;--tct-btn-default-hover-box-shadow: 8px 8px 8px rgba(98, 0, 255, 0.2);--tct-btn-icon-width: 50px;--tct-btn-icon-height: 50px;--tct-btn-icon-color: #510098;--tct-btn-icon-hover-bg: #f2f2f2;--tct-btn-icon-active-bg: #f2f2f2;--tct-btn-badge-font-size: 14px;--tct-btn-badge-bg: #510098;--tct-btn-badge-font-color: #ffffff;--tct-btn-badge-hover-bg: #8058bc;--tct-btn-badge-hover-font-color: #ffffff;--tct-btn-badge-active-bg: #8058bc;--tct-btn-badge-active-font-color: #ffffff;--tct-btn-disabled-opacity: 0.6;--tct-btn-primary-disabled-bg: #510098;--tct-btn-primary-disabled-font-color: #ffffff;--tct-btn-primary-disabled-box-shadow: transparent;--tct-btn-secondary-disabled-bg: #8058bc;--tct-btn-secondary-disabled-font-color: #ffffff;--tct-btn-secondary-disabled-box-shadow: transparent;--tct-btn-neutral-disabled-bg: #ffffff;--tct-btn-neutral-disabled-font-color: #510098;--tct-btn-neutral-disabled-box-shadow: transparent;--tct-checkbox-font-weight: 300;--tct-input-label-optional-font-size: 14px;--tct-input-label-optional-font-weight: 300;--t-checkbox-favorite-fill-color: #8058bc;--t-checkbox-favorite-stroke-width: 1;--tct-checkbox-disabled-opacity: 0.6;--tct-calendar-label-font-size: 16px;--tct-calendar-month-font-size: 14px;--tct-calendar-day-heading-font-size: 14px;--t-calendar-day-hover-bg: rgba(245, 238, 255, 0.5);--tct-calendar-day-selected-font-color: #510098;--tct-calendar-activity-indicator-color: #510098;--tct-section-bg: #ffffff;--tct-section-font-color: #090313;--tct-dropdown-item-bg: #ffffff;--tct-dropdown-item-font-color: #090313;--tct-dropdown-item-selected-bg: #f1f1f1;--t-icon-size: 20px;--t-icon-stroke-width: 1;--t-icon-cap: round;--t-icon-stroke-primary: #090313;--tct-input-font-size: 14px;--tct-input-placeholder-font-color: #797979;--tct-input-height: 40px;--tct-input-bg: #fefefe;--tct-input-font-color: #4b4b4b;--tct-input-label-font-color: #090313;--tct-input-label-font-size: 16px;--tct-input-label-font-weight: 500;--tct-input-border-top-width: 0.5px;--tct-input-border-right-width: 0.5px;--tct-input-border-bottom-width: 0.5px;--tct-input-border-left-width: 0.5px;--tct-input-border-color: #510098;--tct-loading-skeleton-shimmer-color: rgba(254, 254, 254, 0.5);--tct-loading-spinner-size: 40px;--tct-message-bg: #f5f5f5;--tct-input-messages-font-color: #090313;--tct-message-bar-width: 6px;--tct-message-padding: 15px;--tct-tab-alt-active-color: #510098;--tct-optgroup-header-font-weight: 400;--tct-select-margin-top: 20px;--tct-select-margin-bottom: 20px}
|