-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.html
8796 lines (8678 loc) · 935 KB
/
README.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>
<style type='text/css'>html {overflow-x: initial !important;}:root { --mermaid-theme: default; --mermaid-sequence-numbers: off; --mermaid-flowchart-curve: linear; --mermaid--gantt-left-padding: 75; --sequence-theme: simple; }
.privacy { display: none; }
.tooltip[data-v-3e7c8bd7] { cursor: pointer; position: relative; display: block; width: 100%; text-align: center; z-index: 10; }
.tooltip[data-v-3e7c8bd7]::after { display: none; content: attr(data-tooltip); background: rgb(232, 233, 233); max-width: 500px; width: 200px; position: absolute; left: -200px; right: 0px; margin: auto; opacity: 0; height: auto; font-size: 14px; padding: 10px; border-radius: 4px; color: rgb(17, 17, 17); text-align: left; }
.tooltip.bottom[data-v-3e7c8bd7]::after { top: 80%; transition: opacity 0.3s ease 0.3s, top 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s; }
.tooltip.bottom[data-v-3e7c8bd7]:hover::after { display: block; top: 130%; opacity: 1; }
.lifeline .line[data-v-19661715] { background-image: ; background-position-x: ; background-position-y: ; background-repeat: ; background-attachment: ; background-origin: ; background-clip: ; background-color: ; background-size: 1px 10px; }
.zenuml .interaction { border: 0px dashed transparent; }
.zenuml .interaction.sync, .zenuml .occurrence .occurrence .interaction.sync, .zenuml .occurrence .occurrence .interaction.async { border-right-width: 7px; }
.zenuml .occurrence .interaction.sync, .zenuml .occurrence .interaction.async { border-left-width: 8px; }
.zenuml .occurrence .interaction.sync.right-to-left { border-right-width: 7px; }
.zenuml .occurrence .interaction.async.right-to-left { border-right-width: 7px; border-left-width: 0px; }
.zenuml .occurrence .interaction.sync.from-no-occurrence, .zenuml .occurrence .interaction.async.from-no-occurrence { border-left-width: 0px; }
.zenuml .occurrence .interaction.async.from-no-occurrence.right-to-left { border-right-width: 0px; }
.zenuml .occurrence .interaction.sync.right-to-left.from-no-occurrence { border-left-width: 7px; border-right-width: 0px; }
.zenuml .occurrence .interaction.async.right-to-left.to-occurrence { border-left-width: 7px; }
.zenuml .occurrence .interaction.sync.from-no-occurrence.right-to-left { border-right-width: 0px; }
.zenuml .interaction.sync.right-to-left { border-right-width: 0px; border-left-width: 7px; }
.zenuml .interaction.inited-from-occurrence, .zenuml .interaction.self-invocation { border-left-width: 7px; }
.zenuml .interaction.return { border-left-width: 7px; border-right-width: 7px; }
.zenuml .interaction.return-to-start { border-left-width: 0px; }
.zenuml .interaction:hover { cursor: pointer; }
.zenuml .message { position: relative; }
.zenuml .message > .name { text-align: center; }
.zenuml .interaction.right-to-left > .occurrence { left: -14px; }
.zenuml .interaction.self > .occurrence { left: -8px; margin-top: -10px; }
.zenuml .fragment { border-width: 1px; margin: 8px 0px 0px; padding-bottom: 10px; }
.zenuml .fragment .fragment { margin: 16px 0px 0px; }
.zenuml .sequence-diagram * { box-sizing: inherit; }
.zenuml .sequence-diagram { line-height: normal; }
.zenuml .participant { border-width: 2px; padding: 0px 14px; min-width: 88px; max-width: 250px; text-align: center; pointer-events: all; }
.no-fill svg.arrow polyline[data-v-de6521b0] { fill: none !important; }
.async > .message > .point > svg.arrow > polyline[data-v-de6521b0] { fill: none; }
.right-to-left.point[data-v-de6521b0] { left: 0px; right: auto; }
.right-to-left.point > svg > polyline.right[data-v-de6521b0] { display: none; }
.right-to-left.point > svg > polyline.left[data-v-de6521b0] { display: inline; }
.point > svg > polyline.left[data-v-de6521b0] { display: none; }
:root { --color-bg-base: #fff; --color-text-base: #000; --color-text-secondary: #333; --color-border-base: #000; --color-border-primary: #368EFF; }
.theme-default { --color-text-base: #222; --color-border-base: #666; --color-message-arrow: #000; --color-bg-occurrence: #dedede; }
.theme-clean-light { --color-text-base: #353748; --color-border-base: #C8C9C9; --color-border-frame: #E5E9F0; --color-text-fragment-header: #368EFF; --color-text-fragment: #368EFF; --color-text-message: #368EFF; --color-message-arrow: #368EFF; --color-text-message-hover: #FFFFFF; --color-bg-message-hover: #368EFF; --color-text-participant: #368EFF; --color-shadow-participant: 0px 2px 6px 2px rgba(58, 130, 237, .1); --color-bg-participant: #EBF4FF; --color-border-participant: #368EFF; --color-bg-occurrence: #FFFFFF; --color-border-occurrence: #368EFF; --color-shadow-occurrence: 0px 2px 6px 2px rgba(58, 130, 237, .1); --color-text-control: #333333; }
.theme-clean-dark { --color-bg-base: #202126; --color-text-base: #368EFF; --color-border-base: #1F3354; --color-border-frame: #1F3354; --color-text-fragment-header: #368EFF; --color-text-fragment: #368EFF; --color-message-arrow: #368EFF; --color-text-message-hover: #FFFFFF; --color-bg-message-hover: #368EFF; --color-text-participant: #368EFF; --color-shadow-participant: 0px 2px 6px 2px rgba(58, 130, 237, .1); --color-bg-participant: #222C3C; --color-border-participant: #368EFF; --color-bg-occurrence: #222C3C; --color-border-occurrence: #368EFF; --color-shadow-occurrence: 0px 2px 6px 2px rgba(58, 130, 237, .1); --color-text-control: #F3F3F3; }
.theme-mermaid { --color-bg-base: #fff; --color-text-base: #222; --color-border-base: #666; --color-bg-occurrence: #dedede; }
.theme-mermaid .footer { visibility: hidden; }
.theme-darcula { --color-bg-canvas: #ffffff; --color-bg-frame: #2b2b2b; --color-border-frame: #cccccc; --color-bg-title: #2b2b2b; --color-text-title: #f8f8f2; --color-bg-participant: #44475a; --color-text-participant: #f8f8f2; --color-border-participant: #cccccc; --color-text-message: #ffb86c; --color-message-arrow: #cccccc; --color-bg-message-hover: #a6d2ff; --color-text-message-hover: #174ad4; --color-text-comment: #666666; --color-bg-fragment-header: #44475a; --color-text-fragment: #8be9fd; --color-border-fragment: #cccccc; --color-bg-occurrence: #44475a; --color-border-occurrence: #555555; --color-text-link: #a6d2ff; --color-text-control: #e2ba88; }
.theme-sky { --color-bg-canvas: #ffffff; --color-bg-frame: #ffffff; --color-border-frame: #cccccc; --color-bg-title: #deecfb; --color-text-title: #032c72; --color-bg-participant: #deecfb; --color-text-participant: #032c72; --color-border-participant: #032c72; --color-text-message: #032c72; --color-message-arrow: #032c72; --color-bg-message-hover: #a6d2ff; --color-text-message-hover: #174ad4; --color-text-comment: #666666; --color-bg-fragment-header: #f0f0f0; --color-text-fragment: #032c72; --color-border-fragment: #032c72; --color-bg-occurrence: #deecfb; --color-border-occurrence: #555555; --color-text-link: #a6d2ff; --color-text-control: #a6d2ff; }
.theme-idle-afternoon { --color-bg-canvas: #d8dad9; --color-bg-frame: #d8dad9; --color-border-frame: #324939; --color-bg-title: #d8dad9; --color-text-title: #182e27; --color-bg-participant: #f3f5f7; --color-text-participant: #182e27; --color-border-participant: #182e27; --color-text-message: #030809; --color-message-arrow: #324939; --color-bg-message-hover: #aea690; --color-text-message-hover: #000000; --color-text-comment: #030809; --color-bg-fragment-header: #f0f0f0; --color-text-fragment: #182e27; --color-border-fragment: #344337; --color-bg-occurrence: #f3f5f7; --color-border-occurrence: #344337; --color-text-link: #344337; --color-text-control: #97a49b; }
.theme-coles { --color-bg-canvas: #ffffff; --color-bg-frame: #ffde00; --color-border-frame: #ee141f; --color-bg-title: #ffffff; --color-text-title: #182e27; --color-bg-participant: #f3f5f7; --color-text-participant: #000000; --color-border-participant: #344337; --color-text-message: #000000; --color-message-arrow: #000000; --color-bg-message-hover: #ee141f; --color-text-message-hover: #ffffff; --color-text-comment: #000000; --color-bg-fragment-header: #ee141f; --color-text-fragment: #ffffff; --color-border-fragment: #ee141f; --color-bg-occurrence: #f3f5f7; --color-border-occurrence: #344337; --color-text-link: #344337; --color-text-control: #97a49b; }
.theme-coles .footer { background-color: rgb(255, 255, 255); }
.theme-woolworths { --color-bg-canvas: #e6eaf3; --color-bg-frame: #e6eaf3; --color-border-frame: #049e50; --color-bg-title: #ffffff; --color-text-title: #12522f; --color-bg-participant: #aacb51; --color-text-participant: #000000; --color-border-participant: #344337; --color-text-message: #12522f; --color-message-arrow: #049e50; --color-bg-message-hover: #fffefb; --color-text-message-hover: #ffffff; --color-text-comment: #000000; --color-bg-fragment-header: #aacb51; --color-text-fragment: #12522f; --color-border-fragment: #049e50; --color-bg-occurrence: #aacb51; --color-border-occurrence: #344337; --color-text-link: #344337; --color-text-control: #335c80; }
.theme-anz { --color-bg-canvas: #ffffff; --color-bg-frame: #ffffff; --color-border-frame: #089fd8; --color-bg-title: #ffffff; --color-text-title: #006e9c; --color-bg-participant: #fcfdf8; --color-text-participant: #00abd8; --color-border-participant: #00abd8; --color-text-message: #42a4e0; --color-message-arrow: #089fd8; --color-bg-message-hover: #006e9c; --color-text-message-hover: #ffffff; --color-text-comment: #000000; --color-bg-fragment-header: #42a4e0; --color-text-fragment: #006e9c; --color-border-fragment: #089fd8; --color-bg-occurrence: #fcfdf8; --color-border-occurrence: #006e9c; --color-text-link: #c9d8e7; --color-text-control: #335c80; }
.theme-anz .fragment .header { color: rgb(255, 255, 255); }
.theme-nab { --color-bg-canvas: #f2f4f6; --color-bg-participant: #c30000; --color-text-participant: #ffffff; --color-border-participant: #c30000; --color-text-message: #c30000; --color-bg-fragment-header: #c30000; --color-text-fragment-header: #ffffff; }
.theme-google { --color-white: #ffffff; --color-red-google: #db4437; --color-blue-google: #4285f4; --color-green-google: #0f9d58; --color-yellow-google: #f4b400; --color-bg-canvas: var(--color-white); --color-bg-frame: #f2f4f6; --color-border-frame: #4285f4; --color-bg-title: #4285f4; --color-text-title: #ffffff; --color-bg-participant: var(--color-red-google); --color-text-participant: #ffffff; --color-border-participant: #4285f4; --color-text-message: var(--color-red-google); --color-message-arrow: var(--color-red-google); --color-bg-message-hover: #fffefb; --color-text-message-hover: #ffffff; --color-text-comment: #000000; --color-bg-fragment-header: var(--color-green-google); --color-text-fragment: #ffffff; --color-border-fragment: #4285f4; --color-bg-occurrence: #f4b400; --color-border-occurrence: #4285f4; --color-text-link: #c9d8e7; --color-text-control: #335c80; }
*, ::before, ::after { --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgb(59 130 246 / .5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; }
::backdrop { --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: rgb(59 130 246 / .5); --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; }
.container { width: 100%; }
@media (min-width: 640px) {
.container { max-width: 640px; }
}
@media (min-width: 768px) {
.container { max-width: 768px; }
}
@media (min-width: 1024px) {
.container { max-width: 1024px; }
}
@media (min-width: 1280px) {
.container { max-width: 1280px; }
}
@media (min-width: 1536px) {
.container { max-width: 1536px; }
}
.zenuml .sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border-width: 0px; }
.zenuml .pointer-events-none { pointer-events: none; }
.zenuml .pointer-events-auto { pointer-events: auto; }
.zenuml .invisible { visibility: hidden; }
.zenuml .collapse { visibility: collapse; }
.zenuml .static { position: static; }
.zenuml .fixed { position: fixed; }
.zenuml .absolute { position: absolute; }
.zenuml .relative { position: relative; }
.zenuml .sticky { position: sticky; }
.zenuml .inset-0 { inset: 0px; }
.zenuml .bottom-1 { bottom: 0.25rem; }
.zenuml .left-1 { left: 0.25rem; }
.zenuml .top-0 { top: 0px; }
.zenuml .top-8 { top: 2rem; }
.zenuml .left-1\/2 { left: 50%; }
.zenuml .right-0 { right: 0px; }
.zenuml .right-\[100\%\] { right: 100%; }
.zenuml .left-full { left: 100%; }
.zenuml .z-40 { z-index: 40; }
.zenuml .z-10 { z-index: 10; }
.zenuml .z-30 { z-index: 30; }
.zenuml .col-span-2 { grid-column: span 2 / span 2; }
.zenuml .col-span-4 { grid-column: span 4 / span 4; }
.zenuml .col-span-1 { grid-column: span 1 / span 1; }
.zenuml .float-right { float: right; }
.zenuml .m-1 { margin: 0.25rem; }
.zenuml .m-2 { margin: 0.5rem; }
.zenuml .m-auto { margin: auto; }
.zenuml .mx-auto { margin-left: auto; margin-right: auto; }
.zenuml .mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.zenuml .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.zenuml .-my-px { margin-top: -1px; margin-bottom: -1px; }
.zenuml .mr-1 { margin-right: 0.25rem; }
.zenuml .mt-4 { margin-top: 1rem; }
.zenuml .ml-2 { margin-left: 0.5rem; }
.zenuml .ml-4 { margin-left: 1rem; }
.zenuml .mt-3 { margin-top: 0.75rem; }
.zenuml .mb-4 { margin-bottom: 1rem; }
.zenuml .mt-8 { margin-top: 2rem; }
.zenuml .-mt-12 { margin-top: -3rem; }
.zenuml .mt-1 { margin-top: 0.25rem; }
.zenuml .mb-0 { margin-bottom: 0px; }
.zenuml .ml-1 { margin-left: 0.25rem; }
.zenuml .mt-2 { margin-top: 0.5rem; }
.zenuml .box-border { box-sizing: border-box; }
.zenuml .block { display: block; }
.zenuml .inline-block { display: inline-block; }
.zenuml .inline { display: inline; }
.zenuml .flex { display: flex; }
.zenuml .inline-flex { display: inline-flex; }
.zenuml .table { display: table; }
.zenuml .grid { display: grid; }
.zenuml .contents { display: contents; }
.zenuml .hidden { display: none; }
.zenuml .h-10 { height: 2.5rem; }
.zenuml .h-5 { height: 1.25rem; }
.zenuml .h-0 { height: 0px; }
.zenuml .h-screen { height: 100vh; }
.zenuml .h-full { height: 100%; }
.zenuml .h-4 { height: 1rem; }
.zenuml .h-6 { height: 1.5rem; }
.zenuml .h-12 { height: 3rem; }
.zenuml .h-8 { height: 2rem; }
.zenuml .h-14 { height: 3.5rem; }
.zenuml .h-3 { height: 0.75rem; }
.zenuml .min-h-full { min-height: 100%; }
.zenuml .min-h-screen { min-height: 100vh; }
.zenuml .min-h-\[1em\] { min-height: 1em; }
.zenuml .w-full { width: 100%; }
.zenuml .w-96 { width: 24rem; }
.zenuml .w-4 { width: 1rem; }
.zenuml .w-6 { width: 1.5rem; }
.zenuml .w-12 { width: 3rem; }
.zenuml .w-5 { width: 1.25rem; }
.zenuml .w-20 { width: 5rem; }
.zenuml .w-8 { width: 2rem; }
.zenuml .w-11\/12 { width: 91.6667%; }
.zenuml .w-px { width: 1px; }
.zenuml .w-3 { width: 0.75rem; }
.zenuml .min-w-\[100px\] { min-width: 100px; }
.zenuml .max-w-md { max-width: 28rem; }
.zenuml .max-w-full { max-width: 100%; }
.zenuml .max-w-7xl { max-width: 80rem; }
.zenuml .flex-shrink-0, .zenuml .shrink-0 { flex-shrink: 0; }
.zenuml .flex-grow, .zenuml .grow { flex-grow: 1; }
.zenuml .origin-top-left { transform-origin: left top; }
.zenuml .-translate-x-1\/2 { --tw-translate-x: -50%; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .-translate-y-full { --tw-translate-y: -100%; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .-translate-y-8 { --tw-translate-y: -2rem; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .-translate-x-full { --tw-translate-x: -100%; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .-translate-y-1\/2 { --tw-translate-y: -50%; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .translate-y-1\/2 { --tw-translate-y: 50%; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .scale-95 { --tw-scale-x: .95; --tw-scale-y: .95; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .transform { transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.zenuml .cursor-context-menu { cursor: context-menu; }
.zenuml .cursor-pointer { cursor: pointer; }
.zenuml .cursor-text { cursor: text; }
.zenuml .select-none { user-select: none; }
.zenuml .resize { resize: both; }
.zenuml .grid-cols-6 { grid-template-columns: repeat(6, minmax(0px, 1fr)); }
.zenuml .grid-cols-4 { grid-template-columns: repeat(4, minmax(0px, 1fr)); }
.zenuml .grid-cols-1 { grid-template-columns: repeat(1, minmax(0px, 1fr)); }
.zenuml .flex-row-reverse { flex-direction: row-reverse; }
.zenuml .flex-col { flex-direction: column; }
.zenuml .flex-nowrap { flex-wrap: nowrap; }
.zenuml .items-start { align-items: flex-start; }
.zenuml .items-end { align-items: flex-end; }
.zenuml .items-center { align-items: center; }
.zenuml .justify-center { justify-content: center; }
.zenuml .justify-between { justify-content: space-between; }
.zenuml .gap-3 { gap: 0.75rem; }
.zenuml .gap-1 { gap: 0.25rem; }
.zenuml .gap-5 { gap: 1.25rem; }
.zenuml .space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(.5rem * var(--tw-space-y-reverse)); }
.zenuml .overflow-hidden { overflow: hidden; }
.zenuml .overflow-visible { overflow: visible; }
.zenuml .overflow-y-auto { overflow-y: auto; }
.zenuml .text-ellipsis { text-overflow: ellipsis; }
.zenuml .text-clip { text-overflow: clip; }
.zenuml .whitespace-normal { white-space: normal; }
.zenuml .whitespace-nowrap { white-space: nowrap; }
.zenuml .rounded { border-radius: 0.25rem; }
.zenuml .rounded-2xl { border-radius: 1rem; }
.zenuml .rounded-lg { border-radius: 0.5rem; }
.zenuml .rounded-md { border-radius: 0.375rem; }
.zenuml .rounded-sm { border-radius: 0.125rem; }
.zenuml .rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.zenuml .rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; }
.zenuml .rounded-b-md { border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.zenuml .border-2 { border-width: 2px; }
.zenuml .border { border-width: 1px; }
.zenuml .border-b-2 { border-bottom-width: 2px; }
.zenuml .border-b { border-bottom-width: 1px; }
.zenuml .border-t { border-top-width: 1px; }
.zenuml .border-r { border-right-width: 1px; }
.zenuml .border-solid { border-style: solid; }
.zenuml .border-dashed { border-style: dashed; }
.zenuml .border-red-900 { --tw-border-opacity: 1; border-color: rgb(127 29 29 / var(--tw-border-opacity)); }
.zenuml .border-skin-frame { border-color: var(--color-border-frame, var(--color-border-base, #000)); }
.zenuml .border-primary { border-color: var(--color-border-primary); }
.zenuml .border-transparent { border-color: transparent; }
.zenuml .border-gray-200 { --tw-border-opacity: 1; border-color: rgb(229 231 235 / var(--tw-border-opacity)); }
.zenuml .border-skin-participant { border-color: var(--color-border-participant, var(--color-border-frame, var(--color-border-base, #000))); }
.zenuml .border-skin-fragment { border-color: var(--color-border-fragment, var(--color-border-frame, var(--color-border-base, #000))); }
.zenuml .border-skin-message-arrow { border-color: var(--color-message-arrow, var(--color-border-frame, var(--color-border-base, #000))); }
.zenuml .border-skin-occurrence { border-color: var(--color-border-occurrence, var(--color-border-frame, var(--color-border-base, #000))); }
.zenuml .bg-inherit { background-color: inherit; }
.zenuml .bg-current { background-color: currentcolor; }
.zenuml .bg-transparent { background-color: transparent; }
.zenuml .bg-black { --tw-bg-opacity: 1; background-color: rgb(0 0 0 / var(--tw-bg-opacity)); }
.zenuml .bg-white { --tw-bg-opacity: 1; background-color: rgb(255 255 255 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-50 { --tw-bg-opacity: 1; background-color: rgb(248 250 252 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-100 { --tw-bg-opacity: 1; background-color: rgb(241 245 249 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-200 { --tw-bg-opacity: 1; background-color: rgb(226 232 240 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-300 { --tw-bg-opacity: 1; background-color: rgb(203 213 225 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-400 { --tw-bg-opacity: 1; background-color: rgb(148 163 184 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-500 { --tw-bg-opacity: 1; background-color: rgb(100 116 139 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-600 { --tw-bg-opacity: 1; background-color: rgb(71 85 105 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-700 { --tw-bg-opacity: 1; background-color: rgb(51 65 85 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-800 { --tw-bg-opacity: 1; background-color: rgb(30 41 59 / var(--tw-bg-opacity)); }
.zenuml .bg-slate-900 { --tw-bg-opacity: 1; background-color: rgb(15 23 42 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-50 { --tw-bg-opacity: 1; background-color: rgb(249 250 251 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-100 { --tw-bg-opacity: 1; background-color: rgb(243 244 246 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-200 { --tw-bg-opacity: 1; background-color: rgb(229 231 235 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-300 { --tw-bg-opacity: 1; background-color: rgb(209 213 219 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-400 { --tw-bg-opacity: 1; background-color: rgb(156 163 175 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-500 { --tw-bg-opacity: 1; background-color: rgb(107 114 128 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-600 { --tw-bg-opacity: 1; background-color: rgb(75 85 99 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-700 { --tw-bg-opacity: 1; background-color: rgb(55 65 81 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-800 { --tw-bg-opacity: 1; background-color: rgb(31 41 55 / var(--tw-bg-opacity)); }
.zenuml .bg-gray-900 { --tw-bg-opacity: 1; background-color: rgb(17 24 39 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-50 { --tw-bg-opacity: 1; background-color: rgb(250 250 250 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-100 { --tw-bg-opacity: 1; background-color: rgb(244 244 245 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-200 { --tw-bg-opacity: 1; background-color: rgb(228 228 231 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-300 { --tw-bg-opacity: 1; background-color: rgb(212 212 216 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-400 { --tw-bg-opacity: 1; background-color: rgb(161 161 170 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-500 { --tw-bg-opacity: 1; background-color: rgb(113 113 122 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-600 { --tw-bg-opacity: 1; background-color: rgb(82 82 91 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-700 { --tw-bg-opacity: 1; background-color: rgb(63 63 70 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-800 { --tw-bg-opacity: 1; background-color: rgb(39 39 42 / var(--tw-bg-opacity)); }
.zenuml .bg-zinc-900 { --tw-bg-opacity: 1; background-color: rgb(24 24 27 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-50 { --tw-bg-opacity: 1; background-color: rgb(250 250 250 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-100 { --tw-bg-opacity: 1; background-color: rgb(245 245 245 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-200 { --tw-bg-opacity: 1; background-color: rgb(229 229 229 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-300 { --tw-bg-opacity: 1; background-color: rgb(212 212 212 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-400 { --tw-bg-opacity: 1; background-color: rgb(163 163 163 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-500 { --tw-bg-opacity: 1; background-color: rgb(115 115 115 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-600 { --tw-bg-opacity: 1; background-color: rgb(82 82 82 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-700 { --tw-bg-opacity: 1; background-color: rgb(64 64 64 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-800 { --tw-bg-opacity: 1; background-color: rgb(38 38 38 / var(--tw-bg-opacity)); }
.zenuml .bg-neutral-900 { --tw-bg-opacity: 1; background-color: rgb(23 23 23 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-50 { --tw-bg-opacity: 1; background-color: rgb(250 250 249 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-100 { --tw-bg-opacity: 1; background-color: rgb(245 245 244 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-200 { --tw-bg-opacity: 1; background-color: rgb(231 229 228 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-300 { --tw-bg-opacity: 1; background-color: rgb(214 211 209 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-400 { --tw-bg-opacity: 1; background-color: rgb(168 162 158 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-500 { --tw-bg-opacity: 1; background-color: rgb(120 113 108 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-600 { --tw-bg-opacity: 1; background-color: rgb(87 83 78 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-700 { --tw-bg-opacity: 1; background-color: rgb(68 64 60 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-800 { --tw-bg-opacity: 1; background-color: rgb(41 37 36 / var(--tw-bg-opacity)); }
.zenuml .bg-stone-900 { --tw-bg-opacity: 1; background-color: rgb(28 25 23 / var(--tw-bg-opacity)); }
.zenuml .bg-red-50 { --tw-bg-opacity: 1; background-color: rgb(254 242 242 / var(--tw-bg-opacity)); }
.zenuml .bg-red-100 { --tw-bg-opacity: 1; background-color: rgb(254 226 226 / var(--tw-bg-opacity)); }
.zenuml .bg-red-200 { --tw-bg-opacity: 1; background-color: rgb(254 202 202 / var(--tw-bg-opacity)); }
.zenuml .bg-red-300 { --tw-bg-opacity: 1; background-color: rgb(252 165 165 / var(--tw-bg-opacity)); }
.zenuml .bg-red-400 { --tw-bg-opacity: 1; background-color: rgb(248 113 113 / var(--tw-bg-opacity)); }
.zenuml .bg-red-500 { --tw-bg-opacity: 1; background-color: rgb(239 68 68 / var(--tw-bg-opacity)); }
.zenuml .bg-red-600 { --tw-bg-opacity: 1; background-color: rgb(220 38 38 / var(--tw-bg-opacity)); }
.zenuml .bg-red-700 { --tw-bg-opacity: 1; background-color: rgb(185 28 28 / var(--tw-bg-opacity)); }
.zenuml .bg-red-800 { --tw-bg-opacity: 1; background-color: rgb(153 27 27 / var(--tw-bg-opacity)); }
.zenuml .bg-red-900 { --tw-bg-opacity: 1; background-color: rgb(127 29 29 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-50 { --tw-bg-opacity: 1; background-color: rgb(255 247 237 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-100 { --tw-bg-opacity: 1; background-color: rgb(255 237 213 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-200 { --tw-bg-opacity: 1; background-color: rgb(254 215 170 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-300 { --tw-bg-opacity: 1; background-color: rgb(253 186 116 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-400 { --tw-bg-opacity: 1; background-color: rgb(251 146 60 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-500 { --tw-bg-opacity: 1; background-color: rgb(249 115 22 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-600 { --tw-bg-opacity: 1; background-color: rgb(234 88 12 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-700 { --tw-bg-opacity: 1; background-color: rgb(194 65 12 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-800 { --tw-bg-opacity: 1; background-color: rgb(154 52 18 / var(--tw-bg-opacity)); }
.zenuml .bg-orange-900 { --tw-bg-opacity: 1; background-color: rgb(124 45 18 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-50 { --tw-bg-opacity: 1; background-color: rgb(255 251 235 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-100 { --tw-bg-opacity: 1; background-color: rgb(254 243 199 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-200 { --tw-bg-opacity: 1; background-color: rgb(253 230 138 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-300 { --tw-bg-opacity: 1; background-color: rgb(252 211 77 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-400 { --tw-bg-opacity: 1; background-color: rgb(251 191 36 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-500 { --tw-bg-opacity: 1; background-color: rgb(245 158 11 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-600 { --tw-bg-opacity: 1; background-color: rgb(217 119 6 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-700 { --tw-bg-opacity: 1; background-color: rgb(180 83 9 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-800 { --tw-bg-opacity: 1; background-color: rgb(146 64 14 / var(--tw-bg-opacity)); }
.zenuml .bg-amber-900 { --tw-bg-opacity: 1; background-color: rgb(120 53 15 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-50 { --tw-bg-opacity: 1; background-color: rgb(254 252 232 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-100 { --tw-bg-opacity: 1; background-color: rgb(254 249 195 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-200 { --tw-bg-opacity: 1; background-color: rgb(254 240 138 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-300 { --tw-bg-opacity: 1; background-color: rgb(253 224 71 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-400 { --tw-bg-opacity: 1; background-color: rgb(250 204 21 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-500 { --tw-bg-opacity: 1; background-color: rgb(234 179 8 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-600 { --tw-bg-opacity: 1; background-color: rgb(202 138 4 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-700 { --tw-bg-opacity: 1; background-color: rgb(161 98 7 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-800 { --tw-bg-opacity: 1; background-color: rgb(133 77 14 / var(--tw-bg-opacity)); }
.zenuml .bg-yellow-900 { --tw-bg-opacity: 1; background-color: rgb(113 63 18 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-50 { --tw-bg-opacity: 1; background-color: rgb(247 254 231 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-100 { --tw-bg-opacity: 1; background-color: rgb(236 252 203 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-200 { --tw-bg-opacity: 1; background-color: rgb(217 249 157 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-300 { --tw-bg-opacity: 1; background-color: rgb(190 242 100 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-400 { --tw-bg-opacity: 1; background-color: rgb(163 230 53 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-500 { --tw-bg-opacity: 1; background-color: rgb(132 204 22 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-600 { --tw-bg-opacity: 1; background-color: rgb(101 163 13 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-700 { --tw-bg-opacity: 1; background-color: rgb(77 124 15 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-800 { --tw-bg-opacity: 1; background-color: rgb(63 98 18 / var(--tw-bg-opacity)); }
.zenuml .bg-lime-900 { --tw-bg-opacity: 1; background-color: rgb(54 83 20 / var(--tw-bg-opacity)); }
.zenuml .bg-green-50 { --tw-bg-opacity: 1; background-color: rgb(240 253 244 / var(--tw-bg-opacity)); }
.zenuml .bg-green-100 { --tw-bg-opacity: 1; background-color: rgb(220 252 231 / var(--tw-bg-opacity)); }
.zenuml .bg-green-200 { --tw-bg-opacity: 1; background-color: rgb(187 247 208 / var(--tw-bg-opacity)); }
.zenuml .bg-green-300 { --tw-bg-opacity: 1; background-color: rgb(134 239 172 / var(--tw-bg-opacity)); }
.zenuml .bg-green-400 { --tw-bg-opacity: 1; background-color: rgb(74 222 128 / var(--tw-bg-opacity)); }
.zenuml .bg-green-500 { --tw-bg-opacity: 1; background-color: rgb(34 197 94 / var(--tw-bg-opacity)); }
.zenuml .bg-green-600 { --tw-bg-opacity: 1; background-color: rgb(22 163 74 / var(--tw-bg-opacity)); }
.zenuml .bg-green-700 { --tw-bg-opacity: 1; background-color: rgb(21 128 61 / var(--tw-bg-opacity)); }
.zenuml .bg-green-800 { --tw-bg-opacity: 1; background-color: rgb(22 101 52 / var(--tw-bg-opacity)); }
.zenuml .bg-green-900 { --tw-bg-opacity: 1; background-color: rgb(20 83 45 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-50 { --tw-bg-opacity: 1; background-color: rgb(236 253 245 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-100 { --tw-bg-opacity: 1; background-color: rgb(209 250 229 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-200 { --tw-bg-opacity: 1; background-color: rgb(167 243 208 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-300 { --tw-bg-opacity: 1; background-color: rgb(110 231 183 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-400 { --tw-bg-opacity: 1; background-color: rgb(52 211 153 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-500 { --tw-bg-opacity: 1; background-color: rgb(16 185 129 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-600 { --tw-bg-opacity: 1; background-color: rgb(5 150 105 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-700 { --tw-bg-opacity: 1; background-color: rgb(4 120 87 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-800 { --tw-bg-opacity: 1; background-color: rgb(6 95 70 / var(--tw-bg-opacity)); }
.zenuml .bg-emerald-900 { --tw-bg-opacity: 1; background-color: rgb(6 78 59 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-50 { --tw-bg-opacity: 1; background-color: rgb(240 253 250 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-100 { --tw-bg-opacity: 1; background-color: rgb(204 251 241 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-200 { --tw-bg-opacity: 1; background-color: rgb(153 246 228 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-300 { --tw-bg-opacity: 1; background-color: rgb(94 234 212 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-400 { --tw-bg-opacity: 1; background-color: rgb(45 212 191 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-500 { --tw-bg-opacity: 1; background-color: rgb(20 184 166 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-600 { --tw-bg-opacity: 1; background-color: rgb(13 148 136 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-700 { --tw-bg-opacity: 1; background-color: rgb(15 118 110 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-800 { --tw-bg-opacity: 1; background-color: rgb(17 94 89 / var(--tw-bg-opacity)); }
.zenuml .bg-teal-900 { --tw-bg-opacity: 1; background-color: rgb(19 78 74 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-50 { --tw-bg-opacity: 1; background-color: rgb(236 254 255 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-100 { --tw-bg-opacity: 1; background-color: rgb(207 250 254 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-200 { --tw-bg-opacity: 1; background-color: rgb(165 243 252 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-300 { --tw-bg-opacity: 1; background-color: rgb(103 232 249 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-400 { --tw-bg-opacity: 1; background-color: rgb(34 211 238 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-500 { --tw-bg-opacity: 1; background-color: rgb(6 182 212 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-600 { --tw-bg-opacity: 1; background-color: rgb(8 145 178 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-700 { --tw-bg-opacity: 1; background-color: rgb(14 116 144 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-800 { --tw-bg-opacity: 1; background-color: rgb(21 94 117 / var(--tw-bg-opacity)); }
.zenuml .bg-cyan-900 { --tw-bg-opacity: 1; background-color: rgb(22 78 99 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-50 { --tw-bg-opacity: 1; background-color: rgb(240 249 255 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-100 { --tw-bg-opacity: 1; background-color: rgb(224 242 254 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-200 { --tw-bg-opacity: 1; background-color: rgb(186 230 253 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-300 { --tw-bg-opacity: 1; background-color: rgb(125 211 252 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-400 { --tw-bg-opacity: 1; background-color: rgb(56 189 248 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-500 { --tw-bg-opacity: 1; background-color: rgb(14 165 233 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-600 { --tw-bg-opacity: 1; background-color: rgb(2 132 199 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-700 { --tw-bg-opacity: 1; background-color: rgb(3 105 161 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-800 { --tw-bg-opacity: 1; background-color: rgb(7 89 133 / var(--tw-bg-opacity)); }
.zenuml .bg-sky-900 { --tw-bg-opacity: 1; background-color: rgb(12 74 110 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-50 { --tw-bg-opacity: 1; background-color: rgb(239 246 255 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-100 { --tw-bg-opacity: 1; background-color: rgb(219 234 254 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-200 { --tw-bg-opacity: 1; background-color: rgb(191 219 254 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-300 { --tw-bg-opacity: 1; background-color: rgb(147 197 253 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-400 { --tw-bg-opacity: 1; background-color: rgb(96 165 250 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-500 { --tw-bg-opacity: 1; background-color: rgb(59 130 246 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-600 { --tw-bg-opacity: 1; background-color: rgb(37 99 235 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-700 { --tw-bg-opacity: 1; background-color: rgb(29 78 216 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-800 { --tw-bg-opacity: 1; background-color: rgb(30 64 175 / var(--tw-bg-opacity)); }
.zenuml .bg-blue-900 { --tw-bg-opacity: 1; background-color: rgb(30 58 138 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-50 { --tw-bg-opacity: 1; background-color: rgb(238 242 255 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-100 { --tw-bg-opacity: 1; background-color: rgb(224 231 255 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-200 { --tw-bg-opacity: 1; background-color: rgb(199 210 254 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-300 { --tw-bg-opacity: 1; background-color: rgb(165 180 252 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-400 { --tw-bg-opacity: 1; background-color: rgb(129 140 248 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-500 { --tw-bg-opacity: 1; background-color: rgb(99 102 241 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-600 { --tw-bg-opacity: 1; background-color: rgb(79 70 229 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-700 { --tw-bg-opacity: 1; background-color: rgb(67 56 202 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-800 { --tw-bg-opacity: 1; background-color: rgb(55 48 163 / var(--tw-bg-opacity)); }
.zenuml .bg-indigo-900 { --tw-bg-opacity: 1; background-color: rgb(49 46 129 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-50 { --tw-bg-opacity: 1; background-color: rgb(245 243 255 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-100 { --tw-bg-opacity: 1; background-color: rgb(237 233 254 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-200 { --tw-bg-opacity: 1; background-color: rgb(221 214 254 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-300 { --tw-bg-opacity: 1; background-color: rgb(196 181 253 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-400 { --tw-bg-opacity: 1; background-color: rgb(167 139 250 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-500 { --tw-bg-opacity: 1; background-color: rgb(139 92 246 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-600 { --tw-bg-opacity: 1; background-color: rgb(124 58 237 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-700 { --tw-bg-opacity: 1; background-color: rgb(109 40 217 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-800 { --tw-bg-opacity: 1; background-color: rgb(91 33 182 / var(--tw-bg-opacity)); }
.zenuml .bg-violet-900 { --tw-bg-opacity: 1; background-color: rgb(76 29 149 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-50 { --tw-bg-opacity: 1; background-color: rgb(250 245 255 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-100 { --tw-bg-opacity: 1; background-color: rgb(243 232 255 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-200 { --tw-bg-opacity: 1; background-color: rgb(233 213 255 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-300 { --tw-bg-opacity: 1; background-color: rgb(216 180 254 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-400 { --tw-bg-opacity: 1; background-color: rgb(192 132 252 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-500 { --tw-bg-opacity: 1; background-color: rgb(168 85 247 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-600 { --tw-bg-opacity: 1; background-color: rgb(147 51 234 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-700 { --tw-bg-opacity: 1; background-color: rgb(126 34 206 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-800 { --tw-bg-opacity: 1; background-color: rgb(107 33 168 / var(--tw-bg-opacity)); }
.zenuml .bg-purple-900 { --tw-bg-opacity: 1; background-color: rgb(88 28 135 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-50 { --tw-bg-opacity: 1; background-color: rgb(253 244 255 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-100 { --tw-bg-opacity: 1; background-color: rgb(250 232 255 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-200 { --tw-bg-opacity: 1; background-color: rgb(245 208 254 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-300 { --tw-bg-opacity: 1; background-color: rgb(240 171 252 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-400 { --tw-bg-opacity: 1; background-color: rgb(232 121 249 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-500 { --tw-bg-opacity: 1; background-color: rgb(217 70 239 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-600 { --tw-bg-opacity: 1; background-color: rgb(192 38 211 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-700 { --tw-bg-opacity: 1; background-color: rgb(162 28 175 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-800 { --tw-bg-opacity: 1; background-color: rgb(134 25 143 / var(--tw-bg-opacity)); }
.zenuml .bg-fuchsia-900 { --tw-bg-opacity: 1; background-color: rgb(112 26 117 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-50 { --tw-bg-opacity: 1; background-color: rgb(253 242 248 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-100 { --tw-bg-opacity: 1; background-color: rgb(252 231 243 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-200 { --tw-bg-opacity: 1; background-color: rgb(251 207 232 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-300 { --tw-bg-opacity: 1; background-color: rgb(249 168 212 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-400 { --tw-bg-opacity: 1; background-color: rgb(244 114 182 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-500 { --tw-bg-opacity: 1; background-color: rgb(236 72 153 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-600 { --tw-bg-opacity: 1; background-color: rgb(219 39 119 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-700 { --tw-bg-opacity: 1; background-color: rgb(190 24 93 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-800 { --tw-bg-opacity: 1; background-color: rgb(157 23 77 / var(--tw-bg-opacity)); }
.zenuml .bg-pink-900 { --tw-bg-opacity: 1; background-color: rgb(131 24 67 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-50 { --tw-bg-opacity: 1; background-color: rgb(255 241 242 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-100 { --tw-bg-opacity: 1; background-color: rgb(255 228 230 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-200 { --tw-bg-opacity: 1; background-color: rgb(254 205 211 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-300 { --tw-bg-opacity: 1; background-color: rgb(253 164 175 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-400 { --tw-bg-opacity: 1; background-color: rgb(251 113 133 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-500 { --tw-bg-opacity: 1; background-color: rgb(244 63 94 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-600 { --tw-bg-opacity: 1; background-color: rgb(225 29 72 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-700 { --tw-bg-opacity: 1; background-color: rgb(190 18 60 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-800 { --tw-bg-opacity: 1; background-color: rgb(159 18 57 / var(--tw-bg-opacity)); }
.zenuml .bg-rose-900 { --tw-bg-opacity: 1; background-color: rgb(136 19 55 / var(--tw-bg-opacity)); }
.zenuml .bg-skin-frame { background-color: var(--color-bg-frame, var(--color-bg-canvas, var(--color-bg-base, #fff))); }
.zenuml .bg-skin-canvas { background-color: var(--color-bg-canvas, var(--color-bg-base, #fff)); }
.zenuml .bg-skin-title { background-color: var(--color-bg-title, var(--color-bg-frame, var(--color-bg-canvas, var(--color-bg-base, #fff)))); }
.zenuml .bg-skin-participant { background-color: var(--color-bg-participant, var(--color-bg-frame, var(--color-bg-canvas, var(--color-bg-base, #fff)))); }
.zenuml .bg-skin-lifeline { background-color: var(--color-border-participant, var(--color-border-participant, var(--color-border-frame, var(--color-border-base, #000)))); }
.zenuml .bg-skin-divider { background-color: var(--color-border-participant, var(--color-border-frame, var(--color-border-base, #000))); }
.zenuml .bg-skin-message-hover { background-color: var(--color-bg-message-hover, var(--color-text-base, #000)); }
.zenuml .bg-skin-fragment-header { background-color: var(--color-bg-fragment-header, transparent); }
.zenuml .bg-skin-occurrence { background-color: var(--color-bg-occurrence, var(--color-bg-participant, var(--color-bg-frame, var(--color-bg-canvas, var(--color-bg-base, #fff))))); }
.zenuml .bg-skin-base { background-color: var(--color-bg-base); }
.zenuml .bg-skin-secondary { background-color: var(--color-bg-secondary); }
.zenuml .bg-skin-hover { background-color: var(--color-bg-hover); }
.zenuml .bg-skin-fill { background-color: var(--color-bg-fill); }
.zenuml .bg-transparent\/0 { background-color: rgba(0, 0, 0, 0); }
.zenuml .bg-transparent\/5 { background-color: rgba(0, 0, 0, 0.05); }
.zenuml .bg-transparent\/10 { background-color: rgba(0, 0, 0, 0.1); }
.zenuml .bg-transparent\/20 { background-color: rgba(0, 0, 0, 0.2); }
.zenuml .bg-transparent\/25 { background-color: rgba(0, 0, 0, 0.25); }
.zenuml .bg-transparent\/30 { background-color: rgba(0, 0, 0, 0.3); }
.zenuml .bg-transparent\/40 { background-color: rgba(0, 0, 0, 0.4); }
.zenuml .bg-transparent\/50 { background-color: rgba(0, 0, 0, 0.5); }
.zenuml .bg-transparent\/60 { background-color: rgba(0, 0, 0, 0.6); }
.zenuml .bg-transparent\/70 { background-color: rgba(0, 0, 0, 0.7); }
.zenuml .bg-transparent\/75 { background-color: rgba(0, 0, 0, 0.75); }
.zenuml .bg-transparent\/80 { background-color: rgba(0, 0, 0, 0.8); }
.zenuml .bg-transparent\/90 { background-color: rgba(0, 0, 0, 0.9); }
.zenuml .bg-transparent\/95 { background-color: rgba(0, 0, 0, 0.95); }
.zenuml .bg-transparent\/100 { background-color: rgb(0, 0, 0); }
.zenuml .bg-black\/0 { background-color: rgba(0, 0, 0, 0); }
.zenuml .bg-black\/5 { background-color: rgba(0, 0, 0, 0.05); }
.zenuml .bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.zenuml .bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.zenuml .bg-black\/25 { background-color: rgba(0, 0, 0, 0.25); }
.zenuml .bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.zenuml .bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.zenuml .bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.zenuml .bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.zenuml .bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.zenuml .bg-black\/75 { background-color: rgba(0, 0, 0, 0.75); }
.zenuml .bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.zenuml .bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.zenuml .bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.zenuml .bg-black\/100 { background-color: rgb(0, 0, 0); }
.zenuml .bg-white\/0 { background-color: rgba(255, 255, 255, 0); }
.zenuml .bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.zenuml .bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.zenuml .bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.zenuml .bg-white\/25 { background-color: rgba(255, 255, 255, 0.25); }
.zenuml .bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.zenuml .bg-white\/40 { background-color: rgba(255, 255, 255, 0.4); }
.zenuml .bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.zenuml .bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.zenuml .bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.zenuml .bg-white\/75 { background-color: rgba(255, 255, 255, 0.75); }
.zenuml .bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.zenuml .bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.zenuml .bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.zenuml .bg-white\/100 { background-color: rgb(255, 255, 255); }
.zenuml .bg-slate-50\/0 { background-color: rgba(248, 250, 252, 0); }
.zenuml .bg-slate-50\/5 { background-color: rgba(248, 250, 252, 0.05); }
.zenuml .bg-slate-50\/10 { background-color: rgba(248, 250, 252, 0.1); }
.zenuml .bg-slate-50\/20 { background-color: rgba(248, 250, 252, 0.2); }
.zenuml .bg-slate-50\/25 { background-color: rgba(248, 250, 252, 0.25); }
.zenuml .bg-slate-50\/30 { background-color: rgba(248, 250, 252, 0.3); }
.zenuml .bg-slate-50\/40 { background-color: rgba(248, 250, 252, 0.4); }
.zenuml .bg-slate-50\/50 { background-color: rgba(248, 250, 252, 0.5); }
.zenuml .bg-slate-50\/60 { background-color: rgba(248, 250, 252, 0.6); }
.zenuml .bg-slate-50\/70 { background-color: rgba(248, 250, 252, 0.7); }
.zenuml .bg-slate-50\/75 { background-color: rgba(248, 250, 252, 0.75); }
.zenuml .bg-slate-50\/80 { background-color: rgba(248, 250, 252, 0.8); }
.zenuml .bg-slate-50\/90 { background-color: rgba(248, 250, 252, 0.9); }
.zenuml .bg-slate-50\/95 { background-color: rgba(248, 250, 252, 0.95); }
.zenuml .bg-slate-50\/100 { background-color: rgb(248, 250, 252); }
.zenuml .bg-slate-100\/0 { background-color: rgba(241, 245, 249, 0); }
.zenuml .bg-slate-100\/5 { background-color: rgba(241, 245, 249, 0.05); }
.zenuml .bg-slate-100\/10 { background-color: rgba(241, 245, 249, 0.1); }
.zenuml .bg-slate-100\/20 { background-color: rgba(241, 245, 249, 0.2); }
.zenuml .bg-slate-100\/25 { background-color: rgba(241, 245, 249, 0.25); }
.zenuml .bg-slate-100\/30 { background-color: rgba(241, 245, 249, 0.3); }
.zenuml .bg-slate-100\/40 { background-color: rgba(241, 245, 249, 0.4); }
.zenuml .bg-slate-100\/50 { background-color: rgba(241, 245, 249, 0.5); }
.zenuml .bg-slate-100\/60 { background-color: rgba(241, 245, 249, 0.6); }
.zenuml .bg-slate-100\/70 { background-color: rgba(241, 245, 249, 0.7); }
.zenuml .bg-slate-100\/75 { background-color: rgba(241, 245, 249, 0.75); }
.zenuml .bg-slate-100\/80 { background-color: rgba(241, 245, 249, 0.8); }
.zenuml .bg-slate-100\/90 { background-color: rgba(241, 245, 249, 0.9); }
.zenuml .bg-slate-100\/95 { background-color: rgba(241, 245, 249, 0.95); }
.zenuml .bg-slate-100\/100 { background-color: rgb(241, 245, 249); }
.zenuml .bg-slate-200\/0 { background-color: rgba(226, 232, 240, 0); }
.zenuml .bg-slate-200\/5 { background-color: rgba(226, 232, 240, 0.05); }
.zenuml .bg-slate-200\/10 { background-color: rgba(226, 232, 240, 0.1); }
.zenuml .bg-slate-200\/20 { background-color: rgba(226, 232, 240, 0.2); }
.zenuml .bg-slate-200\/25 { background-color: rgba(226, 232, 240, 0.25); }
.zenuml .bg-slate-200\/30 { background-color: rgba(226, 232, 240, 0.3); }
.zenuml .bg-slate-200\/40 { background-color: rgba(226, 232, 240, 0.4); }
.zenuml .bg-slate-200\/50 { background-color: rgba(226, 232, 240, 0.5); }
.zenuml .bg-slate-200\/60 { background-color: rgba(226, 232, 240, 0.6); }
.zenuml .bg-slate-200\/70 { background-color: rgba(226, 232, 240, 0.7); }
.zenuml .bg-slate-200\/75 { background-color: rgba(226, 232, 240, 0.75); }
.zenuml .bg-slate-200\/80 { background-color: rgba(226, 232, 240, 0.8); }
.zenuml .bg-slate-200\/90 { background-color: rgba(226, 232, 240, 0.9); }
.zenuml .bg-slate-200\/95 { background-color: rgba(226, 232, 240, 0.95); }
.zenuml .bg-slate-200\/100 { background-color: rgb(226, 232, 240); }
.zenuml .bg-slate-300\/0 { background-color: rgba(203, 213, 225, 0); }
.zenuml .bg-slate-300\/5 { background-color: rgba(203, 213, 225, 0.05); }
.zenuml .bg-slate-300\/10 { background-color: rgba(203, 213, 225, 0.1); }
.zenuml .bg-slate-300\/20 { background-color: rgba(203, 213, 225, 0.2); }
.zenuml .bg-slate-300\/25 { background-color: rgba(203, 213, 225, 0.25); }
.zenuml .bg-slate-300\/30 { background-color: rgba(203, 213, 225, 0.3); }
.zenuml .bg-slate-300\/40 { background-color: rgba(203, 213, 225, 0.4); }
.zenuml .bg-slate-300\/50 { background-color: rgba(203, 213, 225, 0.5); }
.zenuml .bg-slate-300\/60 { background-color: rgba(203, 213, 225, 0.6); }
.zenuml .bg-slate-300\/70 { background-color: rgba(203, 213, 225, 0.7); }
.zenuml .bg-slate-300\/75 { background-color: rgba(203, 213, 225, 0.75); }
.zenuml .bg-slate-300\/80 { background-color: rgba(203, 213, 225, 0.8); }
.zenuml .bg-slate-300\/90 { background-color: rgba(203, 213, 225, 0.9); }
.zenuml .bg-slate-300\/95 { background-color: rgba(203, 213, 225, 0.95); }
.zenuml .bg-slate-300\/100 { background-color: rgb(203, 213, 225); }
.zenuml .bg-slate-400\/0 { background-color: rgba(148, 163, 184, 0); }
.zenuml .bg-slate-400\/5 { background-color: rgba(148, 163, 184, 0.05); }
.zenuml .bg-slate-400\/10 { background-color: rgba(148, 163, 184, 0.1); }
.zenuml .bg-slate-400\/20 { background-color: rgba(148, 163, 184, 0.2); }
.zenuml .bg-slate-400\/25 { background-color: rgba(148, 163, 184, 0.25); }
.zenuml .bg-slate-400\/30 { background-color: rgba(148, 163, 184, 0.3); }
.zenuml .bg-slate-400\/40 { background-color: rgba(148, 163, 184, 0.4); }
.zenuml .bg-slate-400\/50 { background-color: rgba(148, 163, 184, 0.5); }
.zenuml .bg-slate-400\/60 { background-color: rgba(148, 163, 184, 0.6); }
.zenuml .bg-slate-400\/70 { background-color: rgba(148, 163, 184, 0.7); }
.zenuml .bg-slate-400\/75 { background-color: rgba(148, 163, 184, 0.75); }
.zenuml .bg-slate-400\/80 { background-color: rgba(148, 163, 184, 0.8); }
.zenuml .bg-slate-400\/90 { background-color: rgba(148, 163, 184, 0.9); }
.zenuml .bg-slate-400\/95 { background-color: rgba(148, 163, 184, 0.95); }
.zenuml .bg-slate-400\/100 { background-color: rgb(148, 163, 184); }
.zenuml .bg-slate-500\/0 { background-color: rgba(100, 116, 139, 0); }
.zenuml .bg-slate-500\/5 { background-color: rgba(100, 116, 139, 0.05); }
.zenuml .bg-slate-500\/10 { background-color: rgba(100, 116, 139, 0.1); }
.zenuml .bg-slate-500\/20 { background-color: rgba(100, 116, 139, 0.2); }
.zenuml .bg-slate-500\/25 { background-color: rgba(100, 116, 139, 0.25); }
.zenuml .bg-slate-500\/30 { background-color: rgba(100, 116, 139, 0.3); }
.zenuml .bg-slate-500\/40 { background-color: rgba(100, 116, 139, 0.4); }
.zenuml .bg-slate-500\/50 { background-color: rgba(100, 116, 139, 0.5); }
.zenuml .bg-slate-500\/60 { background-color: rgba(100, 116, 139, 0.6); }
.zenuml .bg-slate-500\/70 { background-color: rgba(100, 116, 139, 0.7); }
.zenuml .bg-slate-500\/75 { background-color: rgba(100, 116, 139, 0.75); }
.zenuml .bg-slate-500\/80 { background-color: rgba(100, 116, 139, 0.8); }
.zenuml .bg-slate-500\/90 { background-color: rgba(100, 116, 139, 0.9); }
.zenuml .bg-slate-500\/95 { background-color: rgba(100, 116, 139, 0.95); }
.zenuml .bg-slate-500\/100 { background-color: rgb(100, 116, 139); }
.zenuml .bg-slate-600\/0 { background-color: rgba(71, 85, 105, 0); }
.zenuml .bg-slate-600\/5 { background-color: rgba(71, 85, 105, 0.05); }
.zenuml .bg-slate-600\/10 { background-color: rgba(71, 85, 105, 0.1); }
.zenuml .bg-slate-600\/20 { background-color: rgba(71, 85, 105, 0.2); }
.zenuml .bg-slate-600\/25 { background-color: rgba(71, 85, 105, 0.25); }
.zenuml .bg-slate-600\/30 { background-color: rgba(71, 85, 105, 0.3); }
.zenuml .bg-slate-600\/40 { background-color: rgba(71, 85, 105, 0.4); }
.zenuml .bg-slate-600\/50 { background-color: rgba(71, 85, 105, 0.5); }
.zenuml .bg-slate-600\/60 { background-color: rgba(71, 85, 105, 0.6); }
.zenuml .bg-slate-600\/70 { background-color: rgba(71, 85, 105, 0.7); }
.zenuml .bg-slate-600\/75 { background-color: rgba(71, 85, 105, 0.75); }
.zenuml .bg-slate-600\/80 { background-color: rgba(71, 85, 105, 0.8); }
.zenuml .bg-slate-600\/90 { background-color: rgba(71, 85, 105, 0.9); }
.zenuml .bg-slate-600\/95 { background-color: rgba(71, 85, 105, 0.95); }
.zenuml .bg-slate-600\/100 { background-color: rgb(71, 85, 105); }
.zenuml .bg-slate-700\/0 { background-color: rgba(51, 65, 85, 0); }
.zenuml .bg-slate-700\/5 { background-color: rgba(51, 65, 85, 0.05); }
.zenuml .bg-slate-700\/10 { background-color: rgba(51, 65, 85, 0.1); }
.zenuml .bg-slate-700\/20 { background-color: rgba(51, 65, 85, 0.2); }
.zenuml .bg-slate-700\/25 { background-color: rgba(51, 65, 85, 0.25); }
.zenuml .bg-slate-700\/30 { background-color: rgba(51, 65, 85, 0.3); }
.zenuml .bg-slate-700\/40 { background-color: rgba(51, 65, 85, 0.4); }
.zenuml .bg-slate-700\/50 { background-color: rgba(51, 65, 85, 0.5); }
.zenuml .bg-slate-700\/60 { background-color: rgba(51, 65, 85, 0.6); }
.zenuml .bg-slate-700\/70 { background-color: rgba(51, 65, 85, 0.7); }
.zenuml .bg-slate-700\/75 { background-color: rgba(51, 65, 85, 0.75); }
.zenuml .bg-slate-700\/80 { background-color: rgba(51, 65, 85, 0.8); }
.zenuml .bg-slate-700\/90 { background-color: rgba(51, 65, 85, 0.9); }
.zenuml .bg-slate-700\/95 { background-color: rgba(51, 65, 85, 0.95); }
.zenuml .bg-slate-700\/100 { background-color: rgb(51, 65, 85); }
.zenuml .bg-slate-800\/0 { background-color: rgba(30, 41, 59, 0); }
.zenuml .bg-slate-800\/5 { background-color: rgba(30, 41, 59, 0.05); }
.zenuml .bg-slate-800\/10 { background-color: rgba(30, 41, 59, 0.1); }
.zenuml .bg-slate-800\/20 { background-color: rgba(30, 41, 59, 0.2); }
.zenuml .bg-slate-800\/25 { background-color: rgba(30, 41, 59, 0.25); }
.zenuml .bg-slate-800\/30 { background-color: rgba(30, 41, 59, 0.3); }
.zenuml .bg-slate-800\/40 { background-color: rgba(30, 41, 59, 0.4); }
.zenuml .bg-slate-800\/50 { background-color: rgba(30, 41, 59, 0.5); }
.zenuml .bg-slate-800\/60 { background-color: rgba(30, 41, 59, 0.6); }
.zenuml .bg-slate-800\/70 { background-color: rgba(30, 41, 59, 0.7); }
.zenuml .bg-slate-800\/75 { background-color: rgba(30, 41, 59, 0.75); }
.zenuml .bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8); }
.zenuml .bg-slate-800\/90 { background-color: rgba(30, 41, 59, 0.9); }
.zenuml .bg-slate-800\/95 { background-color: rgba(30, 41, 59, 0.95); }
.zenuml .bg-slate-800\/100 { background-color: rgb(30, 41, 59); }
.zenuml .bg-slate-900\/0 { background-color: rgba(15, 23, 42, 0); }
.zenuml .bg-slate-900\/5 { background-color: rgba(15, 23, 42, 0.05); }
.zenuml .bg-slate-900\/10 { background-color: rgba(15, 23, 42, 0.1); }
.zenuml .bg-slate-900\/20 { background-color: rgba(15, 23, 42, 0.2); }
.zenuml .bg-slate-900\/25 { background-color: rgba(15, 23, 42, 0.25); }
.zenuml .bg-slate-900\/30 { background-color: rgba(15, 23, 42, 0.3); }
.zenuml .bg-slate-900\/40 { background-color: rgba(15, 23, 42, 0.4); }
.zenuml .bg-slate-900\/50 { background-color: rgba(15, 23, 42, 0.5); }
.zenuml .bg-slate-900\/60 { background-color: rgba(15, 23, 42, 0.6); }
.zenuml .bg-slate-900\/70 { background-color: rgba(15, 23, 42, 0.7); }
.zenuml .bg-slate-900\/75 { background-color: rgba(15, 23, 42, 0.75); }
.zenuml .bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.zenuml .bg-slate-900\/90 { background-color: rgba(15, 23, 42, 0.9); }
.zenuml .bg-slate-900\/95 { background-color: rgba(15, 23, 42, 0.95); }
.zenuml .bg-slate-900\/100 { background-color: rgb(15, 23, 42); }
.zenuml .bg-gray-50\/0 { background-color: rgba(249, 250, 251, 0); }
.zenuml .bg-gray-50\/5 { background-color: rgba(249, 250, 251, 0.05); }
.zenuml .bg-gray-50\/10 { background-color: rgba(249, 250, 251, 0.1); }
.zenuml .bg-gray-50\/20 { background-color: rgba(249, 250, 251, 0.2); }
.zenuml .bg-gray-50\/25 { background-color: rgba(249, 250, 251, 0.25); }
.zenuml .bg-gray-50\/30 { background-color: rgba(249, 250, 251, 0.3); }
.zenuml .bg-gray-50\/40 { background-color: rgba(249, 250, 251, 0.4); }
.zenuml .bg-gray-50\/50 { background-color: rgba(249, 250, 251, 0.5); }
.zenuml .bg-gray-50\/60 { background-color: rgba(249, 250, 251, 0.6); }
.zenuml .bg-gray-50\/70 { background-color: rgba(249, 250, 251, 0.7); }
.zenuml .bg-gray-50\/75 { background-color: rgba(249, 250, 251, 0.75); }
.zenuml .bg-gray-50\/80 { background-color: rgba(249, 250, 251, 0.8); }
.zenuml .bg-gray-50\/90 { background-color: rgba(249, 250, 251, 0.9); }
.zenuml .bg-gray-50\/95 { background-color: rgba(249, 250, 251, 0.95); }
.zenuml .bg-gray-50\/100 { background-color: rgb(249, 250, 251); }
.zenuml .bg-gray-100\/0 { background-color: rgba(243, 244, 246, 0); }
.zenuml .bg-gray-100\/5 { background-color: rgba(243, 244, 246, 0.05); }
.zenuml .bg-gray-100\/10 { background-color: rgba(243, 244, 246, 0.1); }
.zenuml .bg-gray-100\/20 { background-color: rgba(243, 244, 246, 0.2); }
.zenuml .bg-gray-100\/25 { background-color: rgba(243, 244, 246, 0.25); }
.zenuml .bg-gray-100\/30 { background-color: rgba(243, 244, 246, 0.3); }
.zenuml .bg-gray-100\/40 { background-color: rgba(243, 244, 246, 0.4); }
.zenuml .bg-gray-100\/50 { background-color: rgba(243, 244, 246, 0.5); }
.zenuml .bg-gray-100\/60 { background-color: rgba(243, 244, 246, 0.6); }
.zenuml .bg-gray-100\/70 { background-color: rgba(243, 244, 246, 0.7); }
.zenuml .bg-gray-100\/75 { background-color: rgba(243, 244, 246, 0.75); }
.zenuml .bg-gray-100\/80 { background-color: rgba(243, 244, 246, 0.8); }
.zenuml .bg-gray-100\/90 { background-color: rgba(243, 244, 246, 0.9); }
.zenuml .bg-gray-100\/95 { background-color: rgba(243, 244, 246, 0.95); }
.zenuml .bg-gray-100\/100 { background-color: rgb(243, 244, 246); }
.zenuml .bg-gray-200\/0 { background-color: rgba(229, 231, 235, 0); }
.zenuml .bg-gray-200\/5 { background-color: rgba(229, 231, 235, 0.05); }
.zenuml .bg-gray-200\/10 { background-color: rgba(229, 231, 235, 0.1); }
.zenuml .bg-gray-200\/20 { background-color: rgba(229, 231, 235, 0.2); }
.zenuml .bg-gray-200\/25 { background-color: rgba(229, 231, 235, 0.25); }
.zenuml .bg-gray-200\/30 { background-color: rgba(229, 231, 235, 0.3); }
.zenuml .bg-gray-200\/40 { background-color: rgba(229, 231, 235, 0.4); }
.zenuml .bg-gray-200\/50 { background-color: rgba(229, 231, 235, 0.5); }
.zenuml .bg-gray-200\/60 { background-color: rgba(229, 231, 235, 0.6); }
.zenuml .bg-gray-200\/70 { background-color: rgba(229, 231, 235, 0.7); }
.zenuml .bg-gray-200\/75 { background-color: rgba(229, 231, 235, 0.75); }
.zenuml .bg-gray-200\/80 { background-color: rgba(229, 231, 235, 0.8); }
.zenuml .bg-gray-200\/90 { background-color: rgba(229, 231, 235, 0.9); }
.zenuml .bg-gray-200\/95 { background-color: rgba(229, 231, 235, 0.95); }
.zenuml .bg-gray-200\/100 { background-color: rgb(229, 231, 235); }
.zenuml .bg-gray-300\/0 { background-color: rgba(209, 213, 219, 0); }
.zenuml .bg-gray-300\/5 { background-color: rgba(209, 213, 219, 0.05); }
.zenuml .bg-gray-300\/10 { background-color: rgba(209, 213, 219, 0.1); }
.zenuml .bg-gray-300\/20 { background-color: rgba(209, 213, 219, 0.2); }
.zenuml .bg-gray-300\/25 { background-color: rgba(209, 213, 219, 0.25); }
.zenuml .bg-gray-300\/30 { background-color: rgba(209, 213, 219, 0.3); }
.zenuml .bg-gray-300\/40 { background-color: rgba(209, 213, 219, 0.4); }
.zenuml .bg-gray-300\/50 { background-color: rgba(209, 213, 219, 0.5); }
.zenuml .bg-gray-300\/60 { background-color: rgba(209, 213, 219, 0.6); }
.zenuml .bg-gray-300\/70 { background-color: rgba(209, 213, 219, 0.7); }
.zenuml .bg-gray-300\/75 { background-color: rgba(209, 213, 219, 0.75); }
.zenuml .bg-gray-300\/80 { background-color: rgba(209, 213, 219, 0.8); }
.zenuml .bg-gray-300\/90 { background-color: rgba(209, 213, 219, 0.9); }
.zenuml .bg-gray-300\/95 { background-color: rgba(209, 213, 219, 0.95); }
.zenuml .bg-gray-300\/100 { background-color: rgb(209, 213, 219); }
.zenuml .bg-gray-400\/0 { background-color: rgba(156, 163, 175, 0); }
.zenuml .bg-gray-400\/5 { background-color: rgba(156, 163, 175, 0.05); }
.zenuml .bg-gray-400\/10 { background-color: rgba(156, 163, 175, 0.1); }
.zenuml .bg-gray-400\/20 { background-color: rgba(156, 163, 175, 0.2); }
.zenuml .bg-gray-400\/25 { background-color: rgba(156, 163, 175, 0.25); }
.zenuml .bg-gray-400\/30 { background-color: rgba(156, 163, 175, 0.3); }
.zenuml .bg-gray-400\/40 { background-color: rgba(156, 163, 175, 0.4); }
.zenuml .bg-gray-400\/50 { background-color: rgba(156, 163, 175, 0.5); }
.zenuml .bg-gray-400\/60 { background-color: rgba(156, 163, 175, 0.6); }
.zenuml .bg-gray-400\/70 { background-color: rgba(156, 163, 175, 0.7); }
.zenuml .bg-gray-400\/75 { background-color: rgba(156, 163, 175, 0.75); }
.zenuml .bg-gray-400\/80 { background-color: rgba(156, 163, 175, 0.8); }
.zenuml .bg-gray-400\/90 { background-color: rgba(156, 163, 175, 0.9); }
.zenuml .bg-gray-400\/95 { background-color: rgba(156, 163, 175, 0.95); }
.zenuml .bg-gray-400\/100 { background-color: rgb(156, 163, 175); }
.zenuml .bg-gray-500\/0 { background-color: rgba(107, 114, 128, 0); }
.zenuml .bg-gray-500\/5 { background-color: rgba(107, 114, 128, 0.05); }
.zenuml .bg-gray-500\/10 { background-color: rgba(107, 114, 128, 0.1); }
.zenuml .bg-gray-500\/20 { background-color: rgba(107, 114, 128, 0.2); }
.zenuml .bg-gray-500\/25 { background-color: rgba(107, 114, 128, 0.25); }
.zenuml .bg-gray-500\/30 { background-color: rgba(107, 114, 128, 0.3); }
.zenuml .bg-gray-500\/40 { background-color: rgba(107, 114, 128, 0.4); }
.zenuml .bg-gray-500\/50 { background-color: rgba(107, 114, 128, 0.5); }
.zenuml .bg-gray-500\/60 { background-color: rgba(107, 114, 128, 0.6); }
.zenuml .bg-gray-500\/70 { background-color: rgba(107, 114, 128, 0.7); }
.zenuml .bg-gray-500\/75 { background-color: rgba(107, 114, 128, 0.75); }
.zenuml .bg-gray-500\/80 { background-color: rgba(107, 114, 128, 0.8); }
.zenuml .bg-gray-500\/90 { background-color: rgba(107, 114, 128, 0.9); }
.zenuml .bg-gray-500\/95 { background-color: rgba(107, 114, 128, 0.95); }
.zenuml .bg-gray-500\/100 { background-color: rgb(107, 114, 128); }
.zenuml .bg-gray-600\/0 { background-color: rgba(75, 85, 99, 0); }
.zenuml .bg-gray-600\/5 { background-color: rgba(75, 85, 99, 0.05); }
.zenuml .bg-gray-600\/10 { background-color: rgba(75, 85, 99, 0.1); }
.zenuml .bg-gray-600\/20 { background-color: rgba(75, 85, 99, 0.2); }
.zenuml .bg-gray-600\/25 { background-color: rgba(75, 85, 99, 0.25); }
.zenuml .bg-gray-600\/30 { background-color: rgba(75, 85, 99, 0.3); }
.zenuml .bg-gray-600\/40 { background-color: rgba(75, 85, 99, 0.4); }
.zenuml .bg-gray-600\/50 { background-color: rgba(75, 85, 99, 0.5); }
.zenuml .bg-gray-600\/60 { background-color: rgba(75, 85, 99, 0.6); }
.zenuml .bg-gray-600\/70 { background-color: rgba(75, 85, 99, 0.7); }
.zenuml .bg-gray-600\/75 { background-color: rgba(75, 85, 99, 0.75); }
.zenuml .bg-gray-600\/80 { background-color: rgba(75, 85, 99, 0.8); }
.zenuml .bg-gray-600\/90 { background-color: rgba(75, 85, 99, 0.9); }
.zenuml .bg-gray-600\/95 { background-color: rgba(75, 85, 99, 0.95); }
.zenuml .bg-gray-600\/100 { background-color: rgb(75, 85, 99); }
.zenuml .bg-gray-700\/0 { background-color: rgba(55, 65, 81, 0); }
.zenuml .bg-gray-700\/5 { background-color: rgba(55, 65, 81, 0.05); }
.zenuml .bg-gray-700\/10 { background-color: rgba(55, 65, 81, 0.1); }
.zenuml .bg-gray-700\/20 { background-color: rgba(55, 65, 81, 0.2); }
.zenuml .bg-gray-700\/25 { background-color: rgba(55, 65, 81, 0.25); }
.zenuml .bg-gray-700\/30 { background-color: rgba(55, 65, 81, 0.3); }
.zenuml .bg-gray-700\/40 { background-color: rgba(55, 65, 81, 0.4); }
.zenuml .bg-gray-700\/50 { background-color: rgba(55, 65, 81, 0.5); }
.zenuml .bg-gray-700\/60 { background-color: rgba(55, 65, 81, 0.6); }
.zenuml .bg-gray-700\/70 { background-color: rgba(55, 65, 81, 0.7); }
.zenuml .bg-gray-700\/75 { background-color: rgba(55, 65, 81, 0.75); }
.zenuml .bg-gray-700\/80 { background-color: rgba(55, 65, 81, 0.8); }
.zenuml .bg-gray-700\/90 { background-color: rgba(55, 65, 81, 0.9); }
.zenuml .bg-gray-700\/95 { background-color: rgba(55, 65, 81, 0.95); }
.zenuml .bg-gray-700\/100 { background-color: rgb(55, 65, 81); }
.zenuml .bg-gray-800\/0 { background-color: rgba(31, 41, 55, 0); }
.zenuml .bg-gray-800\/5 { background-color: rgba(31, 41, 55, 0.05); }
.zenuml .bg-gray-800\/10 { background-color: rgba(31, 41, 55, 0.1); }
.zenuml .bg-gray-800\/20 { background-color: rgba(31, 41, 55, 0.2); }
.zenuml .bg-gray-800\/25 { background-color: rgba(31, 41, 55, 0.25); }
.zenuml .bg-gray-800\/30 { background-color: rgba(31, 41, 55, 0.3); }
.zenuml .bg-gray-800\/40 { background-color: rgba(31, 41, 55, 0.4); }
.zenuml .bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.zenuml .bg-gray-800\/60 { background-color: rgba(31, 41, 55, 0.6); }
.zenuml .bg-gray-800\/70 { background-color: rgba(31, 41, 55, 0.7); }
.zenuml .bg-gray-800\/75 { background-color: rgba(31, 41, 55, 0.75); }
.zenuml .bg-gray-800\/80 { background-color: rgba(31, 41, 55, 0.8); }
.zenuml .bg-gray-800\/90 { background-color: rgba(31, 41, 55, 0.9); }
.zenuml .bg-gray-800\/95 { background-color: rgba(31, 41, 55, 0.95); }
.zenuml .bg-gray-800\/100 { background-color: rgb(31, 41, 55); }
.zenuml .bg-gray-900\/0 { background-color: rgba(17, 24, 39, 0); }
.zenuml .bg-gray-900\/5 { background-color: rgba(17, 24, 39, 0.05); }
.zenuml .bg-gray-900\/10 { background-color: rgba(17, 24, 39, 0.1); }
.zenuml .bg-gray-900\/20 { background-color: rgba(17, 24, 39, 0.2); }
.zenuml .bg-gray-900\/25 { background-color: rgba(17, 24, 39, 0.25); }
.zenuml .bg-gray-900\/30 { background-color: rgba(17, 24, 39, 0.3); }
.zenuml .bg-gray-900\/40 { background-color: rgba(17, 24, 39, 0.4); }
.zenuml .bg-gray-900\/50 { background-color: rgba(17, 24, 39, 0.5); }
.zenuml .bg-gray-900\/60 { background-color: rgba(17, 24, 39, 0.6); }
.zenuml .bg-gray-900\/70 { background-color: rgba(17, 24, 39, 0.7); }
.zenuml .bg-gray-900\/75 { background-color: rgba(17, 24, 39, 0.75); }
.zenuml .bg-gray-900\/80 { background-color: rgba(17, 24, 39, 0.8); }
.zenuml .bg-gray-900\/90 { background-color: rgba(17, 24, 39, 0.9); }
.zenuml .bg-gray-900\/95 { background-color: rgba(17, 24, 39, 0.95); }
.zenuml .bg-gray-900\/100 { background-color: rgb(17, 24, 39); }
.zenuml .bg-zinc-50\/0 { background-color: rgba(250, 250, 250, 0); }
.zenuml .bg-zinc-50\/5 { background-color: rgba(250, 250, 250, 0.05); }
.zenuml .bg-zinc-50\/10 { background-color: rgba(250, 250, 250, 0.1); }
.zenuml .bg-zinc-50\/20 { background-color: rgba(250, 250, 250, 0.2); }
.zenuml .bg-zinc-50\/25 { background-color: rgba(250, 250, 250, 0.25); }
.zenuml .bg-zinc-50\/30 { background-color: rgba(250, 250, 250, 0.3); }
.zenuml .bg-zinc-50\/40 { background-color: rgba(250, 250, 250, 0.4); }
.zenuml .bg-zinc-50\/50 { background-color: rgba(250, 250, 250, 0.5); }
.zenuml .bg-zinc-50\/60 { background-color: rgba(250, 250, 250, 0.6); }
.zenuml .bg-zinc-50\/70 { background-color: rgba(250, 250, 250, 0.7); }
.zenuml .bg-zinc-50\/75 { background-color: rgba(250, 250, 250, 0.75); }
.zenuml .bg-zinc-50\/80 { background-color: rgba(250, 250, 250, 0.8); }
.zenuml .bg-zinc-50\/90 { background-color: rgba(250, 250, 250, 0.9); }
.zenuml .bg-zinc-50\/95 { background-color: rgba(250, 250, 250, 0.95); }
.zenuml .bg-zinc-50\/100 { background-color: rgb(250, 250, 250); }
.zenuml .bg-zinc-100\/0 { background-color: rgba(244, 244, 245, 0); }
.zenuml .bg-zinc-100\/5 { background-color: rgba(244, 244, 245, 0.05); }
.zenuml .bg-zinc-100\/10 { background-color: rgba(244, 244, 245, 0.1); }
.zenuml .bg-zinc-100\/20 { background-color: rgba(244, 244, 245, 0.2); }
.zenuml .bg-zinc-100\/25 { background-color: rgba(244, 244, 245, 0.25); }
.zenuml .bg-zinc-100\/30 { background-color: rgba(244, 244, 245, 0.3); }
.zenuml .bg-zinc-100\/40 { background-color: rgba(244, 244, 245, 0.4); }
.zenuml .bg-zinc-100\/50 { background-color: rgba(244, 244, 245, 0.5); }
.zenuml .bg-zinc-100\/60 { background-color: rgba(244, 244, 245, 0.6); }
.zenuml .bg-zinc-100\/70 { background-color: rgba(244, 244, 245, 0.7); }
.zenuml .bg-zinc-100\/75 { background-color: rgba(244, 244, 245, 0.75); }
.zenuml .bg-zinc-100\/80 { background-color: rgba(244, 244, 245, 0.8); }
.zenuml .bg-zinc-100\/90 { background-color: rgba(244, 244, 245, 0.9); }
.zenuml .bg-zinc-100\/95 { background-color: rgba(244, 244, 245, 0.95); }
.zenuml .bg-zinc-100\/100 { background-color: rgb(244, 244, 245); }
.zenuml .bg-zinc-200\/0 { background-color: rgba(228, 228, 231, 0); }
.zenuml .bg-zinc-200\/5 { background-color: rgba(228, 228, 231, 0.05); }
.zenuml .bg-zinc-200\/10 { background-color: rgba(228, 228, 231, 0.1); }
.zenuml .bg-zinc-200\/20 { background-color: rgba(228, 228, 231, 0.2); }
.zenuml .bg-zinc-200\/25 { background-color: rgba(228, 228, 231, 0.25); }
.zenuml .bg-zinc-200\/30 { background-color: rgba(228, 228, 231, 0.3); }
.zenuml .bg-zinc-200\/40 { background-color: rgba(228, 228, 231, 0.4); }
.zenuml .bg-zinc-200\/50 { background-color: rgba(228, 228, 231, 0.5); }
.zenuml .bg-zinc-200\/60 { background-color: rgba(228, 228, 231, 0.6); }
.zenuml .bg-zinc-200\/70 { background-color: rgba(228, 228, 231, 0.7); }
.zenuml .bg-zinc-200\/75 { background-color: rgba(228, 228, 231, 0.75); }
.zenuml .bg-zinc-200\/80 { background-color: rgba(228, 228, 231, 0.8); }
.zenuml .bg-zinc-200\/90 { background-color: rgba(228, 228, 231, 0.9); }
.zenuml .bg-zinc-200\/95 { background-color: rgba(228, 228, 231, 0.95); }
.zenuml .bg-zinc-200\/100 { background-color: rgb(228, 228, 231); }
.zenuml .bg-zinc-300\/0 { background-color: rgba(212, 212, 216, 0); }
.zenuml .bg-zinc-300\/5 { background-color: rgba(212, 212, 216, 0.05); }
.zenuml .bg-zinc-300\/10 { background-color: rgba(212, 212, 216, 0.1); }
.zenuml .bg-zinc-300\/20 { background-color: rgba(212, 212, 216, 0.2); }
.zenuml .bg-zinc-300\/25 { background-color: rgba(212, 212, 216, 0.25); }
.zenuml .bg-zinc-300\/30 { background-color: rgba(212, 212, 216, 0.3); }
.zenuml .bg-zinc-300\/40 { background-color: rgba(212, 212, 216, 0.4); }
.zenuml .bg-zinc-300\/50 { background-color: rgba(212, 212, 216, 0.5); }
.zenuml .bg-zinc-300\/60 { background-color: rgba(212, 212, 216, 0.6); }
.zenuml .bg-zinc-300\/70 { background-color: rgba(212, 212, 216, 0.7); }
.zenuml .bg-zinc-300\/75 { background-color: rgba(212, 212, 216, 0.75); }
.zenuml .bg-zinc-300\/80 { background-color: rgba(212, 212, 216, 0.8); }
.zenuml .bg-zinc-300\/90 { background-color: rgba(212, 212, 216, 0.9); }
.zenuml .bg-zinc-300\/95 { background-color: rgba(212, 212, 216, 0.95); }
.zenuml .bg-zinc-300\/100 { background-color: rgb(212, 212, 216); }
.zenuml .bg-zinc-400\/0 { background-color: rgba(161, 161, 170, 0); }
.zenuml .bg-zinc-400\/5 { background-color: rgba(161, 161, 170, 0.05); }
.zenuml .bg-zinc-400\/10 { background-color: rgba(161, 161, 170, 0.1); }
.zenuml .bg-zinc-400\/20 { background-color: rgba(161, 161, 170, 0.2); }
.zenuml .bg-zinc-400\/25 { background-color: rgba(161, 161, 170, 0.25); }
.zenuml .bg-zinc-400\/30 { background-color: rgba(161, 161, 170, 0.3); }
.zenuml .bg-zinc-400\/40 { background-color: rgba(161, 161, 170, 0.4); }
.zenuml .bg-zinc-400\/50 { background-color: rgba(161, 161, 170, 0.5); }
.zenuml .bg-zinc-400\/60 { background-color: rgba(161, 161, 170, 0.6); }
.zenuml .bg-zinc-400\/70 { background-color: rgba(161, 161, 170, 0.7); }
.zenuml .bg-zinc-400\/75 { background-color: rgba(161, 161, 170, 0.75); }
.zenuml .bg-zinc-400\/80 { background-color: rgba(161, 161, 170, 0.8); }
.zenuml .bg-zinc-400\/90 { background-color: rgba(161, 161, 170, 0.9); }
.zenuml .bg-zinc-400\/95 { background-color: rgba(161, 161, 170, 0.95); }
.zenuml .bg-zinc-400\/100 { background-color: rgb(161, 161, 170); }
.zenuml .bg-zinc-500\/0 { background-color: rgba(113, 113, 122, 0); }
.zenuml .bg-zinc-500\/5 { background-color: rgba(113, 113, 122, 0.05); }
.zenuml .bg-zinc-500\/10 { background-color: rgba(113, 113, 122, 0.1); }
.zenuml .bg-zinc-500\/20 { background-color: rgba(113, 113, 122, 0.2); }
.zenuml .bg-zinc-500\/25 { background-color: rgba(113, 113, 122, 0.25); }
.zenuml .bg-zinc-500\/30 { background-color: rgba(113, 113, 122, 0.3); }
.zenuml .bg-zinc-500\/40 { background-color: rgba(113, 113, 122, 0.4); }
.zenuml .bg-zinc-500\/50 { background-color: rgba(113, 113, 122, 0.5); }
.zenuml .bg-zinc-500\/60 { background-color: rgba(113, 113, 122, 0.6); }
.zenuml .bg-zinc-500\/70 { background-color: rgba(113, 113, 122, 0.7); }
.zenuml .bg-zinc-500\/75 { background-color: rgba(113, 113, 122, 0.75); }
.zenuml .bg-zinc-500\/80 { background-color: rgba(113, 113, 122, 0.8); }
.zenuml .bg-zinc-500\/90 { background-color: rgba(113, 113, 122, 0.9); }
.zenuml .bg-zinc-500\/95 { background-color: rgba(113, 113, 122, 0.95); }
.zenuml .bg-zinc-500\/100 { background-color: rgb(113, 113, 122); }
.zenuml .bg-zinc-600\/0 { background-color: rgba(82, 82, 91, 0); }
.zenuml .bg-zinc-600\/5 { background-color: rgba(82, 82, 91, 0.05); }
.zenuml .bg-zinc-600\/10 { background-color: rgba(82, 82, 91, 0.1); }
.zenuml .bg-zinc-600\/20 { background-color: rgba(82, 82, 91, 0.2); }
.zenuml .bg-zinc-600\/25 { background-color: rgba(82, 82, 91, 0.25); }
.zenuml .bg-zinc-600\/30 { background-color: rgba(82, 82, 91, 0.3); }
.zenuml .bg-zinc-600\/40 { background-color: rgba(82, 82, 91, 0.4); }
.zenuml .bg-zinc-600\/50 { background-color: rgba(82, 82, 91, 0.5); }
.zenuml .bg-zinc-600\/60 { background-color: rgba(82, 82, 91, 0.6); }
.zenuml .bg-zinc-600\/70 { background-color: rgba(82, 82, 91, 0.7); }
.zenuml .bg-zinc-600\/75 { background-color: rgba(82, 82, 91, 0.75); }
.zenuml .bg-zinc-600\/80 { background-color: rgba(82, 82, 91, 0.8); }
.zenuml .bg-zinc-600\/90 { background-color: rgba(82, 82, 91, 0.9); }
.zenuml .bg-zinc-600\/95 { background-color: rgba(82, 82, 91, 0.95); }
.zenuml .bg-zinc-600\/100 { background-color: rgb(82, 82, 91); }
.zenuml .bg-zinc-700\/0 { background-color: rgba(63, 63, 70, 0); }
.zenuml .bg-zinc-700\/5 { background-color: rgba(63, 63, 70, 0.05); }
.zenuml .bg-zinc-700\/10 { background-color: rgba(63, 63, 70, 0.1); }
.zenuml .bg-zinc-700\/20 { background-color: rgba(63, 63, 70, 0.2); }
.zenuml .bg-zinc-700\/25 { background-color: rgba(63, 63, 70, 0.25); }
.zenuml .bg-zinc-700\/30 { background-color: rgba(63, 63, 70, 0.3); }
.zenuml .bg-zinc-700\/40 { background-color: rgba(63, 63, 70, 0.4); }
.zenuml .bg-zinc-700\/50 { background-color: rgba(63, 63, 70, 0.5); }
.zenuml .bg-zinc-700\/60 { background-color: rgba(63, 63, 70, 0.6); }
.zenuml .bg-zinc-700\/70 { background-color: rgba(63, 63, 70, 0.7); }
.zenuml .bg-zinc-700\/75 { background-color: rgba(63, 63, 70, 0.75); }
.zenuml .bg-zinc-700\/80 { background-color: rgba(63, 63, 70, 0.8); }
.zenuml .bg-zinc-700\/90 { background-color: rgba(63, 63, 70, 0.9); }
.zenuml .bg-zinc-700\/95 { background-color: rgba(63, 63, 70, 0.95); }
.zenuml .bg-zinc-700\/100 { background-color: rgb(63, 63, 70); }
.zenuml .bg-zinc-800\/0 { background-color: rgba(39, 39, 42, 0); }
.zenuml .bg-zinc-800\/5 { background-color: rgba(39, 39, 42, 0.05); }
.zenuml .bg-zinc-800\/10 { background-color: rgba(39, 39, 42, 0.1); }
.zenuml .bg-zinc-800\/20 { background-color: rgba(39, 39, 42, 0.2); }
.zenuml .bg-zinc-800\/25 { background-color: rgba(39, 39, 42, 0.25); }
.zenuml .bg-zinc-800\/30 { background-color: rgba(39, 39, 42, 0.3); }
.zenuml .bg-zinc-800\/40 { background-color: rgba(39, 39, 42, 0.4); }
.zenuml .bg-zinc-800\/50 { background-color: rgba(39, 39, 42, 0.5); }
.zenuml .bg-zinc-800\/60 { background-color: rgba(39, 39, 42, 0.6); }
.zenuml .bg-zinc-800\/70 { background-color: rgba(39, 39, 42, 0.7); }
.zenuml .bg-zinc-800\/75 { background-color: rgba(39, 39, 42, 0.75); }
.zenuml .bg-zinc-800\/80 { background-color: rgba(39, 39, 42, 0.8); }
.zenuml .bg-zinc-800\/90 { background-color: rgba(39, 39, 42, 0.9); }
.zenuml .bg-zinc-800\/95 { background-color: rgba(39, 39, 42, 0.95); }
.zenuml .bg-zinc-800\/100 { background-color: rgb(39, 39, 42); }
.zenuml .bg-zinc-900\/0 { background-color: rgba(24, 24, 27, 0); }
.zenuml .bg-zinc-900\/5 { background-color: rgba(24, 24, 27, 0.05); }
.zenuml .bg-zinc-900\/10 { background-color: rgba(24, 24, 27, 0.1); }
.zenuml .bg-zinc-900\/20 { background-color: rgba(24, 24, 27, 0.2); }
.zenuml .bg-zinc-900\/25 { background-color: rgba(24, 24, 27, 0.25); }
.zenuml .bg-zinc-900\/30 { background-color: rgba(24, 24, 27, 0.3); }
.zenuml .bg-zinc-900\/40 { background-color: rgba(24, 24, 27, 0.4); }
.zenuml .bg-zinc-900\/50 { background-color: rgba(24, 24, 27, 0.5); }
.zenuml .bg-zinc-900\/60 { background-color: rgba(24, 24, 27, 0.6); }
.zenuml .bg-zinc-900\/70 { background-color: rgba(24, 24, 27, 0.7); }
.zenuml .bg-zinc-900\/75 { background-color: rgba(24, 24, 27, 0.75); }
.zenuml .bg-zinc-900\/80 { background-color: rgba(24, 24, 27, 0.8); }
.zenuml .bg-zinc-900\/90 { background-color: rgba(24, 24, 27, 0.9); }
.zenuml .bg-zinc-900\/95 { background-color: rgba(24, 24, 27, 0.95); }
.zenuml .bg-zinc-900\/100 { background-color: rgb(24, 24, 27); }
.zenuml .bg-neutral-50\/0 { background-color: rgba(250, 250, 250, 0); }
.zenuml .bg-neutral-50\/5 { background-color: rgba(250, 250, 250, 0.05); }
.zenuml .bg-neutral-50\/10 { background-color: rgba(250, 250, 250, 0.1); }
.zenuml .bg-neutral-50\/20 { background-color: rgba(250, 250, 250, 0.2); }
.zenuml .bg-neutral-50\/25 { background-color: rgba(250, 250, 250, 0.25); }
.zenuml .bg-neutral-50\/30 { background-color: rgba(250, 250, 250, 0.3); }
.zenuml .bg-neutral-50\/40 { background-color: rgba(250, 250, 250, 0.4); }
.zenuml .bg-neutral-50\/50 { background-color: rgba(250, 250, 250, 0.5); }
.zenuml .bg-neutral-50\/60 { background-color: rgba(250, 250, 250, 0.6); }
.zenuml .bg-neutral-50\/70 { background-color: rgba(250, 250, 250, 0.7); }
.zenuml .bg-neutral-50\/75 { background-color: rgba(250, 250, 250, 0.75); }
.zenuml .bg-neutral-50\/80 { background-color: rgba(250, 250, 250, 0.8); }
.zenuml .bg-neutral-50\/90 { background-color: rgba(250, 250, 250, 0.9); }
.zenuml .bg-neutral-50\/95 { background-color: rgba(250, 250, 250, 0.95); }
.zenuml .bg-neutral-50\/100 { background-color: rgb(250, 250, 250); }
.zenuml .bg-neutral-100\/0 { background-color: rgba(245, 245, 245, 0); }
.zenuml .bg-neutral-100\/5 { background-color: rgba(245, 245, 245, 0.05); }
.zenuml .bg-neutral-100\/10 { background-color: rgba(245, 245, 245, 0.1); }
.zenuml .bg-neutral-100\/20 { background-color: rgba(245, 245, 245, 0.2); }
.zenuml .bg-neutral-100\/25 { background-color: rgba(245, 245, 245, 0.25); }
.zenuml .bg-neutral-100\/30 { background-color: rgba(245, 245, 245, 0.3); }
.zenuml .bg-neutral-100\/40 { background-color: rgba(245, 245, 245, 0.4); }
.zenuml .bg-neutral-100\/50 { background-color: rgba(245, 245, 245, 0.5); }
.zenuml .bg-neutral-100\/60 { background-color: rgba(245, 245, 245, 0.6); }
.zenuml .bg-neutral-100\/70 { background-color: rgba(245, 245, 245, 0.7); }
.zenuml .bg-neutral-100\/75 { background-color: rgba(245, 245, 245, 0.75); }
.zenuml .bg-neutral-100\/80 { background-color: rgba(245, 245, 245, 0.8); }
.zenuml .bg-neutral-100\/90 { background-color: rgba(245, 245, 245, 0.9); }
.zenuml .bg-neutral-100\/95 { background-color: rgba(245, 245, 245, 0.95); }
.zenuml .bg-neutral-100\/100 { background-color: rgb(245, 245, 245); }
.zenuml .bg-neutral-200\/0 { background-color: rgba(229, 229, 229, 0); }
.zenuml .bg-neutral-200\/5 { background-color: rgba(229, 229, 229, 0.05); }
.zenuml .bg-neutral-200\/10 { background-color: rgba(229, 229, 229, 0.1); }
.zenuml .bg-neutral-200\/20 { background-color: rgba(229, 229, 229, 0.2); }
.zenuml .bg-neutral-200\/25 { background-color: rgba(229, 229, 229, 0.25); }
.zenuml .bg-neutral-200\/30 { background-color: rgba(229, 229, 229, 0.3); }
.zenuml .bg-neutral-200\/40 { background-color: rgba(229, 229, 229, 0.4); }
.zenuml .bg-neutral-200\/50 { background-color: rgba(229, 229, 229, 0.5); }
.zenuml .bg-neutral-200\/60 { background-color: rgba(229, 229, 229, 0.6); }
.zenuml .bg-neutral-200\/70 { background-color: rgba(229, 229, 229, 0.7); }
.zenuml .bg-neutral-200\/75 { background-color: rgba(229, 229, 229, 0.75); }
.zenuml .bg-neutral-200\/80 { background-color: rgba(229, 229, 229, 0.8); }
.zenuml .bg-neutral-200\/90 { background-color: rgba(229, 229, 229, 0.9); }