tinacms 0.59.1 → 0.60.0

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/style.css ADDED
@@ -0,0 +1,1470 @@
1
+ body {
2
+ font-family: system-ui, -apple-system,
3
+ /* Firefox supports this but not yet `system-ui` */ 'Segoe UI', Roboto,
4
+ Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
5
+ }
6
+
7
+ /**
8
+ Use a better box model (opinionated).
9
+ */
10
+
11
+ .tina-tailwind *,
12
+ .tina-tailwind ::before,
13
+ .tina-tailwind ::after {
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ /**
18
+ Use a more readable tab size (opinionated).
19
+ */
20
+
21
+ .tina-tailwind html {
22
+ -moz-tab-size: 4;
23
+ tab-size: 4;
24
+ }
25
+
26
+ /**
27
+ 1. Correct the line height in all browsers.
28
+ 2. Prevent adjustments of font size after orientation changes in iOS.
29
+ */
30
+
31
+ .tina-tailwind html {
32
+ line-height: 1.15; /* 1 */
33
+ -webkit-text-size-adjust: 100%; /* 2 */
34
+ }
35
+
36
+ /**
37
+ Remove the margin in all browsers.
38
+ */
39
+
40
+ .tina-tailwind body {
41
+ margin: 0;
42
+ }
43
+
44
+ /**
45
+ Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
46
+ */
47
+
48
+ .tina-tailwind body {
49
+ font-family:
50
+ system-ui,
51
+ -apple-system, /* Firefox supports this but not yet `system-ui` */
52
+ 'Segoe UI',
53
+ Roboto,
54
+ Helvetica,
55
+ Arial,
56
+ sans-serif,
57
+ 'Apple Color Emoji',
58
+ 'Segoe UI Emoji';
59
+ }
60
+
61
+ /**
62
+ 1. Add the correct height in Firefox.
63
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
64
+ */
65
+
66
+ .tina-tailwind hr {
67
+ height: 0; /* 1 */
68
+ color: inherit; /* 2 */
69
+ }
70
+
71
+ /**
72
+ Add the correct text decoration in Chrome, Edge, and Safari.
73
+ */
74
+
75
+ .tina-tailwind abbr[title] {
76
+ text-decoration: underline dotted;
77
+ }
78
+
79
+ /**
80
+ Add the correct font weight in Edge and Safari.
81
+ */
82
+
83
+ .tina-tailwind b,
84
+ .tina-tailwind strong {
85
+ font-weight: bolder;
86
+ }
87
+
88
+ /**
89
+ 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
90
+ 2. Correct the odd 'em' font sizing in all browsers.
91
+ */
92
+
93
+ .tina-tailwind code,
94
+ .tina-tailwind kbd,
95
+ .tina-tailwind samp,
96
+ .tina-tailwind pre {
97
+ font-family:
98
+ ui-monospace,
99
+ SFMono-Regular,
100
+ Consolas,
101
+ 'Liberation Mono',
102
+ Menlo,
103
+ monospace; /* 1 */
104
+ font-size: 1em; /* 2 */
105
+ }
106
+
107
+ /**
108
+ Add the correct font size in all browsers.
109
+ */
110
+
111
+ .tina-tailwind small {
112
+ font-size: 80%;
113
+ }
114
+
115
+ /**
116
+ Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
117
+ */
118
+
119
+ .tina-tailwind sub,
120
+ .tina-tailwind sup {
121
+ font-size: 75%;
122
+ line-height: 0;
123
+ position: relative;
124
+ vertical-align: baseline;
125
+ }
126
+
127
+ /*
128
+ Text-level semantics
129
+ ====================
130
+ */
131
+
132
+ .tina-tailwind sub {
133
+ bottom: -0.25em;
134
+ }
135
+
136
+ /*
137
+ Grouping content
138
+ ================
139
+ */
140
+
141
+ .tina-tailwind sup {
142
+ top: -0.5em;
143
+ }
144
+
145
+ /**
146
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
147
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
148
+ */
149
+
150
+ .tina-tailwind table {
151
+ text-indent: 0; /* 1 */
152
+ border-color: inherit; /* 2 */
153
+ }
154
+
155
+ /**
156
+ 1. Change the font styles in all browsers.
157
+ 2. Remove the margin in Firefox and Safari.
158
+ */
159
+
160
+ .tina-tailwind button,
161
+ .tina-tailwind input,
162
+ .tina-tailwind optgroup,
163
+ .tina-tailwind select,
164
+ .tina-tailwind textarea {
165
+ font-family: inherit; /* 1 */
166
+ font-size: 100%; /* 1 */
167
+ line-height: 1.15; /* 1 */
168
+ margin: 0; /* 2 */
169
+ }
170
+
171
+ /**
172
+ Remove the inheritance of text transform in Edge and Firefox.
173
+ 1. Remove the inheritance of text transform in Firefox.
174
+ */
175
+
176
+ .tina-tailwind button,
177
+ .tina-tailwind select { /* 1 */
178
+ text-transform: none;
179
+ }
180
+
181
+ /**
182
+ Correct the inability to style clickable types in iOS and Safari.
183
+ */
184
+
185
+ .tina-tailwind button,
186
+ .tina-tailwind [type='button'],
187
+ .tina-tailwind [type='reset'],
188
+ .tina-tailwind [type='submit'] {
189
+ -webkit-appearance: button;
190
+ }
191
+
192
+ /**
193
+ Remove the inner border and padding in Firefox.
194
+ */
195
+
196
+ .tina-tailwind ::-moz-focus-inner {
197
+ border-style: none;
198
+ padding: 0;
199
+ }
200
+
201
+ /**
202
+ Restore the focus styles unset by the previous rule.
203
+ */
204
+
205
+ .tina-tailwind :-moz-focusring {
206
+ outline: 1px dotted ButtonText;
207
+ }
208
+
209
+ /**
210
+ Remove the additional ':invalid' styles in Firefox.
211
+ See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
212
+ */
213
+
214
+ .tina-tailwind :-moz-ui-invalid {
215
+ box-shadow: none;
216
+ }
217
+
218
+ /**
219
+ Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
220
+ */
221
+
222
+ .tina-tailwind legend {
223
+ padding: 0;
224
+ }
225
+
226
+ /**
227
+ Add the correct vertical alignment in Chrome and Firefox.
228
+ */
229
+
230
+ .tina-tailwind progress {
231
+ vertical-align: baseline;
232
+ }
233
+
234
+ /**
235
+ Correct the cursor style of increment and decrement buttons in Safari.
236
+ */
237
+
238
+ .tina-tailwind ::-webkit-inner-spin-button,
239
+ .tina-tailwind ::-webkit-outer-spin-button {
240
+ height: auto;
241
+ }
242
+
243
+ /**
244
+ 1. Correct the odd appearance in Chrome and Safari.
245
+ 2. Correct the outline style in Safari.
246
+ */
247
+
248
+ .tina-tailwind [type='search'] {
249
+ -webkit-appearance: textfield; /* 1 */
250
+ outline-offset: -2px; /* 2 */
251
+ }
252
+
253
+ /**
254
+ Remove the inner padding in Chrome and Safari on macOS.
255
+ */
256
+
257
+ .tina-tailwind ::-webkit-search-decoration {
258
+ -webkit-appearance: none;
259
+ }
260
+
261
+ /**
262
+ 1. Correct the inability to style clickable types in iOS and Safari.
263
+ 2. Change font properties to 'inherit' in Safari.
264
+ */
265
+
266
+ .tina-tailwind ::-webkit-file-upload-button {
267
+ -webkit-appearance: button; /* 1 */
268
+ font: inherit; /* 2 */
269
+ }
270
+
271
+ /*
272
+ Add the correct display in Chrome and Safari.
273
+ */
274
+
275
+ .tina-tailwind summary {
276
+ display: list-item;
277
+ }
278
+
279
+ /**
280
+ * Removes the default spacing and border for appropriate elements.
281
+ */
282
+
283
+ .tina-tailwind blockquote,
284
+ .tina-tailwind dl,
285
+ .tina-tailwind dd,
286
+ .tina-tailwind h1,
287
+ .tina-tailwind h2,
288
+ .tina-tailwind h3,
289
+ .tina-tailwind h4,
290
+ .tina-tailwind h5,
291
+ .tina-tailwind h6,
292
+ .tina-tailwind hr,
293
+ .tina-tailwind figure,
294
+ .tina-tailwind p,
295
+ .tina-tailwind pre {
296
+ margin: 0;
297
+ }
298
+
299
+ /**
300
+ * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
301
+ * A thin layer on top of normalize.css that provides a starting point more
302
+ * suitable for web applications.
303
+ */
304
+
305
+ .tina-tailwind button {
306
+ background-color: transparent;
307
+ background-image: none;
308
+ }
309
+
310
+ /*
311
+ Interactive
312
+ ===========
313
+ */
314
+
315
+ .tina-tailwind fieldset {
316
+ margin: 0;
317
+ padding: 0;
318
+ }
319
+
320
+ /*
321
+ Forms
322
+ =====
323
+ */
324
+
325
+ .tina-tailwind ol,
326
+ .tina-tailwind ul {
327
+ list-style: none;
328
+ margin: 0;
329
+ padding: 0;
330
+ }
331
+
332
+ /**
333
+ * 1. Use the user's configured `sans` font-family (with Tailwind's default
334
+ * sans-serif font stack as a fallback) as a sane default.
335
+ * 2. Use Tailwind's default "normal" line-height so the user isn't forced
336
+ * to override it to ensure consistency even when using the default theme.
337
+ */
338
+
339
+ .tina-tailwind html {
340
+ font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
341
+ line-height: 1.5; /* 2 */
342
+ }
343
+
344
+ /**
345
+ * Inherit font-family and line-height from `html` so users can set them as
346
+ * a class directly on the `html` element.
347
+ */
348
+
349
+ .tina-tailwind body {
350
+ font-family: inherit;
351
+ line-height: inherit;
352
+ }
353
+
354
+ /**
355
+ * 1. Prevent padding and border from affecting element width.
356
+ *
357
+ * We used to set this in the html element and inherit from
358
+ * the parent element for everything else. This caused issues
359
+ * in shadow-dom-enhanced elements like <details> where the content
360
+ * is wrapped by a div with box-sizing set to `content-box`.
361
+ *
362
+ * https://github.com/mozdevs/cssremedy/issues/4
363
+ *
364
+ *
365
+ * 2. Allow adding a border to an element by just adding a border-width.
366
+ *
367
+ * By default, the way the browser specifies that an element should have no
368
+ * border is by setting it's border-style to `none` in the user-agent
369
+ * stylesheet.
370
+ *
371
+ * In order to easily add borders to elements by just setting the `border-width`
372
+ * property, we change the default border-style for all elements to `solid`, and
373
+ * use border-width to hide them instead. This way our `border` utilities only
374
+ * need to set the `border-width` property instead of the entire `border`
375
+ * shorthand, making our border utilities much more straightforward to compose.
376
+ *
377
+ * https://github.com/tailwindcss/tailwindcss/pull/116
378
+ */
379
+
380
+ .tina-tailwind *,
381
+ .tina-tailwind ::before,
382
+ .tina-tailwind ::after {
383
+ box-sizing: border-box; /* 1 */
384
+ border-width: 0; /* 2 */
385
+ border-style: solid; /* 2 */
386
+ border-color: currentColor; /* 2 */
387
+ }
388
+
389
+ /*
390
+ * Ensure horizontal rules are visible by default
391
+ */
392
+
393
+ .tina-tailwind hr {
394
+ border-top-width: 1px;
395
+ }
396
+
397
+ /**
398
+ * Undo the `border-style: none` reset that Normalize applies to images so that
399
+ * our `border-{width}` utilities have the expected effect.
400
+ *
401
+ * The Normalize reset is unnecessary for us since we default the border-width
402
+ * to 0 on all elements.
403
+ *
404
+ * https://github.com/tailwindcss/tailwindcss/issues/362
405
+ */
406
+
407
+ .tina-tailwind img {
408
+ border-style: solid;
409
+ }
410
+
411
+ /**
412
+ * Tailwind custom reset styles
413
+ */
414
+
415
+ .tina-tailwind textarea {
416
+ resize: vertical;
417
+ }
418
+
419
+ /*
420
+ Tabular data
421
+ ============
422
+ */
423
+
424
+ .tina-tailwind input::placeholder,
425
+ .tina-tailwind textarea::placeholder {
426
+ opacity: 1;
427
+ color: #918c9e;
428
+ }
429
+
430
+ /*
431
+ Sections
432
+ ========
433
+ */
434
+
435
+ .tina-tailwind button,
436
+ .tina-tailwind [role="button"] {
437
+ cursor: pointer;
438
+ }
439
+
440
+ /**
441
+ * Override legacy focus reset from Normalize with modern Firefox focus styles.
442
+ *
443
+ * This is actually an improvement over the new defaults in Firefox in our testing,
444
+ * as it triggers the better focus styles even for links, which still use a dotted
445
+ * outline in Firefox by default.
446
+ */
447
+
448
+ .tina-tailwind :-moz-focusring {
449
+ outline: auto;
450
+ }
451
+
452
+ /*
453
+ Document
454
+ ========
455
+ */
456
+
457
+ .tina-tailwind table {
458
+ border-collapse: collapse;
459
+ }
460
+
461
+ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
462
+
463
+ .tina-tailwind h1,
464
+ .tina-tailwind h2,
465
+ .tina-tailwind h3,
466
+ .tina-tailwind h4,
467
+ .tina-tailwind h5,
468
+ .tina-tailwind h6 {
469
+ font-size: inherit;
470
+ font-weight: inherit;
471
+ }
472
+
473
+ /**
474
+ * Reset links to optimize for opt-in styling instead of
475
+ * opt-out.
476
+ */
477
+
478
+ .tina-tailwind a {
479
+ color: inherit;
480
+ text-decoration: inherit;
481
+ }
482
+
483
+ /**
484
+ * Reset form element properties that are easy to forget to
485
+ * style explicitly so you don't inadvertently introduce
486
+ * styles that deviate from your design system. These styles
487
+ * supplement a partial reset that is already applied by
488
+ * normalize.css.
489
+ */
490
+
491
+ .tina-tailwind button,
492
+ .tina-tailwind input,
493
+ .tina-tailwind optgroup,
494
+ .tina-tailwind select,
495
+ .tina-tailwind textarea {
496
+ padding: 0;
497
+ line-height: inherit;
498
+ color: inherit;
499
+ }
500
+
501
+ /**
502
+ * Use the configured 'mono' font family for elements that
503
+ * are expected to be rendered with a monospace font, falling
504
+ * back to the system monospace stack if there is no configured
505
+ * 'mono' font family.
506
+ */
507
+
508
+ .tina-tailwind pre,
509
+ .tina-tailwind code,
510
+ .tina-tailwind kbd,
511
+ .tina-tailwind samp {
512
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
513
+ }
514
+
515
+ /**
516
+ * 1. Make replaced elements `display: block` by default as that's
517
+ * the behavior you want almost all of the time. Inspired by
518
+ * CSS Remedy, with `svg` added as well.
519
+ *
520
+ * https://github.com/mozdevs/cssremedy/issues/14
521
+ *
522
+ * 2. Add `vertical-align: middle` to align replaced elements more
523
+ * sensibly by default when overriding `display` by adding a
524
+ * utility like `inline`.
525
+ *
526
+ * This can trigger a poorly considered linting error in some
527
+ * tools but is included by design.
528
+ *
529
+ * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
530
+ */
531
+
532
+ .tina-tailwind img,
533
+ .tina-tailwind svg,
534
+ .tina-tailwind video,
535
+ .tina-tailwind canvas,
536
+ .tina-tailwind audio,
537
+ .tina-tailwind iframe,
538
+ .tina-tailwind embed,
539
+ .tina-tailwind object {
540
+ display: block; /* 1 */
541
+ vertical-align: middle; /* 2 */
542
+ }
543
+
544
+ /**
545
+ * Constrain images and videos to the parent width and preserve
546
+ * their intrinsic aspect ratio.
547
+ *
548
+ * https://github.com/mozdevs/cssremedy/issues/14
549
+ */
550
+
551
+ .tina-tailwind img,
552
+ .tina-tailwind video {
553
+ max-width: 100%;
554
+ height: auto;
555
+ }
556
+
557
+ /**
558
+ * Ensure the default browser behavior of the `hidden` attribute.
559
+ */
560
+
561
+ .tina-tailwind [hidden] {
562
+ display: none;
563
+ }
564
+
565
+ /*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com
566
+ */
567
+
568
+ .tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
569
+ --tw-translate-x: 0;
570
+ --tw-translate-y: 0;
571
+ --tw-rotate: 0;
572
+ --tw-skew-x: 0;
573
+ --tw-skew-y: 0;
574
+ --tw-scale-x: 1;
575
+ --tw-scale-y: 1;
576
+ --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
577
+ }
578
+
579
+ .tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
580
+ --tw-border-opacity: 1;
581
+ border-color: rgba(225, 221, 236, var(--tw-border-opacity));
582
+ }
583
+
584
+ .tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
585
+ --tw-ring-offset-shadow: 0 0 #0000;
586
+ --tw-ring-shadow: 0 0 #0000;
587
+ --tw-shadow: 0 0 #0000;
588
+ }
589
+
590
+ .tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
591
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
592
+ --tw-ring-offset-width: 0px;
593
+ --tw-ring-offset-color: #fff;
594
+ --tw-ring-color: rgba(0, 132, 255, 0.5);
595
+ --tw-ring-offset-shadow: 0 0 #0000;
596
+ --tw-ring-shadow: 0 0 #0000;
597
+ --tw-shadow: 0 0 #0000;
598
+ }
599
+
600
+ .tina-tailwind *, .tina-tailwind ::before, .tina-tailwind ::after {
601
+ --tw-blur: var(--tw-empty,/*!*/ /*!*/);
602
+ --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
603
+ --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
604
+ --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
605
+ --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
606
+ --tw-invert: var(--tw-empty,/*!*/ /*!*/);
607
+ --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
608
+ --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
609
+ --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
610
+ --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
611
+ }
612
+
613
+ .tina-tailwind [type='text'],.tina-tailwind [type='email'],.tina-tailwind [type='url'],.tina-tailwind [type='password'],.tina-tailwind [type='number'],.tina-tailwind [type='date'],.tina-tailwind [type='datetime-local'],.tina-tailwind [type='month'],.tina-tailwind [type='search'],.tina-tailwind [type='tel'],.tina-tailwind [type='time'],.tina-tailwind [type='week'],.tina-tailwind [multiple],.tina-tailwind textarea,.tina-tailwind select {
614
+ appearance: none;
615
+ background-color: #fff;
616
+ border-color: #716c7f;
617
+ border-width: 1px;
618
+ border-radius: 0px;
619
+ padding-top: 0.5rem;
620
+ padding-right: 0.75rem;
621
+ padding-bottom: 0.5rem;
622
+ padding-left: 0.75rem;
623
+ font-size: 1rem;
624
+ line-height: 1.5rem;
625
+ --tw-shadow: 0 0 #0000;
626
+ }
627
+
628
+ .tina-tailwind [type='text']:focus, .tina-tailwind [type='email']:focus, .tina-tailwind [type='url']:focus, .tina-tailwind [type='password']:focus, .tina-tailwind [type='number']:focus, .tina-tailwind [type='date']:focus, .tina-tailwind [type='datetime-local']:focus, .tina-tailwind [type='month']:focus, .tina-tailwind [type='search']:focus, .tina-tailwind [type='tel']:focus, .tina-tailwind [type='time']:focus, .tina-tailwind [type='week']:focus, .tina-tailwind [multiple]:focus, .tina-tailwind textarea:focus, .tina-tailwind select:focus {
629
+ outline: 2px solid transparent;
630
+ outline-offset: 2px;
631
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
632
+ --tw-ring-offset-width: 0px;
633
+ --tw-ring-offset-color: #fff;
634
+ --tw-ring-color: #0574e4;
635
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
636
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
637
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
638
+ border-color: #0574e4;
639
+ }
640
+
641
+ .tina-tailwind input::placeholder,.tina-tailwind textarea::placeholder {
642
+ color: #716c7f;
643
+ opacity: 1;
644
+ }
645
+
646
+ .tina-tailwind ::-webkit-datetime-edit-fields-wrapper {
647
+ padding: 0;
648
+ }
649
+
650
+ .tina-tailwind ::-webkit-date-and-time-value {
651
+ min-height: 1.5em;
652
+ }
653
+
654
+ .tina-tailwind select {
655
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23716c7f' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
656
+ background-position: right 0.5rem center;
657
+ background-repeat: no-repeat;
658
+ background-size: 1.5em 1.5em;
659
+ padding-right: 2.5rem;
660
+ color-adjust: exact;
661
+ }
662
+
663
+ .tina-tailwind [multiple] {
664
+ background-image: initial;
665
+ background-position: initial;
666
+ background-repeat: unset;
667
+ background-size: initial;
668
+ padding-right: 0.75rem;
669
+ color-adjust: unset;
670
+ }
671
+
672
+ .tina-tailwind [type='checkbox'],.tina-tailwind [type='radio'] {
673
+ appearance: none;
674
+ padding: 0;
675
+ color-adjust: exact;
676
+ display: inline-block;
677
+ vertical-align: middle;
678
+ background-origin: border-box;
679
+ user-select: none;
680
+ flex-shrink: 0;
681
+ height: 1rem;
682
+ width: 1rem;
683
+ color: #0574e4;
684
+ background-color: #fff;
685
+ border-color: #716c7f;
686
+ border-width: 1px;
687
+ --tw-shadow: 0 0 #0000;
688
+ }
689
+
690
+ .tina-tailwind [type='checkbox'] {
691
+ border-radius: 0px;
692
+ }
693
+
694
+ .tina-tailwind [type='radio'] {
695
+ border-radius: 100%;
696
+ }
697
+
698
+ .tina-tailwind [type='checkbox']:focus,.tina-tailwind [type='radio']:focus {
699
+ outline: 2px solid transparent;
700
+ outline-offset: 2px;
701
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
702
+ --tw-ring-offset-width: 2px;
703
+ --tw-ring-offset-color: #fff;
704
+ --tw-ring-color: #0574e4;
705
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
706
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
707
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
708
+ }
709
+
710
+ .tina-tailwind [type='checkbox']:checked,.tina-tailwind [type='radio']:checked {
711
+ border-color: transparent;
712
+ background-color: currentColor;
713
+ background-size: 100% 100%;
714
+ background-position: center;
715
+ background-repeat: no-repeat;
716
+ }
717
+
718
+ .tina-tailwind [type='checkbox']:checked {
719
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
720
+ }
721
+
722
+ .tina-tailwind [type='radio']:checked {
723
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
724
+ }
725
+
726
+ .tina-tailwind [type='checkbox']:checked:hover,.tina-tailwind [type='checkbox']:checked:focus,.tina-tailwind [type='radio']:checked:hover,.tina-tailwind [type='radio']:checked:focus {
727
+ border-color: transparent;
728
+ background-color: currentColor;
729
+ }
730
+
731
+ .tina-tailwind [type='checkbox']:indeterminate {
732
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
733
+ border-color: transparent;
734
+ background-color: currentColor;
735
+ background-size: 100% 100%;
736
+ background-position: center;
737
+ background-repeat: no-repeat;
738
+ }
739
+
740
+ .tina-tailwind [type='checkbox']:indeterminate:hover,.tina-tailwind [type='checkbox']:indeterminate:focus {
741
+ border-color: transparent;
742
+ background-color: currentColor;
743
+ }
744
+
745
+ .tina-tailwind [type='file'] {
746
+ background: unset;
747
+ border-color: inherit;
748
+ border-width: 0;
749
+ border-radius: 0;
750
+ padding: 0;
751
+ font-size: unset;
752
+ line-height: inherit;
753
+ }
754
+
755
+ .tina-tailwind [type='file']:focus {
756
+ outline: 1px auto -webkit-focus-ring-color;
757
+ }
758
+
759
+ .tina-tailwind .static {
760
+ position: static !important;
761
+ }
762
+
763
+ .tina-tailwind .fixed {
764
+ position: fixed !important;
765
+ }
766
+
767
+ .tina-tailwind .absolute {
768
+ position: absolute !important;
769
+ }
770
+
771
+ .tina-tailwind .relative {
772
+ position: relative !important;
773
+ }
774
+
775
+ .tina-tailwind .bottom-3 {
776
+ bottom: 0.75rem !important;
777
+ }
778
+
779
+ .tina-tailwind .right-5 {
780
+ right: 1.25rem !important;
781
+ }
782
+
783
+ .tina-tailwind .right-0 {
784
+ right: 0px !important;
785
+ }
786
+
787
+ .tina-tailwind .z-50 {
788
+ z-index: 50 !important;
789
+ }
790
+
791
+ .tina-tailwind .-ml-1 {
792
+ margin-left: -0.25rem !important;
793
+ }
794
+
795
+ .tina-tailwind .mr-1\.5 {
796
+ margin-right: 0.375rem !important;
797
+ }
798
+
799
+ .tina-tailwind .mr-1 {
800
+ margin-right: 0.25rem !important;
801
+ }
802
+
803
+ .tina-tailwind .mb-3 {
804
+ margin-bottom: 0.75rem !important;
805
+ }
806
+
807
+ .tina-tailwind .mr-2 {
808
+ margin-right: 0.5rem !important;
809
+ }
810
+
811
+ .tina-tailwind .ml-1 {
812
+ margin-left: 0.25rem !important;
813
+ }
814
+
815
+ .tina-tailwind .mt-2 {
816
+ margin-top: 0.5rem !important;
817
+ }
818
+
819
+ .tina-tailwind .mt-8 {
820
+ margin-top: 2rem !important;
821
+ }
822
+
823
+ .tina-tailwind .mb-0\.5 {
824
+ margin-bottom: 0.125rem !important;
825
+ }
826
+
827
+ .tina-tailwind .mb-0 {
828
+ margin-bottom: 0px !important;
829
+ }
830
+
831
+ .tina-tailwind .block {
832
+ display: block !important;
833
+ }
834
+
835
+ .tina-tailwind .inline-block {
836
+ display: inline-block !important;
837
+ }
838
+
839
+ .tina-tailwind .flex {
840
+ display: flex !important;
841
+ }
842
+
843
+ .tina-tailwind .inline-flex {
844
+ display: inline-flex !important;
845
+ }
846
+
847
+ .tina-tailwind .table {
848
+ display: table !important;
849
+ }
850
+
851
+ .tina-tailwind .h-screen {
852
+ height: 100vh !important;
853
+ }
854
+
855
+ .tina-tailwind .h-auto {
856
+ height: auto !important;
857
+ }
858
+
859
+ .tina-tailwind .h-6 {
860
+ height: 1.5rem !important;
861
+ }
862
+
863
+ .tina-tailwind .h-5 {
864
+ height: 1.25rem !important;
865
+ }
866
+
867
+ .tina-tailwind .w-80 {
868
+ width: 20rem !important;
869
+ }
870
+
871
+ .tina-tailwind .w-full {
872
+ width: 100% !important;
873
+ }
874
+
875
+ .tina-tailwind .w-10 {
876
+ width: 2.5rem !important;
877
+ }
878
+
879
+ .tina-tailwind .w-2\/3 {
880
+ width: 66.666667% !important;
881
+ }
882
+
883
+ .tina-tailwind .w-6 {
884
+ width: 1.5rem !important;
885
+ }
886
+
887
+ .tina-tailwind .w-auto {
888
+ width: auto !important;
889
+ }
890
+
891
+ .tina-tailwind .w-56 {
892
+ width: 14rem !important;
893
+ }
894
+
895
+ .tina-tailwind .min-w-full {
896
+ min-width: 100% !important;
897
+ }
898
+
899
+ .tina-tailwind .max-w-screen-md {
900
+ max-width: 768px !important;
901
+ }
902
+
903
+ .tina-tailwind .max-w-md {
904
+ max-width: 28rem !important;
905
+ }
906
+
907
+ .tina-tailwind .flex-1 {
908
+ flex: 1 1 0% !important;
909
+ }
910
+
911
+ .tina-tailwind .flex-shrink-0 {
912
+ flex-shrink: 0 !important;
913
+ }
914
+
915
+ .tina-tailwind .origin-top-right {
916
+ transform-origin: top right !important;
917
+ }
918
+
919
+ .tina-tailwind .translate-y-full {
920
+ --tw-translate-y: 100% !important;
921
+ transform: var(--tw-transform) !important;
922
+ }
923
+
924
+ .tina-tailwind .-translate-y-2 {
925
+ --tw-translate-y: -0.5rem !important;
926
+ transform: var(--tw-transform) !important;
927
+ }
928
+
929
+ .tina-tailwind .translate-y-0 {
930
+ --tw-translate-y: 0px !important;
931
+ transform: var(--tw-transform) !important;
932
+ }
933
+
934
+ .tina-tailwind .rotate-90 {
935
+ --tw-rotate: 90deg !important;
936
+ transform: var(--tw-transform) !important;
937
+ }
938
+
939
+ .tina-tailwind .rotate-0 {
940
+ --tw-rotate: 0deg !important;
941
+ transform: var(--tw-transform) !important;
942
+ }
943
+
944
+ .tina-tailwind .scale-95 {
945
+ --tw-scale-x: .95 !important;
946
+ --tw-scale-y: .95 !important;
947
+ transform: var(--tw-transform) !important;
948
+ }
949
+
950
+ .tina-tailwind .scale-100 {
951
+ --tw-scale-x: 1 !important;
952
+ --tw-scale-y: 1 !important;
953
+ transform: var(--tw-transform) !important;
954
+ }
955
+
956
+ .tina-tailwind .transform {
957
+ transform: var(--tw-transform) !important;
958
+ }
959
+
960
+ .tina-tailwind .flex-col {
961
+ flex-direction: column !important;
962
+ }
963
+
964
+ .tina-tailwind .items-end {
965
+ align-items: flex-end !important;
966
+ }
967
+
968
+ .tina-tailwind .items-center {
969
+ align-items: center !important;
970
+ }
971
+
972
+ .tina-tailwind .items-stretch {
973
+ align-items: stretch !important;
974
+ }
975
+
976
+ .tina-tailwind .justify-start {
977
+ justify-content: flex-start !important;
978
+ }
979
+
980
+ .tina-tailwind .justify-end {
981
+ justify-content: flex-end !important;
982
+ }
983
+
984
+ .tina-tailwind .justify-center {
985
+ justify-content: center !important;
986
+ }
987
+
988
+ .tina-tailwind .justify-between {
989
+ justify-content: space-between !important;
990
+ }
991
+
992
+ .tina-tailwind .gap-1 {
993
+ gap: 0.25rem !important;
994
+ }
995
+
996
+ .tina-tailwind .gap-4 {
997
+ gap: 1rem !important;
998
+ }
999
+
1000
+ .tina-tailwind .gap-3 {
1001
+ gap: 0.75rem !important;
1002
+ }
1003
+
1004
+ .tina-tailwind .gap-1\.5 {
1005
+ gap: 0.375rem !important;
1006
+ }
1007
+
1008
+ .tina-tailwind .gap-0\.5 {
1009
+ gap: 0.125rem !important;
1010
+ }
1011
+
1012
+ .tina-tailwind .gap-0 {
1013
+ gap: 0px !important;
1014
+ }
1015
+
1016
+ .tina-tailwind .divide-y > :not([hidden]) ~ :not([hidden]) {
1017
+ --tw-divide-y-reverse: 0 !important;
1018
+ border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
1019
+ border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
1020
+ }
1021
+
1022
+ .tina-tailwind .overflow-hidden {
1023
+ overflow: hidden !important;
1024
+ }
1025
+
1026
+ .tina-tailwind .overflow-y-auto {
1027
+ overflow-y: auto !important;
1028
+ }
1029
+
1030
+ .tina-tailwind .overflow-ellipsis {
1031
+ text-overflow: ellipsis !important;
1032
+ }
1033
+
1034
+ .tina-tailwind .whitespace-nowrap {
1035
+ white-space: nowrap !important;
1036
+ }
1037
+
1038
+ .tina-tailwind .rounded-lg {
1039
+ border-radius: 0.5rem !important;
1040
+ }
1041
+
1042
+ .tina-tailwind .rounded-full {
1043
+ border-radius: 9999px !important;
1044
+ }
1045
+
1046
+ .tina-tailwind .rounded-md {
1047
+ border-radius: 0.375rem !important;
1048
+ }
1049
+
1050
+ .tina-tailwind .border {
1051
+ border-width: 1px !important;
1052
+ }
1053
+
1054
+ .tina-tailwind .border-r {
1055
+ border-right-width: 1px !important;
1056
+ }
1057
+
1058
+ .tina-tailwind .border-b {
1059
+ border-bottom-width: 1px !important;
1060
+ }
1061
+
1062
+ .tina-tailwind .border-gray-200 {
1063
+ --tw-border-opacity: 1 !important;
1064
+ border-color: rgba(225, 221, 236, var(--tw-border-opacity)) !important;
1065
+ }
1066
+
1067
+ .tina-tailwind .border-transparent {
1068
+ border-color: transparent !important;
1069
+ }
1070
+
1071
+ .tina-tailwind .bg-gray-50 {
1072
+ --tw-bg-opacity: 1 !important;
1073
+ background-color: rgba(246, 246, 249, var(--tw-bg-opacity)) !important;
1074
+ }
1075
+
1076
+ .tina-tailwind .bg-transparent {
1077
+ background-color: transparent !important;
1078
+ }
1079
+
1080
+ .tina-tailwind .bg-white {
1081
+ --tw-bg-opacity: 1 !important;
1082
+ background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
1083
+ }
1084
+
1085
+ .tina-tailwind .bg-gradient-to-b {
1086
+ background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
1087
+ }
1088
+
1089
+ .tina-tailwind .from-white {
1090
+ --tw-gradient-from: #fff !important;
1091
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
1092
+ }
1093
+
1094
+ .tina-tailwind .from-blue-900 {
1095
+ --tw-gradient-from: #1D2C6C !important;
1096
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 44, 108, 0)) !important;
1097
+ }
1098
+
1099
+ .tina-tailwind .to-gray-50 {
1100
+ --tw-gradient-to: #F6F6F9 !important;
1101
+ }
1102
+
1103
+ .tina-tailwind .to-gray-900 {
1104
+ --tw-gradient-to: #252336 !important;
1105
+ }
1106
+
1107
+ .tina-tailwind .px-6 {
1108
+ padding-left: 1.5rem !important;
1109
+ padding-right: 1.5rem !important;
1110
+ }
1111
+
1112
+ .tina-tailwind .py-4 {
1113
+ padding-top: 1rem !important;
1114
+ padding-bottom: 1rem !important;
1115
+ }
1116
+
1117
+ .tina-tailwind .py-1 {
1118
+ padding-top: 0.25rem !important;
1119
+ padding-bottom: 0.25rem !important;
1120
+ }
1121
+
1122
+ .tina-tailwind .px-4 {
1123
+ padding-left: 1rem !important;
1124
+ padding-right: 1rem !important;
1125
+ }
1126
+
1127
+ .tina-tailwind .py-2 {
1128
+ padding-top: 0.5rem !important;
1129
+ padding-bottom: 0.5rem !important;
1130
+ }
1131
+
1132
+ .tina-tailwind .py-7 {
1133
+ padding-top: 1.75rem !important;
1134
+ padding-bottom: 1.75rem !important;
1135
+ }
1136
+
1137
+ .tina-tailwind .px-8 {
1138
+ padding-left: 2rem !important;
1139
+ padding-right: 2rem !important;
1140
+ }
1141
+
1142
+ .tina-tailwind .py-2\.5 {
1143
+ padding-top: 0.625rem !important;
1144
+ padding-bottom: 0.625rem !important;
1145
+ }
1146
+
1147
+ .tina-tailwind .py-14 {
1148
+ padding-top: 3.5rem !important;
1149
+ padding-bottom: 3.5rem !important;
1150
+ }
1151
+
1152
+ .tina-tailwind .py-3 {
1153
+ padding-top: 0.75rem !important;
1154
+ padding-bottom: 0.75rem !important;
1155
+ }
1156
+
1157
+ .tina-tailwind .px-5 {
1158
+ padding-left: 1.25rem !important;
1159
+ padding-right: 1.25rem !important;
1160
+ }
1161
+
1162
+ .tina-tailwind .py-1\.5 {
1163
+ padding-top: 0.375rem !important;
1164
+ padding-bottom: 0.375rem !important;
1165
+ }
1166
+
1167
+ .tina-tailwind .py-10 {
1168
+ padding-top: 2.5rem !important;
1169
+ padding-bottom: 2.5rem !important;
1170
+ }
1171
+
1172
+ .tina-tailwind .py-6 {
1173
+ padding-top: 1.5rem !important;
1174
+ padding-bottom: 1.5rem !important;
1175
+ }
1176
+
1177
+ .tina-tailwind .pt-16 {
1178
+ padding-top: 4rem !important;
1179
+ }
1180
+
1181
+ .tina-tailwind .pb-10 {
1182
+ padding-bottom: 2.5rem !important;
1183
+ }
1184
+
1185
+ .tina-tailwind .text-left {
1186
+ text-align: left !important;
1187
+ }
1188
+
1189
+ .tina-tailwind .text-center {
1190
+ text-align: center !important;
1191
+ }
1192
+
1193
+ .tina-tailwind .font-sans {
1194
+ font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
1195
+ }
1196
+
1197
+ .tina-tailwind .text-2xl {
1198
+ font-size: 1.5rem !important;
1199
+ line-height: 2rem !important;
1200
+ }
1201
+
1202
+ .tina-tailwind .text-lg {
1203
+ font-size: 1.125rem !important;
1204
+ line-height: 1.75rem !important;
1205
+ }
1206
+
1207
+ .tina-tailwind .text-sm {
1208
+ font-size: 0.875rem !important;
1209
+ line-height: 1.25rem !important;
1210
+ }
1211
+
1212
+ .tina-tailwind .text-3xl {
1213
+ font-size: 1.875rem !important;
1214
+ line-height: 2.25rem !important;
1215
+ }
1216
+
1217
+ .tina-tailwind .text-xs {
1218
+ font-size: 0.8125rem !important;
1219
+ }
1220
+
1221
+ .tina-tailwind .text-base {
1222
+ font-size: 1rem !important;
1223
+ line-height: 1.5rem !important;
1224
+ }
1225
+
1226
+ .tina-tailwind .text-4xl {
1227
+ font-size: 2.25rem !important;
1228
+ line-height: 2.5rem !important;
1229
+ }
1230
+
1231
+ .tina-tailwind .font-bold {
1232
+ font-weight: 700 !important;
1233
+ }
1234
+
1235
+ .tina-tailwind .font-medium {
1236
+ font-weight: 500 !important;
1237
+ }
1238
+
1239
+ .tina-tailwind .uppercase {
1240
+ text-transform: uppercase !important;
1241
+ }
1242
+
1243
+ .tina-tailwind .italic {
1244
+ font-style: italic !important;
1245
+ }
1246
+
1247
+ .tina-tailwind .leading-4 {
1248
+ line-height: 1rem !important;
1249
+ }
1250
+
1251
+ .tina-tailwind .leading-5 {
1252
+ line-height: 1.25rem !important;
1253
+ }
1254
+
1255
+ .tina-tailwind .leading-normal {
1256
+ line-height: 1.5 !important;
1257
+ }
1258
+
1259
+ .tina-tailwind .tracking-wide {
1260
+ letter-spacing: 0.025em !important;
1261
+ }
1262
+
1263
+ .tina-tailwind .text-gray-800 {
1264
+ --tw-text-opacity: 1 !important;
1265
+ color: rgba(54, 49, 69, var(--tw-text-opacity)) !important;
1266
+ }
1267
+
1268
+ .tina-tailwind .text-gray-600 {
1269
+ --tw-text-opacity: 1 !important;
1270
+ color: rgba(86, 81, 101, var(--tw-text-opacity)) !important;
1271
+ }
1272
+
1273
+ .tina-tailwind .text-blue-400 {
1274
+ --tw-text-opacity: 1 !important;
1275
+ color: rgba(34, 150, 254, var(--tw-text-opacity)) !important;
1276
+ }
1277
+
1278
+ .tina-tailwind .text-blue-600 {
1279
+ --tw-text-opacity: 1 !important;
1280
+ color: rgba(5, 116, 228, var(--tw-text-opacity)) !important;
1281
+ }
1282
+
1283
+ .tina-tailwind .text-white {
1284
+ --tw-text-opacity: 1 !important;
1285
+ color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
1286
+ }
1287
+
1288
+ .tina-tailwind .text-gray-400 {
1289
+ --tw-text-opacity: 1 !important;
1290
+ color: rgba(145, 140, 158, var(--tw-text-opacity)) !important;
1291
+ }
1292
+
1293
+ .tina-tailwind .text-gray-700 {
1294
+ --tw-text-opacity: 1 !important;
1295
+ color: rgba(67, 62, 82, var(--tw-text-opacity)) !important;
1296
+ }
1297
+
1298
+ .tina-tailwind .text-gray-300 {
1299
+ --tw-text-opacity: 1 !important;
1300
+ color: rgba(178, 173, 190, var(--tw-text-opacity)) !important;
1301
+ }
1302
+
1303
+ .tina-tailwind .text-gray-500 {
1304
+ --tw-text-opacity: 1 !important;
1305
+ color: rgba(113, 108, 127, var(--tw-text-opacity)) !important;
1306
+ }
1307
+
1308
+ .tina-tailwind .underline {
1309
+ text-decoration: underline !important;
1310
+ }
1311
+
1312
+ .tina-tailwind .opacity-80 {
1313
+ opacity: .8 !important;
1314
+ }
1315
+
1316
+ .tina-tailwind .opacity-50 {
1317
+ opacity: .5 !important;
1318
+ }
1319
+
1320
+ .tina-tailwind .opacity-100 {
1321
+ opacity: 1 !important;
1322
+ }
1323
+
1324
+ .tina-tailwind .opacity-0 {
1325
+ opacity: 0 !important;
1326
+ }
1327
+
1328
+ .tina-tailwind .opacity-90 {
1329
+ opacity: .9 !important;
1330
+ }
1331
+
1332
+ .tina-tailwind .opacity-70 {
1333
+ opacity: .7 !important;
1334
+ }
1335
+
1336
+ .tina-tailwind .shadow-lg {
1337
+ --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
1338
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
1339
+ }
1340
+
1341
+ .tina-tailwind .shadow-sm {
1342
+ --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
1343
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
1344
+ }
1345
+
1346
+ .tina-tailwind .shadow {
1347
+ --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
1348
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
1349
+ }
1350
+
1351
+ .tina-tailwind .ring-1 {
1352
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1353
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1354
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
1355
+ }
1356
+
1357
+ .tina-tailwind .ring-black {
1358
+ --tw-ring-opacity: 1 !important;
1359
+ --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
1360
+ }
1361
+
1362
+ .tina-tailwind .ring-opacity-5 {
1363
+ --tw-ring-opacity: .05 !important;
1364
+ }
1365
+
1366
+ .tina-tailwind .filter {
1367
+ filter: var(--tw-filter) !important;
1368
+ }
1369
+
1370
+ .tina-tailwind .transition-colors {
1371
+ transition-property: background-color, border-color, color, fill, stroke !important;
1372
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1373
+ transition-duration: 150ms !important;
1374
+ }
1375
+
1376
+ .tina-tailwind .transition-opacity {
1377
+ transition-property: opacity !important;
1378
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1379
+ transition-duration: 150ms !important;
1380
+ }
1381
+
1382
+ .tina-tailwind .transition-all {
1383
+ transition-property: all !important;
1384
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1385
+ transition-duration: 150ms !important;
1386
+ }
1387
+
1388
+ .tina-tailwind .transition {
1389
+ transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
1390
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1391
+ transition-duration: 150ms !important;
1392
+ }
1393
+
1394
+ .tina-tailwind .duration-150 {
1395
+ transition-duration: 150ms !important;
1396
+ }
1397
+
1398
+ .tina-tailwind .duration-300 {
1399
+ transition-duration: 300ms !important;
1400
+ }
1401
+
1402
+ .tina-tailwind .duration-75 {
1403
+ transition-duration: 75ms !important;
1404
+ }
1405
+
1406
+ .tina-tailwind .duration-100 {
1407
+ transition-duration: 100ms !important;
1408
+ }
1409
+
1410
+ .tina-tailwind .ease-out {
1411
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
1412
+ }
1413
+
1414
+ .tina-tailwind .ease-in-out {
1415
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1416
+ }
1417
+
1418
+ .tina-tailwind .ease-in {
1419
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
1420
+ }
1421
+
1422
+ .hover\:bg-gray-50:hover {
1423
+ --tw-bg-opacity: 1 !important;
1424
+ background-color: rgba(246, 246, 249, var(--tw-bg-opacity)) !important;
1425
+ }
1426
+
1427
+ .hover\:text-blue-600:hover {
1428
+ --tw-text-opacity: 1 !important;
1429
+ color: rgba(5, 116, 228, var(--tw-text-opacity)) !important;
1430
+ }
1431
+
1432
+ .hover\:text-blue-500:hover {
1433
+ --tw-text-opacity: 1 !important;
1434
+ color: rgba(0, 132, 255, var(--tw-text-opacity)) !important;
1435
+ }
1436
+
1437
+ .hover\:opacity-100:hover {
1438
+ opacity: 1 !important;
1439
+ }
1440
+
1441
+ .hover\:opacity-80:hover {
1442
+ opacity: .8 !important;
1443
+ }
1444
+
1445
+ .focus\:outline-none:focus {
1446
+ outline: 2px solid transparent !important;
1447
+ outline-offset: 2px !important;
1448
+ }
1449
+
1450
+ .group:hover .group-hover\:opacity-100 {
1451
+ opacity: 1 !important;
1452
+ }
1453
+
1454
+ .group:hover .group-hover\:opacity-80 {
1455
+ opacity: .8 !important;
1456
+ }
1457
+
1458
+ @media (min-width: 640px) {
1459
+
1460
+ .sm\:rounded-lg {
1461
+ border-radius: 0.5rem !important;
1462
+ }
1463
+ }
1464
+
1465
+ @media (min-width: 1024px) {
1466
+
1467
+ .lg\:w-96 {
1468
+ width: 24rem !important;
1469
+ }
1470
+ }