@agrada_digital/pbm 0.0.106 → 0.0.108

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.css ADDED
@@ -0,0 +1,1122 @@
1
+ /* src/pbm-scoped.css */
2
+ @layer properties;
3
+ @layer pbm-library {
4
+ @layer theme, base, components, utilities;
5
+ @layer theme {
6
+ :root,
7
+ :host {
8
+ --font-sans:
9
+ ui-sans-serif,
10
+ system-ui,
11
+ sans-serif,
12
+ "Apple Color Emoji",
13
+ "Segoe UI Emoji",
14
+ "Segoe UI Symbol",
15
+ "Noto Color Emoji";
16
+ --font-mono:
17
+ ui-monospace,
18
+ SFMono-Regular,
19
+ Menlo,
20
+ Monaco,
21
+ Consolas,
22
+ "Liberation Mono",
23
+ "Courier New",
24
+ monospace;
25
+ --color-red-400: oklch(70.4% 0.191 22.216);
26
+ --color-red-500: oklch(63.7% 0.237 25.331);
27
+ --color-red-600: oklch(57.7% 0.245 27.325);
28
+ --color-yellow-500: oklch(79.5% 0.184 86.047);
29
+ --color-green-400: oklch(79.2% 0.209 151.711);
30
+ --color-green-500: oklch(72.3% 0.219 149.579);
31
+ --color-emerald-500: oklch(69.6% 0.17 162.48);
32
+ --color-emerald-700: oklch(50.8% 0.118 165.612);
33
+ --color-blue-400: oklch(70.7% 0.165 254.624);
34
+ --color-blue-500: oklch(62.3% 0.214 259.815);
35
+ --color-blue-600: oklch(54.6% 0.245 262.881);
36
+ --color-gray-100: oklch(96.7% 0.003 264.542);
37
+ --color-gray-300: oklch(87.2% 0.01 258.338);
38
+ --color-gray-500: oklch(55.1% 0.027 264.364);
39
+ --color-gray-600: oklch(44.6% 0.03 256.802);
40
+ --color-zinc-300: oklch(87.1% 0.006 286.286);
41
+ --color-zinc-400: oklch(70.5% 0.015 286.067);
42
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
43
+ --color-zinc-800: oklch(27.4% 0.006 286.033);
44
+ --color-zinc-900: oklch(21% 0.006 285.885);
45
+ --color-black: #000;
46
+ --color-white: #fff;
47
+ --spacing: 0.25rem;
48
+ --container-3xs: 16rem;
49
+ --container-md: 28rem;
50
+ --text-xs: 0.75rem;
51
+ --text-xs--line-height: calc(1 / 0.75);
52
+ --text-sm: 0.875rem;
53
+ --text-sm--line-height: calc(1.25 / 0.875);
54
+ --text-base: 1rem;
55
+ --text-base--line-height: calc(1.5 / 1);
56
+ --text-lg: 1.125rem;
57
+ --text-lg--line-height: calc(1.75 / 1.125);
58
+ --text-xl: 1.25rem;
59
+ --text-xl--line-height: calc(1.75 / 1.25);
60
+ --font-weight-light: 300;
61
+ --font-weight-normal: 400;
62
+ --font-weight-medium: 500;
63
+ --font-weight-semibold: 600;
64
+ --font-weight-bold: 700;
65
+ --radius-lg: 0.5rem;
66
+ --radius-xl: 0.75rem;
67
+ --radius-2xl: 1rem;
68
+ --animate-spin: spin 1s linear infinite;
69
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
70
+ --blur-sm: 8px;
71
+ --default-transition-duration: 150ms;
72
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
73
+ --default-font-family: var(--font-sans);
74
+ --default-mono-font-family: var(--font-mono);
75
+ }
76
+ }
77
+ @layer base {
78
+ *,
79
+ ::after,
80
+ ::before,
81
+ ::backdrop,
82
+ ::file-selector-button {
83
+ box-sizing: border-box;
84
+ margin: 0;
85
+ padding: 0;
86
+ border: 0 solid;
87
+ }
88
+ html,
89
+ :host {
90
+ line-height: 1.5;
91
+ -webkit-text-size-adjust: 100%;
92
+ tab-size: 4;
93
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
94
+ font-feature-settings: var(--default-font-feature-settings, normal);
95
+ font-variation-settings: var(--default-font-variation-settings, normal);
96
+ -webkit-tap-highlight-color: transparent;
97
+ }
98
+ hr {
99
+ height: 0;
100
+ color: inherit;
101
+ border-top-width: 1px;
102
+ }
103
+ abbr:where([title]) {
104
+ -webkit-text-decoration: underline dotted;
105
+ text-decoration: underline dotted;
106
+ }
107
+ h1,
108
+ h2,
109
+ h3,
110
+ h4,
111
+ h5,
112
+ h6 {
113
+ font-size: inherit;
114
+ font-weight: inherit;
115
+ }
116
+ a {
117
+ color: inherit;
118
+ -webkit-text-decoration: inherit;
119
+ text-decoration: inherit;
120
+ }
121
+ b,
122
+ strong {
123
+ font-weight: bolder;
124
+ }
125
+ code,
126
+ kbd,
127
+ samp,
128
+ pre {
129
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
130
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
131
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
132
+ font-size: 1em;
133
+ }
134
+ small {
135
+ font-size: 80%;
136
+ }
137
+ sub,
138
+ sup {
139
+ font-size: 75%;
140
+ line-height: 0;
141
+ position: relative;
142
+ vertical-align: baseline;
143
+ }
144
+ sub {
145
+ bottom: -0.25em;
146
+ }
147
+ sup {
148
+ top: -0.5em;
149
+ }
150
+ table {
151
+ text-indent: 0;
152
+ border-color: inherit;
153
+ border-collapse: collapse;
154
+ }
155
+ :-moz-focusring {
156
+ outline: auto;
157
+ }
158
+ progress {
159
+ vertical-align: baseline;
160
+ }
161
+ summary {
162
+ display: list-item;
163
+ }
164
+ ol,
165
+ ul,
166
+ menu {
167
+ list-style: none;
168
+ }
169
+ img,
170
+ svg,
171
+ video,
172
+ canvas,
173
+ audio,
174
+ iframe,
175
+ embed,
176
+ object {
177
+ display: block;
178
+ vertical-align: middle;
179
+ }
180
+ img,
181
+ video {
182
+ max-width: 100%;
183
+ height: auto;
184
+ }
185
+ button,
186
+ input,
187
+ select,
188
+ optgroup,
189
+ textarea,
190
+ ::file-selector-button {
191
+ font: inherit;
192
+ font-feature-settings: inherit;
193
+ font-variation-settings: inherit;
194
+ letter-spacing: inherit;
195
+ color: inherit;
196
+ border-radius: 0;
197
+ background-color: transparent;
198
+ opacity: 1;
199
+ }
200
+ :where(select:is([multiple], [size])) optgroup {
201
+ font-weight: bolder;
202
+ }
203
+ :where(select:is([multiple], [size])) optgroup option {
204
+ padding-inline-start: 20px;
205
+ }
206
+ ::file-selector-button {
207
+ margin-inline-end: 4px;
208
+ }
209
+ ::placeholder {
210
+ opacity: 1;
211
+ }
212
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
213
+ ::placeholder {
214
+ color: currentcolor;
215
+ @supports (color: color-mix(in lab, red, red)) {
216
+ color: color-mix(in oklab, currentcolor 50%, transparent);
217
+ }
218
+ }
219
+ }
220
+ textarea {
221
+ resize: vertical;
222
+ }
223
+ ::-webkit-search-decoration {
224
+ -webkit-appearance: none;
225
+ }
226
+ ::-webkit-date-and-time-value {
227
+ min-height: 1lh;
228
+ text-align: inherit;
229
+ }
230
+ ::-webkit-datetime-edit {
231
+ display: inline-flex;
232
+ }
233
+ ::-webkit-datetime-edit-fields-wrapper {
234
+ padding: 0;
235
+ }
236
+ ::-webkit-datetime-edit,
237
+ ::-webkit-datetime-edit-year-field,
238
+ ::-webkit-datetime-edit-month-field,
239
+ ::-webkit-datetime-edit-day-field,
240
+ ::-webkit-datetime-edit-hour-field,
241
+ ::-webkit-datetime-edit-minute-field,
242
+ ::-webkit-datetime-edit-second-field,
243
+ ::-webkit-datetime-edit-millisecond-field,
244
+ ::-webkit-datetime-edit-meridiem-field {
245
+ padding-block: 0;
246
+ }
247
+ ::-webkit-calendar-picker-indicator {
248
+ line-height: 1;
249
+ }
250
+ :-moz-ui-invalid {
251
+ box-shadow: none;
252
+ }
253
+ button,
254
+ input:where([type=button], [type=reset], [type=submit]),
255
+ ::file-selector-button {
256
+ appearance: button;
257
+ }
258
+ ::-webkit-inner-spin-button,
259
+ ::-webkit-outer-spin-button {
260
+ height: auto;
261
+ }
262
+ [hidden]:where(:not([hidden=until-found])) {
263
+ display: none !important;
264
+ }
265
+ }
266
+ @layer utilities {
267
+ .pointer-events-auto {
268
+ pointer-events: auto;
269
+ }
270
+ .pointer-events-none {
271
+ pointer-events: none;
272
+ }
273
+ .visible {
274
+ visibility: visible;
275
+ }
276
+ .absolute {
277
+ position: absolute;
278
+ }
279
+ .fixed {
280
+ position: fixed;
281
+ }
282
+ .relative {
283
+ position: relative;
284
+ }
285
+ .static {
286
+ position: static;
287
+ }
288
+ .sticky {
289
+ position: sticky;
290
+ }
291
+ .inset-0 {
292
+ inset: calc(var(--spacing) * 0);
293
+ }
294
+ .start {
295
+ inset-inline-start: var(--spacing);
296
+ }
297
+ .end {
298
+ inset-inline-end: var(--spacing);
299
+ }
300
+ .-top-4 {
301
+ top: calc(var(--spacing) * -4);
302
+ }
303
+ .-top-6 {
304
+ top: calc(var(--spacing) * -6);
305
+ }
306
+ .-right-3 {
307
+ right: calc(var(--spacing) * -3);
308
+ }
309
+ .-bottom-3 {
310
+ bottom: calc(var(--spacing) * -3);
311
+ }
312
+ .left-2 {
313
+ left: calc(var(--spacing) * 2);
314
+ }
315
+ .z-10 {
316
+ z-index: 10;
317
+ }
318
+ .z-50 {
319
+ z-index: 50;
320
+ }
321
+ .container {
322
+ width: 100%;
323
+ @media (width >= 40rem) {
324
+ max-width: 40rem;
325
+ }
326
+ @media (width >= 48rem) {
327
+ max-width: 48rem;
328
+ }
329
+ @media (width >= 64rem) {
330
+ max-width: 64rem;
331
+ }
332
+ @media (width >= 80rem) {
333
+ max-width: 80rem;
334
+ }
335
+ @media (width >= 96rem) {
336
+ max-width: 96rem;
337
+ }
338
+ }
339
+ .mt-5 {
340
+ margin-top: calc(var(--spacing) * 5);
341
+ }
342
+ .mr-1 {
343
+ margin-right: calc(var(--spacing) * 1);
344
+ }
345
+ .mb-0 {
346
+ margin-bottom: calc(var(--spacing) * 0);
347
+ }
348
+ .mb-2 {
349
+ margin-bottom: calc(var(--spacing) * 2);
350
+ }
351
+ .mb-4 {
352
+ margin-bottom: calc(var(--spacing) * 4);
353
+ }
354
+ .mb-8 {
355
+ margin-bottom: calc(var(--spacing) * 8);
356
+ }
357
+ .ml-auto {
358
+ margin-left: auto;
359
+ }
360
+ .block {
361
+ display: block;
362
+ }
363
+ .flex {
364
+ display: flex;
365
+ }
366
+ .hidden {
367
+ display: none;
368
+ }
369
+ .inline {
370
+ display: inline;
371
+ }
372
+ .table {
373
+ display: table;
374
+ }
375
+ .aspect-auto {
376
+ aspect-ratio: auto;
377
+ }
378
+ .h-8 {
379
+ height: calc(var(--spacing) * 8);
380
+ }
381
+ .h-9 {
382
+ height: calc(var(--spacing) * 9);
383
+ }
384
+ .h-10 {
385
+ height: calc(var(--spacing) * 10);
386
+ }
387
+ .h-12 {
388
+ height: calc(var(--spacing) * 12);
389
+ }
390
+ .h-\[60vh\] {
391
+ height: 60vh;
392
+ }
393
+ .h-auto {
394
+ height: auto;
395
+ }
396
+ .h-full {
397
+ height: 100%;
398
+ }
399
+ .w-1\/5 {
400
+ width: calc(1 / 5 * 100%);
401
+ }
402
+ .w-3xs {
403
+ width: var(--container-3xs);
404
+ }
405
+ .w-4\/5 {
406
+ width: calc(4 / 5 * 100%);
407
+ }
408
+ .w-8 {
409
+ width: calc(var(--spacing) * 8);
410
+ }
411
+ .w-11\/12 {
412
+ width: calc(11 / 12 * 100%);
413
+ }
414
+ .w-\[90\%\] {
415
+ width: 90%;
416
+ }
417
+ .w-auto {
418
+ width: auto;
419
+ }
420
+ .w-full {
421
+ width: 100%;
422
+ }
423
+ .max-w-\(--max-container\) {
424
+ max-width: var(--max-container);
425
+ }
426
+ .max-w-\[var\(--max-container\)\] {
427
+ max-width: var(--max-container);
428
+ }
429
+ .max-w-md {
430
+ max-width: var(--container-md);
431
+ }
432
+ .min-w-\(--min-container\) {
433
+ min-width: var(--min-container);
434
+ }
435
+ .min-w-20 {
436
+ min-width: calc(var(--spacing) * 20);
437
+ }
438
+ .min-w-\[var\(--min-container\)\] {
439
+ min-width: var(--min-container);
440
+ }
441
+ .shrink-0 {
442
+ flex-shrink: 0;
443
+ }
444
+ .rotate-0 {
445
+ rotate: 0deg;
446
+ }
447
+ .rotate-180 {
448
+ rotate: 180deg;
449
+ }
450
+ .transform {
451
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
452
+ }
453
+ .animate-pulse {
454
+ animation: var(--animate-pulse);
455
+ }
456
+ .animate-spin {
457
+ animation: var(--animate-spin);
458
+ }
459
+ .cursor-not-allowed {
460
+ cursor: not-allowed;
461
+ }
462
+ .cursor-pointer {
463
+ cursor: pointer;
464
+ }
465
+ .flex-col {
466
+ flex-direction: column;
467
+ }
468
+ .items-center {
469
+ align-items: center;
470
+ }
471
+ .items-center-safe {
472
+ align-items: safe center;
473
+ }
474
+ .items-end {
475
+ align-items: flex-end;
476
+ }
477
+ .items-start {
478
+ align-items: flex-start;
479
+ }
480
+ .justify-between {
481
+ justify-content: space-between;
482
+ }
483
+ .justify-center {
484
+ justify-content: center;
485
+ }
486
+ .justify-center-safe {
487
+ justify-content: safe center;
488
+ }
489
+ .justify-end {
490
+ justify-content: flex-end;
491
+ }
492
+ .justify-end-safe {
493
+ justify-content: safe flex-end;
494
+ }
495
+ .justify-start {
496
+ justify-content: flex-start;
497
+ }
498
+ .gap-1 {
499
+ gap: calc(var(--spacing) * 1);
500
+ }
501
+ .gap-2 {
502
+ gap: calc(var(--spacing) * 2);
503
+ }
504
+ .gap-3 {
505
+ gap: calc(var(--spacing) * 3);
506
+ }
507
+ .gap-4 {
508
+ gap: calc(var(--spacing) * 4);
509
+ }
510
+ .gap-4\.5 {
511
+ gap: calc(var(--spacing) * 4.5);
512
+ }
513
+ .overflow-hidden {
514
+ overflow: hidden;
515
+ }
516
+ .rounded-2xl {
517
+ border-radius: var(--radius-2xl);
518
+ }
519
+ .rounded-full {
520
+ border-radius: calc(infinity * 1px);
521
+ }
522
+ .rounded-lg {
523
+ border-radius: var(--radius-lg);
524
+ }
525
+ .rounded-xl {
526
+ border-radius: var(--radius-xl);
527
+ }
528
+ .rounded-s-lg {
529
+ border-start-start-radius: var(--radius-lg);
530
+ border-end-start-radius: var(--radius-lg);
531
+ }
532
+ .rounded-e-lg {
533
+ border-start-end-radius: var(--radius-lg);
534
+ border-end-end-radius: var(--radius-lg);
535
+ }
536
+ .rounded-t-2xl {
537
+ border-top-left-radius: var(--radius-2xl);
538
+ border-top-right-radius: var(--radius-2xl);
539
+ }
540
+ .rounded-b-2xl {
541
+ border-bottom-right-radius: var(--radius-2xl);
542
+ border-bottom-left-radius: var(--radius-2xl);
543
+ }
544
+ .border {
545
+ border-style: var(--tw-border-style);
546
+ border-width: 1px;
547
+ }
548
+ .border-3 {
549
+ border-style: var(--tw-border-style);
550
+ border-width: 3px;
551
+ }
552
+ .border-4 {
553
+ border-style: var(--tw-border-style);
554
+ border-width: 4px;
555
+ }
556
+ .border-y {
557
+ border-block-style: var(--tw-border-style);
558
+ border-block-width: 1px;
559
+ }
560
+ .border-t {
561
+ border-top-style: var(--tw-border-style);
562
+ border-top-width: 1px;
563
+ }
564
+ .border-b {
565
+ border-bottom-style: var(--tw-border-style);
566
+ border-bottom-width: 1px;
567
+ }
568
+ .border-none {
569
+ --tw-border-style: none;
570
+ border-style: none;
571
+ }
572
+ .border-\(--pbm-border\) {
573
+ border-color: var(--pbm-border);
574
+ }
575
+ .border-emerald-700 {
576
+ border-color: var(--color-emerald-700);
577
+ }
578
+ .border-gray-300 {
579
+ border-color: var(--color-gray-300);
580
+ }
581
+ .border-white\/5 {
582
+ border-color: color-mix(in srgb, #fff 5%, transparent);
583
+ @supports (color: color-mix(in lab, red, red)) {
584
+ border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
585
+ }
586
+ }
587
+ .border-white\/10 {
588
+ border-color: color-mix(in srgb, #fff 10%, transparent);
589
+ @supports (color: color-mix(in lab, red, red)) {
590
+ border-color: color-mix(in oklab, var(--color-white) 10%, transparent);
591
+ }
592
+ }
593
+ .border-zinc-400\/50 {
594
+ border-color: color-mix(in srgb, oklch(70.5% 0.015 286.067) 50%, transparent);
595
+ @supports (color: color-mix(in lab, red, red)) {
596
+ border-color: color-mix(in oklab, var(--color-zinc-400) 50%, transparent);
597
+ }
598
+ }
599
+ .bg-black\/40 {
600
+ background-color: color-mix(in srgb, #000 40%, transparent);
601
+ @supports (color: color-mix(in lab, red, red)) {
602
+ background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
603
+ }
604
+ }
605
+ .bg-blue-500 {
606
+ background-color: var(--color-blue-500);
607
+ }
608
+ .bg-blue-600 {
609
+ background-color: var(--color-blue-600);
610
+ }
611
+ .bg-emerald-500 {
612
+ background-color: var(--color-emerald-500);
613
+ }
614
+ .bg-gray-100 {
615
+ background-color: var(--color-gray-100);
616
+ }
617
+ .bg-gray-600 {
618
+ background-color: var(--color-gray-600);
619
+ }
620
+ .bg-green-500 {
621
+ background-color: var(--color-green-500);
622
+ }
623
+ .bg-red-500 {
624
+ background-color: var(--color-red-500);
625
+ }
626
+ .bg-transparent {
627
+ background-color: transparent;
628
+ }
629
+ .bg-white {
630
+ background-color: var(--color-white);
631
+ }
632
+ .bg-yellow-500\/10 {
633
+ background-color: color-mix(in srgb, oklch(79.5% 0.184 86.047) 10%, transparent);
634
+ @supports (color: color-mix(in lab, red, red)) {
635
+ background-color: color-mix(in oklab, var(--color-yellow-500) 10%, transparent);
636
+ }
637
+ }
638
+ .bg-zinc-300\/60 {
639
+ background-color: color-mix(in srgb, oklch(87.1% 0.006 286.286) 60%, transparent);
640
+ @supports (color: color-mix(in lab, red, red)) {
641
+ background-color: color-mix(in oklab, var(--color-zinc-300) 60%, transparent);
642
+ }
643
+ }
644
+ .bg-zinc-900 {
645
+ background-color: var(--color-zinc-900);
646
+ }
647
+ .p-0 {
648
+ padding: calc(var(--spacing) * 0);
649
+ }
650
+ .p-0\.5 {
651
+ padding: calc(var(--spacing) * 0.5);
652
+ }
653
+ .p-4 {
654
+ padding: calc(var(--spacing) * 4);
655
+ }
656
+ .p-8 {
657
+ padding: calc(var(--spacing) * 8);
658
+ }
659
+ .px-2 {
660
+ padding-inline: calc(var(--spacing) * 2);
661
+ }
662
+ .px-4 {
663
+ padding-inline: calc(var(--spacing) * 4);
664
+ }
665
+ .px-6 {
666
+ padding-inline: calc(var(--spacing) * 6);
667
+ }
668
+ .px-8 {
669
+ padding-inline: calc(var(--spacing) * 8);
670
+ }
671
+ .py-0\.5 {
672
+ padding-block: calc(var(--spacing) * 0.5);
673
+ }
674
+ .py-1 {
675
+ padding-block: calc(var(--spacing) * 1);
676
+ }
677
+ .py-2 {
678
+ padding-block: calc(var(--spacing) * 2);
679
+ }
680
+ .py-3 {
681
+ padding-block: calc(var(--spacing) * 3);
682
+ }
683
+ .py-4 {
684
+ padding-block: calc(var(--spacing) * 4);
685
+ }
686
+ .py-6 {
687
+ padding-block: calc(var(--spacing) * 6);
688
+ }
689
+ .pt-\[10\%\] {
690
+ padding-top: 10%;
691
+ }
692
+ .pl-2 {
693
+ padding-left: calc(var(--spacing) * 2);
694
+ }
695
+ .text-center {
696
+ text-align: center;
697
+ }
698
+ .text-start {
699
+ text-align: start;
700
+ }
701
+ .text-base {
702
+ font-size: var(--text-base);
703
+ line-height: var(--tw-leading, var(--text-base--line-height));
704
+ }
705
+ .text-lg {
706
+ font-size: var(--text-lg);
707
+ line-height: var(--tw-leading, var(--text-lg--line-height));
708
+ }
709
+ .text-sm {
710
+ font-size: var(--text-sm);
711
+ line-height: var(--tw-leading, var(--text-sm--line-height));
712
+ }
713
+ .text-xl {
714
+ font-size: var(--text-xl);
715
+ line-height: var(--tw-leading, var(--text-xl--line-height));
716
+ }
717
+ .text-xs {
718
+ font-size: var(--text-xs);
719
+ line-height: var(--tw-leading, var(--text-xs--line-height));
720
+ }
721
+ .text-\[10px\] {
722
+ font-size: 10px;
723
+ }
724
+ .text-\[11px\] {
725
+ font-size: 11px;
726
+ }
727
+ .font-bold {
728
+ --tw-font-weight: var(--font-weight-bold);
729
+ font-weight: var(--font-weight-bold);
730
+ }
731
+ .font-light {
732
+ --tw-font-weight: var(--font-weight-light);
733
+ font-weight: var(--font-weight-light);
734
+ }
735
+ .font-medium {
736
+ --tw-font-weight: var(--font-weight-medium);
737
+ font-weight: var(--font-weight-medium);
738
+ }
739
+ .font-normal {
740
+ --tw-font-weight: var(--font-weight-normal);
741
+ font-weight: var(--font-weight-normal);
742
+ }
743
+ .font-semibold {
744
+ --tw-font-weight: var(--font-weight-semibold);
745
+ font-weight: var(--font-weight-semibold);
746
+ }
747
+ .text-nowrap {
748
+ text-wrap: nowrap;
749
+ }
750
+ .text-red-400 {
751
+ color: var(--color-red-400);
752
+ }
753
+ .text-white {
754
+ color: var(--color-white);
755
+ }
756
+ .text-white\/60 {
757
+ color: color-mix(in srgb, #fff 60%, transparent);
758
+ @supports (color: color-mix(in lab, red, red)) {
759
+ color: color-mix(in oklab, var(--color-white) 60%, transparent);
760
+ }
761
+ }
762
+ .text-yellow-500 {
763
+ color: var(--color-yellow-500);
764
+ }
765
+ .text-zinc-600 {
766
+ color: var(--color-zinc-600);
767
+ }
768
+ .text-zinc-800 {
769
+ color: var(--color-zinc-800);
770
+ }
771
+ .text-zinc-900 {
772
+ color: var(--color-zinc-900);
773
+ }
774
+ .line-through {
775
+ text-decoration-line: line-through;
776
+ }
777
+ .underline {
778
+ text-decoration-line: underline;
779
+ }
780
+ .opacity-0 {
781
+ opacity: 0%;
782
+ }
783
+ .opacity-80 {
784
+ opacity: 80%;
785
+ }
786
+ .opacity-100 {
787
+ opacity: 100%;
788
+ }
789
+ .shadow {
790
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
791
+ box-shadow:
792
+ var(--tw-inset-shadow),
793
+ var(--tw-inset-ring-shadow),
794
+ var(--tw-ring-offset-shadow),
795
+ var(--tw-ring-shadow),
796
+ var(--tw-shadow);
797
+ }
798
+ .shadow-2xl {
799
+ --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
800
+ box-shadow:
801
+ var(--tw-inset-shadow),
802
+ var(--tw-inset-ring-shadow),
803
+ var(--tw-ring-offset-shadow),
804
+ var(--tw-ring-shadow),
805
+ var(--tw-shadow);
806
+ }
807
+ .shadow-lg {
808
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
809
+ box-shadow:
810
+ var(--tw-inset-shadow),
811
+ var(--tw-inset-ring-shadow),
812
+ var(--tw-ring-offset-shadow),
813
+ var(--tw-ring-shadow),
814
+ var(--tw-shadow);
815
+ }
816
+ .shadow-xl {
817
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
818
+ box-shadow:
819
+ var(--tw-inset-shadow),
820
+ var(--tw-inset-ring-shadow),
821
+ var(--tw-ring-offset-shadow),
822
+ var(--tw-ring-shadow),
823
+ var(--tw-shadow);
824
+ }
825
+ .shadow-emerald-500\/20 {
826
+ --tw-shadow-color: color-mix(in srgb, oklch(69.6% 0.17 162.48) 20%, transparent);
827
+ @supports (color: color-mix(in lab, red, red)) {
828
+ --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-emerald-500) 20%, transparent) var(--tw-shadow-alpha), transparent);
829
+ }
830
+ }
831
+ .outline {
832
+ outline-style: var(--tw-outline-style);
833
+ outline-width: 1px;
834
+ }
835
+ .outline-red-600 {
836
+ outline-color: var(--color-red-600);
837
+ }
838
+ .filter {
839
+ 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,);
840
+ }
841
+ .backdrop-blur-sm {
842
+ --tw-backdrop-blur: blur(var(--blur-sm));
843
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
844
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
845
+ }
846
+ .transition-all {
847
+ transition-property: all;
848
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
849
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
850
+ }
851
+ .transition-colors {
852
+ transition-property:
853
+ color,
854
+ background-color,
855
+ border-color,
856
+ outline-color,
857
+ text-decoration-color,
858
+ fill,
859
+ stroke,
860
+ --tw-gradient-from,
861
+ --tw-gradient-via,
862
+ --tw-gradient-to;
863
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
864
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
865
+ }
866
+ .duration-150 {
867
+ --tw-duration: 150ms;
868
+ transition-duration: 150ms;
869
+ }
870
+ .duration-300 {
871
+ --tw-duration: 300ms;
872
+ transition-duration: 300ms;
873
+ }
874
+ .placeholder\:text-sm {
875
+ &::placeholder {
876
+ font-size: var(--text-sm);
877
+ line-height: var(--tw-leading, var(--text-sm--line-height));
878
+ }
879
+ }
880
+ .placeholder\:font-semibold {
881
+ &::placeholder {
882
+ --tw-font-weight: var(--font-weight-semibold);
883
+ font-weight: var(--font-weight-semibold);
884
+ }
885
+ }
886
+ .placeholder\:text-zinc-600 {
887
+ &::placeholder {
888
+ color: var(--color-zinc-600);
889
+ }
890
+ }
891
+ .hover\:bg-blue-400 {
892
+ &:hover {
893
+ @media (hover: hover) {
894
+ background-color: var(--color-blue-400);
895
+ }
896
+ }
897
+ }
898
+ .hover\:bg-blue-500 {
899
+ &:hover {
900
+ @media (hover: hover) {
901
+ background-color: var(--color-blue-500);
902
+ }
903
+ }
904
+ }
905
+ .hover\:bg-gray-500 {
906
+ &:hover {
907
+ @media (hover: hover) {
908
+ background-color: var(--color-gray-500);
909
+ }
910
+ }
911
+ }
912
+ .hover\:bg-green-400 {
913
+ &:hover {
914
+ @media (hover: hover) {
915
+ background-color: var(--color-green-400);
916
+ }
917
+ }
918
+ }
919
+ .hover\:bg-red-400 {
920
+ &:hover {
921
+ @media (hover: hover) {
922
+ background-color: var(--color-red-400);
923
+ }
924
+ }
925
+ }
926
+ .hover\:bg-transparent {
927
+ &:hover {
928
+ @media (hover: hover) {
929
+ background-color: transparent;
930
+ }
931
+ }
932
+ }
933
+ .hover\:text-white {
934
+ &:hover {
935
+ @media (hover: hover) {
936
+ color: var(--color-white);
937
+ }
938
+ }
939
+ }
940
+ .hover\:text-zinc-400 {
941
+ &:hover {
942
+ @media (hover: hover) {
943
+ color: var(--color-zinc-400);
944
+ }
945
+ }
946
+ }
947
+ .hover\:text-zinc-900 {
948
+ &:hover {
949
+ @media (hover: hover) {
950
+ color: var(--color-zinc-900);
951
+ }
952
+ }
953
+ }
954
+ .focus\:bg-white {
955
+ &:focus {
956
+ background-color: var(--color-white);
957
+ }
958
+ }
959
+ .focus\:outline {
960
+ &:focus {
961
+ outline-style: var(--tw-outline-style);
962
+ outline-width: 1px;
963
+ }
964
+ }
965
+ .active\:scale-95 {
966
+ &:active {
967
+ --tw-scale-x: 95%;
968
+ --tw-scale-y: 95%;
969
+ --tw-scale-z: 95%;
970
+ scale: var(--tw-scale-x) var(--tw-scale-y);
971
+ }
972
+ }
973
+ .md\:w-4\/5 {
974
+ @media (width >= 48rem) {
975
+ width: calc(4 / 5 * 100%);
976
+ }
977
+ }
978
+ .md\:flex-row {
979
+ @media (width >= 48rem) {
980
+ flex-direction: row;
981
+ }
982
+ }
983
+ .md\:text-sm {
984
+ @media (width >= 48rem) {
985
+ font-size: var(--text-sm);
986
+ line-height: var(--tw-leading, var(--text-sm--line-height));
987
+ }
988
+ }
989
+ .md\:text-xs {
990
+ @media (width >= 48rem) {
991
+ font-size: var(--text-xs);
992
+ line-height: var(--tw-leading, var(--text-xs--line-height));
993
+ }
994
+ }
995
+ }
996
+ }
997
+ #pbm-library-root {
998
+ --max-container: 556px;
999
+ --min-container: 350px;
1000
+ }
1001
+ #pbm-library-root,
1002
+ #pbm-library-root *,
1003
+ #pbm-library-root *::before,
1004
+ #pbm-library-root *::after {
1005
+ box-sizing: border-box;
1006
+ }
1007
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
1008
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
1009
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
1010
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
1011
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
1012
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1013
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
1014
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1015
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1016
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1017
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1018
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1019
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1020
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1021
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1022
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1023
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1024
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1025
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1026
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1027
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1028
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1029
+ @property --tw-blur { syntax: "*"; inherits: false; }
1030
+ @property --tw-brightness { syntax: "*"; inherits: false; }
1031
+ @property --tw-contrast { syntax: "*"; inherits: false; }
1032
+ @property --tw-grayscale { syntax: "*"; inherits: false; }
1033
+ @property --tw-hue-rotate { syntax: "*"; inherits: false; }
1034
+ @property --tw-invert { syntax: "*"; inherits: false; }
1035
+ @property --tw-opacity { syntax: "*"; inherits: false; }
1036
+ @property --tw-saturate { syntax: "*"; inherits: false; }
1037
+ @property --tw-sepia { syntax: "*"; inherits: false; }
1038
+ @property --tw-drop-shadow { syntax: "*"; inherits: false; }
1039
+ @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
1040
+ @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1041
+ @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
1042
+ @property --tw-backdrop-blur { syntax: "*"; inherits: false; }
1043
+ @property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
1044
+ @property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
1045
+ @property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
1046
+ @property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
1047
+ @property --tw-backdrop-invert { syntax: "*"; inherits: false; }
1048
+ @property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
1049
+ @property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
1050
+ @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
1051
+ @property --tw-duration { syntax: "*"; inherits: false; }
1052
+ @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
1053
+ @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
1054
+ @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
1055
+ @keyframes spin {
1056
+ to {
1057
+ transform: rotate(360deg);
1058
+ }
1059
+ }
1060
+ @keyframes pulse {
1061
+ 50% {
1062
+ opacity: 0.5;
1063
+ }
1064
+ }
1065
+ @layer properties {
1066
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1067
+ *,
1068
+ ::before,
1069
+ ::after,
1070
+ ::backdrop {
1071
+ --tw-rotate-x: initial;
1072
+ --tw-rotate-y: initial;
1073
+ --tw-rotate-z: initial;
1074
+ --tw-skew-x: initial;
1075
+ --tw-skew-y: initial;
1076
+ --tw-border-style: solid;
1077
+ --tw-font-weight: initial;
1078
+ --tw-shadow: 0 0 #0000;
1079
+ --tw-shadow-color: initial;
1080
+ --tw-shadow-alpha: 100%;
1081
+ --tw-inset-shadow: 0 0 #0000;
1082
+ --tw-inset-shadow-color: initial;
1083
+ --tw-inset-shadow-alpha: 100%;
1084
+ --tw-ring-color: initial;
1085
+ --tw-ring-shadow: 0 0 #0000;
1086
+ --tw-inset-ring-color: initial;
1087
+ --tw-inset-ring-shadow: 0 0 #0000;
1088
+ --tw-ring-inset: initial;
1089
+ --tw-ring-offset-width: 0px;
1090
+ --tw-ring-offset-color: #fff;
1091
+ --tw-ring-offset-shadow: 0 0 #0000;
1092
+ --tw-outline-style: solid;
1093
+ --tw-blur: initial;
1094
+ --tw-brightness: initial;
1095
+ --tw-contrast: initial;
1096
+ --tw-grayscale: initial;
1097
+ --tw-hue-rotate: initial;
1098
+ --tw-invert: initial;
1099
+ --tw-opacity: initial;
1100
+ --tw-saturate: initial;
1101
+ --tw-sepia: initial;
1102
+ --tw-drop-shadow: initial;
1103
+ --tw-drop-shadow-color: initial;
1104
+ --tw-drop-shadow-alpha: 100%;
1105
+ --tw-drop-shadow-size: initial;
1106
+ --tw-backdrop-blur: initial;
1107
+ --tw-backdrop-brightness: initial;
1108
+ --tw-backdrop-contrast: initial;
1109
+ --tw-backdrop-grayscale: initial;
1110
+ --tw-backdrop-hue-rotate: initial;
1111
+ --tw-backdrop-invert: initial;
1112
+ --tw-backdrop-opacity: initial;
1113
+ --tw-backdrop-saturate: initial;
1114
+ --tw-backdrop-sepia: initial;
1115
+ --tw-duration: initial;
1116
+ --tw-scale-x: 1;
1117
+ --tw-scale-y: 1;
1118
+ --tw-scale-z: 1;
1119
+ }
1120
+ }
1121
+ }
1122
+ /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */