-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbundle.css
3122 lines (2578 loc) · 168 KB
/
bundle.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
:root {
/* --------------------- */
/* main colors variables */
/* --------------------- */
/* Primary */
--uiKit-color-primary-100: #FCF6E8;
--uiKit-color-primary-200: #FCEAB6;
--uiKit-color-primary-300: #FFCD69;
--uiKit-color-primary-320: #FBD580;
--uiKit-color-primary-350: #FFD370;
--uiKit-color-primary-400: #FFBB3D;
--uiKit-color-primary-500: #F5A207;
--uiKit-color-primary-600: #B87407;
--uiKit-color-primary-700: #593C04;
--uiKit-color-primary-focus-white: #FEF9F0;
--uiKit-color-primary-focus-orange: #FFC047;
--uiKit-color-primary-gradientFrom: #F8C25B;
--uiKit-color-primary-gradientTo: #FDD06A;
--uiKit-color-primary-boxShadowLarge-100: #EBB26A;
--uiKit-color-primary-boxShadowLarge-200: #DB9E54;
/* Secondary */
--uiKit-color-secondary-100: #FAF7F5;
--uiKit-color-secondary-200: #EDE1D5;
--uiKit-color-secondary-300: #BAA38D;
--uiKit-color-secondary-400: #57412D;
--uiKit-color-secondary-500: #463525;
--uiKit-color-secondary-600: #463525;
--uiKit-color-secondary-700: #18120D;
/* Neutral */
--uiKit-color-neutral-100: #F0F0F1;
--uiKit-color-neutral-120: #FEF9F0;
--uiKit-color-neutral-150: #F7F7F7;
--uiKit-color-neutral-160: #FCFCFC;
--uiKit-color-neutral-170: #EDEDED;
--uiKit-color-neutral-180: #DEDEDE;
--uiKit-color-neutral-200: #E1E2E6;
--uiKit-color-neutral-300: #B6B7B9;
--uiKit-color-neutral-350: #B8B8B8;
--uiKit-color-neutral-400: #7C7D81;
--uiKit-color-neutral-500: #595A5F;
--uiKit-color-neutral-600: #3B3C3F;
--uiKit-color-neutral-700: #232325;
/* Danger */
--uiKit-color-danger-100: #FDEFEC;
--uiKit-color-danger-200: #E1E2E6;
--uiKit-color-danger-300: #F1735F;
--uiKit-color-danger-400: #E24F39;
--uiKit-color-danger-500: #BA3E2C;
--uiKit-color-danger-600: #6D2419;
--uiKit-color-danger-700: #42160F;
--uiKit-color-danger-border: #F7AFA4;
--uiKit-color-danger-error: #EF4F37;
/* Success */
--uiKit-color-success-100: #EDF6EF;
--uiKit-color-success-200: #EDF6EF;
--uiKit-color-success-250: #A8D3AF;
--uiKit-color-success-300: #62B171;
--uiKit-color-success-400: #499857;
--uiKit-color-success-500: #358343;
--uiKit-color-success-600: #1F4C26;
--uiKit-color-success-700: #122C17;
/* Absolute */
--uiKit-color-absolute-white: #FFF;
--uiKit-color-absolute-black: #000;
/* Brand */
--uiKit-color-brand-blue: #5A65FF;
--uiKit-color-brand-cyan: #83E0FF;
--uiKit-color-brand-yellow: #FBE3B4;
--uiKit-color-utility-link: #007AFF;
/* Shadows */
--uiKit-drop-shadow-medium: 0px -4px 16px -8px rgba(0, 0, 0, 0.08), 0px 4px 8px rgba(0, 0, 0, 0.16);
/* Fonts */
--uiKit-font-SourceSansPro: 'Source Sans Pro', Arial, sans-serif;
--uiKit-font-OfficinaSerif: 'Officina Serif', Arial, sans-serif;
}
.uiKit-typography--text-ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}.uiKit-link-wrapper {
display: flex;
align-items: center;
padding: 0 2px;
cursor: pointer;
}
.uiKit-link-typeRegular,
.uiKit-link-typeExternal,
.uiKit-link-typePseudo {
display: flex;
height: 20px;
align-items: center;
border-bottom: 1px solid var(--uiKit-color-neutral-300);
color: var(--uiKit-color-absolute-black);
outline: none;
text-decoration: none;
}
.uiKit-link-typePseudo {
border-bottom: 1px dashed var(--uiKit-color-neutral-300);
}
/* hover */
.uiKit-link-typeExternal:hover,
.uiKit-link-typeRegular:hover,
.uiKit-link-typePseudo:hover {
border-bottom: 1px solid var(--uiKit-color-primary-500);
color: var(--uiKit-color-primary-600);
}
.uiKit-link-typePseudo:hover {
border-bottom: 1px dashed var(--uiKit-color-primary-500);
}
/* focus */
.uiKit-link-wrapper:focus-visible {
border-bottom: none;
margin-bottom: 1px;
border-radius: 2px;
box-shadow: 0px 0px 0px 2px var(--uiKit-color-primary-focus-orange);
color: var(--uiKit-color-primary-600);
outline: none;
}
.uiKit-link-wrapper:focus-visible > a {
border-bottom: none;
}
/* arrow for typeExternal */
.uiKit-link-wrapper > svg {
margin-left: 4px;
}
.uiKit-link-wrapper > svg > path {
fill: var(--uiKit-color-neutral-500);
}
.uiKit-link-wrapper:hover > .uiKit-link-typeExternal,
.uiKit-link-wrapper:hover > svg > path {
border-bottom: 1px solid var(--uiKit-color-primary-500);
color: var(--uiKit-color-primary-600);
fill: var(--uiKit-color-primary-600);
}
.uiKit-link-wrapper:focus-visible > a {
border-bottom: none;
color: var(--uiKit-color-primary-600);
}
.uiKit-link-wrapper:focus-visible > .uiKit-link-typeExternal,
.uiKit-link-wrapper:focus-visible > svg > path {
border-bottom: 1px solid rgba(0, 0, 0, 0);
fill: var(--uiKit-color-primary-600);
}
.uiKit-link-wrapper:focus-visible > svg {
margin-bottom: 0px;
}
.uiKit-checkbox-normal,
.uiKit-button-indeterminate,
.uiKit-checkbox-normal_hasError,
.uiKit-button-indeterminate_hasError {
position: relative;
margin: 0;
appearance: none;
}
.uiKit-checkbox-normal:before,
.uiKit-checkbox-normal:after,
.uiKit-button-indeterminate:before,
.uiKit-button-indeterminate:after,
.uiKit-checkbox-normal_hasError:before,
.uiKit-checkbox-normal_hasError:after,
.uiKit-button-indeterminate_hasError:before,
.uiKit-button-indeterminate_hasError:after {
position: relative;
display: block;
width: 20px;
height: 20px;
border: none;
background: var(--uiKit-color-absolute-white);
content: '';
cursor: pointer;
}
.uiKit-checkbox-normal:before,
.uiKit-button-indeterminate:before,
.uiKit-checkbox-normal_hasError:before,
.uiKit-button-indeterminate_hasError:before {
position: absolute;
cursor: default;
}
.uiKit-checkbox-normal:after,
.uiKit-button-indeterminate:after,
.uiKit-checkbox-normal_hasError:after,
.uiKit-button-indeterminate_hasError:after {
border: 1px solid var(--uiKit-color-neutral-200);
border-radius: 4px;
content: '';
}
.uiKit-checkbox-normal:checked:not( :disabled ):after,
.uiKit-button-indeterminate:checked:not( :disabled ):after,
.uiKit-checkbox-normal_hasError:checked:after,
.uiKit-button-indeterminate_hasError:checked:after {
border: 1px solid rgba(0, 0, 0, 0);
background-color: var(--uiKit-color-primary-300);
background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.03033 8.47748C2.73744 8.18459 2.26256 8.18459 1.96967 8.47748C1.67678 8.77038 1.67678 9.24525 1.96967 9.53814L3.03033 8.47748ZM6 12.5078L5.46967 13.0381C5.61607 13.1845 5.81647 13.2639 6.0234 13.2574C6.23034 13.251 6.4254 13.1593 6.56238 13.004L6 12.5078ZM14.0624 4.50403C14.3364 4.19344 14.3068 3.71949 13.9962 3.44543C13.6856 3.17138 13.2117 3.201 12.9376 3.5116L14.0624 4.50403ZM1.96967 9.53814L5.46967 13.0381L6.53033 11.9775L3.03033 8.47748L1.96967 9.53814ZM6.56238 13.004L14.0624 4.50403L12.9376 3.5116L5.43762 12.0116L6.56238 13.004Z' fill='%23593C04'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
background-size: 16px 20px;
}
.uiKit-button-indeterminate:checked:not( :disabled ):after {
background-color: var(--uiKit-color-absolute-white);
background-image: url("data:image/svg+xml,%3Csvg width='10' height='3' viewBox='0 0 10 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.0078125' width='10' height='2' rx='1' fill='black'/%3E%3C/svg%3E%0A");
background-size: 10px 20px;
}
.uiKit-checkbox-normal_hasError:checked:after {
background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.03033 5.47748C1.73744 5.18459 1.26256 5.18459 0.96967 5.47748C0.676777 5.77038 0.676777 6.24525 0.96967 6.53814L2.03033 5.47748ZM5 9.50781L4.46967 10.0381C4.61607 10.1845 4.81647 10.2639 5.0234 10.2574C5.23034 10.251 5.4254 10.1593 5.56238 10.004L5 9.50781ZM13.0624 1.50403C13.3364 1.19344 13.3068 0.719487 12.9962 0.445434C12.6856 0.171381 12.2117 0.201003 11.9376 0.511596L13.0624 1.50403ZM0.96967 6.53814L4.46967 10.0381L5.53033 8.97748L2.03033 5.47748L0.96967 6.53814ZM5.56238 10.004L13.0624 1.50403L11.9376 0.511596L4.43762 9.0116L5.56238 10.004Z' fill='%23BA3E2C'/%3E%3C/svg%3E%0A");
}
.uiKit-button-indeterminate_hasError:checked:after {
background-image: url("data:image/svg+xml,%3Csvg width='10' height='3' viewBox='0 0 10 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.0078125' width='10' height='2' rx='1' fill='%23BA3E2C'/%3E%3C/svg%3E%0A");
background-size: 10px 20px;
}
.uiKit-checkbox-normal_hasError:after,
.uiKit-checkbox-normal_hasError:checked:after,
.uiKit-button-indeterminate_hasError:after,
.uiKit-button-indeterminate_hasError:checked:after {
border: 1px solid var(--uiKit-color-danger-error);
background-color: var(--uiKit-color-danger-100);
}
.uiKit-checkbox-normal:checked:hover:after {
border: 1px solid var(--uiKit-color-primary-focus-orange);
}
.uiKit-checkbox-normal:focus-visible:after,
.uiKit-checkbox-normal_hasError:focus-visible:after,
.uiKit-button-indeterminate:focus-visible:after,
.uiKit-button-indeterminate_hasError:focus-visible:after {
box-shadow: 0px 0px 0px 2px var(--uiKit-color-primary-focus-white),
0px 0px 0px 4px var(--uiKit-color-primary-focus-orange);
}
.uiKit-checkbox-normal:focus,
.uiKit-checkbox-normal_hasError:focus,
.uiKit-button-indeterminate:focus,
.uiKit-button-indeterminate_hasError:focus {
outline: none;
}
/* Hover */
.uiKit-checkbox-normal:not( :disabled ):not( :checked ):hover:after,
.uiKit-button-indeterminate:not( :disabled ):not( :checked ):hover:after {
border: 1px solid var(--uiKit-color-neutral-300);
}
.uiKit-checkbox-normal:not( :disabled ):checked:hover:after,
.uiKit-button-indeterminate:not( :disabled ):checked:hover:after {
border: 1px solid var(--uiKit-color-primary-focus-orange);
}
/* Disabled */
.uiKit-checkbox-normal:disabled:after,
.uiKit-checkbox-normal_hasError:disabled:after,
.uiKit-button-indeterminate:disabled:after,
.uiKit-button-indeterminate_hasError:disabled:after {
border: 1px solid var(--uiKit-color-neutral-100);
background-color: var(--uiKit-color-secondary-100);
cursor: not-allowed;
}
.uiKit-checkbox-normal_hasError:checked:disabled:after,
.uiKit-button-indeterminate_hasError:checked:disabled:after {
background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.03033 5.47748C1.73744 5.18459 1.26256 5.18459 0.96967 5.47748C0.676777 5.77038 0.676777 6.24525 0.96967 6.53814L2.03033 5.47748ZM5 9.50781L4.46967 10.0381C4.61607 10.1845 4.81647 10.2639 5.0234 10.2574C5.23034 10.251 5.4254 10.1593 5.56238 10.004L5 9.50781ZM13.0624 1.50403C13.3364 1.19344 13.3068 0.719487 12.9962 0.445434C12.6856 0.171381 12.2117 0.201003 11.9376 0.511596L13.0624 1.50403ZM0.96967 6.53814L4.46967 10.0381L5.53033 8.97748L2.03033 5.47748L0.96967 6.53814ZM5.56238 10.004L13.0624 1.50403L11.9376 0.511596L4.43762 9.0116L5.56238 10.004Z' fill='%23B6B7B9'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
background-size: 16px 20px;
}
.uiKit-button-indeterminate:checked:disabled:after,
.uiKit-button-indeterminate_hasError:checked:disabled:after {
background-image: url("data:image/svg+xml,%3Csvg width='10' height='3' viewBox='0 0 10 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.0078125' width='10' height='2' rx='1' fill='%23B6B7B9'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
background-size: auto;
}
.uiKit-button-typePrimary,
.uiKit-button-typeDefault,
.uiKit-button-typeDanger,
.uiKit-button-typeText {
position: relative;
border: none;
margin: 2px;
appearance: none;
cursor: pointer;
outline: none;
transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
/* --------------------- */
/* type */
/* --------------------- */
/* Link */
.uiKit-button-typeText {
display: inline-flex;
padding: 0!important;
border: none;
margin: 0;
background: transparent;
box-shadow: none!important;
color: var(--uiKit-color-utility-link);
}
.uiKit-button-typeText:disabled {
box-shadow: none!important;
color: var(--uiKit-color-neutral-300);
}
.uiKit-button-typeText:hover:not( [ disabled ] ),
.uiKit-button-typeText:active:not( [ disabled ] ),
.uiKit-button-typeText:focus-visible:not( [ disabled ] ) {
box-shadow: none!important;
opacity: 0.7;
}
/* Primary */
.uiKit-button-typePrimary {
background-color: var(--uiKit-color-primary-400);
color: var(--uiKit-color-secondary-700);
}
.uiKit-button-typePrimary:hover,
.uiKit-button-typePrimary:focus-visible {
background-color: var(--uiKit-color-primary-300);
color: var(--uiKit-color-secondary-500);
}
.uiKit-button-typePrimary:active:not( [ disabled ] ) {
background-color: var(--uiKit-color-primary-500);
color: var(--uiKit-color-secondary-600);
}
/* Primary + Large */
.uiKit-button-typePrimary.uiKit-button-sizeLarge {
background: linear-gradient(
180deg,
var(--uiKit-color-primary-gradientFrom) 50%,
var(--uiKit-color-primary-gradientTo) 100%
);
box-shadow: 0px 3px 0px var(--uiKit-color-primary-boxShadowLarge-100),
0px 4px 0px var(--uiKit-color-primary-boxShadowLarge-100), 0px 6px 5px rgba(116, 52, 0, 0.4);
}
.uiKit-button-typePrimary:hover.uiKit-button-sizeLarge {
background: none;
background-color: var(--uiKit-color-primary-350);
box-shadow: 0px 3px 0px var(--uiKit-color-primary-boxShadowLarge-100),
0px 4px 0px var(--uiKit-color-primary-boxShadowLarge-200), 0px 6px 5px rgba(116, 52, 0, 0.4);
}
.uiKit-button-typePrimary:focus-visible.uiKit-button-sizeLarge {
background-color: var(--uiKit-color-primary-350);
color: var(--uiKit-color-secondary-500);
}
.uiKit-button-typePrimary:active.uiKit-button-sizeLarge {
background-color: var(--uiKit-color-primary-320);
box-shadow: 1px 0px var(--uiKit-color-primary-boxShadowLarge-100),
0px 2px 0px var(--uiKit-color-primary-boxShadowLarge-200), 0px 3px 5px rgba(116, 52, 0, 0.4);
color: var(--uiKit-color-neutral-600);
}
/* Defaut */
.uiKit-button-typeDefault {
background-color: var(--uiKit-color-absolute-white);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-neutral-200);
color: var(--uiKit-color-neutral-700);
}
.uiKit-button-typeDefault:hover,
.uiKit-button-typeDefault:focus-visible {
background-color: var(--uiKit-color-neutral-100);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-neutral-200);
color: var(--uiKit-color-secondary-500);
}
.uiKit-button-typeDefault:hover {
color: var(--uiKit-color-neutral-500);
}
.uiKit-button-typeDefault:focus-visible {
border: 2px solid var(--uiKit-color-neutral-200);
}
.uiKit-button-typeDefault:active:not( .uiKit-button-sizeLarge ):not( [ disabled ] ) {
background-color: var(--uiKit-color-neutral-100);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-neutral-300);
color: var(--uiKit-color-neutral-600);
transition: box-shadow 0.2s ease-out;
}
/* Defaut + Large */
.uiKit-button-typeDefault.uiKit-button-sizeLarge {
background: linear-gradient(
180deg,
var(--uiKit-color-neutral-170) 50%,
var(--uiKit-color-neutral-150) 100%
);
box-shadow: 0px 3px 0px var(--uiKit-color-neutral-180), 0px 4px 0px var(--uiKit-color-neutral-350),
0px 6px 5px rgba(149, 149, 149, 0.4);
color: var(--uiKit-color-secondary-700);
}
.uiKit-button-typeDefault:hover.uiKit-button-sizeLarge {
background: linear-gradient(
180deg,
var(--uiKit-color-neutral-150) 0%,
var(--uiKit-color-neutral-160) 100%
);
box-shadow: 0px 3px 0px var(--uiKit-color-neutral-180), 0px 4px 0px var(--uiKit-color-neutral-350),
0px 6px 5px rgba(149, 149, 149, 0.4);
color: var(--uiKit-color-secondary-500);
}
.uiKit-button-typeDefault:focus-visible.uiKit-button-sizeLarge {
background: linear-gradient(
180deg,
var(--uiKit-color-neutral-150) 0%,
var(--uiKit-color-neutral-160) 100%
);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-neutral-120),
0px 0px 0px 5px var(--uiKit-color-primary-focus-orange),
0px 3px 0px var(--uiKit-color-primary-boxShadowLarge-100),
0px 4px 0px var(--uiKit-color-primary-boxShadowLarge-200), 0px 6px 5px rgba(116, 52, 0, 0.4);
color: var(--uiKit-color-secondary-500);
}
.uiKit-button-typeDefault:active.uiKit-button-sizeLarge {
background: linear-gradient(
180deg,
var(--uiKit-color-neutral-150) 0%,
var(--uiKit-color-neutral-160) 100%
);
box-shadow: 0px 1px 0px var(--uiKit-color-neutral-180), 0px 2px 0px var(--uiKit-color-neutral-350),
0px 3px 4px rgba(149, 149, 149, 0.4);
color: var(--uiKit-color-secondary-600);
}
/* Danger */
.uiKit-button-typeDanger {
background-color: var(--uiKit-color-absolute-white);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-danger-border);
color: var(--uiKit-color-danger-400);
}
.uiKit-button-typeDanger:hover,
.uiKit-button-typeDanger:focus-visible {
background-color: var(--uiKit-color-danger-100);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-danger-border);
color: var(--uiKit-color-danger-400);
}
.uiKit-button-typeDanger:focus-visible {
border: 2px solid var(--uiKit-color-danger-border);
}
.uiKit-button-typeDanger:active:not( .uiKit-button-sizeLarge ):not( [ disabled ] ) {
background-color: var(--uiKit-color-danger-border);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-danger-300);
color: var(--uiKit-color-danger-500);
transition: box-shadow 0.2s ease-out, background-color 0.2s ease-out;
}
/* --------------------- */
/* status */
/* --------------------- */
/* Disabled */
.uiKit-button-typeDefault:disabled,
.uiKit-button-typePrimary:disabled,
.uiKit-button-typeDanger:disabled,
.uiKit-button-typeDefault:disabled.uiKit-button-sizeLarge,
.uiKit-button-typePrimary:disabled.uiKit-button-sizeLarge,
.uiKit-button-typeDanger:disabled.uiKit-button-sizeLarge {
background: none;
background-color: var(--uiKit-color-secondary-100);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-neutral-100);
color: var(--uiKit-color-neutral-300);
cursor: not-allowed;
}
/* Focus */
.uiKit-button-typeDefault:focus-visible,
.uiKit-button-typePrimary:focus-visible,
.uiKit-button-typeDanger:focus-visible {
animation: waveEffectFocus 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
box-shadow: 0px 0px 0px 2px var(--uiKit-color-primary-focus-white),
0px 0px 0px 5px var(--uiKit-color-primary-focus-orange);
}
/* Loading */
.uiKit-button-typePrimary > img,
.uiKit-button-typeDefault > img,
.uiKit-button-typeDanger > img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.uiKit-button-typePrimary > img + p,
.uiKit-button-typeDefault > img + p,
.uiKit-button-typeDanger > img + p {
opacity: 0;
}
/* --------------------- */
/* size */
/* --------------------- */
.uiKit-button-sizeSmall {
padding: 8px 6px 6px;
border-radius: 4px;
}
.uiKit-button-sizeRegular {
padding: 11px 16px 9px;
border-radius: 8px;
}
.uiKit-button-sizeLarge {
padding: 21px 32px 17px;
border-radius: 8px;
}
/* --------------------- */
/* animations */
/* --------------------- */
.animation-Click.uiKit-button-typePrimary:after,
.animation-Click.uiKit-button-typeDefault:after,
.animation-Click.uiKit-button-typeDanger:after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1) infinite,
waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) infinite;
border-radius: inherit;
box-shadow: 0 0 0 0 var(--uiKit-color-primary-focus-white);
box-shadow: 0 0 0 0 var(--uiKit-color-primary-focus-orange);
content: ' ';
opacity: 0.2;
}
@keyframes waveEffect {
100% {
box-shadow: 0 0 0 var(--uiKit-color-primary-focus-white);
box-shadow: 0 0 0 7px var(--uiKit-color-primary-focus-orange);
}
}
@keyframes waveEffectFocus {
0% {
box-shadow: 0px 0px 0px 0px var(--uiKit-color-primary-focus-white),
0px 0px 0px 0px var(--uiKit-color-primary-focus-orange);
}
100% {
box-shadow: 0px 0px 0px 2px var(--uiKit-color-primary-focus-white),
0px 0px 0px 5px var(--uiKit-color-primary-focus-orange);
}
}
@keyframes fadeEffect {
100% {
opacity: 0;
}
}
.uiKit-label-default_regular,
.uiKit-label-danger_regular,
.uiKit-label-warning_regular,
.uiKit-label-success_regular,
.uiKit-label-default_small,
.uiKit-label-danger_small,
.uiKit-label-warning_small,
.uiKit-label-success_small {
display: flex;
align-items: center;
justify-content: center;
padding: 1px 0 0;
border-radius: 8px;
}
/* Height Width */
.uiKit-label-default_regular,
.uiKit-label-danger_regular,
.uiKit-label-warning_regular,
.uiKit-label-success_regular {
min-width: 63px;
min-height: 32px;
}
.uiKit-label-default_small,
.uiKit-label-danger_small,
.uiKit-label-warning_small,
.uiKit-label-success_small {
min-width: 53px;
min-height: 24px;
}
/* Colors */
.uiKit-label-default_regular,
.uiKit-label-default_small {
border: 2px solid var(--uiKit-color-neutral-200);
background: var(--uiKit-color-neutral-100);
color: var(--uiKit-color-neutral-600);
}
.uiKit-label-danger_regular,
.uiKit-label-danger_small {
border: 2px solid var(--uiKit-color-danger-border);
background: var(--uiKit-color-danger-100);
color: var(--uiKit-color-danger-600);
}
.uiKit-label-warning_regular,
.uiKit-label-warning_small {
border: 2px solid var(--uiKit-color-primary-focus-orange);
background: var(--uiKit-color-primary-100);
color: var(--uiKit-color-primary-700);
}
.uiKit-label-success_regular,
.uiKit-label-success_small {
border: 2px solid var(--uiKit-color-success-250);
background: var(--uiKit-color-success-100);
color: var(--uiKit-color-success-600);
}
.uiKit-notificationsContainer {
position: fixed;
z-index: 1000;
top: 0;
right: 0;
display: flex;
flex-direction: column;
}
.uiKit-notificationsContainer > .uiKit-autoCloseNotification-wrapper {
margin-top: 24px;
margin-right: 32px;
}
.uiKit-notification-default_regular,
.uiKit-notification-danger_regular,
.uiKit-notification-warning_regular,
.uiKit-notification-success_regular,
.uiKit-notification-default_small,
.uiKit-notification-danger_small,
.uiKit-notification-warning_small,
.uiKit-notification-success_small {
display: flex;
width: 246px;
min-height: 56px;
align-items: center;
padding: 0 23px 0 19px;
border-radius: 8px;
}
.uiKit-notification-default_small,
.uiKit-notification-danger_small,
.uiKit-notification-warning_small,
.uiKit-notification-success_small {
min-height: 32px;
padding: 0 11px 0 14px;
}
/* Default */
.uiKit-notification-default_regular,
.uiKit-notification-default_small {
border: 2px solid var(--uiKit-color-neutral-300);
background-color: var(--uiKit-color-neutral-100);
}
/* Success */
.uiKit-notification-success_regular,
.uiKit-notification-success_small {
border: 2px solid var(--uiKit-color-success-300);
background-color: var(--uiKit-color-success-100);
}
/* Warning */
.uiKit-notification-warning_regular,
.uiKit-notification-warning_small {
border: 2px solid var(--uiKit-color-primary-300);
background-color: var(--uiKit-color-primary-100);
}
/* Danger */
.uiKit-notification-danger_regular,
.uiKit-notification-danger_small {
border: 2px solid var(--uiKit-color-danger-300);
background-color: var(--uiKit-color-danger-100);
}
/* Icon */
.uiKit-notification-default_regular > .uiKit-notification-icon,
.uiKit-notification-default_small > .uiKit-notification-icon,
.uiKit-notification-default_regular > .uiKit-notification-icon,
.uiKit-notification-danger_regular > .uiKit-notification-icon,
.uiKit-notification-warning_regular > .uiKit-notification-icon,
.uiKit-notification-success_regular > .uiKit-notification-icon,
.uiKit-notification-default_small > .uiKit-notification-icon,
.uiKit-notification-danger_small > .uiKit-notification-icon,
.uiKit-notification-warning_small > .uiKit-notification-icon,
.uiKit-notification-success_small > .uiKit-notification-icon {
width: 28px;
height: 28px;
flex-basis: auto;
margin-right: 11px;
background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11.0107' r='10.5' fill='%237C7D81'/%3E%3Ccircle cx='11' cy='11.0107' r='9' fill='%23E1E2E6'/%3E%3Cpath d='M10.625 8.01074C11.4534 8.01074 12.125 7.33917 12.125 6.51074C12.125 5.68232 11.4534 5.01074 10.625 5.01074C9.79657 5.01074 9.125 5.68232 9.125 6.51074C9.125 7.33917 9.79657 8.01074 10.625 8.01074Z' fill='%23595A5F'/%3E%3Cpath d='M9.125 11.0107H9.875V15.5107H8.75C8.33579 15.5107 8 15.8465 8 16.2607C8 16.675 8.33579 17.0107 8.75 17.0107H13.25C13.6642 17.0107 14 16.675 14 16.2607C14 15.8465 13.6642 15.5107 13.25 15.5107H12.125V10.6357C12.125 10.0144 11.6213 9.51074 11 9.51074H9.125C8.71079 9.51074 8.375 9.84653 8.375 10.2607C8.375 10.675 8.71079 11.0107 9.125 11.0107Z' fill='%23595A5F'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
background-size: auto;
}
.uiKit-notification-success_regular > .uiKit-notification-icon,
.uiKit-notification-success_small > .uiKit-notification-icon {
background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11.0098' r='10.5' fill='%23499857'/%3E%3Ccircle cx='11' cy='11.0098' r='9' fill='%23A8D3AF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.1039 7.29294C16.5 7.62646 16.5507 8.21789 16.2171 8.61393L10.2171 15.7386C10.055 15.9312 9.82225 16.0504 9.57127 16.0695C9.32029 16.0887 9.07216 16.006 8.88272 15.8403L5.88272 13.2155C5.49305 12.8745 5.45354 12.2823 5.79448 11.8926C6.13542 11.5029 6.7277 11.4634 7.11737 11.8044L9.39836 13.8001L14.783 7.40614C15.1165 7.0101 15.7079 6.95942 16.1039 7.29294Z' fill='%23358343'/%3E%3C/svg%3E%0A");
}
.uiKit-notification-warning_regular > .uiKit-notification-icon,
.uiKit-notification-warning_small > .uiKit-notification-icon {
background-image: url("data:image/svg+xml,%3Csvg width='24' height='23' viewBox='0 0 24 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.7602 3.1172C10.3945 2.02475 10.7117 1.47853 11.0954 1.24683C11.6517 0.910897 12.3483 0.910897 12.9046 1.24683C13.2883 1.47853 13.6055 2.02475 14.2398 3.1172L23.241 18.6192C23.88 19.7198 24.1995 20.2701 24.2098 20.7198C24.2247 21.372 23.8756 21.9782 23.3042 22.2928C22.9101 22.5098 22.2738 22.5098 21.0012 22.5098H2.99882C1.72619 22.5098 1.08987 22.5098 0.695767 22.2928C0.124351 21.9782 -0.224684 21.372 -0.2098 20.7198C-0.199535 20.2701 0.119982 19.7198 0.759018 18.6192L9.7602 3.1172Z' fill='%23F5A207'/%3E%3Cpath d='M11.0398 3.91526C11.3117 3.44648 11.4476 3.21209 11.6121 3.11271C11.8506 2.9686 12.1494 2.9686 12.3879 3.11271C12.5524 3.21209 12.6883 3.44648 12.9602 3.91526L21.9082 19.3429C22.1817 19.8144 22.3185 20.0502 22.3228 20.2429C22.3291 20.5223 22.1795 20.7821 21.9346 20.9168C21.7657 21.0098 21.4932 21.0098 20.948 21.0098H3.05199C2.50684 21.0098 2.23426 21.0098 2.06539 20.9168C1.82054 20.7821 1.67094 20.5223 1.67721 20.2429C1.68154 20.0502 1.81829 19.8144 2.09181 19.3429L11.0398 3.91526Z' fill='%23FCEAB6'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.89 9.18418C10.8623 8.65221 11.4191 8.25977 12.0092 8.25977C12.5994 8.25977 13.1434 8.64349 13.125 9.17546L12.825 14.1987C12.8066 14.722 12.5441 15.0098 12 15.0098C11.4744 15.0098 11.2177 14.722 11.19 14.19L10.89 9.18418ZM12 19.1348C12.8284 19.1348 13.5 18.5471 13.5 17.8223C13.5 17.0974 12.8284 16.5098 12 16.5098C11.1716 16.5098 10.5 17.0974 10.5 17.8223C10.5 18.5471 11.1716 19.1348 12 19.1348Z' fill='%23B87407'/%3E%3C/svg%3E%0A");
}
.uiKit-notification-danger_regular > .uiKit-notification-icon,
.uiKit-notification-danger_small > .uiKit-notification-icon {
background-image: url("data:image/svg+xml,%3Csvg width='22' height='25' viewBox='0 0 22 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.95542 1.32419C10.1993 0.524547 11.7969 0.530515 13.0347 1.33942L19.7637 5.73677C20.8185 6.42607 21.4567 7.59905 21.4623 8.8591L21.4908 15.2016C21.4965 16.4836 20.847 17.6796 19.7686 18.3729L13.0278 22.7062C11.7926 23.5003 10.2074 23.5003 8.97217 22.7062L2.22216 18.3669C1.14883 17.6769 0.500007 16.4884 0.500006 15.2125L0.500001 8.80729C0.500001 7.53132 1.1488 6.34291 2.22211 5.6529L8.95542 1.32419Z' fill='%23E24F39'/%3E%3Cpath d='M9.90822 2.57569C10.5741 2.1543 11.4239 2.15746 12.0866 2.58377L19.0013 7.0318C19.5992 7.41642 19.9619 8.07744 19.9651 8.78837L19.9947 15.277C19.998 16.0003 19.6289 16.6744 19.0177 17.0612L12.0828 21.4495C11.4216 21.868 10.5784 21.868 9.91716 21.4495L2.97706 17.0577C2.36874 16.6728 2.00001 16.0031 2.00001 15.2832L2 8.73651C2 8.01665 2.36873 7.34694 2.97702 6.96199L9.90822 2.57569Z' fill='%23F7AFA4'/%3E%3Cpath d='M13.4697 8.47944C13.7626 8.18654 14.2374 8.18654 14.5303 8.47944C14.8232 8.77233 14.8232 9.2472 14.5303 9.5401L12.0607 12.0098L14.5303 14.4794C14.8232 14.7723 14.8232 15.2472 14.5303 15.5401C14.2374 15.833 13.7626 15.833 13.4697 15.5401L11 13.0704L8.53033 15.5401C8.23744 15.833 7.76256 15.833 7.46967 15.5401C7.17678 15.2472 7.17678 14.7723 7.46967 14.4794L9.93934 12.0098L7.46967 9.5401C7.17678 9.2472 7.17678 8.77233 7.46967 8.47944C7.76256 8.18654 8.23744 8.18654 8.53033 8.47944L11 10.9491L13.4697 8.47944Z' fill='%23BA3E2C'/%3E%3C/svg%3E%0A");
}
.uiKit-notification-default_small > .uiKit-notification-icon,
.uiKit-notification-success_small > .uiKit-notification-icon,
.uiKit-notification-warning_small > .uiKit-notification-icon,
.uiKit-notification-danger_small > .uiKit-notification-icon {
width: 12px;
min-width: 12px;
height: 12px;
margin-right: 10px;
background-size: 13px 13px;
}
/* Font color */
.uiKit-notification-default_regular > p,
.uiKit-notification-default_small > p {
flex-basis: 100%;
color: var(--uiKit-color-neutral-700);
}
.uiKit-notification-success_regular > p,
.uiKit-notification-success_small > p {
flex-basis: 100%;
color: var(--uiKit-color-success-600);
}
.uiKit-notification-warning_regular > p,
.uiKit-notification-warning_small > p {
flex-basis: 100%;
color: var(--uiKit-color-primary-700);
}
.uiKit-notification-danger_regular > p,
.uiKit-notification-danger_small > p {
flex-basis: 100%;
color: var(--uiKit-color-danger-600);
}
/* Close */
.uiKit-notification-default_regular > .uiKit-notification-close,
.uiKit-notification-default_small > .uiKit-notification-close,
.uiKit-notification-success_regular > .uiKit-notification-close,
.uiKit-notification-success_small > .uiKit-notification-close,
.uiKit-notification-warning_regular > .uiKit-notification-close,
.uiKit-notification-warning_small > .uiKit-notification-close,
.uiKit-notification-danger_regular > .uiKit-notification-close,
.uiKit-notification-danger_small > .uiKit-notification-close {
width: 16px;
height: 17px;
flex-basis: auto;
background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53034 1.54107C9.82324 1.24818 9.82324 0.773306 9.53034 0.480413C9.23745 0.187519 8.76258 0.187519 8.46968 0.480412L5 3.95009L1.53033 0.480417C1.23744 0.187524 0.762568 0.187524 0.469674 0.480417C0.176781 0.773311 0.176781 1.24818 0.469674 1.54108L3.93934 5.01075L0.469671 8.48041C0.176777 8.7733 0.176777 9.24818 0.46967 9.54107C0.762563 9.83397 1.23744 9.83397 1.53033 9.54107L5 6.07141L8.46967 9.54108C8.76257 9.83397 9.23744 9.83397 9.53033 9.54108C9.82323 9.24818 9.82323 8.77331 9.53033 8.48042L6.06066 5.01075L9.53034 1.54107Z' fill='%237C7D81'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
background-size: auto;
cursor: pointer;
}
.uiKit-notification-success_regular > .uiKit-notification-close,
.uiKit-notification-success_small > .uiKit-notification-close {
background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53034 1.54107C9.82324 1.24818 9.82324 0.773306 9.53034 0.480413C9.23745 0.187519 8.76258 0.187519 8.46968 0.480412L5 3.95009L1.53033 0.480417C1.23744 0.187524 0.762568 0.187524 0.469674 0.480417C0.176781 0.773311 0.176781 1.24818 0.469674 1.54108L3.93934 5.01075L0.469671 8.48041C0.176777 8.7733 0.176777 9.24818 0.46967 9.54107C0.762563 9.83397 1.23744 9.83397 1.53033 9.54107L5 6.07141L8.46967 9.54108C8.76257 9.83397 9.23744 9.83397 9.53033 9.54108C9.82323 9.24818 9.82323 8.77331 9.53033 8.48042L6.06066 5.01075L9.53034 1.54107Z' fill='%23499857'/%3E%3C/svg%3E%0A");
}
.uiKit-notification-warning_regular > .uiKit-notification-close,
.uiKit-notification-warning_small > .uiKit-notification-close {
background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53034 1.54107C9.82324 1.24818 9.82324 0.773306 9.53034 0.480413C9.23745 0.187519 8.76258 0.187519 8.46968 0.480412L5 3.95009L1.53033 0.480417C1.23744 0.187524 0.762568 0.187524 0.469674 0.480417C0.176781 0.773311 0.176781 1.24818 0.469674 1.54108L3.93934 5.01075L0.469671 8.48041C0.176777 8.7733 0.176777 9.24818 0.46967 9.54107C0.762563 9.83397 1.23744 9.83397 1.53033 9.54107L5 6.07141L8.46967 9.54108C8.76257 9.83397 9.23744 9.83397 9.53033 9.54108C9.82323 9.24818 9.82323 8.77331 9.53033 8.48042L6.06066 5.01075L9.53034 1.54107Z' fill='%23B87407'/%3E%3C/svg%3E%0A");
}
.uiKit-notification-danger_regular > .uiKit-notification-close,
.uiKit-notification-danger_small > .uiKit-notification-close {
background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53034 1.54107C9.82324 1.24818 9.82324 0.773306 9.53034 0.480413C9.23745 0.187519 8.76258 0.187519 8.46968 0.480412L5 3.95009L1.53033 0.480417C1.23744 0.187524 0.762568 0.187524 0.469674 0.480417C0.176781 0.773311 0.176781 1.24818 0.469674 1.54108L3.93934 5.01075L0.469671 8.48041C0.176777 8.7733 0.176777 9.24818 0.46967 9.54107C0.762563 9.83397 1.23744 9.83397 1.53033 9.54107L5 6.07141L8.46967 9.54108C8.76257 9.83397 9.23744 9.83397 9.53033 9.54108C9.82323 9.24818 9.82323 8.77331 9.53033 8.48042L6.06066 5.01075L9.53034 1.54107Z' fill='%23F1735F'/%3E%3C/svg%3E%0A");
}
.uiKit-notification-default_small > .uiKit-notification-close,
.uiKit-notification-success_small > .uiKit-notification-close,
.uiKit-notification-warning_small > .uiKit-notification-close,
.uiKit-notification-danger_small > .uiKit-notification-close {
width: 10px;
min-width: 10px;
height: 10px;
}
.uiKit-tooltip {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
padding: 7px 8px 5px;
background: rgba(35, 35, 37, 0.9);
border-radius: 8px;
box-shadow: 0px 16px 40px -40px rgba(0, 0, 0, 0.16);
}
.uiKit-tooltip > p {
color: var(--uiKit-color-absolute-white) !important;
}
.uiKit-tooltip-arrowBottomLeft,
.uiKit-tooltip-arrowBottomCenter,
.uiKit-tooltip-arrowBottomRight,
.uiKit-tooltip-arrowTopLeft,
.uiKit-tooltip-arrowTopCenter,
.uiKit-tooltip-arrowTopRight,
.uiKit-tooltip-arrowLeft,
.uiKit-tooltip-arrowRight {
position: absolute;
width: 12px;
height: 5px;
background-image: url("data:image/svg+xml,%3Csvg width='12' height='5' viewBox='0 0 12 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.9' d='M5.35982 4.47628C5.73066 4.78532 6.26934 4.78532 6.64018 4.47628L12 0.00976562H0L5.35982 4.47628Z' fill='%23232325'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.uiKit-tooltip-arrowBottomLeft,
.uiKit-tooltip-arrowBottomCenter,
.uiKit-tooltip-arrowBottomRight {
bottom: -5px;
}
.uiKit-tooltip-arrowTopLeft,
.uiKit-tooltip-arrowTopCenter,
.uiKit-tooltip-arrowTopRight {
top: -5px;
transform: rotate(180deg);
}
.uiKit-tooltip-arrowBottomLeft,
.uiKit-tooltip-arrowTopLeft {
left: 8px;
}
.uiKit-tooltip-arrowBottomCenter {
left: 50%;
transform: translate(-50%);
}
.uiKit-tooltip-arrowTopCenter {
left: 50%;
transform: rotate(180deg) translate(50%);
}
.uiKit-tooltip-arrowBottomRight,
.uiKit-tooltip-arrowTopRight {
right: 8px;
}
.uiKit-tooltip-arrowLeft {
left: -5px;
transform: rotate(90deg) translate(-10%, 70%);
}
.uiKit-tooltip-arrowRight {
right: -5px;
transform: rotate(270deg) translate(10%, 70%);
}
.uiKit-dots-largeSize {
width: 46px;
}
.uiKit-dots-regularSize {
width: 36px;
}
.uiKit-dots-smallSize {
width: 26px;
}
.uiKit-autoCloseNotification-wrapper {
position: relative;
overflow: hidden;
width: 336px;
border-radius: 8px;
}
.uiKit-autoCloseNotification-wrapper > .uiKit-notification-default_regular,
.uiKit-autoCloseNotification-wrapper > .uiKit-notification-default_regular,
.uiKit-autoCloseNotification-wrapper > .uiKit-notification-danger_regular,