@banbox/chat 1.0.4 → 1.0.5

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,2273 @@
1
+ /* src/styles/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --color-gray-50: oklch(98.5% 0.002 247.839);
25
+ --color-black: #000;
26
+ --color-white: #fff;
27
+ --spacing: 0.25rem;
28
+ --text-xs: 0.75rem;
29
+ --text-xs--line-height: calc(1 / 0.75);
30
+ --text-sm: 0.875rem;
31
+ --text-sm--line-height: calc(1.25 / 0.875);
32
+ --text-lg: 1.125rem;
33
+ --text-lg--line-height: calc(1.75 / 1.125);
34
+ --text-xl: 1.25rem;
35
+ --text-xl--line-height: calc(1.75 / 1.25);
36
+ --text-2xl: 1.5rem;
37
+ --text-2xl--line-height: calc(2 / 1.5);
38
+ --text-4xl: 2.25rem;
39
+ --text-4xl--line-height: calc(2.5 / 2.25);
40
+ --font-weight-light: 300;
41
+ --font-weight-normal: 400;
42
+ --font-weight-medium: 500;
43
+ --font-weight-semibold: 600;
44
+ --tracking-wide: 0.025em;
45
+ --leading-relaxed: 1.625;
46
+ --radius-xs: 0.125rem;
47
+ --radius-sm: 0.25rem;
48
+ --radius-md: 0.375rem;
49
+ --radius-lg: 0.5rem;
50
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
51
+ --default-transition-duration: 150ms;
52
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
53
+ --default-font-family: var(--font-sans);
54
+ --default-mono-font-family: var(--font-mono);
55
+ }
56
+ }
57
+ @layer base {
58
+ *,
59
+ ::after,
60
+ ::before,
61
+ ::backdrop,
62
+ ::file-selector-button {
63
+ box-sizing: border-box;
64
+ margin: 0;
65
+ padding: 0;
66
+ border: 0 solid;
67
+ }
68
+ html,
69
+ :host {
70
+ line-height: 1.5;
71
+ -webkit-text-size-adjust: 100%;
72
+ tab-size: 4;
73
+ 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");
74
+ font-feature-settings: var(--default-font-feature-settings, normal);
75
+ font-variation-settings: var(--default-font-variation-settings, normal);
76
+ -webkit-tap-highlight-color: transparent;
77
+ }
78
+ hr {
79
+ height: 0;
80
+ color: inherit;
81
+ border-top-width: 1px;
82
+ }
83
+ abbr:where([title]) {
84
+ -webkit-text-decoration: underline dotted;
85
+ text-decoration: underline dotted;
86
+ }
87
+ h1,
88
+ h2,
89
+ h3,
90
+ h4,
91
+ h5,
92
+ h6 {
93
+ font-size: inherit;
94
+ font-weight: inherit;
95
+ }
96
+ a {
97
+ color: inherit;
98
+ -webkit-text-decoration: inherit;
99
+ text-decoration: inherit;
100
+ }
101
+ b,
102
+ strong {
103
+ font-weight: bolder;
104
+ }
105
+ code,
106
+ kbd,
107
+ samp,
108
+ pre {
109
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
110
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
111
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
112
+ font-size: 1em;
113
+ }
114
+ small {
115
+ font-size: 80%;
116
+ }
117
+ sub,
118
+ sup {
119
+ font-size: 75%;
120
+ line-height: 0;
121
+ position: relative;
122
+ vertical-align: baseline;
123
+ }
124
+ sub {
125
+ bottom: -0.25em;
126
+ }
127
+ sup {
128
+ top: -0.5em;
129
+ }
130
+ table {
131
+ text-indent: 0;
132
+ border-color: inherit;
133
+ border-collapse: collapse;
134
+ }
135
+ :-moz-focusring {
136
+ outline: auto;
137
+ }
138
+ progress {
139
+ vertical-align: baseline;
140
+ }
141
+ summary {
142
+ display: list-item;
143
+ }
144
+ ol,
145
+ ul,
146
+ menu {
147
+ list-style: none;
148
+ }
149
+ img,
150
+ svg,
151
+ video,
152
+ canvas,
153
+ audio,
154
+ iframe,
155
+ embed,
156
+ object {
157
+ display: block;
158
+ vertical-align: middle;
159
+ }
160
+ img,
161
+ video {
162
+ max-width: 100%;
163
+ height: auto;
164
+ }
165
+ button,
166
+ input,
167
+ select,
168
+ optgroup,
169
+ textarea,
170
+ ::file-selector-button {
171
+ font: inherit;
172
+ font-feature-settings: inherit;
173
+ font-variation-settings: inherit;
174
+ letter-spacing: inherit;
175
+ color: inherit;
176
+ border-radius: 0;
177
+ background-color: transparent;
178
+ opacity: 1;
179
+ }
180
+ :where(select:is([multiple], [size])) optgroup {
181
+ font-weight: bolder;
182
+ }
183
+ :where(select:is([multiple], [size])) optgroup option {
184
+ padding-inline-start: 20px;
185
+ }
186
+ ::file-selector-button {
187
+ margin-inline-end: 4px;
188
+ }
189
+ ::placeholder {
190
+ opacity: 1;
191
+ }
192
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
193
+ ::placeholder {
194
+ color: currentcolor;
195
+ @supports (color: color-mix(in lab, red, red)) {
196
+ color: color-mix(in oklab, currentcolor 50%, transparent);
197
+ }
198
+ }
199
+ }
200
+ textarea {
201
+ resize: vertical;
202
+ }
203
+ ::-webkit-search-decoration {
204
+ -webkit-appearance: none;
205
+ }
206
+ ::-webkit-date-and-time-value {
207
+ min-height: 1lh;
208
+ text-align: inherit;
209
+ }
210
+ ::-webkit-datetime-edit {
211
+ display: inline-flex;
212
+ }
213
+ ::-webkit-datetime-edit-fields-wrapper {
214
+ padding: 0;
215
+ }
216
+ ::-webkit-datetime-edit,
217
+ ::-webkit-datetime-edit-year-field,
218
+ ::-webkit-datetime-edit-month-field,
219
+ ::-webkit-datetime-edit-day-field,
220
+ ::-webkit-datetime-edit-hour-field,
221
+ ::-webkit-datetime-edit-minute-field,
222
+ ::-webkit-datetime-edit-second-field,
223
+ ::-webkit-datetime-edit-millisecond-field,
224
+ ::-webkit-datetime-edit-meridiem-field {
225
+ padding-block: 0;
226
+ }
227
+ ::-webkit-calendar-picker-indicator {
228
+ line-height: 1;
229
+ }
230
+ :-moz-ui-invalid {
231
+ box-shadow: none;
232
+ }
233
+ button,
234
+ input:where([type=button], [type=reset], [type=submit]),
235
+ ::file-selector-button {
236
+ appearance: button;
237
+ }
238
+ ::-webkit-inner-spin-button,
239
+ ::-webkit-outer-spin-button {
240
+ height: auto;
241
+ }
242
+ [hidden]:where(:not([hidden=until-found])) {
243
+ display: none !important;
244
+ }
245
+ }
246
+ @layer utilities {
247
+ .pointer-events-auto {
248
+ pointer-events: auto;
249
+ }
250
+ .pointer-events-none {
251
+ pointer-events: none;
252
+ }
253
+ .visible {
254
+ visibility: visible;
255
+ }
256
+ .absolute {
257
+ position: absolute;
258
+ }
259
+ .fixed {
260
+ position: fixed;
261
+ }
262
+ .relative {
263
+ position: relative;
264
+ }
265
+ .static {
266
+ position: static;
267
+ }
268
+ .inset-0 {
269
+ inset: calc(var(--spacing) * 0);
270
+ }
271
+ .inset-x-0 {
272
+ inset-inline: calc(var(--spacing) * 0);
273
+ }
274
+ .inset-y-0 {
275
+ inset-block: calc(var(--spacing) * 0);
276
+ }
277
+ .top-0 {
278
+ top: calc(var(--spacing) * 0);
279
+ }
280
+ .top-1\/2 {
281
+ top: calc(1 / 2 * 100%);
282
+ }
283
+ .top-\[-4px\] {
284
+ top: -4px;
285
+ }
286
+ .top-full {
287
+ top: 100%;
288
+ }
289
+ .right-0 {
290
+ right: calc(var(--spacing) * 0);
291
+ }
292
+ .right-3 {
293
+ right: calc(var(--spacing) * 3);
294
+ }
295
+ .right-4 {
296
+ right: calc(var(--spacing) * 4);
297
+ }
298
+ .right-6 {
299
+ right: calc(var(--spacing) * 6);
300
+ }
301
+ .right-\[-63px\] {
302
+ right: -63px;
303
+ }
304
+ .right-full {
305
+ right: 100%;
306
+ }
307
+ .-bottom-2 {
308
+ bottom: calc(var(--spacing) * -2);
309
+ }
310
+ .bottom-0 {
311
+ bottom: calc(var(--spacing) * 0);
312
+ }
313
+ .bottom-4 {
314
+ bottom: calc(var(--spacing) * 4);
315
+ }
316
+ .bottom-6 {
317
+ bottom: calc(var(--spacing) * 6);
318
+ }
319
+ .bottom-\[-13px\] {
320
+ bottom: -13px;
321
+ }
322
+ .bottom-full {
323
+ bottom: 100%;
324
+ }
325
+ .left-0 {
326
+ left: calc(var(--spacing) * 0);
327
+ }
328
+ .left-1\/2 {
329
+ left: calc(1 / 2 * 100%);
330
+ }
331
+ .left-6 {
332
+ left: calc(var(--spacing) * 6);
333
+ }
334
+ .left-\[30px\] {
335
+ left: 30px;
336
+ }
337
+ .left-full {
338
+ left: 100%;
339
+ }
340
+ .z-10 {
341
+ z-index: 10;
342
+ }
343
+ .z-50 {
344
+ z-index: 50;
345
+ }
346
+ .z-70 {
347
+ z-index: 70;
348
+ }
349
+ .z-71 {
350
+ z-index: 71;
351
+ }
352
+ .z-999 {
353
+ z-index: 999;
354
+ }
355
+ .z-9999 {
356
+ z-index: 9999;
357
+ }
358
+ .z-10000 {
359
+ z-index: 10000;
360
+ }
361
+ .z-\[10002\] {
362
+ z-index: 10002;
363
+ }
364
+ .container {
365
+ width: 100%;
366
+ @media (width >= 40rem) {
367
+ max-width: 40rem;
368
+ }
369
+ @media (width >= 48rem) {
370
+ max-width: 48rem;
371
+ }
372
+ @media (width >= 64rem) {
373
+ max-width: 64rem;
374
+ }
375
+ @media (width >= 80rem) {
376
+ max-width: 80rem;
377
+ }
378
+ @media (width >= 96rem) {
379
+ max-width: 96rem;
380
+ }
381
+ }
382
+ .mx-auto {
383
+ margin-inline: auto;
384
+ }
385
+ .ms-1 {
386
+ margin-inline-start: calc(var(--spacing) * 1);
387
+ }
388
+ .ms-\[3px\] {
389
+ margin-inline-start: 3px;
390
+ }
391
+ .ms-\[12px\] {
392
+ margin-inline-start: 12px;
393
+ }
394
+ .me-1 {
395
+ margin-inline-end: calc(var(--spacing) * 1);
396
+ }
397
+ .mt-0\.5 {
398
+ margin-top: calc(var(--spacing) * 0.5);
399
+ }
400
+ .mt-1 {
401
+ margin-top: calc(var(--spacing) * 1);
402
+ }
403
+ .mt-2 {
404
+ margin-top: calc(var(--spacing) * 2);
405
+ }
406
+ .mt-3 {
407
+ margin-top: calc(var(--spacing) * 3);
408
+ }
409
+ .mt-4 {
410
+ margin-top: calc(var(--spacing) * 4);
411
+ }
412
+ .mt-6 {
413
+ margin-top: calc(var(--spacing) * 6);
414
+ }
415
+ .mt-\[2px\] {
416
+ margin-top: 2px;
417
+ }
418
+ .mt-\[6px\] {
419
+ margin-top: 6px;
420
+ }
421
+ .mr-2 {
422
+ margin-right: calc(var(--spacing) * 2);
423
+ }
424
+ .mr-auto {
425
+ margin-right: auto;
426
+ }
427
+ .mb-0 {
428
+ margin-bottom: calc(var(--spacing) * 0);
429
+ }
430
+ .mb-0\.5 {
431
+ margin-bottom: calc(var(--spacing) * 0.5);
432
+ }
433
+ .mb-1 {
434
+ margin-bottom: calc(var(--spacing) * 1);
435
+ }
436
+ .mb-1\.5 {
437
+ margin-bottom: calc(var(--spacing) * 1.5);
438
+ }
439
+ .mb-2 {
440
+ margin-bottom: calc(var(--spacing) * 2);
441
+ }
442
+ .mb-4 {
443
+ margin-bottom: calc(var(--spacing) * 4);
444
+ }
445
+ .mb-5 {
446
+ margin-bottom: calc(var(--spacing) * 5);
447
+ }
448
+ .mb-10 {
449
+ margin-bottom: calc(var(--spacing) * 10);
450
+ }
451
+ .mb-\[24px\] {
452
+ margin-bottom: 24px;
453
+ }
454
+ .-ml-\[5px\] {
455
+ margin-left: calc(5px * -1);
456
+ }
457
+ .ml-\[2px\] {
458
+ margin-left: 2px;
459
+ }
460
+ .ml-\[4px\] {
461
+ margin-left: 4px;
462
+ }
463
+ .ml-auto {
464
+ margin-left: auto;
465
+ }
466
+ .block {
467
+ display: block;
468
+ }
469
+ .flex {
470
+ display: flex;
471
+ }
472
+ .grid {
473
+ display: grid;
474
+ }
475
+ .hidden {
476
+ display: none;
477
+ }
478
+ .inline {
479
+ display: inline;
480
+ }
481
+ .inline-block {
482
+ display: inline-block;
483
+ }
484
+ .inline-flex {
485
+ display: inline-flex;
486
+ }
487
+ .h-0 {
488
+ height: calc(var(--spacing) * 0);
489
+ }
490
+ .h-2\.5 {
491
+ height: calc(var(--spacing) * 2.5);
492
+ }
493
+ .h-3 {
494
+ height: calc(var(--spacing) * 3);
495
+ }
496
+ .h-3\.5 {
497
+ height: calc(var(--spacing) * 3.5);
498
+ }
499
+ .h-4 {
500
+ height: calc(var(--spacing) * 4);
501
+ }
502
+ .h-5 {
503
+ height: calc(var(--spacing) * 5);
504
+ }
505
+ .h-6 {
506
+ height: calc(var(--spacing) * 6);
507
+ }
508
+ .h-7 {
509
+ height: calc(var(--spacing) * 7);
510
+ }
511
+ .h-8 {
512
+ height: calc(var(--spacing) * 8);
513
+ }
514
+ .h-9 {
515
+ height: calc(var(--spacing) * 9);
516
+ }
517
+ .h-10 {
518
+ height: calc(var(--spacing) * 10);
519
+ }
520
+ .h-\[1\.17px\] {
521
+ height: 1.17px;
522
+ }
523
+ .h-\[4px\] {
524
+ height: 4px;
525
+ }
526
+ .h-\[5\.5px\] {
527
+ height: 5.5px;
528
+ }
529
+ .h-\[11\.25px\] {
530
+ height: 11.25px;
531
+ }
532
+ .h-\[14px\] {
533
+ height: 14px;
534
+ }
535
+ .h-\[17\.5px\] {
536
+ height: 17.5px;
537
+ }
538
+ .h-\[18px\] {
539
+ height: 18px;
540
+ }
541
+ .h-\[21px\] {
542
+ height: 21px;
543
+ }
544
+ .h-\[22px\] {
545
+ height: 22px;
546
+ }
547
+ .h-\[26px\] {
548
+ height: 26px;
549
+ }
550
+ .h-\[28px\] {
551
+ height: 28px;
552
+ }
553
+ .h-\[30px\] {
554
+ height: 30px;
555
+ }
556
+ .h-\[32px\] {
557
+ height: 32px;
558
+ }
559
+ .h-\[34px\] {
560
+ height: 34px;
561
+ }
562
+ .h-\[36px\] {
563
+ height: 36px;
564
+ }
565
+ .h-\[40px\] {
566
+ height: 40px;
567
+ }
568
+ .h-\[41px\] {
569
+ height: 41px;
570
+ }
571
+ .h-\[44px\] {
572
+ height: 44px;
573
+ }
574
+ .h-\[46px\] {
575
+ height: 46px;
576
+ }
577
+ .h-\[52px\] {
578
+ height: 52px;
579
+ }
580
+ .h-\[64px\] {
581
+ height: 64px;
582
+ }
583
+ .h-\[65px\] {
584
+ height: 65px;
585
+ }
586
+ .h-\[75px\] {
587
+ height: 75px;
588
+ }
589
+ .h-\[100px\] {
590
+ height: 100px;
591
+ }
592
+ .h-\[208px\] {
593
+ height: 208px;
594
+ }
595
+ .h-\[650px\] {
596
+ height: 650px;
597
+ }
598
+ .h-full {
599
+ height: 100%;
600
+ }
601
+ .h-px {
602
+ height: 1px;
603
+ }
604
+ .max-h-\[200px\] {
605
+ max-height: 200px;
606
+ }
607
+ .min-h-0 {
608
+ min-height: calc(var(--spacing) * 0);
609
+ }
610
+ .min-h-\[50px\] {
611
+ min-height: 50px;
612
+ }
613
+ .min-h-full {
614
+ min-height: 100%;
615
+ }
616
+ .w-0 {
617
+ width: calc(var(--spacing) * 0);
618
+ }
619
+ .w-2 {
620
+ width: calc(var(--spacing) * 2);
621
+ }
622
+ .w-2\.5 {
623
+ width: calc(var(--spacing) * 2.5);
624
+ }
625
+ .w-3 {
626
+ width: calc(var(--spacing) * 3);
627
+ }
628
+ .w-3\.5 {
629
+ width: calc(var(--spacing) * 3.5);
630
+ }
631
+ .w-4 {
632
+ width: calc(var(--spacing) * 4);
633
+ }
634
+ .w-5 {
635
+ width: calc(var(--spacing) * 5);
636
+ }
637
+ .w-6 {
638
+ width: calc(var(--spacing) * 6);
639
+ }
640
+ .w-8 {
641
+ width: calc(var(--spacing) * 8);
642
+ }
643
+ .w-9 {
644
+ width: calc(var(--spacing) * 9);
645
+ }
646
+ .w-10 {
647
+ width: calc(var(--spacing) * 10);
648
+ }
649
+ .w-\[5\.5px\] {
650
+ width: 5.5px;
651
+ }
652
+ .w-\[11\.25px\] {
653
+ width: 11.25px;
654
+ }
655
+ .w-\[14px\] {
656
+ width: 14px;
657
+ }
658
+ .w-\[18\.08px\] {
659
+ width: 18.08px;
660
+ }
661
+ .w-\[18px\] {
662
+ width: 18px;
663
+ }
664
+ .w-\[22px\] {
665
+ width: 22px;
666
+ }
667
+ .w-\[26px\] {
668
+ width: 26px;
669
+ }
670
+ .w-\[28px\] {
671
+ width: 28px;
672
+ }
673
+ .w-\[34px\] {
674
+ width: 34px;
675
+ }
676
+ .w-\[36px\] {
677
+ width: 36px;
678
+ }
679
+ .w-\[40px\] {
680
+ width: 40px;
681
+ }
682
+ .w-\[44px\] {
683
+ width: 44px;
684
+ }
685
+ .w-\[46px\] {
686
+ width: 46px;
687
+ }
688
+ .w-\[65px\] {
689
+ width: 65px;
690
+ }
691
+ .w-\[105px\] {
692
+ width: 105px;
693
+ }
694
+ .w-\[130px\] {
695
+ width: 130px;
696
+ }
697
+ .w-\[186px\] {
698
+ width: 186px;
699
+ }
700
+ .w-\[340px\] {
701
+ width: 340px;
702
+ }
703
+ .w-\[355px\] {
704
+ width: 355px;
705
+ }
706
+ .w-\[420px\] {
707
+ width: 420px;
708
+ }
709
+ .w-\[450px\] {
710
+ width: 450px;
711
+ }
712
+ .w-\[500px\] {
713
+ width: 500px;
714
+ }
715
+ .w-fit {
716
+ width: fit-content;
717
+ }
718
+ .w-full {
719
+ width: 100%;
720
+ }
721
+ .w-px {
722
+ width: 1px;
723
+ }
724
+ .max-w-\[95vw\] {
725
+ max-width: 95vw;
726
+ }
727
+ .max-w-\[110px\] {
728
+ max-width: 110px;
729
+ }
730
+ .max-w-\[151px\] {
731
+ max-width: 151px;
732
+ }
733
+ .max-w-\[185px\] {
734
+ max-width: 185px;
735
+ }
736
+ .max-w-\[200px\] {
737
+ max-width: 200px;
738
+ }
739
+ .max-w-\[260px\] {
740
+ max-width: 260px;
741
+ }
742
+ .max-w-\[289px\] {
743
+ max-width: 289px;
744
+ }
745
+ .max-w-\[300px\] {
746
+ max-width: 300px;
747
+ }
748
+ .max-w-\[410px\] {
749
+ max-width: 410px;
750
+ }
751
+ .min-w-0 {
752
+ min-width: calc(var(--spacing) * 0);
753
+ }
754
+ .flex-1 {
755
+ flex: 1;
756
+ }
757
+ .shrink-0 {
758
+ flex-shrink: 0;
759
+ }
760
+ .-translate-x-1\.5 {
761
+ --tw-translate-x: calc(var(--spacing) * -1.5);
762
+ translate: var(--tw-translate-x) var(--tw-translate-y);
763
+ }
764
+ .-translate-x-1\/2 {
765
+ --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
766
+ translate: var(--tw-translate-x) var(--tw-translate-y);
767
+ }
768
+ .translate-x-1\.5 {
769
+ --tw-translate-x: calc(var(--spacing) * 1.5);
770
+ translate: var(--tw-translate-x) var(--tw-translate-y);
771
+ }
772
+ .-translate-y-1\/2 {
773
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
774
+ translate: var(--tw-translate-x) var(--tw-translate-y);
775
+ }
776
+ .rotate-45 {
777
+ rotate: 45deg;
778
+ }
779
+ .rotate-180 {
780
+ rotate: 180deg;
781
+ }
782
+ .transform {
783
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
784
+ }
785
+ .cursor-auto\! {
786
+ cursor: auto !important;
787
+ }
788
+ .cursor-default {
789
+ cursor: default;
790
+ }
791
+ .cursor-not-allowed {
792
+ cursor: not-allowed;
793
+ }
794
+ .cursor-pointer {
795
+ cursor: pointer;
796
+ }
797
+ .cursor-zoom-in {
798
+ cursor: zoom-in;
799
+ }
800
+ .resize {
801
+ resize: both;
802
+ }
803
+ .resize-none {
804
+ resize: none;
805
+ }
806
+ .grid-cols-2 {
807
+ grid-template-columns: repeat(2, minmax(0, 1fr));
808
+ }
809
+ .grid-cols-7 {
810
+ grid-template-columns: repeat(7, minmax(0, 1fr));
811
+ }
812
+ .grid-cols-\[1fr_310px\] {
813
+ grid-template-columns: 1fr 310px;
814
+ }
815
+ .grid-cols-\[18px_120px_1fr\] {
816
+ grid-template-columns: 18px 120px 1fr;
817
+ }
818
+ .grid-cols-\[125px_125px\] {
819
+ grid-template-columns: 125px 125px;
820
+ }
821
+ .flex-col {
822
+ flex-direction: column;
823
+ }
824
+ .place-items-center {
825
+ place-items: center;
826
+ }
827
+ .items-center {
828
+ align-items: center;
829
+ }
830
+ .items-end {
831
+ align-items: flex-end;
832
+ }
833
+ .items-start {
834
+ align-items: flex-start;
835
+ }
836
+ .items-stretch {
837
+ align-items: stretch;
838
+ }
839
+ .justify-between {
840
+ justify-content: space-between;
841
+ }
842
+ .justify-center {
843
+ justify-content: center;
844
+ }
845
+ .justify-end {
846
+ justify-content: flex-end;
847
+ }
848
+ .justify-start {
849
+ justify-content: flex-start;
850
+ }
851
+ .gap-0 {
852
+ gap: calc(var(--spacing) * 0);
853
+ }
854
+ .gap-1 {
855
+ gap: calc(var(--spacing) * 1);
856
+ }
857
+ .gap-1\.5 {
858
+ gap: calc(var(--spacing) * 1.5);
859
+ }
860
+ .gap-2 {
861
+ gap: calc(var(--spacing) * 2);
862
+ }
863
+ .gap-3 {
864
+ gap: calc(var(--spacing) * 3);
865
+ }
866
+ .gap-4 {
867
+ gap: calc(var(--spacing) * 4);
868
+ }
869
+ .space-y-1\.5 {
870
+ :where(& > :not(:last-child)) {
871
+ --tw-space-y-reverse: 0;
872
+ margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
873
+ margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
874
+ }
875
+ }
876
+ .space-y-\[2px\] {
877
+ :where(& > :not(:last-child)) {
878
+ --tw-space-y-reverse: 0;
879
+ margin-block-start: calc(2px * var(--tw-space-y-reverse));
880
+ margin-block-end: calc(2px * calc(1 - var(--tw-space-y-reverse)));
881
+ }
882
+ }
883
+ .truncate {
884
+ overflow: hidden;
885
+ text-overflow: ellipsis;
886
+ white-space: nowrap;
887
+ }
888
+ .overflow-hidden {
889
+ overflow: hidden;
890
+ }
891
+ .overflow-visible {
892
+ overflow: visible;
893
+ }
894
+ .overflow-x-auto {
895
+ overflow-x: auto;
896
+ }
897
+ .overflow-y-auto {
898
+ overflow-y: auto;
899
+ }
900
+ .rounded {
901
+ border-radius: 0.25rem;
902
+ }
903
+ .rounded-\[2\.33px\] {
904
+ border-radius: 2.33px;
905
+ }
906
+ .rounded-\[3\.5px\] {
907
+ border-radius: 3.5px;
908
+ }
909
+ .rounded-\[3px\] {
910
+ border-radius: 3px;
911
+ }
912
+ .rounded-\[4px\] {
913
+ border-radius: 4px;
914
+ }
915
+ .rounded-\[6px\] {
916
+ border-radius: 6px;
917
+ }
918
+ .rounded-\[12px\] {
919
+ border-radius: 12px;
920
+ }
921
+ .rounded-\[14px\] {
922
+ border-radius: 14px;
923
+ }
924
+ .rounded-\[18px\] {
925
+ border-radius: 18px;
926
+ }
927
+ .rounded-\[20px\] {
928
+ border-radius: 20px;
929
+ }
930
+ .rounded-full {
931
+ border-radius: calc(infinity * 1px);
932
+ }
933
+ .rounded-lg {
934
+ border-radius: var(--radius-lg);
935
+ }
936
+ .rounded-md {
937
+ border-radius: var(--radius-md);
938
+ }
939
+ .rounded-sm {
940
+ border-radius: var(--radius-sm);
941
+ }
942
+ .rounded-xs {
943
+ border-radius: var(--radius-xs);
944
+ }
945
+ .rounded-t-md {
946
+ border-top-left-radius: var(--radius-md);
947
+ border-top-right-radius: var(--radius-md);
948
+ }
949
+ .rounded-tl-\[3px\] {
950
+ border-top-left-radius: 3px;
951
+ }
952
+ .rounded-tl-md {
953
+ border-top-left-radius: var(--radius-md);
954
+ }
955
+ .rounded-tr-\[3px\] {
956
+ border-top-right-radius: 3px;
957
+ }
958
+ .rounded-tr-\[6px\] {
959
+ border-top-right-radius: 6px;
960
+ }
961
+ .rounded-b-md {
962
+ border-bottom-right-radius: var(--radius-md);
963
+ border-bottom-left-radius: var(--radius-md);
964
+ }
965
+ .rounded-br-\[3px\] {
966
+ border-bottom-right-radius: 3px;
967
+ }
968
+ .rounded-bl-\[3px\] {
969
+ border-bottom-left-radius: 3px;
970
+ }
971
+ .border {
972
+ border-style: var(--tw-border-style);
973
+ border-width: 1px;
974
+ }
975
+ .border-\[0\.7px\] {
976
+ border-style: var(--tw-border-style);
977
+ border-width: 0.7px;
978
+ }
979
+ .border-t {
980
+ border-top-style: var(--tw-border-style);
981
+ border-top-width: 1px;
982
+ }
983
+ .border-t-16 {
984
+ border-top-style: var(--tw-border-style);
985
+ border-top-width: 16px;
986
+ }
987
+ .border-t-\[5px\] {
988
+ border-top-style: var(--tw-border-style);
989
+ border-top-width: 5px;
990
+ }
991
+ .border-r {
992
+ border-right-style: var(--tw-border-style);
993
+ border-right-width: 1px;
994
+ }
995
+ .border-r-\[5px\] {
996
+ border-right-style: var(--tw-border-style);
997
+ border-right-width: 5px;
998
+ }
999
+ .border-b {
1000
+ border-bottom-style: var(--tw-border-style);
1001
+ border-bottom-width: 1px;
1002
+ }
1003
+ .border-l {
1004
+ border-left-style: var(--tw-border-style);
1005
+ border-left-width: 1px;
1006
+ }
1007
+ .border-l-2 {
1008
+ border-left-style: var(--tw-border-style);
1009
+ border-left-width: 2px;
1010
+ }
1011
+ .border-l-16 {
1012
+ border-left-style: var(--tw-border-style);
1013
+ border-left-width: 16px;
1014
+ }
1015
+ .border-l-\[5px\] {
1016
+ border-left-style: var(--tw-border-style);
1017
+ border-left-width: 5px;
1018
+ }
1019
+ .border-none {
1020
+ --tw-border-style: none;
1021
+ border-style: none;
1022
+ }
1023
+ .border-\[\#00b8d4\] {
1024
+ border-color: #00b8d4;
1025
+ }
1026
+ .border-\[\#3D3D3D\] {
1027
+ border-color: #3D3D3D;
1028
+ }
1029
+ .border-\[\#3d3d3d\] {
1030
+ border-color: #3d3d3d;
1031
+ }
1032
+ .border-\[\#3d6b42\] {
1033
+ border-color: #3d6b42;
1034
+ }
1035
+ .border-\[\#6A6A6A\] {
1036
+ border-color: #6A6A6A;
1037
+ }
1038
+ .border-\[\#9BBCCF\] {
1039
+ border-color: #9BBCCF;
1040
+ }
1041
+ .border-\[\#005694\] {
1042
+ border-color: #005694;
1043
+ }
1044
+ .border-\[\#086600\] {
1045
+ border-color: #086600;
1046
+ }
1047
+ .border-\[\#CCCCCC\] {
1048
+ border-color: #CCCCCC;
1049
+ }
1050
+ .border-\[\#D8D8D8\] {
1051
+ border-color: #D8D8D8;
1052
+ }
1053
+ .border-\[\#E5E5E5\] {
1054
+ border-color: #E5E5E5;
1055
+ }
1056
+ .border-\[\#EFEFEF\] {
1057
+ border-color: #EFEFEF;
1058
+ }
1059
+ .border-\[\#F1F1F1\] {
1060
+ border-color: #F1F1F1;
1061
+ }
1062
+ .border-\[\#FF5300\] {
1063
+ border-color: #FF5300;
1064
+ }
1065
+ .border-\[\#cacaca\] {
1066
+ border-color: #cacaca;
1067
+ }
1068
+ .border-\[\#e1e1e1\] {
1069
+ border-color: #e1e1e1;
1070
+ }
1071
+ .border-\[\#ededed\] {
1072
+ border-color: #ededed;
1073
+ }
1074
+ .border-\[\#ef4444\] {
1075
+ border-color: #ef4444;
1076
+ }
1077
+ .border-\[\#f1f1f1\] {
1078
+ border-color: #f1f1f1;
1079
+ }
1080
+ .border-\[\#f8f8f8\] {
1081
+ border-color: #f8f8f8;
1082
+ }
1083
+ .border-\[\#f59e0b\] {
1084
+ border-color: #f59e0b;
1085
+ }
1086
+ .border-transparent {
1087
+ border-color: transparent;
1088
+ }
1089
+ .border-t-\[\#636363\] {
1090
+ border-top-color: #636363;
1091
+ }
1092
+ .border-t-\[\#FFD2BD\] {
1093
+ border-top-color: #FFD2BD;
1094
+ }
1095
+ .border-t-transparent {
1096
+ border-top-color: transparent;
1097
+ }
1098
+ .border-r-transparent {
1099
+ border-right-color: transparent;
1100
+ }
1101
+ .border-l-transparent {
1102
+ border-left-color: transparent;
1103
+ }
1104
+ .\!bg-\[\#636363\] {
1105
+ background-color: #636363 !important;
1106
+ }
1107
+ .bg-\[\#00b8d4\] {
1108
+ background-color: #00b8d4;
1109
+ }
1110
+ .bg-\[\#00b8d4\]\/10 {
1111
+ background-color: color-mix(in oklab, #00b8d4 10%, transparent);
1112
+ }
1113
+ .bg-\[\#1E8E3E\] {
1114
+ background-color: #1E8E3E;
1115
+ }
1116
+ .bg-\[\#3D3D3D\] {
1117
+ background-color: #3D3D3D;
1118
+ }
1119
+ .bg-\[\#3D3D3D\]\/10 {
1120
+ background-color: color-mix(in oklab, #3D3D3D 10%, transparent);
1121
+ }
1122
+ .bg-\[\#3d3d3d\] {
1123
+ background-color: #3d3d3d;
1124
+ }
1125
+ .bg-\[\#3d6b42\] {
1126
+ background-color: #3d6b42;
1127
+ }
1128
+ .bg-\[\#3d6b42\]\/10 {
1129
+ background-color: color-mix(in oklab, #3d6b42 10%, transparent);
1130
+ }
1131
+ .bg-\[\#005694\] {
1132
+ background-color: #005694;
1133
+ }
1134
+ .bg-\[\#086600\] {
1135
+ background-color: #086600;
1136
+ }
1137
+ .bg-\[\#328545\] {
1138
+ background-color: #328545;
1139
+ }
1140
+ .bg-\[\#636363\] {
1141
+ background-color: #636363;
1142
+ }
1143
+ .bg-\[\#747474\] {
1144
+ background-color: #747474;
1145
+ }
1146
+ .bg-\[\#BDBDBD\] {
1147
+ background-color: #BDBDBD;
1148
+ }
1149
+ .bg-\[\#E0EFF8\] {
1150
+ background-color: #E0EFF8;
1151
+ }
1152
+ .bg-\[\#E6F5E6\] {
1153
+ background-color: #E6F5E6;
1154
+ }
1155
+ .bg-\[\#E7E7E7\] {
1156
+ background-color: #E7E7E7;
1157
+ }
1158
+ .bg-\[\#F1F1F1\] {
1159
+ background-color: #F1F1F1;
1160
+ }
1161
+ .bg-\[\#F5F7FA\] {
1162
+ background-color: #F5F7FA;
1163
+ }
1164
+ .bg-\[\#F7F7F7\] {
1165
+ background-color: #F7F7F7;
1166
+ }
1167
+ .bg-\[\#FF5300\] {
1168
+ background-color: #FF5300;
1169
+ }
1170
+ .bg-\[\#FFDBCF\] {
1171
+ background-color: #FFDBCF;
1172
+ }
1173
+ .bg-\[\#FFE9DB\] {
1174
+ background-color: #FFE9DB;
1175
+ }
1176
+ .bg-\[\#FFEAE0\] {
1177
+ background-color: #FFEAE0;
1178
+ }
1179
+ .bg-\[\#cacaca\] {
1180
+ background-color: #cacaca;
1181
+ }
1182
+ .bg-\[\#e1e1e1\] {
1183
+ background-color: #e1e1e1;
1184
+ }
1185
+ .bg-\[\#eb2127\] {
1186
+ background-color: #eb2127;
1187
+ }
1188
+ .bg-\[\#ececec\] {
1189
+ background-color: #ececec;
1190
+ }
1191
+ .bg-\[\#ef4444\] {
1192
+ background-color: #ef4444;
1193
+ }
1194
+ .bg-\[\#ef4444\]\/10 {
1195
+ background-color: color-mix(in oklab, #ef4444 10%, transparent);
1196
+ }
1197
+ .bg-\[\#f1f1f1\] {
1198
+ background-color: #f1f1f1;
1199
+ }
1200
+ .bg-\[\#f8f8f8\] {
1201
+ background-color: #f8f8f8;
1202
+ }
1203
+ .bg-\[\#f59e0b\] {
1204
+ background-color: #f59e0b;
1205
+ }
1206
+ .bg-\[\#f59e0b\]\/10 {
1207
+ background-color: color-mix(in oklab, #f59e0b 10%, transparent);
1208
+ }
1209
+ .bg-\[\#ff5200\] {
1210
+ background-color: #ff5200;
1211
+ }
1212
+ .bg-black {
1213
+ background-color: var(--color-black);
1214
+ }
1215
+ .bg-black\/5 {
1216
+ background-color: color-mix(in srgb, #000 5%, transparent);
1217
+ @supports (color: color-mix(in lab, red, red)) {
1218
+ background-color: color-mix(in oklab, var(--color-black) 5%, transparent);
1219
+ }
1220
+ }
1221
+ .bg-black\/30 {
1222
+ background-color: color-mix(in srgb, #000 30%, transparent);
1223
+ @supports (color: color-mix(in lab, red, red)) {
1224
+ background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
1225
+ }
1226
+ }
1227
+ .bg-black\/35 {
1228
+ background-color: color-mix(in srgb, #000 35%, transparent);
1229
+ @supports (color: color-mix(in lab, red, red)) {
1230
+ background-color: color-mix(in oklab, var(--color-black) 35%, transparent);
1231
+ }
1232
+ }
1233
+ .bg-black\/40 {
1234
+ background-color: color-mix(in srgb, #000 40%, transparent);
1235
+ @supports (color: color-mix(in lab, red, red)) {
1236
+ background-color: color-mix(in oklab, var(--color-black) 40%, transparent);
1237
+ }
1238
+ }
1239
+ .bg-transparent {
1240
+ background-color: transparent;
1241
+ }
1242
+ .bg-white {
1243
+ background-color: var(--color-white);
1244
+ }
1245
+ .bg-cover {
1246
+ background-size: cover;
1247
+ }
1248
+ .bg-no-repeat {
1249
+ background-repeat: no-repeat;
1250
+ }
1251
+ .object-contain {
1252
+ object-fit: contain;
1253
+ }
1254
+ .object-cover {
1255
+ object-fit: cover;
1256
+ }
1257
+ .p-1 {
1258
+ padding: calc(var(--spacing) * 1);
1259
+ }
1260
+ .p-2 {
1261
+ padding: calc(var(--spacing) * 2);
1262
+ }
1263
+ .p-3 {
1264
+ padding: calc(var(--spacing) * 3);
1265
+ }
1266
+ .p-3\.5 {
1267
+ padding: calc(var(--spacing) * 3.5);
1268
+ }
1269
+ .p-4 {
1270
+ padding: calc(var(--spacing) * 4);
1271
+ }
1272
+ .p-\[1\.75px\] {
1273
+ padding: 1.75px;
1274
+ }
1275
+ .p-\[2px\] {
1276
+ padding: 2px;
1277
+ }
1278
+ .p-\[3px\] {
1279
+ padding: 3px;
1280
+ }
1281
+ .p-\[7px\] {
1282
+ padding: 7px;
1283
+ }
1284
+ .p-px {
1285
+ padding: 1px;
1286
+ }
1287
+ .px-2 {
1288
+ padding-inline: calc(var(--spacing) * 2);
1289
+ }
1290
+ .px-2\.5 {
1291
+ padding-inline: calc(var(--spacing) * 2.5);
1292
+ }
1293
+ .px-3 {
1294
+ padding-inline: calc(var(--spacing) * 3);
1295
+ }
1296
+ .px-4 {
1297
+ padding-inline: calc(var(--spacing) * 4);
1298
+ }
1299
+ .px-5 {
1300
+ padding-inline: calc(var(--spacing) * 5);
1301
+ }
1302
+ .px-6 {
1303
+ padding-inline: calc(var(--spacing) * 6);
1304
+ }
1305
+ .px-\[3px\] {
1306
+ padding-inline: 3px;
1307
+ }
1308
+ .px-\[4px\] {
1309
+ padding-inline: 4px;
1310
+ }
1311
+ .px-\[10px\] {
1312
+ padding-inline: 10px;
1313
+ }
1314
+ .px-\[12px\] {
1315
+ padding-inline: 12px;
1316
+ }
1317
+ .px-\[14px\] {
1318
+ padding-inline: 14px;
1319
+ }
1320
+ .px-\[16px\] {
1321
+ padding-inline: 16px;
1322
+ }
1323
+ .px-\[18px\] {
1324
+ padding-inline: 18px;
1325
+ }
1326
+ .px-\[20px\] {
1327
+ padding-inline: 20px;
1328
+ }
1329
+ .py-1\.5 {
1330
+ padding-block: calc(var(--spacing) * 1.5);
1331
+ }
1332
+ .py-2 {
1333
+ padding-block: calc(var(--spacing) * 2);
1334
+ }
1335
+ .py-2\.5 {
1336
+ padding-block: calc(var(--spacing) * 2.5);
1337
+ }
1338
+ .py-6 {
1339
+ padding-block: calc(var(--spacing) * 6);
1340
+ }
1341
+ .py-\[2px\] {
1342
+ padding-block: 2px;
1343
+ }
1344
+ .py-\[3px\] {
1345
+ padding-block: 3px;
1346
+ }
1347
+ .py-\[7px\] {
1348
+ padding-block: 7px;
1349
+ }
1350
+ .ps-\[16px\] {
1351
+ padding-inline-start: 16px;
1352
+ }
1353
+ .pe-\[4px\] {
1354
+ padding-inline-end: 4px;
1355
+ }
1356
+ .pe-\[30px\] {
1357
+ padding-inline-end: 30px;
1358
+ }
1359
+ .pt-1 {
1360
+ padding-top: calc(var(--spacing) * 1);
1361
+ }
1362
+ .pt-\[2px\] {
1363
+ padding-top: 2px;
1364
+ }
1365
+ .pt-\[24px\] {
1366
+ padding-top: 24px;
1367
+ }
1368
+ .pr-1\.5 {
1369
+ padding-right: calc(var(--spacing) * 1.5);
1370
+ }
1371
+ .pr-2 {
1372
+ padding-right: calc(var(--spacing) * 2);
1373
+ }
1374
+ .pb-1 {
1375
+ padding-bottom: calc(var(--spacing) * 1);
1376
+ }
1377
+ .pb-2 {
1378
+ padding-bottom: calc(var(--spacing) * 2);
1379
+ }
1380
+ .pb-10 {
1381
+ padding-bottom: calc(var(--spacing) * 10);
1382
+ }
1383
+ .pb-\[2px\] {
1384
+ padding-bottom: 2px;
1385
+ }
1386
+ .text-left {
1387
+ text-align: left;
1388
+ }
1389
+ .text-right {
1390
+ text-align: right;
1391
+ }
1392
+ .text-2xl {
1393
+ font-size: var(--text-2xl);
1394
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1395
+ }
1396
+ .text-4xl {
1397
+ font-size: var(--text-4xl);
1398
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1399
+ }
1400
+ .text-lg {
1401
+ font-size: var(--text-lg);
1402
+ line-height: var(--tw-leading, var(--text-lg--line-height));
1403
+ }
1404
+ .text-sm {
1405
+ font-size: var(--text-sm);
1406
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1407
+ }
1408
+ .text-xl {
1409
+ font-size: var(--text-xl);
1410
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1411
+ }
1412
+ .text-xs {
1413
+ font-size: var(--text-xs);
1414
+ line-height: var(--tw-leading, var(--text-xs--line-height));
1415
+ }
1416
+ .text-\[10px\] {
1417
+ font-size: 10px;
1418
+ }
1419
+ .text-\[12px\] {
1420
+ font-size: 12px;
1421
+ }
1422
+ .text-\[13px\] {
1423
+ font-size: 13px;
1424
+ }
1425
+ .text-\[14px\] {
1426
+ font-size: 14px;
1427
+ }
1428
+ .text-\[15px\] {
1429
+ font-size: 15px;
1430
+ }
1431
+ .text-\[16px\] {
1432
+ font-size: 16px;
1433
+ }
1434
+ .text-\[20px\] {
1435
+ font-size: 20px;
1436
+ }
1437
+ .text-\[22px\] {
1438
+ font-size: 22px;
1439
+ }
1440
+ .leading-4 {
1441
+ --tw-leading: calc(var(--spacing) * 4);
1442
+ line-height: calc(var(--spacing) * 4);
1443
+ }
1444
+ .leading-relaxed {
1445
+ --tw-leading: var(--leading-relaxed);
1446
+ line-height: var(--leading-relaxed);
1447
+ }
1448
+ .font-light {
1449
+ --tw-font-weight: var(--font-weight-light);
1450
+ font-weight: var(--font-weight-light);
1451
+ }
1452
+ .font-medium {
1453
+ --tw-font-weight: var(--font-weight-medium);
1454
+ font-weight: var(--font-weight-medium);
1455
+ }
1456
+ .font-normal {
1457
+ --tw-font-weight: var(--font-weight-normal);
1458
+ font-weight: var(--font-weight-normal);
1459
+ }
1460
+ .font-semibold {
1461
+ --tw-font-weight: var(--font-weight-semibold);
1462
+ font-weight: var(--font-weight-semibold);
1463
+ }
1464
+ .tracking-\[0\.4px\] {
1465
+ --tw-tracking: 0.4px;
1466
+ letter-spacing: 0.4px;
1467
+ }
1468
+ .tracking-wide {
1469
+ --tw-tracking: var(--tracking-wide);
1470
+ letter-spacing: var(--tracking-wide);
1471
+ }
1472
+ .break-words {
1473
+ overflow-wrap: break-word;
1474
+ }
1475
+ .whitespace-nowrap {
1476
+ white-space: nowrap;
1477
+ }
1478
+ .whitespace-pre-wrap {
1479
+ white-space: pre-wrap;
1480
+ }
1481
+ .text-\[\#0D5EA8\] {
1482
+ color: #0D5EA8;
1483
+ }
1484
+ .text-\[\#0F0F0F\] {
1485
+ color: #0F0F0F;
1486
+ }
1487
+ .text-\[\#00b8d4\] {
1488
+ color: #00b8d4;
1489
+ }
1490
+ .text-\[\#1E9E6A\] {
1491
+ color: #1E9E6A;
1492
+ }
1493
+ .text-\[\#2B579A\] {
1494
+ color: #2B579A;
1495
+ }
1496
+ .text-\[\#2c2c2c\] {
1497
+ color: #2c2c2c;
1498
+ }
1499
+ .text-\[\#3D3D3D\] {
1500
+ color: #3D3D3D;
1501
+ }
1502
+ .text-\[\#3d6b42\] {
1503
+ color: #3d6b42;
1504
+ }
1505
+ .text-\[\#004F4F\] {
1506
+ color: #004F4F;
1507
+ }
1508
+ .text-\[\#6B7280\] {
1509
+ color: #6B7280;
1510
+ }
1511
+ .text-\[\#9AA1A9\] {
1512
+ color: #9AA1A9;
1513
+ }
1514
+ .text-\[\#9C9C9C\] {
1515
+ color: #9C9C9C;
1516
+ }
1517
+ .text-\[\#9ca3af\] {
1518
+ color: #9ca3af;
1519
+ }
1520
+ .text-\[\#00486F\] {
1521
+ color: #00486F;
1522
+ }
1523
+ .text-\[\#005694\] {
1524
+ color: #005694;
1525
+ }
1526
+ .text-\[\#086600\] {
1527
+ color: #086600;
1528
+ }
1529
+ .text-\[\#636363\] {
1530
+ color: #636363;
1531
+ }
1532
+ .text-\[\#747474\] {
1533
+ color: #747474;
1534
+ }
1535
+ .text-\[\#929292\] {
1536
+ color: #929292;
1537
+ }
1538
+ .text-\[\#B7B7B7\] {
1539
+ color: #B7B7B7;
1540
+ }
1541
+ .text-\[\#B9C3D4\] {
1542
+ color: #B9C3D4;
1543
+ }
1544
+ .text-\[\#D93025\] {
1545
+ color: #D93025;
1546
+ }
1547
+ .text-\[\#E63946\] {
1548
+ color: #E63946;
1549
+ }
1550
+ .text-\[\#E69138\] {
1551
+ color: #E69138;
1552
+ }
1553
+ .text-\[\#EA580C\] {
1554
+ color: #EA580C;
1555
+ }
1556
+ .text-\[\#FF5300\] {
1557
+ color: #FF5300;
1558
+ }
1559
+ .text-\[\#ef4444\] {
1560
+ color: #ef4444;
1561
+ }
1562
+ .text-\[\#f59e0b\] {
1563
+ color: #f59e0b;
1564
+ }
1565
+ .text-\[\#ff5301\] {
1566
+ color: #ff5301;
1567
+ }
1568
+ .text-black {
1569
+ color: var(--color-black);
1570
+ }
1571
+ .text-white {
1572
+ color: var(--color-white);
1573
+ }
1574
+ .uppercase {
1575
+ text-transform: uppercase;
1576
+ }
1577
+ .opacity-0 {
1578
+ opacity: 0%;
1579
+ }
1580
+ .opacity-30 {
1581
+ opacity: 30%;
1582
+ }
1583
+ .opacity-50 {
1584
+ opacity: 50%;
1585
+ }
1586
+ .opacity-100 {
1587
+ opacity: 100%;
1588
+ }
1589
+ .shadow-\[-3px_0px_6px_0px_rgba\(0\,0\,0\,0\.1\)\] {
1590
+ --tw-shadow: -3px 0px 6px 0px var(--tw-shadow-color, rgba(0,0,0,0.1));
1591
+ box-shadow:
1592
+ var(--tw-inset-shadow),
1593
+ var(--tw-inset-ring-shadow),
1594
+ var(--tw-ring-offset-shadow),
1595
+ var(--tw-ring-shadow),
1596
+ var(--tw-shadow);
1597
+ }
1598
+ .shadow-\[0_1px_2px_rgba\(0\,0\,0\,0\.04\)\] {
1599
+ --tw-shadow: 0 1px 2px var(--tw-shadow-color, rgba(0,0,0,0.04));
1600
+ box-shadow:
1601
+ var(--tw-inset-shadow),
1602
+ var(--tw-inset-ring-shadow),
1603
+ var(--tw-ring-offset-shadow),
1604
+ var(--tw-ring-shadow),
1605
+ var(--tw-shadow);
1606
+ }
1607
+ .shadow-\[0_1px_3px_rgba\(0\,0\,0\,0\.08\)\] {
1608
+ --tw-shadow: 0 1px 3px var(--tw-shadow-color, rgba(0,0,0,0.08));
1609
+ box-shadow:
1610
+ var(--tw-inset-shadow),
1611
+ var(--tw-inset-ring-shadow),
1612
+ var(--tw-ring-offset-shadow),
1613
+ var(--tw-ring-shadow),
1614
+ var(--tw-shadow);
1615
+ }
1616
+ .shadow-\[0_2px_8px_rgba\(0\,0\,0\,0\.15\)\] {
1617
+ --tw-shadow: 0 2px 8px var(--tw-shadow-color, rgba(0,0,0,0.15));
1618
+ box-shadow:
1619
+ var(--tw-inset-shadow),
1620
+ var(--tw-inset-ring-shadow),
1621
+ var(--tw-ring-offset-shadow),
1622
+ var(--tw-ring-shadow),
1623
+ var(--tw-shadow);
1624
+ }
1625
+ .shadow-\[0_2px_12px_rgba\(59\,51\,51\,0\.1\)\] {
1626
+ --tw-shadow: 0 2px 12px var(--tw-shadow-color, rgba(59,51,51,0.1));
1627
+ box-shadow:
1628
+ var(--tw-inset-shadow),
1629
+ var(--tw-inset-ring-shadow),
1630
+ var(--tw-ring-offset-shadow),
1631
+ var(--tw-ring-shadow),
1632
+ var(--tw-shadow);
1633
+ }
1634
+ .shadow-\[0_4px_16px_rgba\(0\,0\,0\,0\.08\)\] {
1635
+ --tw-shadow: 0 4px 16px var(--tw-shadow-color, rgba(0,0,0,0.08));
1636
+ box-shadow:
1637
+ var(--tw-inset-shadow),
1638
+ var(--tw-inset-ring-shadow),
1639
+ var(--tw-ring-offset-shadow),
1640
+ var(--tw-ring-shadow),
1641
+ var(--tw-shadow);
1642
+ }
1643
+ .shadow-\[0_8px_24px_rgba\(0\,0\,0\,0\.12\)\] {
1644
+ --tw-shadow: 0 8px 24px var(--tw-shadow-color, rgba(0,0,0,0.12));
1645
+ box-shadow:
1646
+ var(--tw-inset-shadow),
1647
+ var(--tw-inset-ring-shadow),
1648
+ var(--tw-ring-offset-shadow),
1649
+ var(--tw-ring-shadow),
1650
+ var(--tw-shadow);
1651
+ }
1652
+ .shadow-\[0_12px_30px_rgba\(0\,0\,0\,0\.18\)\] {
1653
+ --tw-shadow: 0 12px 30px var(--tw-shadow-color, rgba(0,0,0,0.18));
1654
+ box-shadow:
1655
+ var(--tw-inset-shadow),
1656
+ var(--tw-inset-ring-shadow),
1657
+ var(--tw-ring-offset-shadow),
1658
+ var(--tw-ring-shadow),
1659
+ var(--tw-shadow);
1660
+ }
1661
+ .shadow-\[0px_2px_2px_rgba\(47\,47\,47\,0\.08\)\] {
1662
+ --tw-shadow: 0px 2px 2px var(--tw-shadow-color, rgba(47,47,47,0.08));
1663
+ box-shadow:
1664
+ var(--tw-inset-shadow),
1665
+ var(--tw-inset-ring-shadow),
1666
+ var(--tw-ring-offset-shadow),
1667
+ var(--tw-ring-shadow),
1668
+ var(--tw-shadow);
1669
+ }
1670
+ .shadow-\[0px_2px_4px_0px_\#A5A3AE4D\] {
1671
+ --tw-shadow: 0px 2px 4px 0px var(--tw-shadow-color, #A5A3AE4D);
1672
+ box-shadow:
1673
+ var(--tw-inset-shadow),
1674
+ var(--tw-inset-ring-shadow),
1675
+ var(--tw-ring-offset-shadow),
1676
+ var(--tw-ring-shadow),
1677
+ var(--tw-shadow);
1678
+ }
1679
+ .shadow-\[3px_0px_6px_0px_rgba\(0\,0\,0\,0\.1\)\] {
1680
+ --tw-shadow: 3px 0px 6px 0px var(--tw-shadow-color, rgba(0,0,0,0.1));
1681
+ box-shadow:
1682
+ var(--tw-inset-shadow),
1683
+ var(--tw-inset-ring-shadow),
1684
+ var(--tw-ring-offset-shadow),
1685
+ var(--tw-ring-shadow),
1686
+ var(--tw-shadow);
1687
+ }
1688
+ .ring-1 {
1689
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1690
+ box-shadow:
1691
+ var(--tw-inset-shadow),
1692
+ var(--tw-inset-ring-shadow),
1693
+ var(--tw-ring-offset-shadow),
1694
+ var(--tw-ring-shadow),
1695
+ var(--tw-shadow);
1696
+ }
1697
+ .ring-\[\#2F80ED\]\/40 {
1698
+ --tw-ring-color: color-mix(in oklab, #2F80ED 40%, transparent);
1699
+ }
1700
+ .ring-white {
1701
+ --tw-ring-color: var(--color-white);
1702
+ }
1703
+ .backdrop-blur-\[2px\] {
1704
+ --tw-backdrop-blur: blur(2px);
1705
+ -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,);
1706
+ 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,);
1707
+ }
1708
+ .transition {
1709
+ transition-property:
1710
+ color,
1711
+ background-color,
1712
+ border-color,
1713
+ outline-color,
1714
+ text-decoration-color,
1715
+ fill,
1716
+ stroke,
1717
+ --tw-gradient-from,
1718
+ --tw-gradient-via,
1719
+ --tw-gradient-to,
1720
+ opacity,
1721
+ box-shadow,
1722
+ transform,
1723
+ translate,
1724
+ scale,
1725
+ rotate,
1726
+ filter,
1727
+ -webkit-backdrop-filter,
1728
+ backdrop-filter,
1729
+ display,
1730
+ content-visibility,
1731
+ overlay,
1732
+ pointer-events;
1733
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1734
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1735
+ }
1736
+ .transition-\[background\] {
1737
+ transition-property: background;
1738
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1739
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1740
+ }
1741
+ .transition-all {
1742
+ transition-property: all;
1743
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1744
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1745
+ }
1746
+ .transition-colors {
1747
+ transition-property:
1748
+ color,
1749
+ background-color,
1750
+ border-color,
1751
+ outline-color,
1752
+ text-decoration-color,
1753
+ fill,
1754
+ stroke,
1755
+ --tw-gradient-from,
1756
+ --tw-gradient-via,
1757
+ --tw-gradient-to;
1758
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1759
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1760
+ }
1761
+ .transition-opacity {
1762
+ transition-property: opacity;
1763
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1764
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1765
+ }
1766
+ .transition-transform {
1767
+ transition-property:
1768
+ transform,
1769
+ translate,
1770
+ scale,
1771
+ rotate;
1772
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1773
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1774
+ }
1775
+ .duration-150 {
1776
+ --tw-duration: 150ms;
1777
+ transition-duration: 150ms;
1778
+ }
1779
+ .duration-200 {
1780
+ --tw-duration: 200ms;
1781
+ transition-duration: 200ms;
1782
+ }
1783
+ .duration-300 {
1784
+ --tw-duration: 300ms;
1785
+ transition-duration: 300ms;
1786
+ }
1787
+ .ease-in-out {
1788
+ --tw-ease: var(--ease-in-out);
1789
+ transition-timing-function: var(--ease-in-out);
1790
+ }
1791
+ .outline-none {
1792
+ --tw-outline-style: none;
1793
+ outline-style: none;
1794
+ }
1795
+ .select-none {
1796
+ -webkit-user-select: none;
1797
+ user-select: none;
1798
+ }
1799
+ .group-hover\:opacity-0 {
1800
+ &:is(:where(.group):hover *) {
1801
+ @media (hover: hover) {
1802
+ opacity: 0%;
1803
+ }
1804
+ }
1805
+ }
1806
+ .group-hover\:opacity-100 {
1807
+ &:is(:where(.group):hover *) {
1808
+ @media (hover: hover) {
1809
+ opacity: 100%;
1810
+ }
1811
+ }
1812
+ }
1813
+ .group-hover\/message\:opacity-100 {
1814
+ &:is(:where(.group\/message):hover *) {
1815
+ @media (hover: hover) {
1816
+ opacity: 100%;
1817
+ }
1818
+ }
1819
+ }
1820
+ .group-hover\/replay\:opacity-100 {
1821
+ &:is(:where(.group\/replay):hover *) {
1822
+ @media (hover: hover) {
1823
+ opacity: 100%;
1824
+ }
1825
+ }
1826
+ }
1827
+ .group-hover\/translate\:opacity-100 {
1828
+ &:is(:where(.group\/translate):hover *) {
1829
+ @media (hover: hover) {
1830
+ opacity: 100%;
1831
+ }
1832
+ }
1833
+ }
1834
+ .placeholder\:text-\[\#9C9C9C\] {
1835
+ &::placeholder {
1836
+ color: #9C9C9C;
1837
+ }
1838
+ }
1839
+ .hover\:border-\[\#777\] {
1840
+ &:hover {
1841
+ @media (hover: hover) {
1842
+ border-color: #777;
1843
+ }
1844
+ }
1845
+ }
1846
+ .hover\:border-\[\#e04a00\] {
1847
+ &:hover {
1848
+ @media (hover: hover) {
1849
+ border-color: #e04a00;
1850
+ }
1851
+ }
1852
+ }
1853
+ .hover\:bg-\[\#2e5939\] {
1854
+ &:hover {
1855
+ @media (hover: hover) {
1856
+ background-color: #2e5939;
1857
+ }
1858
+ }
1859
+ }
1860
+ .hover\:bg-\[\#009db3\] {
1861
+ &:hover {
1862
+ @media (hover: hover) {
1863
+ background-color: #009db3;
1864
+ }
1865
+ }
1866
+ }
1867
+ .hover\:bg-\[\#28A745\] {
1868
+ &:hover {
1869
+ @media (hover: hover) {
1870
+ background-color: #28A745;
1871
+ }
1872
+ }
1873
+ }
1874
+ .hover\:bg-\[\#00375E\] {
1875
+ &:hover {
1876
+ @media (hover: hover) {
1877
+ background-color: #00375E;
1878
+ }
1879
+ }
1880
+ }
1881
+ .hover\:bg-\[\#646464\] {
1882
+ &:hover {
1883
+ @media (hover: hover) {
1884
+ background-color: #646464;
1885
+ }
1886
+ }
1887
+ }
1888
+ .hover\:bg-\[\#F4F6F8\] {
1889
+ &:hover {
1890
+ @media (hover: hover) {
1891
+ background-color: #F4F6F8;
1892
+ }
1893
+ }
1894
+ }
1895
+ .hover\:bg-\[\#c91b20\] {
1896
+ &:hover {
1897
+ @media (hover: hover) {
1898
+ background-color: #c91b20;
1899
+ }
1900
+ }
1901
+ }
1902
+ .hover\:bg-\[\#d97706\] {
1903
+ &:hover {
1904
+ @media (hover: hover) {
1905
+ background-color: #d97706;
1906
+ }
1907
+ }
1908
+ }
1909
+ .hover\:bg-\[\#e04a00\] {
1910
+ &:hover {
1911
+ @media (hover: hover) {
1912
+ background-color: #e04a00;
1913
+ }
1914
+ }
1915
+ }
1916
+ .hover\:bg-\[\#e64a00\] {
1917
+ &:hover {
1918
+ @media (hover: hover) {
1919
+ background-color: #e64a00;
1920
+ }
1921
+ }
1922
+ }
1923
+ .hover\:bg-\[\#f1f1f1\] {
1924
+ &:hover {
1925
+ @media (hover: hover) {
1926
+ background-color: #f1f1f1;
1927
+ }
1928
+ }
1929
+ }
1930
+ .hover\:bg-\[\#f8f8f8\] {
1931
+ &:hover {
1932
+ @media (hover: hover) {
1933
+ background-color: #f8f8f8;
1934
+ }
1935
+ }
1936
+ }
1937
+ .hover\:bg-black\/5 {
1938
+ &:hover {
1939
+ @media (hover: hover) {
1940
+ background-color: color-mix(in srgb, #000 5%, transparent);
1941
+ @supports (color: color-mix(in lab, red, red)) {
1942
+ background-color: color-mix(in oklab, var(--color-black) 5%, transparent);
1943
+ }
1944
+ }
1945
+ }
1946
+ }
1947
+ .hover\:bg-black\/10 {
1948
+ &:hover {
1949
+ @media (hover: hover) {
1950
+ background-color: color-mix(in srgb, #000 10%, transparent);
1951
+ @supports (color: color-mix(in lab, red, red)) {
1952
+ background-color: color-mix(in oklab, var(--color-black) 10%, transparent);
1953
+ }
1954
+ }
1955
+ }
1956
+ }
1957
+ .hover\:bg-gray-50 {
1958
+ &:hover {
1959
+ @media (hover: hover) {
1960
+ background-color: var(--color-gray-50);
1961
+ }
1962
+ }
1963
+ }
1964
+ .hover\:text-\[\#FF5300\] {
1965
+ &:hover {
1966
+ @media (hover: hover) {
1967
+ color: #FF5300;
1968
+ }
1969
+ }
1970
+ }
1971
+ .hover\:text-\[\#ff5301\] {
1972
+ &:hover {
1973
+ @media (hover: hover) {
1974
+ color: #ff5301;
1975
+ }
1976
+ }
1977
+ }
1978
+ .hover\:text-\[var\(--color-banbox-warning\)\] {
1979
+ &:hover {
1980
+ @media (hover: hover) {
1981
+ color: var(--color-banbox-warning);
1982
+ }
1983
+ }
1984
+ }
1985
+ .hover\:brightness-95 {
1986
+ &:hover {
1987
+ @media (hover: hover) {
1988
+ --tw-brightness: brightness(95%);
1989
+ 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,);
1990
+ }
1991
+ }
1992
+ }
1993
+ .focus\:outline-none {
1994
+ &:focus {
1995
+ --tw-outline-style: none;
1996
+ outline-style: none;
1997
+ }
1998
+ }
1999
+ .disabled\:opacity-50 {
2000
+ &:disabled {
2001
+ opacity: 50%;
2002
+ }
2003
+ }
2004
+ }
2005
+ .banbox-chat-root {
2006
+ --color-banbox-primary: #ff5300;
2007
+ --color-banbox-primary-active: #dc4c07;
2008
+ --color-banbox-secondary: #2079b0;
2009
+ --color-banbox-tertiary: #74a380;
2010
+ --color-banbox-primary-container: #f9d2c4;
2011
+ --color-banbox-on-primary-container: #9e3505;
2012
+ --color-banbox-secondary-container: #b2e0fc;
2013
+ --color-banbox-on-secondary-container: #17547b;
2014
+ --color-banbox-tertiary-container: #ceefd6;
2015
+ --color-banbox-on-tertiary-container: #3b7249;
2016
+ --color-banbox-surface-dim: #f1f1f1;
2017
+ --color-banbox-surface: #f2f3f7;
2018
+ --color-banbox-surface-bright: #fffcfa;
2019
+ --color-banbox-surface-container-lowest: #ffffff;
2020
+ --color-banbox-surface-container-low: #fff1ec;
2021
+ --color-banbox-surface-container: #fceae5;
2022
+ --color-banbox-surface-container-high: #f7e4df;
2023
+ --color-banbox-surface-container-highest: #f1dfd9;
2024
+ --color-banbox-on-surface: #2c2c2c;
2025
+ --color-banbox-text-dynamic: #636363;
2026
+ --color-banbox-outline: #e0d6cf;
2027
+ --color-banbox-outline-variant: #a89e97;
2028
+ --color-banbox-blue: #0d99ff;
2029
+ --color-banbox-blue-deep: #1078d8;
2030
+ --color-banbox-blue-dim-deep: #006fd6;
2031
+ --color-banbox-blue-h: #0a7acc;
2032
+ --color-banbox-red: #eb2127;
2033
+ --color-banbox-link: #005694;
2034
+ --color-banbox-link-h: #004576;
2035
+ --color-banbox-review: #fcb532;
2036
+ --color-banbox-green: #28c76f;
2037
+ --color-banbox-deep-green: #097000;
2038
+ --color-banbox-warning: #ff5301;
2039
+ --color-banbox-error: #eb2127;
2040
+ --color-banbox-ed: #ededed;
2041
+ --color-banbox-f8: #f8f8f8;
2042
+ --color-banbox-e1: #e1e1e1;
2043
+ --color-banbox-fc: #fcfcfc;
2044
+ --color-banbox-ca: #cacaca;
2045
+ --color-banbox-e5: #e5e5e5;
2046
+ --color-banbox-92: #929292;
2047
+ --color-banbox-63: #636363;
2048
+ --color-banbox-2c: #2c2c2c;
2049
+ --color-banbox-f1: #f1f1f1;
2050
+ --border-banbox-primary: #636363;
2051
+ --border-banbox-e1: #e1e1e1;
2052
+ --border-banbox-dark: #374151;
2053
+ --radius-banbox-sm: 4px;
2054
+ --radius-banbox-md: 6px;
2055
+ --radius-lg: 12px;
2056
+ --radius-full: 100px;
2057
+ --shadow-banbox-modal-primary: 0px 2px 12px 0px #3b33331a;
2058
+ --shadow-banbox-card-primary: 0px 6px 12px 0px #3b33331a;
2059
+ --shadow-banbox-card-secondary: 0px 2px 2px 0px #2f2f2f14;
2060
+ --shadow-banbox-footer-primary: 0px -2px 4px 0px #0000000a;
2061
+ }
2062
+ .banbox-chat-root[data-theme=marketplace] {
2063
+ --color-banbox-primary: #ff5300;
2064
+ --color-banbox-primary-active: #dc4c07;
2065
+ --color-banbox-surface-container-low: #fff1ec;
2066
+ --color-banbox-surface-container: #fceae5;
2067
+ }
2068
+ .banbox-chat-root[data-theme=admin] {
2069
+ --color-banbox-primary: #1a1a1a;
2070
+ --color-banbox-primary-active: #000000;
2071
+ --color-banbox-secondary: #374151;
2072
+ --color-banbox-surface-container-lowest: #ffffff;
2073
+ --color-banbox-surface-container-low: #f5f5f5;
2074
+ --color-banbox-surface-container: #eeeeee;
2075
+ --color-banbox-surface-container-high: #e8e8e8;
2076
+ --color-banbox-surface-container-highest: #e0e0e0;
2077
+ --color-banbox-outline: #d4d4d4;
2078
+ --color-banbox-outline-variant: #9e9e9e;
2079
+ }
2080
+ .banbox-chat-root .custom-scroll,
2081
+ .banbox-chat-root .custom-scroll-hidden {
2082
+ --sb-size: 6px;
2083
+ --sb-track: #f1f1f1;
2084
+ --sb-thumb: #c1c1c1;
2085
+ --sb-thumb-hover: #898989;
2086
+ overflow-y: auto;
2087
+ overscroll-behavior: contain;
2088
+ scrollbar-width: thin;
2089
+ scrollbar-color: #c1c1c1 #f1f1f1;
2090
+ }
2091
+ .banbox-chat-root .custom-scroll::-webkit-scrollbar,
2092
+ .banbox-chat-root .custom-scroll-hidden::-webkit-scrollbar {
2093
+ width: 6px;
2094
+ height: 6px;
2095
+ display: block;
2096
+ }
2097
+ .banbox-chat-root .custom-scroll::-webkit-scrollbar-track,
2098
+ .banbox-chat-root .custom-scroll-hidden::-webkit-scrollbar-track {
2099
+ background: #f1f1f1;
2100
+ border-radius: 9999px;
2101
+ }
2102
+ .banbox-chat-root .custom-scroll::-webkit-scrollbar-thumb,
2103
+ .banbox-chat-root .custom-scroll-hidden::-webkit-scrollbar-thumb {
2104
+ background-color: #c1c1c1;
2105
+ border-radius: 9999px;
2106
+ border: 1px solid #f1f1f1;
2107
+ min-height: 40px;
2108
+ }
2109
+ .banbox-chat-root .custom-scroll::-webkit-scrollbar-thumb:hover,
2110
+ .banbox-chat-root .custom-scroll-hidden::-webkit-scrollbar-thumb:hover {
2111
+ background-color: #898989;
2112
+ }
2113
+ .banbox-chat-root .custom-scroll-hidden {
2114
+ scrollbar-width: none;
2115
+ }
2116
+ .banbox-chat-root .custom-scroll-hidden::-webkit-scrollbar {
2117
+ display: none;
2118
+ }
2119
+ .banbox-chat-root .no-scrollbar {
2120
+ -ms-overflow-style: none;
2121
+ scrollbar-width: none;
2122
+ }
2123
+ .banbox-chat-root .no-scrollbar::-webkit-scrollbar {
2124
+ display: none;
2125
+ }
2126
+ @keyframes banbox-chat-fade-in {
2127
+ from {
2128
+ opacity: 0;
2129
+ transform: translateY(6px);
2130
+ }
2131
+ to {
2132
+ opacity: 1;
2133
+ transform: translateY(0);
2134
+ }
2135
+ }
2136
+ .banbox-chat-root .animate-fade-in {
2137
+ animation: banbox-chat-fade-in 0.2s ease-out forwards;
2138
+ }
2139
+ .banbox-chat-root .chat-bubble-mine {
2140
+ background-color: var(--color-banbox-primary);
2141
+ color: #fff;
2142
+ }
2143
+ .banbox-chat-root .chat-thread-active {
2144
+ background-color: var(--color-banbox-surface-container-low);
2145
+ }
2146
+ .banbox-chat-root .chat-btn-send {
2147
+ background-color: var(--color-banbox-primary);
2148
+ color: #fff;
2149
+ }
2150
+ .banbox-chat-root .chat-btn-send:hover {
2151
+ background-color: var(--color-banbox-primary-active);
2152
+ }
2153
+ .banbox-chat-root .chat-badge-unread {
2154
+ background-color: var(--color-banbox-primary);
2155
+ color: #fff;
2156
+ }
2157
+ @layer utilities {
2158
+ .banbox-chat-root * {
2159
+ box-sizing: border-box;
2160
+ }
2161
+ }
2162
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2163
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2164
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
2165
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
2166
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
2167
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
2168
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
2169
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
2170
+ @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
2171
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
2172
+ @property --tw-leading { syntax: "*"; inherits: false; }
2173
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
2174
+ @property --tw-tracking { syntax: "*"; inherits: false; }
2175
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2176
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
2177
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2178
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2179
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
2180
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2181
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
2182
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2183
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
2184
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2185
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
2186
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
2187
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
2188
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2189
+ @property --tw-backdrop-blur { syntax: "*"; inherits: false; }
2190
+ @property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
2191
+ @property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
2192
+ @property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
2193
+ @property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
2194
+ @property --tw-backdrop-invert { syntax: "*"; inherits: false; }
2195
+ @property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
2196
+ @property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
2197
+ @property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
2198
+ @property --tw-duration { syntax: "*"; inherits: false; }
2199
+ @property --tw-ease { syntax: "*"; inherits: false; }
2200
+ @property --tw-blur { syntax: "*"; inherits: false; }
2201
+ @property --tw-brightness { syntax: "*"; inherits: false; }
2202
+ @property --tw-contrast { syntax: "*"; inherits: false; }
2203
+ @property --tw-grayscale { syntax: "*"; inherits: false; }
2204
+ @property --tw-hue-rotate { syntax: "*"; inherits: false; }
2205
+ @property --tw-invert { syntax: "*"; inherits: false; }
2206
+ @property --tw-opacity { syntax: "*"; inherits: false; }
2207
+ @property --tw-saturate { syntax: "*"; inherits: false; }
2208
+ @property --tw-sepia { syntax: "*"; inherits: false; }
2209
+ @property --tw-drop-shadow { syntax: "*"; inherits: false; }
2210
+ @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
2211
+ @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2212
+ @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
2213
+ @layer properties {
2214
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2215
+ *,
2216
+ ::before,
2217
+ ::after,
2218
+ ::backdrop {
2219
+ --tw-translate-x: 0;
2220
+ --tw-translate-y: 0;
2221
+ --tw-translate-z: 0;
2222
+ --tw-rotate-x: initial;
2223
+ --tw-rotate-y: initial;
2224
+ --tw-rotate-z: initial;
2225
+ --tw-skew-x: initial;
2226
+ --tw-skew-y: initial;
2227
+ --tw-space-y-reverse: 0;
2228
+ --tw-border-style: solid;
2229
+ --tw-leading: initial;
2230
+ --tw-font-weight: initial;
2231
+ --tw-tracking: initial;
2232
+ --tw-shadow: 0 0 #0000;
2233
+ --tw-shadow-color: initial;
2234
+ --tw-shadow-alpha: 100%;
2235
+ --tw-inset-shadow: 0 0 #0000;
2236
+ --tw-inset-shadow-color: initial;
2237
+ --tw-inset-shadow-alpha: 100%;
2238
+ --tw-ring-color: initial;
2239
+ --tw-ring-shadow: 0 0 #0000;
2240
+ --tw-inset-ring-color: initial;
2241
+ --tw-inset-ring-shadow: 0 0 #0000;
2242
+ --tw-ring-inset: initial;
2243
+ --tw-ring-offset-width: 0px;
2244
+ --tw-ring-offset-color: #fff;
2245
+ --tw-ring-offset-shadow: 0 0 #0000;
2246
+ --tw-backdrop-blur: initial;
2247
+ --tw-backdrop-brightness: initial;
2248
+ --tw-backdrop-contrast: initial;
2249
+ --tw-backdrop-grayscale: initial;
2250
+ --tw-backdrop-hue-rotate: initial;
2251
+ --tw-backdrop-invert: initial;
2252
+ --tw-backdrop-opacity: initial;
2253
+ --tw-backdrop-saturate: initial;
2254
+ --tw-backdrop-sepia: initial;
2255
+ --tw-duration: initial;
2256
+ --tw-ease: initial;
2257
+ --tw-blur: initial;
2258
+ --tw-brightness: initial;
2259
+ --tw-contrast: initial;
2260
+ --tw-grayscale: initial;
2261
+ --tw-hue-rotate: initial;
2262
+ --tw-invert: initial;
2263
+ --tw-opacity: initial;
2264
+ --tw-saturate: initial;
2265
+ --tw-sepia: initial;
2266
+ --tw-drop-shadow: initial;
2267
+ --tw-drop-shadow-color: initial;
2268
+ --tw-drop-shadow-alpha: 100%;
2269
+ --tw-drop-shadow-size: initial;
2270
+ }
2271
+ }
2272
+ }
2273
+ /*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */