@carbonorm/carbonreact 4.0.22 → 4.0.24

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.
@@ -1,3 +1,804 @@
1
+ :root {
2
+ --toastify-color-light: #fff;
3
+ --toastify-color-dark: #121212;
4
+ --toastify-color-info: #3498db;
5
+ --toastify-color-success: #07bc0c;
6
+ --toastify-color-warning: #f1c40f;
7
+ --toastify-color-error: hsl(6, 78%, 57%);
8
+ --toastify-color-transparent: rgba(255, 255, 255, 0.7);
9
+
10
+ --toastify-icon-color-info: var(--toastify-color-info);
11
+ --toastify-icon-color-success: var(--toastify-color-success);
12
+ --toastify-icon-color-warning: var(--toastify-color-warning);
13
+ --toastify-icon-color-error: var(--toastify-color-error);
14
+
15
+ --toastify-container-width: fit-content;
16
+ --toastify-toast-width: 320px;
17
+ --toastify-toast-offset: 16px;
18
+ --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
19
+ --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
20
+ --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
21
+ --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
22
+ --toastify-toast-background: #fff;
23
+ --toastify-toast-padding: 14px;
24
+ --toastify-toast-min-height: 64px;
25
+ --toastify-toast-max-height: 800px;
26
+ --toastify-toast-bd-radius: 6px;
27
+ --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
28
+ --toastify-font-family: sans-serif;
29
+ --toastify-z-index: 9999;
30
+ --toastify-text-color-light: #757575;
31
+ --toastify-text-color-dark: #fff;
32
+
33
+ /* Used only for colored theme */
34
+ --toastify-text-color-info: #fff;
35
+ --toastify-text-color-success: #fff;
36
+ --toastify-text-color-warning: #fff;
37
+ --toastify-text-color-error: #fff;
38
+
39
+ --toastify-spinner-color: #616161;
40
+ --toastify-spinner-color-empty-area: #e0e0e0;
41
+ --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
42
+ --toastify-color-progress-dark: #bb86fc;
43
+ --toastify-color-progress-info: var(--toastify-color-info);
44
+ --toastify-color-progress-success: var(--toastify-color-success);
45
+ --toastify-color-progress-warning: var(--toastify-color-warning);
46
+ --toastify-color-progress-error: var(--toastify-color-error);
47
+ /* used to control the opacity of the progress trail */
48
+ --toastify-color-progress-bgo: 0.2;
49
+ }
50
+
51
+ .Toastify__toast-container {
52
+ z-index: var(--toastify-z-index);
53
+ -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
54
+ position: fixed;
55
+ width: var(--toastify-container-width);
56
+ box-sizing: border-box;
57
+ color: #fff;
58
+ display: flex;
59
+ flex-direction: column;
60
+ }
61
+
62
+ .Toastify__toast-container--top-left {
63
+ top: var(--toastify-toast-top);
64
+ left: var(--toastify-toast-left);
65
+ }
66
+ .Toastify__toast-container--top-center {
67
+ top: var(--toastify-toast-top);
68
+ left: 50%;
69
+ transform: translateX(-50%);
70
+ align-items: center;
71
+ }
72
+ .Toastify__toast-container--top-right {
73
+ top: var(--toastify-toast-top);
74
+ right: var(--toastify-toast-right);
75
+ align-items: end;
76
+ }
77
+ .Toastify__toast-container--bottom-left {
78
+ bottom: var(--toastify-toast-bottom);
79
+ left: var(--toastify-toast-left);
80
+ }
81
+ .Toastify__toast-container--bottom-center {
82
+ bottom: var(--toastify-toast-bottom);
83
+ left: 50%;
84
+ transform: translateX(-50%);
85
+ align-items: center;
86
+ }
87
+ .Toastify__toast-container--bottom-right {
88
+ bottom: var(--toastify-toast-bottom);
89
+ right: var(--toastify-toast-right);
90
+ align-items: end;
91
+ }
92
+
93
+ .Toastify__toast {
94
+ --y: 0;
95
+ position: relative;
96
+ touch-action: none;
97
+ width: var(--toastify-toast-width);
98
+ min-height: var(--toastify-toast-min-height);
99
+ box-sizing: border-box;
100
+ margin-bottom: 1rem;
101
+ padding: var(--toastify-toast-padding);
102
+ border-radius: var(--toastify-toast-bd-radius);
103
+ box-shadow: var(--toastify-toast-shadow);
104
+ max-height: var(--toastify-toast-max-height);
105
+ font-family: var(--toastify-font-family);
106
+ /* webkit only issue #791 */
107
+ z-index: 0;
108
+ /* inner swag */
109
+ display: flex;
110
+ flex: 1 auto;
111
+ align-items: center;
112
+ word-break: break-word;
113
+ }
114
+
115
+ @media only screen and (max-width: 480px) {
116
+ .Toastify__toast-container {
117
+ width: 100vw;
118
+ left: env(safe-area-inset-left);
119
+ margin: 0;
120
+ }
121
+ .Toastify__toast-container--top-left,
122
+ .Toastify__toast-container--top-center,
123
+ .Toastify__toast-container--top-right {
124
+ top: env(safe-area-inset-top);
125
+ transform: translateX(0);
126
+ }
127
+ .Toastify__toast-container--bottom-left,
128
+ .Toastify__toast-container--bottom-center,
129
+ .Toastify__toast-container--bottom-right {
130
+ bottom: env(safe-area-inset-bottom);
131
+ transform: translateX(0);
132
+ }
133
+ .Toastify__toast-container--rtl {
134
+ right: env(safe-area-inset-right);
135
+ left: initial;
136
+ }
137
+ .Toastify__toast {
138
+ --toastify-toast-width: 100%;
139
+ margin-bottom: 0;
140
+ border-radius: 0;
141
+ }
142
+ }
143
+
144
+ .Toastify__toast-container[data-stacked='true'] {
145
+ width: var(--toastify-toast-width);
146
+ }
147
+
148
+ .Toastify__toast--stacked {
149
+ position: absolute;
150
+ width: 100%;
151
+ transform: translate3d(0, var(--y), 0) scale(var(--s));
152
+ transition: transform 0.3s;
153
+ }
154
+
155
+ .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
156
+ .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
157
+ transition: opacity 0.1s;
158
+ }
159
+
160
+ .Toastify__toast--stacked[data-collapsed='false'] {
161
+ overflow: visible;
162
+ }
163
+
164
+ .Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
165
+ opacity: 0;
166
+ }
167
+
168
+ .Toastify__toast--stacked:after {
169
+ content: '';
170
+ position: absolute;
171
+ left: 0;
172
+ right: 0;
173
+ height: calc(var(--g) * 1px);
174
+ bottom: 100%;
175
+ }
176
+
177
+ .Toastify__toast--stacked[data-pos='top'] {
178
+ top: 0;
179
+ }
180
+
181
+ .Toastify__toast--stacked[data-pos='bot'] {
182
+ bottom: 0;
183
+ }
184
+
185
+ .Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
186
+ transform-origin: top;
187
+ }
188
+
189
+ .Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
190
+ transform-origin: bottom;
191
+ }
192
+
193
+ .Toastify__toast--stacked:before {
194
+ content: '';
195
+ position: absolute;
196
+ left: 0;
197
+ right: 0;
198
+ bottom: 0;
199
+ height: 100%;
200
+ transform: scaleY(3);
201
+ z-index: -1;
202
+ }
203
+
204
+ .Toastify__toast--rtl {
205
+ direction: rtl;
206
+ }
207
+
208
+ .Toastify__toast--close-on-click {
209
+ cursor: pointer;
210
+ }
211
+
212
+ .Toastify__toast-icon {
213
+ margin-inline-end: 10px;
214
+ width: 22px;
215
+ flex-shrink: 0;
216
+ display: flex;
217
+ }
218
+
219
+ .Toastify--animate {
220
+ animation-fill-mode: both;
221
+ animation-duration: 0.5s;
222
+ }
223
+
224
+ .Toastify--animate-icon {
225
+ animation-fill-mode: both;
226
+ animation-duration: 0.3s;
227
+ }
228
+
229
+ .Toastify__toast-theme--dark {
230
+ background: var(--toastify-color-dark);
231
+ color: var(--toastify-text-color-dark);
232
+ }
233
+
234
+ .Toastify__toast-theme--light {
235
+ background: var(--toastify-color-light);
236
+ color: var(--toastify-text-color-light);
237
+ }
238
+
239
+ .Toastify__toast-theme--colored.Toastify__toast--default {
240
+ background: var(--toastify-color-light);
241
+ color: var(--toastify-text-color-light);
242
+ }
243
+
244
+ .Toastify__toast-theme--colored.Toastify__toast--info {
245
+ color: var(--toastify-text-color-info);
246
+ background: var(--toastify-color-info);
247
+ }
248
+
249
+ .Toastify__toast-theme--colored.Toastify__toast--success {
250
+ color: var(--toastify-text-color-success);
251
+ background: var(--toastify-color-success);
252
+ }
253
+
254
+ .Toastify__toast-theme--colored.Toastify__toast--warning {
255
+ color: var(--toastify-text-color-warning);
256
+ background: var(--toastify-color-warning);
257
+ }
258
+
259
+ .Toastify__toast-theme--colored.Toastify__toast--error {
260
+ color: var(--toastify-text-color-error);
261
+ background: var(--toastify-color-error);
262
+ }
263
+
264
+ .Toastify__progress-bar-theme--light {
265
+ background: var(--toastify-color-progress-light);
266
+ }
267
+
268
+ .Toastify__progress-bar-theme--dark {
269
+ background: var(--toastify-color-progress-dark);
270
+ }
271
+
272
+ .Toastify__progress-bar--info {
273
+ background: var(--toastify-color-progress-info);
274
+ }
275
+
276
+ .Toastify__progress-bar--success {
277
+ background: var(--toastify-color-progress-success);
278
+ }
279
+
280
+ .Toastify__progress-bar--warning {
281
+ background: var(--toastify-color-progress-warning);
282
+ }
283
+
284
+ .Toastify__progress-bar--error {
285
+ background: var(--toastify-color-progress-error);
286
+ }
287
+
288
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
289
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
290
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
291
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
292
+ background: var(--toastify-color-transparent);
293
+ }
294
+
295
+ .Toastify__close-button {
296
+ color: #fff;
297
+ position: absolute;
298
+ top: 6px;
299
+ right: 6px;
300
+ background: transparent;
301
+ outline: none;
302
+ border: none;
303
+ padding: 0;
304
+ cursor: pointer;
305
+ opacity: 0.7;
306
+ transition: 0.3s ease;
307
+ z-index: 1;
308
+ }
309
+
310
+ .Toastify__toast--rtl .Toastify__close-button {
311
+ left: 6px;
312
+ right: unset;
313
+ }
314
+
315
+ .Toastify__close-button--light {
316
+ color: #000;
317
+ opacity: 0.3;
318
+ }
319
+
320
+ .Toastify__close-button > svg {
321
+ fill: currentColor;
322
+ height: 16px;
323
+ width: 14px;
324
+ }
325
+
326
+ .Toastify__close-button:hover,
327
+ .Toastify__close-button:focus {
328
+ opacity: 1;
329
+ }
330
+
331
+ @keyframes Toastify__trackProgress {
332
+ 0% {
333
+ transform: scaleX(1);
334
+ }
335
+ 100% {
336
+ transform: scaleX(0);
337
+ }
338
+ }
339
+
340
+ .Toastify__progress-bar {
341
+ position: absolute;
342
+ bottom: 0;
343
+ left: 0;
344
+ width: 100%;
345
+ height: 100%;
346
+ z-index: 1;
347
+ opacity: 0.7;
348
+ transform-origin: left;
349
+ }
350
+
351
+ .Toastify__progress-bar--animated {
352
+ animation: Toastify__trackProgress linear 1 forwards;
353
+ }
354
+
355
+ .Toastify__progress-bar--controlled {
356
+ transition: transform 0.2s;
357
+ }
358
+
359
+ .Toastify__progress-bar--rtl {
360
+ right: 0;
361
+ left: initial;
362
+ transform-origin: right;
363
+ border-bottom-left-radius: initial;
364
+ }
365
+
366
+ .Toastify__progress-bar--wrp {
367
+ position: absolute;
368
+ overflow: hidden;
369
+ bottom: 0;
370
+ left: 0;
371
+ width: 100%;
372
+ height: 5px;
373
+ border-bottom-left-radius: var(--toastify-toast-bd-radius);
374
+ border-bottom-right-radius: var(--toastify-toast-bd-radius);
375
+ }
376
+
377
+ .Toastify__progress-bar--wrp[data-hidden='true'] {
378
+ opacity: 0;
379
+ }
380
+
381
+ .Toastify__progress-bar--bg {
382
+ opacity: var(--toastify-color-progress-bgo);
383
+ width: 100%;
384
+ height: 100%;
385
+ }
386
+
387
+ .Toastify__spinner {
388
+ width: 20px;
389
+ height: 20px;
390
+ box-sizing: border-box;
391
+ border: 2px solid;
392
+ border-radius: 100%;
393
+ border-color: var(--toastify-spinner-color-empty-area);
394
+ border-right-color: var(--toastify-spinner-color);
395
+ animation: Toastify__spin 0.65s linear infinite;
396
+ }
397
+
398
+ @keyframes Toastify__bounceInRight {
399
+ from,
400
+ 60%,
401
+ 75%,
402
+ 90%,
403
+ to {
404
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
405
+ }
406
+ from {
407
+ opacity: 0;
408
+ transform: translate3d(3000px, 0, 0);
409
+ }
410
+ 60% {
411
+ opacity: 1;
412
+ transform: translate3d(-25px, 0, 0);
413
+ }
414
+ 75% {
415
+ transform: translate3d(10px, 0, 0);
416
+ }
417
+ 90% {
418
+ transform: translate3d(-5px, 0, 0);
419
+ }
420
+ to {
421
+ transform: none;
422
+ }
423
+ }
424
+
425
+ @keyframes Toastify__bounceOutRight {
426
+ 20% {
427
+ opacity: 1;
428
+ transform: translate3d(-20px, var(--y), 0);
429
+ }
430
+ to {
431
+ opacity: 0;
432
+ transform: translate3d(2000px, var(--y), 0);
433
+ }
434
+ }
435
+
436
+ @keyframes Toastify__bounceInLeft {
437
+ from,
438
+ 60%,
439
+ 75%,
440
+ 90%,
441
+ to {
442
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
443
+ }
444
+ 0% {
445
+ opacity: 0;
446
+ transform: translate3d(-3000px, 0, 0);
447
+ }
448
+ 60% {
449
+ opacity: 1;
450
+ transform: translate3d(25px, 0, 0);
451
+ }
452
+ 75% {
453
+ transform: translate3d(-10px, 0, 0);
454
+ }
455
+ 90% {
456
+ transform: translate3d(5px, 0, 0);
457
+ }
458
+ to {
459
+ transform: none;
460
+ }
461
+ }
462
+
463
+ @keyframes Toastify__bounceOutLeft {
464
+ 20% {
465
+ opacity: 1;
466
+ transform: translate3d(20px, var(--y), 0);
467
+ }
468
+ to {
469
+ opacity: 0;
470
+ transform: translate3d(-2000px, var(--y), 0);
471
+ }
472
+ }
473
+
474
+ @keyframes Toastify__bounceInUp {
475
+ from,
476
+ 60%,
477
+ 75%,
478
+ 90%,
479
+ to {
480
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
481
+ }
482
+ from {
483
+ opacity: 0;
484
+ transform: translate3d(0, 3000px, 0);
485
+ }
486
+ 60% {
487
+ opacity: 1;
488
+ transform: translate3d(0, -20px, 0);
489
+ }
490
+ 75% {
491
+ transform: translate3d(0, 10px, 0);
492
+ }
493
+ 90% {
494
+ transform: translate3d(0, -5px, 0);
495
+ }
496
+ to {
497
+ transform: translate3d(0, 0, 0);
498
+ }
499
+ }
500
+
501
+ @keyframes Toastify__bounceOutUp {
502
+ 20% {
503
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
504
+ }
505
+ 40%,
506
+ 45% {
507
+ opacity: 1;
508
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
509
+ }
510
+ to {
511
+ opacity: 0;
512
+ transform: translate3d(0, -2000px, 0);
513
+ }
514
+ }
515
+
516
+ @keyframes Toastify__bounceInDown {
517
+ from,
518
+ 60%,
519
+ 75%,
520
+ 90%,
521
+ to {
522
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
523
+ }
524
+ 0% {
525
+ opacity: 0;
526
+ transform: translate3d(0, -3000px, 0);
527
+ }
528
+ 60% {
529
+ opacity: 1;
530
+ transform: translate3d(0, 25px, 0);
531
+ }
532
+ 75% {
533
+ transform: translate3d(0, -10px, 0);
534
+ }
535
+ 90% {
536
+ transform: translate3d(0, 5px, 0);
537
+ }
538
+ to {
539
+ transform: none;
540
+ }
541
+ }
542
+
543
+ @keyframes Toastify__bounceOutDown {
544
+ 20% {
545
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
546
+ }
547
+ 40%,
548
+ 45% {
549
+ opacity: 1;
550
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
551
+ }
552
+ to {
553
+ opacity: 0;
554
+ transform: translate3d(0, 2000px, 0);
555
+ }
556
+ }
557
+
558
+ .Toastify__bounce-enter--top-left,
559
+ .Toastify__bounce-enter--bottom-left {
560
+ animation-name: Toastify__bounceInLeft;
561
+ }
562
+
563
+ .Toastify__bounce-enter--top-right,
564
+ .Toastify__bounce-enter--bottom-right {
565
+ animation-name: Toastify__bounceInRight;
566
+ }
567
+
568
+ .Toastify__bounce-enter--top-center {
569
+ animation-name: Toastify__bounceInDown;
570
+ }
571
+
572
+ .Toastify__bounce-enter--bottom-center {
573
+ animation-name: Toastify__bounceInUp;
574
+ }
575
+
576
+ .Toastify__bounce-exit--top-left,
577
+ .Toastify__bounce-exit--bottom-left {
578
+ animation-name: Toastify__bounceOutLeft;
579
+ }
580
+
581
+ .Toastify__bounce-exit--top-right,
582
+ .Toastify__bounce-exit--bottom-right {
583
+ animation-name: Toastify__bounceOutRight;
584
+ }
585
+
586
+ .Toastify__bounce-exit--top-center {
587
+ animation-name: Toastify__bounceOutUp;
588
+ }
589
+
590
+ .Toastify__bounce-exit--bottom-center {
591
+ animation-name: Toastify__bounceOutDown;
592
+ }
593
+
594
+ @keyframes Toastify__zoomIn {
595
+ from {
596
+ opacity: 0;
597
+ transform: scale3d(0.3, 0.3, 0.3);
598
+ }
599
+ 50% {
600
+ opacity: 1;
601
+ }
602
+ }
603
+
604
+ @keyframes Toastify__zoomOut {
605
+ from {
606
+ opacity: 1;
607
+ }
608
+ 50% {
609
+ opacity: 0;
610
+ transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
611
+ }
612
+ to {
613
+ opacity: 0;
614
+ }
615
+ }
616
+
617
+ .Toastify__zoom-enter {
618
+ animation-name: Toastify__zoomIn;
619
+ }
620
+
621
+ .Toastify__zoom-exit {
622
+ animation-name: Toastify__zoomOut;
623
+ }
624
+
625
+ @keyframes Toastify__flipIn {
626
+ from {
627
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
628
+ animation-timing-function: ease-in;
629
+ opacity: 0;
630
+ }
631
+ 40% {
632
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
633
+ animation-timing-function: ease-in;
634
+ }
635
+ 60% {
636
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
637
+ opacity: 1;
638
+ }
639
+ 80% {
640
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
641
+ }
642
+ to {
643
+ transform: perspective(400px);
644
+ }
645
+ }
646
+
647
+ @keyframes Toastify__flipOut {
648
+ from {
649
+ transform: translate3d(0, var(--y), 0) perspective(400px);
650
+ }
651
+ 30% {
652
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
653
+ opacity: 1;
654
+ }
655
+ to {
656
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
657
+ opacity: 0;
658
+ }
659
+ }
660
+
661
+ .Toastify__flip-enter {
662
+ animation-name: Toastify__flipIn;
663
+ }
664
+
665
+ .Toastify__flip-exit {
666
+ animation-name: Toastify__flipOut;
667
+ }
668
+
669
+ @keyframes Toastify__slideInRight {
670
+ from {
671
+ transform: translate3d(110%, 0, 0);
672
+ visibility: visible;
673
+ }
674
+ to {
675
+ transform: translate3d(0, var(--y), 0);
676
+ }
677
+ }
678
+
679
+ @keyframes Toastify__slideInLeft {
680
+ from {
681
+ transform: translate3d(-110%, 0, 0);
682
+ visibility: visible;
683
+ }
684
+ to {
685
+ transform: translate3d(0, var(--y), 0);
686
+ }
687
+ }
688
+
689
+ @keyframes Toastify__slideInUp {
690
+ from {
691
+ transform: translate3d(0, 110%, 0);
692
+ visibility: visible;
693
+ }
694
+ to {
695
+ transform: translate3d(0, var(--y), 0);
696
+ }
697
+ }
698
+
699
+ @keyframes Toastify__slideInDown {
700
+ from {
701
+ transform: translate3d(0, -110%, 0);
702
+ visibility: visible;
703
+ }
704
+ to {
705
+ transform: translate3d(0, var(--y), 0);
706
+ }
707
+ }
708
+
709
+ @keyframes Toastify__slideOutRight {
710
+ from {
711
+ transform: translate3d(0, var(--y), 0);
712
+ }
713
+ to {
714
+ visibility: hidden;
715
+ transform: translate3d(110%, var(--y), 0);
716
+ }
717
+ }
718
+
719
+ @keyframes Toastify__slideOutLeft {
720
+ from {
721
+ transform: translate3d(0, var(--y), 0);
722
+ }
723
+ to {
724
+ visibility: hidden;
725
+ transform: translate3d(-110%, var(--y), 0);
726
+ }
727
+ }
728
+
729
+ @keyframes Toastify__slideOutDown {
730
+ from {
731
+ transform: translate3d(0, var(--y), 0);
732
+ }
733
+ to {
734
+ visibility: hidden;
735
+ transform: translate3d(0, 500px, 0);
736
+ }
737
+ }
738
+
739
+ @keyframes Toastify__slideOutUp {
740
+ from {
741
+ transform: translate3d(0, var(--y), 0);
742
+ }
743
+ to {
744
+ visibility: hidden;
745
+ transform: translate3d(0, -500px, 0);
746
+ }
747
+ }
748
+
749
+ .Toastify__slide-enter--top-left,
750
+ .Toastify__slide-enter--bottom-left {
751
+ animation-name: Toastify__slideInLeft;
752
+ }
753
+
754
+ .Toastify__slide-enter--top-right,
755
+ .Toastify__slide-enter--bottom-right {
756
+ animation-name: Toastify__slideInRight;
757
+ }
758
+
759
+ .Toastify__slide-enter--top-center {
760
+ animation-name: Toastify__slideInDown;
761
+ }
762
+
763
+ .Toastify__slide-enter--bottom-center {
764
+ animation-name: Toastify__slideInUp;
765
+ }
766
+
767
+ .Toastify__slide-exit--top-left,
768
+ .Toastify__slide-exit--bottom-left {
769
+ animation-name: Toastify__slideOutLeft;
770
+ animation-timing-function: ease-in;
771
+ animation-duration: 0.3s;
772
+ }
773
+
774
+ .Toastify__slide-exit--top-right,
775
+ .Toastify__slide-exit--bottom-right {
776
+ animation-name: Toastify__slideOutRight;
777
+ animation-timing-function: ease-in;
778
+ animation-duration: 0.3s;
779
+ }
780
+
781
+ .Toastify__slide-exit--top-center {
782
+ animation-name: Toastify__slideOutUp;
783
+ animation-timing-function: ease-in;
784
+ animation-duration: 0.3s;
785
+ }
786
+
787
+ .Toastify__slide-exit--bottom-center {
788
+ animation-name: Toastify__slideOutDown;
789
+ animation-timing-function: ease-in;
790
+ animation-duration: 0.3s;
791
+ }
792
+
793
+ @keyframes Toastify__spin {
794
+ from {
795
+ transform: rotate(0deg);
796
+ }
797
+ to {
798
+ transform: rotate(360deg);
799
+ }
800
+ }
801
+
1
802
  @import url("https://fonts.googleapis.com/css?family=Share+Tech+Mono|Montserrat:700");
2
803
  * {
3
804
  margin: 0;
@@ -115,8 +916,8 @@
115
916
  **/
116
917
  /* override the !default vars with the values we set above */
117
918
  /*!
118
- * Bootstrap v5.3.3 (https://getbootstrap.com/)
119
- * Copyright 2011-2024 The Bootstrap Authors
919
+ * Bootstrap v5.3.7 (https://getbootstrap.com/)
920
+ * Copyright 2011-2025 The Bootstrap Authors
120
921
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
121
922
  */
122
923
  :root,
@@ -160,28 +961,28 @@
160
961
  --bs-danger-rgb: 220, 53, 69;
161
962
  --bs-light-rgb: 248, 249, 250;
162
963
  --bs-dark-rgb: 33, 37, 41;
163
- --bs-primary-text-emphasis: #052c65;
164
- --bs-secondary-text-emphasis: #2b2f32;
165
- --bs-success-text-emphasis: #0a3622;
166
- --bs-info-text-emphasis: #055160;
167
- --bs-warning-text-emphasis: #664d03;
168
- --bs-danger-text-emphasis: #58151c;
964
+ --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
965
+ --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
966
+ --bs-success-text-emphasis: rgb(10, 54, 33.6);
967
+ --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
968
+ --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
969
+ --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
169
970
  --bs-light-text-emphasis: #495057;
170
971
  --bs-dark-text-emphasis: #495057;
171
- --bs-primary-bg-subtle: #cfe2ff;
172
- --bs-secondary-bg-subtle: #e2e3e5;
173
- --bs-success-bg-subtle: #d1e7dd;
174
- --bs-info-bg-subtle: #cff4fc;
175
- --bs-warning-bg-subtle: #fff3cd;
176
- --bs-danger-bg-subtle: #f8d7da;
177
- --bs-light-bg-subtle: #fcfcfd;
972
+ --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
973
+ --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
974
+ --bs-success-bg-subtle: rgb(209, 231, 220.8);
975
+ --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
976
+ --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
977
+ --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
978
+ --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
178
979
  --bs-dark-bg-subtle: #ced4da;
179
- --bs-primary-border-subtle: #9ec5fe;
180
- --bs-secondary-border-subtle: #c4c8cb;
181
- --bs-success-border-subtle: #a3cfbb;
182
- --bs-info-border-subtle: #9eeaf9;
183
- --bs-warning-border-subtle: #ffe69c;
184
- --bs-danger-border-subtle: #f1aeb5;
980
+ --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
981
+ --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
982
+ --bs-success-border-subtle: rgb(163, 207, 186.6);
983
+ --bs-info-border-subtle: rgb(158.2, 233.8, 249);
984
+ --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
985
+ --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
185
986
  --bs-light-border-subtle: #e9ecef;
186
987
  --bs-dark-border-subtle: #adb5bd;
187
988
  --bs-white-rgb: 255, 255, 255;
@@ -211,11 +1012,11 @@
211
1012
  --bs-link-color: #0d6efd;
212
1013
  --bs-link-color-rgb: 13, 110, 253;
213
1014
  --bs-link-decoration: underline;
214
- --bs-link-hover-color: #0a58ca;
1015
+ --bs-link-hover-color: rgb(10.4, 88, 202.4);
215
1016
  --bs-link-hover-color-rgb: 10, 88, 202;
216
1017
  --bs-code-color: #d63384;
217
1018
  --bs-highlight-color: #212529;
218
- --bs-highlight-bg: #fff3cd;
1019
+ --bs-highlight-bg: rgb(255, 242.6, 205.4);
219
1020
  --bs-border-width: 1px;
220
1021
  --bs-border-style: solid;
221
1022
  --bs-border-color: #dee2e6;
@@ -254,46 +1055,46 @@
254
1055
  --bs-secondary-bg-rgb: 52, 58, 64;
255
1056
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
256
1057
  --bs-tertiary-color-rgb: 222, 226, 230;
257
- --bs-tertiary-bg: #2b3035;
1058
+ --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
258
1059
  --bs-tertiary-bg-rgb: 43, 48, 53;
259
- --bs-primary-text-emphasis: #6ea8fe;
260
- --bs-secondary-text-emphasis: #a7acb1;
261
- --bs-success-text-emphasis: #75b798;
262
- --bs-info-text-emphasis: #6edff6;
263
- --bs-warning-text-emphasis: #ffda6a;
264
- --bs-danger-text-emphasis: #ea868f;
1060
+ --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
1061
+ --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
1062
+ --bs-success-text-emphasis: rgb(117, 183, 152.4);
1063
+ --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
1064
+ --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
1065
+ --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
265
1066
  --bs-light-text-emphasis: #f8f9fa;
266
1067
  --bs-dark-text-emphasis: #dee2e6;
267
- --bs-primary-bg-subtle: #031633;
268
- --bs-secondary-bg-subtle: #161719;
269
- --bs-success-bg-subtle: #051b11;
270
- --bs-info-bg-subtle: #032830;
271
- --bs-warning-bg-subtle: #332701;
272
- --bs-danger-bg-subtle: #2c0b0e;
1068
+ --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
1069
+ --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
1070
+ --bs-success-bg-subtle: rgb(5, 27, 16.8);
1071
+ --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
1072
+ --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
1073
+ --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
273
1074
  --bs-light-bg-subtle: #343a40;
274
1075
  --bs-dark-bg-subtle: #1a1d20;
275
- --bs-primary-border-subtle: #084298;
276
- --bs-secondary-border-subtle: #41464b;
277
- --bs-success-border-subtle: #0f5132;
278
- --bs-info-border-subtle: #087990;
279
- --bs-warning-border-subtle: #997404;
280
- --bs-danger-border-subtle: #842029;
1076
+ --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
1077
+ --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
1078
+ --bs-success-border-subtle: rgb(15, 81, 50.4);
1079
+ --bs-info-border-subtle: rgb(7.8, 121.2, 144);
1080
+ --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
1081
+ --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
281
1082
  --bs-light-border-subtle: #495057;
282
1083
  --bs-dark-border-subtle: #343a40;
283
1084
  --bs-heading-color: inherit;
284
- --bs-link-color: #6ea8fe;
285
- --bs-link-hover-color: #8bb9fe;
1085
+ --bs-link-color: rgb(109.8, 168, 253.8);
1086
+ --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
286
1087
  --bs-link-color-rgb: 110, 168, 254;
287
1088
  --bs-link-hover-color-rgb: 139, 185, 254;
288
- --bs-code-color: #e685b5;
1089
+ --bs-code-color: rgb(230.4, 132.6, 181.2);
289
1090
  --bs-highlight-color: #dee2e6;
290
- --bs-highlight-bg: #664d03;
1091
+ --bs-highlight-bg: rgb(102, 77.2, 2.8);
291
1092
  --bs-border-color: #495057;
292
1093
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
293
- --bs-form-valid-color: #75b798;
294
- --bs-form-valid-border-color: #75b798;
295
- --bs-form-invalid-color: #ea868f;
296
- --bs-form-invalid-border-color: #ea868f;
1094
+ --bs-form-valid-color: rgb(117, 183, 152.4);
1095
+ --bs-form-valid-border-color: rgb(117, 183, 152.4);
1096
+ --bs-form-invalid-color: rgb(234, 133.8, 143.4);
1097
+ --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
297
1098
  }
298
1099
 
299
1100
  *,
@@ -632,8 +1433,8 @@ legend {
632
1433
  width: 100%;
633
1434
  padding: 0;
634
1435
  margin-bottom: 0.5rem;
635
- font-size: calc(1.275rem + 0.3vw);
636
1436
  line-height: inherit;
1437
+ font-size: calc(1.275rem + 0.3vw);
637
1438
  }
638
1439
  @media (min-width: 1200px) {
639
1440
  legend {
@@ -711,9 +1512,9 @@ progress {
711
1512
  }
712
1513
 
713
1514
  .P4ARRgc {
714
- font-size: calc(1.625rem + 4.5vw);
715
1515
  font-weight: 300;
716
1516
  line-height: 1.2;
1517
+ font-size: calc(1.625rem + 4.5vw);
717
1518
  }
718
1519
  @media (min-width: 1200px) {
719
1520
  .P4ARRgc {
@@ -722,9 +1523,9 @@ progress {
722
1523
  }
723
1524
 
724
1525
  .XMjMO6q {
725
- font-size: calc(1.575rem + 3.9vw);
726
1526
  font-weight: 300;
727
1527
  line-height: 1.2;
1528
+ font-size: calc(1.575rem + 3.9vw);
728
1529
  }
729
1530
  @media (min-width: 1200px) {
730
1531
  .XMjMO6q {
@@ -733,9 +1534,9 @@ progress {
733
1534
  }
734
1535
 
735
1536
  ._6xLyu0w {
736
- font-size: calc(1.525rem + 3.3vw);
737
1537
  font-weight: 300;
738
1538
  line-height: 1.2;
1539
+ font-size: calc(1.525rem + 3.3vw);
739
1540
  }
740
1541
  @media (min-width: 1200px) {
741
1542
  ._6xLyu0w {
@@ -744,9 +1545,9 @@ progress {
744
1545
  }
745
1546
 
746
1547
  .k4ZIX30 {
747
- font-size: calc(1.475rem + 2.7vw);
748
1548
  font-weight: 300;
749
1549
  line-height: 1.2;
1550
+ font-size: calc(1.475rem + 2.7vw);
750
1551
  }
751
1552
  @media (min-width: 1200px) {
752
1553
  .k4ZIX30 {
@@ -755,9 +1556,9 @@ progress {
755
1556
  }
756
1557
 
757
1558
  .i1-qVHB {
758
- font-size: calc(1.425rem + 2.1vw);
759
1559
  font-weight: 300;
760
1560
  line-height: 1.2;
1561
+ font-size: calc(1.425rem + 2.1vw);
761
1562
  }
762
1563
  @media (min-width: 1200px) {
763
1564
  .i1-qVHB {
@@ -766,9 +1567,9 @@ progress {
766
1567
  }
767
1568
 
768
1569
  .lgybFLn {
769
- font-size: calc(1.375rem + 1.5vw);
770
1570
  font-weight: 300;
771
1571
  line-height: 1.2;
1572
+ font-size: calc(1.375rem + 1.5vw);
772
1573
  }
773
1574
  @media (min-width: 1200px) {
774
1575
  .lgybFLn {
@@ -925,7 +1726,7 @@ progress {
925
1726
  }
926
1727
 
927
1728
  .xI2Yjqd {
928
- flex: 1 0 0%;
1729
+ flex: 1 0 0;
929
1730
  }
930
1731
 
931
1732
  .JlKekaG > * {
@@ -1134,7 +1935,7 @@ progress {
1134
1935
 
1135
1936
  @media (min-width: 375px) {
1136
1937
  .r-6VcpS {
1137
- flex: 1 0 0%;
1938
+ flex: 1 0 0;
1138
1939
  }
1139
1940
  .W1OXGDZ > * {
1140
1941
  flex: 0 0 auto;
@@ -1303,7 +2104,7 @@ progress {
1303
2104
  }
1304
2105
  @media (min-width: 576px) {
1305
2106
  .O3lEq6F {
1306
- flex: 1 0 0%;
2107
+ flex: 1 0 0;
1307
2108
  }
1308
2109
  .b5nEr42 > * {
1309
2110
  flex: 0 0 auto;
@@ -1472,7 +2273,7 @@ progress {
1472
2273
  }
1473
2274
  @media (min-width: 768px) {
1474
2275
  .u7dBJz- {
1475
- flex: 1 0 0%;
2276
+ flex: 1 0 0;
1476
2277
  }
1477
2278
  .UKQW1YA > * {
1478
2279
  flex: 0 0 auto;
@@ -1641,7 +2442,7 @@ progress {
1641
2442
  }
1642
2443
  @media (min-width: 992px) {
1643
2444
  ._7LB5ohn {
1644
- flex: 1 0 0%;
2445
+ flex: 1 0 0;
1645
2446
  }
1646
2447
  .OP7uBS5 > * {
1647
2448
  flex: 0 0 auto;
@@ -1810,7 +2611,7 @@ progress {
1810
2611
  }
1811
2612
  @media (min-width: 1200px) {
1812
2613
  .Ybe-wI4 {
1813
- flex: 1 0 0%;
2614
+ flex: 1 0 0;
1814
2615
  }
1815
2616
  ._4em7efb > * {
1816
2617
  flex: 0 0 auto;
@@ -1979,7 +2780,7 @@ progress {
1979
2780
  }
1980
2781
  @media (min-width: 1400px) {
1981
2782
  .QS1QjGq {
1982
- flex: 1 0 0%;
2783
+ flex: 1 0 0;
1983
2784
  }
1984
2785
  .Zk95Wii > * {
1985
2786
  flex: 0 0 auto;
@@ -2228,13 +3029,13 @@ progress {
2228
3029
 
2229
3030
  .WvKWFRQ {
2230
3031
  --bs-table-color: #000;
2231
- --bs-table-bg: #cfe2ff;
2232
- --bs-table-border-color: #a6b5cc;
2233
- --bs-table-striped-bg: #c5d7f2;
3032
+ --bs-table-bg: rgb(206.6, 226, 254.6);
3033
+ --bs-table-border-color: rgb(165.28, 180.8, 203.68);
3034
+ --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
2234
3035
  --bs-table-striped-color: #000;
2235
- --bs-table-active-bg: #bacbe6;
3036
+ --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
2236
3037
  --bs-table-active-color: #000;
2237
- --bs-table-hover-bg: #bfd1ec;
3038
+ --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
2238
3039
  --bs-table-hover-color: #000;
2239
3040
  color: var(--bs-table-color);
2240
3041
  border-color: var(--bs-table-border-color);
@@ -2242,13 +3043,13 @@ progress {
2242
3043
 
2243
3044
  .-WbhEsQ {
2244
3045
  --bs-table-color: #000;
2245
- --bs-table-bg: #e2e3e5;
2246
- --bs-table-border-color: #b5b6b7;
2247
- --bs-table-striped-bg: #d7d8da;
3046
+ --bs-table-bg: rgb(225.6, 227.4, 229);
3047
+ --bs-table-border-color: rgb(180.48, 181.92, 183.2);
3048
+ --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
2248
3049
  --bs-table-striped-color: #000;
2249
- --bs-table-active-bg: #cbccce;
3050
+ --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
2250
3051
  --bs-table-active-color: #000;
2251
- --bs-table-hover-bg: #d1d2d4;
3052
+ --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
2252
3053
  --bs-table-hover-color: #000;
2253
3054
  color: var(--bs-table-color);
2254
3055
  border-color: var(--bs-table-border-color);
@@ -2256,13 +3057,13 @@ progress {
2256
3057
 
2257
3058
  .xXiGHTn {
2258
3059
  --bs-table-color: #000;
2259
- --bs-table-bg: #d1e7dd;
2260
- --bs-table-border-color: #a7b9b1;
2261
- --bs-table-striped-bg: #c7dbd2;
3060
+ --bs-table-bg: rgb(209, 231, 220.8);
3061
+ --bs-table-border-color: rgb(167.2, 184.8, 176.64);
3062
+ --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
2262
3063
  --bs-table-striped-color: #000;
2263
- --bs-table-active-bg: #bcd0c7;
3064
+ --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
2264
3065
  --bs-table-active-color: #000;
2265
- --bs-table-hover-bg: #c1d6cc;
3066
+ --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
2266
3067
  --bs-table-hover-color: #000;
2267
3068
  color: var(--bs-table-color);
2268
3069
  border-color: var(--bs-table-border-color);
@@ -2270,13 +3071,13 @@ progress {
2270
3071
 
2271
3072
  .ZVODab3 {
2272
3073
  --bs-table-color: #000;
2273
- --bs-table-bg: #cff4fc;
2274
- --bs-table-border-color: #a6c3ca;
2275
- --bs-table-striped-bg: #c5e8ef;
3074
+ --bs-table-bg: rgb(206.6, 244.4, 252);
3075
+ --bs-table-border-color: rgb(165.28, 195.52, 201.6);
3076
+ --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
2276
3077
  --bs-table-striped-color: #000;
2277
- --bs-table-active-bg: #badce3;
3078
+ --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
2278
3079
  --bs-table-active-color: #000;
2279
- --bs-table-hover-bg: #bfe2e9;
3080
+ --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
2280
3081
  --bs-table-hover-color: #000;
2281
3082
  color: var(--bs-table-color);
2282
3083
  border-color: var(--bs-table-border-color);
@@ -2284,13 +3085,13 @@ progress {
2284
3085
 
2285
3086
  .inmIIoc {
2286
3087
  --bs-table-color: #000;
2287
- --bs-table-bg: #fff3cd;
2288
- --bs-table-border-color: #ccc2a4;
2289
- --bs-table-striped-bg: #f2e7c3;
3088
+ --bs-table-bg: rgb(255, 242.6, 205.4);
3089
+ --bs-table-border-color: rgb(204, 194.08, 164.32);
3090
+ --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
2290
3091
  --bs-table-striped-color: #000;
2291
- --bs-table-active-bg: #e6dbb9;
3092
+ --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
2292
3093
  --bs-table-active-color: #000;
2293
- --bs-table-hover-bg: #ece1be;
3094
+ --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
2294
3095
  --bs-table-hover-color: #000;
2295
3096
  color: var(--bs-table-color);
2296
3097
  border-color: var(--bs-table-border-color);
@@ -2298,13 +3099,13 @@ progress {
2298
3099
 
2299
3100
  .zCQpCdD {
2300
3101
  --bs-table-color: #000;
2301
- --bs-table-bg: #f8d7da;
2302
- --bs-table-border-color: #c6acae;
2303
- --bs-table-striped-bg: #eccccf;
3102
+ --bs-table-bg: rgb(248, 214.6, 217.8);
3103
+ --bs-table-border-color: rgb(198.4, 171.68, 174.24);
3104
+ --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
2304
3105
  --bs-table-striped-color: #000;
2305
- --bs-table-active-bg: #dfc2c4;
3106
+ --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
2306
3107
  --bs-table-active-color: #000;
2307
- --bs-table-hover-bg: #e5c7ca;
3108
+ --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
2308
3109
  --bs-table-hover-color: #000;
2309
3110
  color: var(--bs-table-color);
2310
3111
  border-color: var(--bs-table-border-color);
@@ -2313,12 +3114,12 @@ progress {
2313
3114
  .-sb0H3L {
2314
3115
  --bs-table-color: #000;
2315
3116
  --bs-table-bg: #f8f9fa;
2316
- --bs-table-border-color: #c6c7c8;
2317
- --bs-table-striped-bg: #ecedee;
3117
+ --bs-table-border-color: rgb(198.4, 199.2, 200);
3118
+ --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
2318
3119
  --bs-table-striped-color: #000;
2319
- --bs-table-active-bg: #dfe0e1;
3120
+ --bs-table-active-bg: rgb(223.2, 224.1, 225);
2320
3121
  --bs-table-active-color: #000;
2321
- --bs-table-hover-bg: #e5e6e7;
3122
+ --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
2322
3123
  --bs-table-hover-color: #000;
2323
3124
  color: var(--bs-table-color);
2324
3125
  border-color: var(--bs-table-border-color);
@@ -2327,12 +3128,12 @@ progress {
2327
3128
  .NYnwdK6 {
2328
3129
  --bs-table-color: #fff;
2329
3130
  --bs-table-bg: #212529;
2330
- --bs-table-border-color: #4d5154;
2331
- --bs-table-striped-bg: #2c3034;
3131
+ --bs-table-border-color: rgb(77.4, 80.6, 83.8);
3132
+ --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
2332
3133
  --bs-table-striped-color: #fff;
2333
- --bs-table-active-bg: #373b3e;
3134
+ --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
2334
3135
  --bs-table-active-color: #fff;
2335
- --bs-table-hover-bg: #323539;
3136
+ --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
2336
3137
  --bs-table-hover-color: #fff;
2337
3138
  color: var(--bs-table-color);
2338
3139
  border-color: var(--bs-table-border-color);
@@ -2440,7 +3241,7 @@ progress {
2440
3241
  .q6RqDMR:focus {
2441
3242
  color: var(--bs-body-color);
2442
3243
  background-color: var(--bs-body-bg);
2443
- border-color: #86b7fe;
3244
+ border-color: rgb(134, 182.5, 254);
2444
3245
  outline: 0;
2445
3246
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2446
3247
  }
@@ -2591,7 +3392,7 @@ textarea.Qfp5feW {
2591
3392
  }
2592
3393
  }
2593
3394
  .WtaVD8x:focus {
2594
- border-color: #86b7fe;
3395
+ border-color: rgb(134, 182.5, 254);
2595
3396
  outline: 0;
2596
3397
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2597
3398
  }
@@ -2678,7 +3479,7 @@ textarea.Qfp5feW {
2678
3479
  filter: brightness(90%);
2679
3480
  }
2680
3481
  .d7dZZ7e:focus {
2681
- border-color: #86b7fe;
3482
+ border-color: rgb(134, 182.5, 254);
2682
3483
  outline: 0;
2683
3484
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
2684
3485
  }
@@ -2725,7 +3526,7 @@ textarea.Qfp5feW {
2725
3526
  }
2726
3527
  }
2727
3528
  ._956-NSs .d7dZZ7e:focus {
2728
- --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
3529
+ --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
2729
3530
  }
2730
3531
  ._956-NSs .d7dZZ7e:checked {
2731
3532
  background-position: right center;
@@ -2800,7 +3601,7 @@ textarea.Qfp5feW {
2800
3601
  }
2801
3602
  }
2802
3603
  .gG-l31P::-webkit-slider-thumb:active {
2803
- background-color: #b6d4fe;
3604
+ background-color: rgb(182.4, 211.5, 254.4);
2804
3605
  }
2805
3606
  .gG-l31P::-webkit-slider-runnable-track {
2806
3607
  width: 100%;
@@ -2829,7 +3630,7 @@ textarea.Qfp5feW {
2829
3630
  }
2830
3631
  }
2831
3632
  .gG-l31P::-moz-range-thumb:active {
2832
- background-color: #b6d4fe;
3633
+ background-color: rgb(182.4, 211.5, 254.4);
2833
3634
  }
2834
3635
  .gG-l31P::-moz-range-track {
2835
3636
  width: 100%;
@@ -2865,9 +3666,11 @@ textarea.Qfp5feW {
2865
3666
  top: 0;
2866
3667
  left: 0;
2867
3668
  z-index: 2;
3669
+ max-width: 100%;
2868
3670
  height: 100%;
2869
3671
  padding: 1rem 0.75rem;
2870
3672
  overflow: hidden;
3673
+ color: rgba(var(--bs-body-color-rgb), 0.65);
2871
3674
  text-align: start;
2872
3675
  text-overflow: ellipsis;
2873
3676
  white-space: nowrap;
@@ -2892,7 +3695,7 @@ textarea.Qfp5feW {
2892
3695
  .PAZ5PRe > .NjpfLhw::placeholder {
2893
3696
  color: transparent;
2894
3697
  }
2895
- .PAZ5PRe > .q6RqDMR:not(:-moz-placeholder-shown), .PAZ5PRe > .NjpfLhw:not(:-moz-placeholder-shown) {
3698
+ .PAZ5PRe > .q6RqDMR:not(:-moz-placeholder), .PAZ5PRe > .NjpfLhw:not(:-moz-placeholder) {
2896
3699
  padding-top: 1.625rem;
2897
3700
  padding-bottom: 0.625rem;
2898
3701
  }
@@ -2910,19 +3713,21 @@ textarea.Qfp5feW {
2910
3713
  .PAZ5PRe > .WtaVD8x {
2911
3714
  padding-top: 1.625rem;
2912
3715
  padding-bottom: 0.625rem;
3716
+ padding-left: 0.75rem;
2913
3717
  }
2914
- .PAZ5PRe > .q6RqDMR:not(:-moz-placeholder-shown) ~ label {
2915
- color: rgba(var(--bs-body-color-rgb), 0.65);
3718
+ .PAZ5PRe > .q6RqDMR:not(:-moz-placeholder) ~ label {
2916
3719
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2917
3720
  }
2918
3721
  .PAZ5PRe > .q6RqDMR:focus ~ label,
2919
3722
  .PAZ5PRe > .q6RqDMR:not(:placeholder-shown) ~ label,
2920
3723
  .PAZ5PRe > .NjpfLhw ~ label,
2921
3724
  .PAZ5PRe > .WtaVD8x ~ label {
2922
- color: rgba(var(--bs-body-color-rgb), 0.65);
2923
3725
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2924
3726
  }
2925
- .PAZ5PRe > .q6RqDMR:not(:-moz-placeholder-shown) ~ label::after {
3727
+ .PAZ5PRe > .q6RqDMR:-webkit-autofill ~ label {
3728
+ transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3729
+ }
3730
+ .PAZ5PRe > textarea:not(:-moz-placeholder) ~ label::after {
2926
3731
  position: absolute;
2927
3732
  inset: 1rem 0.375rem;
2928
3733
  z-index: -1;
@@ -2931,10 +3736,8 @@ textarea.Qfp5feW {
2931
3736
  background-color: var(--bs-body-bg);
2932
3737
  border-radius: var(--bs-border-radius);
2933
3738
  }
2934
- .PAZ5PRe > .q6RqDMR:focus ~ label::after,
2935
- .PAZ5PRe > .q6RqDMR:not(:placeholder-shown) ~ label::after,
2936
- .PAZ5PRe > .NjpfLhw ~ label::after,
2937
- .PAZ5PRe > .WtaVD8x ~ label::after {
3739
+ .PAZ5PRe > textarea:focus ~ label::after,
3740
+ .PAZ5PRe > textarea:not(:placeholder-shown) ~ label::after {
2938
3741
  position: absolute;
2939
3742
  inset: 1rem 0.375rem;
2940
3743
  z-index: -1;
@@ -2943,9 +3746,8 @@ textarea.Qfp5feW {
2943
3746
  background-color: var(--bs-body-bg);
2944
3747
  border-radius: var(--bs-border-radius);
2945
3748
  }
2946
- .PAZ5PRe > .q6RqDMR:-webkit-autofill ~ label {
2947
- color: rgba(var(--bs-body-color-rgb), 0.65);
2948
- transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3749
+ .PAZ5PRe > textarea:disabled ~ label::after {
3750
+ background-color: var(--bs-secondary-bg);
2949
3751
  }
2950
3752
  .PAZ5PRe > .NjpfLhw ~ label {
2951
3753
  border-width: var(--bs-border-width) 0;
@@ -2954,10 +3756,6 @@ textarea.Qfp5feW {
2954
3756
  .PAZ5PRe > .q6RqDMR:disabled ~ label {
2955
3757
  color: #6c757d;
2956
3758
  }
2957
- .PAZ5PRe > :disabled ~ label::after,
2958
- .PAZ5PRe > .q6RqDMR:disabled ~ label::after {
2959
- background-color: var(--bs-secondary-bg);
2960
- }
2961
3759
 
2962
3760
  .lvQ5bSs {
2963
3761
  position: relative;
@@ -3040,7 +3838,7 @@ textarea.Qfp5feW {
3040
3838
  border-bottom-right-radius: 0;
3041
3839
  }
3042
3840
  .lvQ5bSs > :not(:first-child):not(._0Z6ksIR):not(.a0cCYcp):not(.s9luvnC):not(.ngUy-7n):not(.s64RnGQ) {
3043
- margin-left: calc(var(--bs-border-width) * -1);
3841
+ margin-left: calc(-1 * var(--bs-border-width));
3044
3842
  border-top-left-radius: 0;
3045
3843
  border-bottom-left-radius: 0;
3046
3844
  }
@@ -3082,7 +3880,7 @@ textarea.Qfp5feW {
3082
3880
  .lGd1oS0 .q6RqDMR:valid, .q6RqDMR.jHWKH7e {
3083
3881
  border-color: var(--bs-form-valid-border-color);
3084
3882
  padding-right: calc(1.5em + 0.75rem);
3085
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
3883
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
3086
3884
  background-repeat: no-repeat;
3087
3885
  background-position: right calc(0.375em + 0.1875rem) center;
3088
3886
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
@@ -3101,7 +3899,7 @@ textarea.Qfp5feW {
3101
3899
  border-color: var(--bs-form-valid-border-color);
3102
3900
  }
3103
3901
  .lGd1oS0 .WtaVD8x:valid:not([multiple]):not([size]), .lGd1oS0 .WtaVD8x:valid:not([multiple])[size="1"], .WtaVD8x.jHWKH7e:not([multiple]):not([size]), .WtaVD8x.jHWKH7e:not([multiple])[size="1"] {
3104
- --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
3902
+ --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
3105
3903
  padding-right: 4.125rem;
3106
3904
  background-position: right 0.75rem center, center right 2.25rem;
3107
3905
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
@@ -3316,12 +4114,12 @@ textarea.Qfp5feW {
3316
4114
  --bs-btn-bg: #0d6efd;
3317
4115
  --bs-btn-border-color: #0d6efd;
3318
4116
  --bs-btn-hover-color: #fff;
3319
- --bs-btn-hover-bg: #0b5ed7;
3320
- --bs-btn-hover-border-color: #0a58ca;
4117
+ --bs-btn-hover-bg: rgb(11.05, 93.5, 215.05);
4118
+ --bs-btn-hover-border-color: rgb(10.4, 88, 202.4);
3321
4119
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
3322
4120
  --bs-btn-active-color: #fff;
3323
- --bs-btn-active-bg: #0a58ca;
3324
- --bs-btn-active-border-color: #0a53be;
4121
+ --bs-btn-active-bg: rgb(10.4, 88, 202.4);
4122
+ --bs-btn-active-border-color: rgb(9.75, 82.5, 189.75);
3325
4123
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3326
4124
  --bs-btn-disabled-color: #fff;
3327
4125
  --bs-btn-disabled-bg: #0d6efd;
@@ -3333,12 +4131,12 @@ textarea.Qfp5feW {
3333
4131
  --bs-btn-bg: #6c757d;
3334
4132
  --bs-btn-border-color: #6c757d;
3335
4133
  --bs-btn-hover-color: #fff;
3336
- --bs-btn-hover-bg: #5c636a;
3337
- --bs-btn-hover-border-color: #565e64;
4134
+ --bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);
4135
+ --bs-btn-hover-border-color: rgb(86.4, 93.6, 100);
3338
4136
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
3339
4137
  --bs-btn-active-color: #fff;
3340
- --bs-btn-active-bg: #565e64;
3341
- --bs-btn-active-border-color: #51585e;
4138
+ --bs-btn-active-bg: rgb(86.4, 93.6, 100);
4139
+ --bs-btn-active-border-color: rgb(81, 87.75, 93.75);
3342
4140
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3343
4141
  --bs-btn-disabled-color: #fff;
3344
4142
  --bs-btn-disabled-bg: #6c757d;
@@ -3350,12 +4148,12 @@ textarea.Qfp5feW {
3350
4148
  --bs-btn-bg: #198754;
3351
4149
  --bs-btn-border-color: #198754;
3352
4150
  --bs-btn-hover-color: #fff;
3353
- --bs-btn-hover-bg: #157347;
3354
- --bs-btn-hover-border-color: #146c43;
4151
+ --bs-btn-hover-bg: rgb(21.25, 114.75, 71.4);
4152
+ --bs-btn-hover-border-color: rgb(20, 108, 67.2);
3355
4153
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
3356
4154
  --bs-btn-active-color: #fff;
3357
- --bs-btn-active-bg: #146c43;
3358
- --bs-btn-active-border-color: #13653f;
4155
+ --bs-btn-active-bg: rgb(20, 108, 67.2);
4156
+ --bs-btn-active-border-color: rgb(18.75, 101.25, 63);
3359
4157
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3360
4158
  --bs-btn-disabled-color: #fff;
3361
4159
  --bs-btn-disabled-bg: #198754;
@@ -3367,12 +4165,12 @@ textarea.Qfp5feW {
3367
4165
  --bs-btn-bg: #0dcaf0;
3368
4166
  --bs-btn-border-color: #0dcaf0;
3369
4167
  --bs-btn-hover-color: #000;
3370
- --bs-btn-hover-bg: #31d2f2;
3371
- --bs-btn-hover-border-color: #25cff2;
4168
+ --bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);
4169
+ --bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
3372
4170
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
3373
4171
  --bs-btn-active-color: #000;
3374
- --bs-btn-active-bg: #3dd5f3;
3375
- --bs-btn-active-border-color: #25cff2;
4172
+ --bs-btn-active-bg: rgb(61.4, 212.6, 243);
4173
+ --bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);
3376
4174
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3377
4175
  --bs-btn-disabled-color: #000;
3378
4176
  --bs-btn-disabled-bg: #0dcaf0;
@@ -3384,12 +4182,12 @@ textarea.Qfp5feW {
3384
4182
  --bs-btn-bg: #ffc107;
3385
4183
  --bs-btn-border-color: #ffc107;
3386
4184
  --bs-btn-hover-color: #000;
3387
- --bs-btn-hover-bg: #ffca2c;
3388
- --bs-btn-hover-border-color: #ffc720;
4185
+ --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
4186
+ --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
3389
4187
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
3390
4188
  --bs-btn-active-color: #000;
3391
- --bs-btn-active-bg: #ffcd39;
3392
- --bs-btn-active-border-color: #ffc720;
4189
+ --bs-btn-active-bg: rgb(255, 205.4, 56.6);
4190
+ --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
3393
4191
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3394
4192
  --bs-btn-disabled-color: #000;
3395
4193
  --bs-btn-disabled-bg: #ffc107;
@@ -3401,12 +4199,12 @@ textarea.Qfp5feW {
3401
4199
  --bs-btn-bg: #dc3545;
3402
4200
  --bs-btn-border-color: #dc3545;
3403
4201
  --bs-btn-hover-color: #fff;
3404
- --bs-btn-hover-bg: #bb2d3b;
3405
- --bs-btn-hover-border-color: #b02a37;
4202
+ --bs-btn-hover-bg: rgb(187, 45.05, 58.65);
4203
+ --bs-btn-hover-border-color: rgb(176, 42.4, 55.2);
3406
4204
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
3407
4205
  --bs-btn-active-color: #fff;
3408
- --bs-btn-active-bg: #b02a37;
3409
- --bs-btn-active-border-color: #a52834;
4206
+ --bs-btn-active-bg: rgb(176, 42.4, 55.2);
4207
+ --bs-btn-active-border-color: rgb(165, 39.75, 51.75);
3410
4208
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3411
4209
  --bs-btn-disabled-color: #fff;
3412
4210
  --bs-btn-disabled-bg: #dc3545;
@@ -3418,12 +4216,12 @@ textarea.Qfp5feW {
3418
4216
  --bs-btn-bg: #f8f9fa;
3419
4217
  --bs-btn-border-color: #f8f9fa;
3420
4218
  --bs-btn-hover-color: #000;
3421
- --bs-btn-hover-bg: #d3d4d5;
3422
- --bs-btn-hover-border-color: #c6c7c8;
4219
+ --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
4220
+ --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
3423
4221
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
3424
4222
  --bs-btn-active-color: #000;
3425
- --bs-btn-active-bg: #c6c7c8;
3426
- --bs-btn-active-border-color: #babbbc;
4223
+ --bs-btn-active-bg: rgb(198.4, 199.2, 200);
4224
+ --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
3427
4225
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3428
4226
  --bs-btn-disabled-color: #000;
3429
4227
  --bs-btn-disabled-bg: #f8f9fa;
@@ -3435,12 +4233,12 @@ textarea.Qfp5feW {
3435
4233
  --bs-btn-bg: #212529;
3436
4234
  --bs-btn-border-color: #212529;
3437
4235
  --bs-btn-hover-color: #fff;
3438
- --bs-btn-hover-bg: #424649;
3439
- --bs-btn-hover-border-color: #373b3e;
4236
+ --bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);
4237
+ --bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
3440
4238
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
3441
4239
  --bs-btn-active-color: #fff;
3442
- --bs-btn-active-bg: #4d5154;
3443
- --bs-btn-active-border-color: #373b3e;
4240
+ --bs-btn-active-bg: rgb(77.4, 80.6, 83.8);
4241
+ --bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);
3444
4242
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3445
4243
  --bs-btn-disabled-color: #fff;
3446
4244
  --bs-btn-disabled-bg: #212529;
@@ -4029,7 +4827,7 @@ textarea.Qfp5feW {
4029
4827
  }
4030
4828
  .PEqrVRx > :not(.lWxOE4r:first-child) + .DNeWg-T,
4031
4829
  .PEqrVRx > .PEqrVRx:not(:first-child) {
4032
- margin-left: calc(var(--bs-border-width) * -1);
4830
+ margin-left: calc(-1 * var(--bs-border-width));
4033
4831
  }
4034
4832
  .PEqrVRx > .DNeWg-T:not(:last-child):not(.LifuoYQ),
4035
4833
  .PEqrVRx > .DNeWg-T.Or1RlAK:first-child,
@@ -4076,14 +4874,15 @@ textarea.Qfp5feW {
4076
4874
  }
4077
4875
  .NXLMBwR > .DNeWg-T:not(:first-child),
4078
4876
  .NXLMBwR > .PEqrVRx:not(:first-child) {
4079
- margin-top: calc(var(--bs-border-width) * -1);
4877
+ margin-top: calc(-1 * var(--bs-border-width));
4080
4878
  }
4081
4879
  .NXLMBwR > .DNeWg-T:not(:last-child):not(.LifuoYQ),
4082
4880
  .NXLMBwR > .PEqrVRx:not(:last-child) > .DNeWg-T {
4083
4881
  border-bottom-right-radius: 0;
4084
4882
  border-bottom-left-radius: 0;
4085
4883
  }
4086
- .NXLMBwR > .DNeWg-T ~ .DNeWg-T,
4884
+ .NXLMBwR > .DNeWg-T:nth-child(n+3),
4885
+ .NXLMBwR > :not(.lWxOE4r) + .DNeWg-T,
4087
4886
  .NXLMBwR > .PEqrVRx:not(:first-child) > .DNeWg-T {
4088
4887
  border-top-left-radius: 0;
4089
4888
  border-top-right-radius: 0;
@@ -4207,8 +5006,8 @@ textarea.Qfp5feW {
4207
5006
 
4208
5007
  .BzFuR7J > .I1ZeIUF,
4209
5008
  .BzFuR7J .FrvoAVR {
4210
- flex-basis: 0;
4211
5009
  flex-grow: 1;
5010
+ flex-basis: 0;
4212
5011
  text-align: center;
4213
5012
  }
4214
5013
 
@@ -4311,8 +5110,8 @@ textarea.Qfp5feW {
4311
5110
  }
4312
5111
 
4313
5112
  ._6zdeiUM {
4314
- flex-basis: 100%;
4315
5113
  flex-grow: 1;
5114
+ flex-basis: 100%;
4316
5115
  align-items: center;
4317
5116
  }
4318
5117
 
@@ -4854,7 +5653,7 @@ textarea.Qfp5feW {
4854
5653
  flex-flow: row wrap;
4855
5654
  }
4856
5655
  .cuniI47 > .ohhFOfc {
4857
- flex: 1 0 0%;
5656
+ flex: 1 0 0;
4858
5657
  margin-bottom: 0;
4859
5658
  }
4860
5659
  .cuniI47 > .ohhFOfc + .ohhFOfc {
@@ -4865,24 +5664,24 @@ textarea.Qfp5feW {
4865
5664
  border-top-right-radius: 0;
4866
5665
  border-bottom-right-radius: 0;
4867
5666
  }
4868
- .cuniI47 > .ohhFOfc:not(:last-child) .yY6MVPO,
4869
- .cuniI47 > .ohhFOfc:not(:last-child) .v6IRCyU {
5667
+ .cuniI47 > .ohhFOfc:not(:last-child) > .yY6MVPO,
5668
+ .cuniI47 > .ohhFOfc:not(:last-child) > .v6IRCyU {
4870
5669
  border-top-right-radius: 0;
4871
5670
  }
4872
- .cuniI47 > .ohhFOfc:not(:last-child) .sdaIkPS,
4873
- .cuniI47 > .ohhFOfc:not(:last-child) .cHkefkP {
5671
+ .cuniI47 > .ohhFOfc:not(:last-child) > .sdaIkPS,
5672
+ .cuniI47 > .ohhFOfc:not(:last-child) > .cHkefkP {
4874
5673
  border-bottom-right-radius: 0;
4875
5674
  }
4876
5675
  .cuniI47 > .ohhFOfc:not(:first-child) {
4877
5676
  border-top-left-radius: 0;
4878
5677
  border-bottom-left-radius: 0;
4879
5678
  }
4880
- .cuniI47 > .ohhFOfc:not(:first-child) .yY6MVPO,
4881
- .cuniI47 > .ohhFOfc:not(:first-child) .v6IRCyU {
5679
+ .cuniI47 > .ohhFOfc:not(:first-child) > .yY6MVPO,
5680
+ .cuniI47 > .ohhFOfc:not(:first-child) > .v6IRCyU {
4882
5681
  border-top-left-radius: 0;
4883
5682
  }
4884
- .cuniI47 > .ohhFOfc:not(:first-child) .sdaIkPS,
4885
- .cuniI47 > .ohhFOfc:not(:first-child) .cHkefkP {
5683
+ .cuniI47 > .ohhFOfc:not(:first-child) > .sdaIkPS,
5684
+ .cuniI47 > .ohhFOfc:not(:first-child) > .cHkefkP {
4886
5685
  border-bottom-left-radius: 0;
4887
5686
  }
4888
5687
  }
@@ -4899,11 +5698,11 @@ textarea.Qfp5feW {
4899
5698
  --bs-accordion-btn-padding-y: 1rem;
4900
5699
  --bs-accordion-btn-color: var(--bs-body-color);
4901
5700
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
4902
- --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
5701
+ --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
4903
5702
  --bs-accordion-btn-icon-width: 1.25rem;
4904
5703
  --bs-accordion-btn-icon-transform: rotate(-180deg);
4905
5704
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
4906
- --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
5705
+ --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
4907
5706
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
4908
5707
  --bs-accordion-body-padding-x: 1.25rem;
4909
5708
  --bs-accordion-body-padding-y: 1rem;
@@ -5013,16 +5812,15 @@ textarea.Qfp5feW {
5013
5812
  .aRW-a5- > .S9gEeh7:last-child {
5014
5813
  border-bottom: 0;
5015
5814
  }
5016
- .aRW-a5- > .S9gEeh7 > .unMRrjv .EN-AC5F, .aRW-a5- > .S9gEeh7 > .unMRrjv .EN-AC5F.vG7qVGd {
5017
- border-radius: 0;
5018
- }
5019
- .aRW-a5- > .S9gEeh7 > ._7hNMzs9 {
5815
+ .aRW-a5- > .S9gEeh7 > ._7hNMzs9,
5816
+ .aRW-a5- > .S9gEeh7 > .unMRrjv .EN-AC5F,
5817
+ .aRW-a5- > .S9gEeh7 > .unMRrjv .EN-AC5F.vG7qVGd {
5020
5818
  border-radius: 0;
5021
5819
  }
5022
5820
 
5023
5821
  [data-bs-theme=dark] .EN-AC5F::after {
5024
- --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
5025
- --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
5822
+ --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
5823
+ --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
5026
5824
  }
5027
5825
 
5028
5826
  .giyxyzq {
@@ -5126,7 +5924,7 @@ textarea.Qfp5feW {
5126
5924
  }
5127
5925
 
5128
5926
  .Rvryhjc:not(:first-child) .Jiya40D {
5129
- margin-left: calc(var(--bs-border-width) * -1);
5927
+ margin-left: calc(-1 * var(--bs-border-width));
5130
5928
  }
5131
5929
  .Rvryhjc:first-child .Jiya40D {
5132
5930
  border-top-left-radius: var(--bs-pagination-border-radius);
@@ -5275,7 +6073,7 @@ textarea.Qfp5feW {
5275
6073
 
5276
6074
  @keyframes VosPIRD {
5277
6075
  0% {
5278
- background-position-x: 1rem;
6076
+ background-position-x: var(--bs-progress-height);
5279
6077
  }
5280
6078
  }
5281
6079
  ._1iZTt0K,
@@ -5369,22 +6167,6 @@ textarea.Qfp5feW {
5369
6167
  counter-increment: section;
5370
6168
  }
5371
6169
 
5372
- .abjG87Q {
5373
- width: 100%;
5374
- color: var(--bs-list-group-action-color);
5375
- text-align: inherit;
5376
- }
5377
- .abjG87Q:hover, .abjG87Q:focus {
5378
- z-index: 1;
5379
- color: var(--bs-list-group-action-hover-color);
5380
- text-decoration: none;
5381
- background-color: var(--bs-list-group-action-hover-bg);
5382
- }
5383
- .abjG87Q:active {
5384
- color: var(--bs-list-group-action-active-color);
5385
- background-color: var(--bs-list-group-action-active-bg);
5386
- }
5387
-
5388
6170
  .Qdo83x6 {
5389
6171
  position: relative;
5390
6172
  display: block;
@@ -5421,6 +6203,22 @@ textarea.Qfp5feW {
5421
6203
  border-top-width: var(--bs-list-group-border-width);
5422
6204
  }
5423
6205
 
6206
+ .abjG87Q {
6207
+ width: 100%;
6208
+ color: var(--bs-list-group-action-color);
6209
+ text-align: inherit;
6210
+ }
6211
+ .abjG87Q:not(.aPhrQ2f):hover, .abjG87Q:not(.aPhrQ2f):focus {
6212
+ z-index: 1;
6213
+ color: var(--bs-list-group-action-hover-color);
6214
+ text-decoration: none;
6215
+ background-color: var(--bs-list-group-action-hover-bg);
6216
+ }
6217
+ .abjG87Q:not(.aPhrQ2f):active {
6218
+ color: var(--bs-list-group-action-active-color);
6219
+ background-color: var(--bs-list-group-action-active-bg);
6220
+ }
6221
+
5424
6222
  .jS8lNwU {
5425
6223
  flex-direction: row;
5426
6224
  }
@@ -5704,19 +6502,19 @@ textarea.Qfp5feW {
5704
6502
 
5705
6503
  .KvUyLmI {
5706
6504
  --bs-btn-close-color: #000;
5707
- --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
6505
+ --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
5708
6506
  --bs-btn-close-opacity: 0.5;
5709
6507
  --bs-btn-close-hover-opacity: 0.75;
5710
6508
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
5711
6509
  --bs-btn-close-focus-opacity: 1;
5712
6510
  --bs-btn-close-disabled-opacity: 0.25;
5713
- --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
5714
6511
  box-sizing: content-box;
5715
6512
  width: 1em;
5716
6513
  height: 1em;
5717
6514
  padding: 0.25em 0.25em;
5718
6515
  color: var(--bs-btn-close-color);
5719
6516
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
6517
+ filter: var(--bs-btn-close-filter);
5720
6518
  border: 0;
5721
6519
  border-radius: 0.375rem;
5722
6520
  opacity: var(--bs-btn-close-opacity);
@@ -5740,11 +6538,16 @@ textarea.Qfp5feW {
5740
6538
  }
5741
6539
 
5742
6540
  .gUyqa4E {
5743
- filter: var(--bs-btn-close-white-filter);
6541
+ --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
5744
6542
  }
5745
6543
 
5746
- [data-bs-theme=dark] .KvUyLmI {
5747
- filter: var(--bs-btn-close-white-filter);
6544
+ :root,
6545
+ [data-bs-theme=light] {
6546
+ --bs-btn-close-filter: ;
6547
+ }
6548
+
6549
+ [data-bs-theme=dark] {
6550
+ --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
5748
6551
  }
5749
6552
 
5750
6553
  ._0CIbi46 {
@@ -5820,7 +6623,7 @@ textarea.Qfp5feW {
5820
6623
  --bs-modal-width: 500px;
5821
6624
  --bs-modal-padding: 1rem;
5822
6625
  --bs-modal-margin: 0.5rem;
5823
- --bs-modal-color: ;
6626
+ --bs-modal-color: var(--bs-body-color);
5824
6627
  --bs-modal-bg: var(--bs-body-bg);
5825
6628
  --bs-modal-border-color: var(--bs-border-color-translucent);
5826
6629
  --bs-modal-border-width: var(--bs-border-width);
@@ -5856,8 +6659,8 @@ textarea.Qfp5feW {
5856
6659
  pointer-events: none;
5857
6660
  }
5858
6661
  .b9Z4Jf-._-53R6KB ._4wH6vpb {
5859
- transition: transform 0.3s ease-out;
5860
6662
  transform: translate(0, -50px);
6663
+ transition: transform 0.3s ease-out;
5861
6664
  }
5862
6665
  @media (prefers-reduced-motion: reduce) {
5863
6666
  .b9Z4Jf-._-53R6KB ._4wH6vpb {
@@ -5932,7 +6735,10 @@ textarea.Qfp5feW {
5932
6735
  }
5933
6736
  ._5eFqXed .KvUyLmI {
5934
6737
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
5935
- margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
6738
+ margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
6739
+ margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
6740
+ margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
6741
+ margin-left: auto;
5936
6742
  }
5937
6743
 
5938
6744
  .YpDULS0 {
@@ -6472,6 +7278,7 @@ textarea.Qfp5feW {
6472
7278
  color: #fff;
6473
7279
  text-align: center;
6474
7280
  background: none;
7281
+ filter: var(--bs-carousel-control-icon-filter);
6475
7282
  border: 0;
6476
7283
  opacity: 0.5;
6477
7284
  transition: opacity 0.15s ease;
@@ -6510,11 +7317,11 @@ textarea.Qfp5feW {
6510
7317
  }
6511
7318
 
6512
7319
  ._5CMMRuB {
6513
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")*/;
7320
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
6514
7321
  }
6515
7322
 
6516
7323
  .X50hG47 {
6517
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")*/;
7324
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
6518
7325
  }
6519
7326
 
6520
7327
  .erb-40E {
@@ -6540,7 +7347,7 @@ textarea.Qfp5feW {
6540
7347
  margin-left: 3px;
6541
7348
  text-indent: -999px;
6542
7349
  cursor: pointer;
6543
- background-color: #fff;
7350
+ background-color: var(--bs-carousel-indicator-active-bg);
6544
7351
  background-clip: padding-box;
6545
7352
  border: 0;
6546
7353
  border-top: 10px solid transparent;
@@ -6564,31 +7371,27 @@ textarea.Qfp5feW {
6564
7371
  left: 15%;
6565
7372
  padding-top: 1.25rem;
6566
7373
  padding-bottom: 1.25rem;
6567
- color: #fff;
7374
+ color: var(--bs-carousel-caption-color);
6568
7375
  text-align: center;
6569
7376
  }
6570
7377
 
6571
- ._89vGbHn ._5CMMRuB,
6572
- ._89vGbHn .X50hG47 {
6573
- filter: invert(1) grayscale(100);
6574
- }
6575
- ._89vGbHn .erb-40E [data-bs-target] {
6576
- background-color: #000;
6577
- }
6578
- ._89vGbHn .HtKj7Z5 {
6579
- color: #000;
7378
+ ._89vGbHn {
7379
+ --bs-carousel-indicator-active-bg: #000;
7380
+ --bs-carousel-caption-color: #000;
7381
+ --bs-carousel-control-icon-filter: invert(1) grayscale(100);
6580
7382
  }
6581
7383
 
6582
- [data-bs-theme=dark] .TVMSNUF ._5CMMRuB,
6583
- [data-bs-theme=dark] .TVMSNUF .X50hG47, [data-bs-theme=dark].TVMSNUF ._5CMMRuB,
6584
- [data-bs-theme=dark].TVMSNUF .X50hG47 {
6585
- filter: invert(1) grayscale(100);
6586
- }
6587
- [data-bs-theme=dark] .TVMSNUF .erb-40E [data-bs-target], [data-bs-theme=dark].TVMSNUF .erb-40E [data-bs-target] {
6588
- background-color: #000;
7384
+ :root,
7385
+ [data-bs-theme=light] {
7386
+ --bs-carousel-indicator-active-bg: #fff;
7387
+ --bs-carousel-caption-color: #fff;
7388
+ --bs-carousel-control-icon-filter: ;
6589
7389
  }
6590
- [data-bs-theme=dark] .TVMSNUF .HtKj7Z5, [data-bs-theme=dark].TVMSNUF .HtKj7Z5 {
6591
- color: #000;
7390
+
7391
+ [data-bs-theme=dark] {
7392
+ --bs-carousel-indicator-active-bg: #000;
7393
+ --bs-carousel-caption-color: #000;
7394
+ --bs-carousel-control-icon-filter: invert(1) grayscale(100);
6592
7395
  }
6593
7396
 
6594
7397
  .H6w-Lvx,
@@ -7216,7 +8019,10 @@ textarea.Qfp5feW {
7216
8019
  }
7217
8020
  .Fkv4SH- .KvUyLmI {
7218
8021
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
7219
- margin: calc(-0.5 * var(--bs-offcanvas-padding-y)) calc(-0.5 * var(--bs-offcanvas-padding-x)) calc(-0.5 * var(--bs-offcanvas-padding-y)) auto;
8022
+ margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
8023
+ margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
8024
+ margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
8025
+ margin-left: auto;
7220
8026
  }
7221
8027
 
7222
8028
  .qzo8qH8 {
@@ -7597,6 +8403,10 @@ textarea.Qfp5feW {
7597
8403
  .IbhUwQT:not(:focus):not(:focus-within):not(caption) {
7598
8404
  position: absolute !important;
7599
8405
  }
8406
+ ._61TTjg7 *,
8407
+ .IbhUwQT:not(:focus):not(:focus-within) * {
8408
+ overflow: hidden !important;
8409
+ }
7600
8410
 
7601
8411
  ._92cSbcI::after {
7602
8412
  position: absolute;