ui-beyable 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/cjs/index.css CHANGED
@@ -1,2 +1,1448 @@
1
- .modal-module_outer__OgWPN{align-items:center;animation:modal-module_outer__OgWPN .1s ease-out;background:rgba(0,0,0,.4);bottom:0;display:flex;justify-content:center;left:0;outline:none;padding:10px;position:fixed;right:0;top:0;z-index:10200}.modal-module_outer_fullscreen__7Vzr-{padding:20px}.modal-module_inner__xBtSe{background:#fff;border-radius:6px;box-shadow:0 0 20px rgba(0,0,0,.1);display:flex;flex-direction:column;max-height:100%;max-width:100%;position:relative;transition:all .2s;width:500px}.modal-module_toto__tDx6M{color:pink}.modal-module_outer_animation_slide_down__reDF3{color:red}.modal-module_outer_animation_slide_down__reDF3 .modal-module_inner__xBtSe{animation:modal-module_inner_slide_down__Fbh31 .2s ease-out}.collapse-module_header__3XouW{align-items:center;display:flex}.collapse-module_header_btn__WqgSX{border-radius:5px;cursor:pointer;flex:0 0 auto;font-size:16px;font-weight:500;padding:6px 10px 6px 24px;position:relative;transition:all .2s}.collapse-module_header_btn__WqgSX:focus,.collapse-module_header_btn__WqgSX:hover{background-color:var(--main-border-color)}.collapse-module_header__3XouW:after{border-top:1px solid var(--main-border-color);content:"";flex:1 1 auto;margin-left:4px}.collapse-module_arrow__m09w4{height:14px;left:0;margin-top:-7px;position:absolute;top:50%;transition:all .1s;width:20px}.collapse-module_arrow__m09w4 .collapse-module_fas__KttZB{display:block}.collapse-module_wrapper_open__-Pauk .collapse-module_arrow__m09w4{transform:rotate(180deg)}.collapse-module_body__n-AEV{margin-bottom:16px;margin-top:8px;transition:all .2s}.collapse-module_wrapper_close__pPihr .collapse-module_body__n-AEV{height:0;margin-top:0;overflow:hidden}
2
- /*# sourceMappingURL=index.css.map */
1
+ /* Header */
2
+ .header {
3
+ padding: 0 22px;
4
+ height: 54px;
5
+ border-bottom: solid 1px var(--main-border-color);
6
+ background: var(--white);
7
+ display: flex;
8
+ align-items: center;
9
+ }
10
+
11
+ .header_col_logo {
12
+ flex: 0 0 auto;
13
+ margin-right: 30px;
14
+ }
15
+
16
+ .header_col_left {
17
+ flex: 1 1 auto;
18
+ display: flex;
19
+ align-items: center;
20
+ }
21
+
22
+ .header_col_right {
23
+ flex: 0 0 auto;
24
+ margin-left: 30px;
25
+ display: flex;
26
+ align-items: center;
27
+ }
28
+
29
+ /* Link */
30
+ .link_common {
31
+ flex: 0 0 auto;
32
+ font-size: 15px;
33
+ font-family: "Roboto", Arial, sans-serif;
34
+ font-weight: 500;
35
+ }
36
+
37
+ .link_common a {
38
+ position: relative;
39
+ display: block;
40
+ padding: 0 12px;
41
+ height: 54px;
42
+ line-height: 54px;
43
+ text-decoration: none;
44
+ transition: color 200ms;
45
+ }
46
+
47
+ .link_common a::after {
48
+ content: "";
49
+ position: absolute;
50
+ bottom: -1px;
51
+ left: 10px;
52
+ right: 10px;
53
+ height: 3px;
54
+ border-radius: 3px 3px 0 0;
55
+ transition: background 200ms;
56
+ }
57
+
58
+ .link,
59
+ .link_active {
60
+ composes: link_common;
61
+ }
62
+
63
+ .link a {
64
+ color: var(--grey-1);
65
+ }
66
+
67
+ .link a:hover,
68
+ .link a:focus {
69
+ color: var(--grey-0);
70
+ }
71
+
72
+ .link a:hover::after,
73
+ .link a:focus::after {
74
+ background-color: var(--grey-7);
75
+ }
76
+
77
+ .link_active a,
78
+ .link_active a:hover,
79
+ .link_active a:focus {
80
+ color: var(--turquoise);
81
+ }
82
+
83
+ .link_active a::after {
84
+ background-color: currentColor;
85
+ }
86
+
87
+ /* Logo */
88
+ .logo {
89
+ position: relative;
90
+ display: flex;
91
+ align-items: center;
92
+ height: 42px;
93
+ }
94
+
95
+ .logo_img {
96
+ flex: 0 0 auto;
97
+ margin-right: 12px;
98
+ }
99
+
100
+ .logo_img_svg {
101
+ display: block;
102
+ }
103
+
104
+ .logo_name {
105
+ color: var(--turquoise);
106
+ font-family: "IBM Plex Sans", sans-serif;
107
+ font-size: 21px;
108
+ font-weight: 700;
109
+ text-transform: uppercase;
110
+ user-select: none;
111
+ }
112
+
113
+ .logo_overlay_link,
114
+ .logo_overlay_link a {
115
+ position: absolute;
116
+ top: 0;
117
+ bottom: 0;
118
+ left: 0;
119
+ right: 0;
120
+ }
121
+
122
+ .logo_overlay_link a {
123
+ font-size: 1px;
124
+ text-indent: -1000px;
125
+ color: transparent;
126
+ }
127
+
128
+ .outer {
129
+ position: fixed;
130
+ z-index: 10200;
131
+ top: 0;
132
+ left: 0;
133
+ right: 0;
134
+ bottom: 0;
135
+ padding: 10px;
136
+ outline: none;
137
+ background: rgba(0, 0, 0, 0.4);
138
+ display: -ms-flexbox;
139
+ display: -webkit-flex;
140
+ display: -webkit-box;
141
+ display: -moz-box;
142
+ display: flex;
143
+ -ms-flex-align: center;
144
+ -webkit-align-items: center;
145
+ -webkit-box-align: center;
146
+ -moz-box-align: center;
147
+ align-items: center;
148
+ -ms-flex-pack: center;
149
+ -webkit-justify-content: center;
150
+ -webkit-box-pack: center;
151
+ -moz-box-pack: center;
152
+ justify-content: center;
153
+ animation: outer 100ms ease-out;
154
+ }
155
+
156
+ .outer_fullscreen {
157
+ padding: 20px;
158
+ }
159
+
160
+ /* @keyframes outer {
161
+ 0% {
162
+ opacity: 0;
163
+ }
164
+ 100% {
165
+ opacity: 1;
166
+ }
167
+ } */
168
+ .inner {
169
+ position: relative;
170
+ background: #fff;
171
+ width: 500px;
172
+ max-width: 100%;
173
+ max-height: 100%;
174
+ border-radius: 6px;
175
+ box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
176
+ display: -ms-flexbox;
177
+ display: -webkit-flex;
178
+ display: -webkit-box;
179
+ display: -moz-box;
180
+ display: flex;
181
+ -webkit-flex-direction: column;
182
+ -ms-flex-direction: column;
183
+ -webkit-box-orient: vertical;
184
+ -webkit-box-direction: normal;
185
+ -moz-box-orient: vertical;
186
+ -moz-box-direction: normal;
187
+ flex-direction: column;
188
+ transition: all 200ms;
189
+ }
190
+
191
+ .toto {
192
+ color: pink;
193
+ }
194
+
195
+ .outer_animation_slide_down {
196
+ color: red;
197
+ }
198
+
199
+ .outer_animation_slide_down .inner {
200
+ animation: inner_slide_down 200ms ease-out;
201
+ }
202
+
203
+ /* @keyframes inner_slide_down {
204
+ 0% {
205
+ transform: translateY(-80px);
206
+ }
207
+ 100% {
208
+ transform: translateY(0);
209
+ }
210
+ } */
211
+ :root {
212
+ --btn-color-primary: var(--turquoise);
213
+ --btn-color-secondary: var(--grey-1);
214
+ --btn-color-alert: #F04F5B;
215
+ --btn-color-warning: #F7A100;
216
+ --btn-color-success: #43B55E;
217
+ --btn-color-primary-hover: #0068EF;
218
+ --btn-color-secondary-hover: #575A68;
219
+ --btn-color-alert-hover: #E14A55;
220
+ --btn-color-warning-hover: #E89700;
221
+ --btn-color-success-hover: #3FAA58;
222
+ --btn-color-primary-light: var(--turquoise-light);
223
+ --btn-color-secondary-light: #E9EAF0;
224
+ --btn-color-alert-light: #FDE2E4;
225
+ --btn-color-warning-light: #FEEDCF;
226
+ --btn-color-success-light: #E6F5E9;
227
+ }
228
+
229
+ .btnUi {
230
+ position: relative;
231
+ display: inline-flex;
232
+ align-items: center;
233
+ justify-content: center;
234
+ vertical-align: middle;
235
+ line-height: 20px;
236
+ min-height: 20px;
237
+ max-width: 100%;
238
+ padding: 8px 10px;
239
+ border: solid 1px transparent;
240
+ font-family: "Roboto", sans-serif;
241
+ font-size: 15px;
242
+ font-weight: 500;
243
+ text-align: center;
244
+ border-radius: 6px;
245
+ cursor: pointer;
246
+ -ms-touch-action: manipulation;
247
+ touch-action: manipulation;
248
+ cursor: pointer;
249
+ -webkit-user-select: none;
250
+ -moz-user-select: none;
251
+ -ms-user-select: none;
252
+ user-select: none;
253
+ -webkit-transition: all 100ms ease-in-out;
254
+ -moz-transition: all 100ms ease-in-out;
255
+ -ms-transition: all 100ms ease-in-out;
256
+ transition: all 100ms ease-in-out;
257
+ }
258
+
259
+ .btnUi.w_full {
260
+ display: flex;
261
+ width: 100%;
262
+ }
263
+
264
+ .btnUi.h_full {
265
+ height: 100%;
266
+ }
267
+
268
+ .btnUi.btn_strong {
269
+ font-weight: 600;
270
+ }
271
+
272
+ .btnUi.btn_light {
273
+ font-weight: 400;
274
+ }
275
+
276
+ .btnUi.btn_disabled,
277
+ .btnUi.btn_disabled:hover {
278
+ cursor: not-allowed;
279
+ }
280
+
281
+ .btn_group,
282
+ .btn_group_l,
283
+ .btn_group_xl,
284
+ .btn_wrapper {
285
+ display: inline-block;
286
+ }
287
+
288
+ .btnUi + .btnUi,
289
+ .btn_switch + .btnUi {
290
+ margin-left: 8px;
291
+ }
292
+
293
+ .btn_group .btnUi:not(:first-child),
294
+ .btn_group .btn_switch:not(:first-child),
295
+ .btn_group .btn_wrapper:not(:first-child),
296
+ .btn_group button:not(:first-child) {
297
+ margin-left: 8px;
298
+ }
299
+
300
+ .btn_group_l .btnUi:not(:first-child),
301
+ .btn_group_l .btn_switch:not(:first-child),
302
+ .btn_group_l .btn_wrapper:not(:first-child),
303
+ .btn_group_l button:not(:first-child) {
304
+ margin-left: 12px;
305
+ }
306
+
307
+ .btn_group_xl .btnUi:not(:first-child),
308
+ .btn_group_xl .btn_switch:not(:first-child),
309
+ .btn_group_xl .btn_wrapper:not(:first-child),
310
+ .btn_group_xl button:not(:first-child) {
311
+ margin-left: 16px;
312
+ }
313
+
314
+ .btn_switch {
315
+ display: inline-flex;
316
+ vertical-align: middle;
317
+ }
318
+
319
+ .btn_switch .btnUi {
320
+ margin-left: 0 !important;
321
+ }
322
+
323
+ .btn_switch > .btnUi:not(:first-child),
324
+ .btn_switch > *:not(:first-child) .btnUi {
325
+ border-top-left-radius: 0;
326
+ border-bottom-left-radius: 0;
327
+ }
328
+
329
+ .btn_switch > *:not(:first-child) {
330
+ margin-left: -1px !important;
331
+ }
332
+
333
+ .btn_switch > .btnUi:not(:last-child),
334
+ .btn_switch > *:not(:last-child) .btnUi {
335
+ border-top-right-radius: 0;
336
+ border-bottom-right-radius: 0;
337
+ }
338
+
339
+ .btn_switch .btnUi.active {
340
+ position: relative;
341
+ z-index: 1;
342
+ }
343
+
344
+ .btn_switch .btnUi .btn_txt {
345
+ min-width: unset !important;
346
+ }
347
+
348
+ .btn_switch.w_full {
349
+ width: 100%;
350
+ }
351
+
352
+ .btn_switch.w_full .btnUi {
353
+ width: 100%;
354
+ flex: 1 1 auto;
355
+ white-space: nowrap;
356
+ }
357
+
358
+ .btnUi.do_input_hug {
359
+ border-top-left-radius: 0;
360
+ border-bottom-left-radius: 0;
361
+ margin-left: -1px;
362
+ position: relative;
363
+ }
364
+
365
+ .btn_txt {
366
+ margin: 0 4px;
367
+ flex: 0 1 auto;
368
+ }
369
+
370
+ .btnUi:not(.has_icon) .btn_txt {
371
+ min-width: 44px;
372
+ }
373
+
374
+ .btnUi.btn_no_min_width .btn_txt {
375
+ min-width: unset;
376
+ }
377
+
378
+ .btn_desc {
379
+ display: block;
380
+ font-size: calc(100% - 1px);
381
+ font-weight: 400;
382
+ }
383
+
384
+ /* Icon */
385
+ .btnUi .fas,
386
+ .btnUi .fa {
387
+ margin: 0 4px;
388
+ flex: 0 0 auto;
389
+ font-size: 16px;
390
+ line-height: 20px;
391
+ }
392
+
393
+ .btnUi.btn_s .fas,
394
+ .btnUi.btn_s .fa {
395
+ font-size: 14px;
396
+ margin: 0 2px;
397
+ }
398
+
399
+ .btnUi .fa-sm {
400
+ font-size: 14px;
401
+ margin: 0 2px;
402
+ }
403
+
404
+ /* Rounded */
405
+ .btn_rounded {
406
+ border-radius: 100px;
407
+ }
408
+
409
+ /* Size */
410
+ .btn_xxs {
411
+ padding: 3px 8px;
412
+ font-size: 13px;
413
+ }
414
+
415
+ .btn_xs {
416
+ padding: 5px 8px;
417
+ font-size: 13px;
418
+ }
419
+
420
+ .btn_s {
421
+ padding: 6px 10px;
422
+ font-size: 14px;
423
+ }
424
+
425
+ .btn_m {
426
+ padding: 8px 10px;
427
+ }
428
+
429
+ .btn_l {
430
+ padding: 12px 14px;
431
+ }
432
+
433
+ .btn_xl {
434
+ padding: 16px 20px;
435
+ font-size: 16px;
436
+ }
437
+
438
+ .btn_xxl {
439
+ padding: 18px 28px;
440
+ font-size: 18px;
441
+ }
442
+
443
+ .btn_w_l {
444
+ padding-left: 14px;
445
+ padding-right: 14px;
446
+ }
447
+
448
+ .btn_w_xs {
449
+ padding-left: 8px;
450
+ padding-right: 8px;
451
+ }
452
+
453
+ .btn_w_xxs {
454
+ padding-left: 6px;
455
+ padding-right: 6px;
456
+ }
457
+
458
+ /* Sub btn */
459
+ .btn_sub {
460
+ padding-left: 2px;
461
+ padding-right: 2px;
462
+ }
463
+
464
+ .btn_sub .fas,
465
+ .btn_sub .fa {
466
+ font-size: 12px;
467
+ margin: 0 2px;
468
+ }
469
+
470
+ /* Font size */
471
+ .btn_fs_l {
472
+ font-size: 16px;
473
+ }
474
+
475
+ /* Text align */
476
+ .btn_align_left {
477
+ text-align: left;
478
+ }
479
+
480
+ /*****************/
481
+ /* Default style */
482
+ /*****************/
483
+ .btn_primary {
484
+ color: #fff;
485
+ background: var(--btn-color-primary);
486
+ }
487
+
488
+ .btn_primary:hover,
489
+ .btn_primary:focus {
490
+ background: var(--btn-color-primary-hover);
491
+ }
492
+
493
+ .btn_secondary {
494
+ color: #fff;
495
+ background: var(--btn-color-secondary);
496
+ }
497
+
498
+ .btn_secondary:hover,
499
+ .btn_secondary:focus {
500
+ background: var(--btn-color-secondary-hover);
501
+ }
502
+
503
+ .btn_alert {
504
+ color: #fff;
505
+ background: var(--btn-color-alert);
506
+ }
507
+
508
+ .btn_alert:hover,
509
+ .btn_alert:focus {
510
+ background: var(--btn-color-alert-hover);
511
+ }
512
+
513
+ .btn_warning {
514
+ color: #fff;
515
+ background: var(--btn-color-warning);
516
+ }
517
+
518
+ .btn_warning:hover,
519
+ .btn_warning:focus {
520
+ background: var(--btn-color-warning-hover);
521
+ }
522
+
523
+ .btn_success {
524
+ color: #fff;
525
+ background: var(--btn-color-success);
526
+ }
527
+
528
+ .btn_success:hover,
529
+ .btn_success:focus {
530
+ background: var(--btn-color-success-hover);
531
+ }
532
+
533
+ .btn_primary.btn_disabled,
534
+ .btn_secondary.btn_disabled,
535
+ .btn_alert.btn_disabled,
536
+ .btn_warning.btn_disabled,
537
+ .btn_success.btn_disabled,
538
+ .btn_primary.btn_disabled:hover,
539
+ .btn_alert.btn_disabled:hover,
540
+ .btn_warning.btn_disabled:hover,
541
+ .btn_success.btn_disabled:hover {
542
+ background: #E2E3EA;
543
+ }
544
+
545
+ /*****************/
546
+ /* Reverse style */
547
+ /*****************/
548
+ .btn_reverse_primary {
549
+ color: var(--turquoise);
550
+ background: var(--turquoise-light);
551
+ }
552
+
553
+ .btn_reverse_primary:hover,
554
+ .btn_reverse_primary:focus {
555
+ border-color: currentColor;
556
+ }
557
+
558
+ .btn_reverse_secondary {
559
+ color: var(--btn-color-secondary);
560
+ background: var(--btn-color-secondary-light);
561
+ }
562
+
563
+ .btn_reverse_secondary:hover,
564
+ .btn_reverse_secondary:focus {
565
+ border-color: currentColor;
566
+ }
567
+
568
+ .btn_reverse_alert {
569
+ color: var(--btn-color-alert);
570
+ background: var(--btn-color-alert-light);
571
+ }
572
+
573
+ .btn_reverse_alert:hover,
574
+ .btn_reverse_alert:focus {
575
+ border-color: currentColor;
576
+ }
577
+
578
+ .btn_reverse_warning {
579
+ color: var(--btn-color-warning);
580
+ background: var(--btn-color-warning-light);
581
+ }
582
+
583
+ .btn_reverse_warning:hover,
584
+ .btn_reverse_warning:focus {
585
+ border-color: currentColor;
586
+ }
587
+
588
+ .btn_reverse_success {
589
+ color: var(--btn-color-success);
590
+ background: var(--btn-color-success-light);
591
+ }
592
+
593
+ .btn_reverse_success:hover,
594
+ .btn_reverse_success:focus {
595
+ border-color: currentColor;
596
+ }
597
+
598
+ .btn_reverse_primary.btn_disabled,
599
+ .btn_reverse_secondary.btn_disabled,
600
+ .btn_reverse_alert.btn_disabled,
601
+ .btn_reverse_warning.btn_disabled,
602
+ .btn_reverse_success.btn_disabled,
603
+ .btn_reverse_primary.btn_disabled:hover,
604
+ .btn_reverse_secondary.btn_disabled:hover,
605
+ .btn_reverse_alert.btn_disabled:hover,
606
+ .btn_reverse_warning.btn_disabled:hover,
607
+ .btn_reverse_success.btn_disabled:hover {
608
+ background: #F7F8FA;
609
+ color: #CAD0DB;
610
+ border-color: transparent;
611
+ }
612
+
613
+ /*****************/
614
+ /* Outline style */
615
+ /*****************/
616
+ .btn_outline_primary {
617
+ color: var(--btn-color-primary);
618
+ border-color: currentColor;
619
+ background: none;
620
+ }
621
+
622
+ .btn_outline_primary:hover,
623
+ .btn_outline_primary:focus {
624
+ background-color: var(--btn-color-primary-light);
625
+ }
626
+
627
+ .btn_outline_secondary {
628
+ color: var(--btn-color-secondary);
629
+ border-color: #CAD0DB;
630
+ background: none;
631
+ }
632
+
633
+ .btn_outline_secondary:hover,
634
+ .btn_outline_secondary:focus {
635
+ background: #F7F7FA;
636
+ }
637
+
638
+ .btn_outline_secondary.active,
639
+ .btn_outline_secondary.active:hover {
640
+ color: var(--btn-color-primary);
641
+ border-color: currentColor;
642
+ background-color: var(--btn-color-primary-light);
643
+ }
644
+
645
+ .btn_outline_alert {
646
+ color: var(--btn-color-alert);
647
+ border-color: currentColor;
648
+ background: none;
649
+ }
650
+
651
+ .btn_outline_alert:hover,
652
+ .btn_outline_alert:focus {
653
+ background-color: var(--btn-color-alert-light);
654
+ }
655
+
656
+ .btn_outline_warning {
657
+ color: var(--btn-color-warning);
658
+ border-color: currentColor;
659
+ background: none;
660
+ }
661
+
662
+ .btn_outline_warning:hover,
663
+ .btn_outline_warning:focus {
664
+ background-color: var(--btn-color-warning-light);
665
+ }
666
+
667
+ .btn_outline_success {
668
+ color: var(--btn-color-success);
669
+ border-color: currentColor;
670
+ background: none;
671
+ }
672
+
673
+ .btn_outline_success:hover,
674
+ .btn_outline_success:focus {
675
+ background-color: var(--btn-color-success-light);
676
+ }
677
+
678
+ .btn_outline_primary.btn_disabled,
679
+ .btn_outline_secondary.btn_disabled,
680
+ .btn_outline_alert.btn_disabled,
681
+ .btn_outline_warning.btn_disabled,
682
+ .btn_outline_success.btn_disabled,
683
+ .btn_outline_primary.btn_disabled:hover,
684
+ .btn_outline_secondary.btn_disabled:hover,
685
+ .btn_outline_alert.btn_disabled:hover,
686
+ .btn_outline_warning.btn_disabled:hover,
687
+ .btn_outline_success.btn_disabled:hover {
688
+ background: none;
689
+ color: #DFE3EA;
690
+ border-color: currentColor;
691
+ }
692
+
693
+ /*****************/
694
+ /* Ghost style */
695
+ /*****************/
696
+ .btn_ghost_primary {
697
+ color: var(--btn-color-primary);
698
+ background: none;
699
+ }
700
+
701
+ .btn_ghost_primary:hover {
702
+ background-color: var(--btn-color-primary-light);
703
+ }
704
+
705
+ .btn_ghost_secondary {
706
+ color: var(--btn-color-secondary);
707
+ background: none;
708
+ }
709
+
710
+ .btn_ghost_secondary:hover,
711
+ .btn_ghost_secondary:focus {
712
+ background: #F7F7FA;
713
+ }
714
+
715
+ .btn_ghost_grey {
716
+ color: var(--grey-3);
717
+ background: none;
718
+ }
719
+
720
+ .btn_ghost_grey:hover,
721
+ .btn_ghost_grey:focus {
722
+ background: #F7F7FA;
723
+ }
724
+
725
+ .btn_ghost_alert {
726
+ color: var(--btn-color-alert);
727
+ background: none;
728
+ }
729
+
730
+ .btn_ghost_alert:hover,
731
+ .btn_ghost_alert:focus {
732
+ background-color: var(--btn-color-alert-light);
733
+ }
734
+
735
+ .btn_ghost_warning {
736
+ color: var(--btn-color-warning);
737
+ background: none;
738
+ }
739
+
740
+ .btn_ghost_warning:hover,
741
+ .btn_ghost_warning:focus {
742
+ background-color: var(--btn-color-warning-light);
743
+ }
744
+
745
+ .btn_ghost_success {
746
+ color: var(--btn-color-success);
747
+ background: none;
748
+ }
749
+
750
+ .btn_ghost_success:hover,
751
+ .btn_ghost_success:focus {
752
+ background-color: var(--btn-color-success-light);
753
+ }
754
+
755
+ .btn_ghost_primary.btn_disabled,
756
+ .btn_ghost_secondary.btn_disabled,
757
+ .btn_ghost_grey.btn_disabled,
758
+ .btn_ghost_alert.btn_disabled,
759
+ .btn_ghost_warning.btn_disabled,
760
+ .btn_ghost_success.btn_disabled,
761
+ .btn_ghost_primary.btn_disabled:hover,
762
+ .btn_ghost_secondary.btn_disabled:hover,
763
+ .btn_ghost_alert.btn_disabled:hover,
764
+ .btn_ghost_warning.btn_disabled:hover,
765
+ .btn_ghost_success.btn_disabled:hover {
766
+ background: none;
767
+ color: #CAD0DB;
768
+ }
769
+
770
+ .btn_ghost_black {
771
+ color: var(--grey-0);
772
+ background: none;
773
+ border-color: transparent;
774
+ }
775
+
776
+ .btn_ghost_black:hover {
777
+ background-color: rgba(202, 208, 219, 0.0666666667);
778
+ }
779
+
780
+ .btn_ghost_black:active {
781
+ background-color: rgba(202, 208, 219, 0.1333333333);
782
+ }
783
+
784
+ .btn_ghost_black.btn_disabled {
785
+ color: rgba(93, 99, 126, 0.2666666667);
786
+ }
787
+
788
+ .btn_ghost_black.btn_reset_margin {
789
+ left: -10px;
790
+ }
791
+
792
+ /**********************/
793
+ /* Ghost+outline style */
794
+ /**********************/
795
+ .btn_ghost_outline_primary {
796
+ color: var(--btn-color-primary);
797
+ background: none;
798
+ }
799
+
800
+ .btn_ghost_outline_primary:hover,
801
+ .btn_ghost_outline_primary:focus {
802
+ background-color: var(--btn-color-primary-light);
803
+ border-color: currentColor;
804
+ }
805
+
806
+ .btn_ghost_outline_secondary {
807
+ color: var(--btn-color-secondary);
808
+ background: none;
809
+ }
810
+
811
+ .btn_ghost_outline_secondary:hover,
812
+ .btn_ghost_outline_secondary:focus {
813
+ background: #F7F7FA;
814
+ border-color: currentColor;
815
+ border-color: #CAD0DB;
816
+ }
817
+
818
+ .btn_ghost_outline_alert {
819
+ color: var(--btn-color-alert);
820
+ background: none;
821
+ }
822
+
823
+ .btn_ghost_outline_alert:hover,
824
+ .btn_ghost_outline_alert:focus {
825
+ background-color: var(--btn-color-alert-light);
826
+ border-color: currentColor;
827
+ }
828
+
829
+ .btn_ghost_outline_warning {
830
+ color: var(--btn-color-warning);
831
+ background: none;
832
+ }
833
+
834
+ .btn_ghost_outline_warning:hover,
835
+ .btn_ghost_outline_warning:focus {
836
+ background-color: var(--btn-color-warning-light);
837
+ border-color: currentColor;
838
+ }
839
+
840
+ .btn_ghost_outline_success {
841
+ color: var(--btn-color-success);
842
+ background: none;
843
+ }
844
+
845
+ .btn_ghost_outline_success:hover,
846
+ .btn_ghost_outline_success:focus {
847
+ background-color: var(--btn-color-success-light);
848
+ border-color: currentColor;
849
+ }
850
+
851
+ .btn_ghost_outline_primary.btn_disabled,
852
+ .btn_ghost_outline_secondary.btn_disabled,
853
+ .btn_ghost_outline_alert.btn_disabled,
854
+ .btn_ghost_outline_warning.btn_disabled,
855
+ .btn_ghost_outline_success.btn_disabled,
856
+ .btn_ghost_outline_primary.btn_disabled:hover,
857
+ .btn_ghost_outline_secondary.btn_disabled:hover,
858
+ .btn_ghost_outline_alert.btn_disabled:hover,
859
+ .btn_ghost_outline_warning.btn_disabled:hover,
860
+ .btn_ghost_outline_success.btn_disabled:hover {
861
+ background: none;
862
+ color: #CAD0DB;
863
+ border-color: transparent;
864
+ }
865
+
866
+ /*****************/
867
+ /* Link style */
868
+ /*****************/
869
+ .btn_link_primary,
870
+ .btn_link_secondary,
871
+ .btn_link_grey,
872
+ .btn_link_alert,
873
+ .btn_link_warning,
874
+ .btn_link_success {
875
+ padding: 0;
876
+ background: none;
877
+ }
878
+
879
+ .btn_link_primary .btn_txt,
880
+ .btn_link_secondary .btn_txt,
881
+ .btn_link_grey .btn_txt,
882
+ .btn_link_alert .btn_txt,
883
+ .btn_link_warning .btn_txt,
884
+ .btn_link_success .btn_txt {
885
+ min-width: 0 !important;
886
+ margin: 0 !important;
887
+ }
888
+
889
+ .btn_link_primary:hover .btn_txt,
890
+ .btn_link_secondary:hover .btn_txt,
891
+ .btn_link_grey:hover .btn_txt,
892
+ .btn_link_alert:hover .btn_txt,
893
+ .btn_link_warning:hover .btn_txt,
894
+ .btn_link_success:hover .btn_txt,
895
+ .btn_link_primary:focus .btn_txt,
896
+ .btn_link_secondary:focus .btn_txt,
897
+ .btn_link_grey:focus .btn_txt,
898
+ .btn_link_alert:focus .btn_txt,
899
+ .btn_link_warning:focus .btn_txt,
900
+ .btn_link_success:focus .btn_txt {
901
+ text-decoration: underline;
902
+ }
903
+
904
+ .btn_link_primary .fas,
905
+ .btn_link_secondary .fas,
906
+ .btn_link_grey .fas,
907
+ .btn_link_alert .fas,
908
+ .btn_link_warning .fas,
909
+ .btn_link_success .fas,
910
+ .btn_link_primary .fa,
911
+ .btn_link_secondary .fa,
912
+ .btn_link_grey .fa,
913
+ .btn_link_alert .fa,
914
+ .btn_link_warning .fa,
915
+ .btn_link_success .fa {
916
+ font-size: inherit !important;
917
+ margin: 0 !important;
918
+ }
919
+
920
+ .btn_link_primary .btn_first_icon,
921
+ .btn_link_secondary .btn_first_icon,
922
+ .btn_link_grey .btn_first_icon,
923
+ .btn_link_alert .btn_first_icon,
924
+ .btn_link_warning .btn_first_icon,
925
+ .btn_link_success .btn_first_icon {
926
+ margin-right: 4px !important;
927
+ }
928
+
929
+ .btn_link_primary .btn_last_icon,
930
+ .btn_link_secondary .btn_last_icon,
931
+ .btn_link_grey .btn_last_icon,
932
+ .btn_link_alert .btn_last_icon,
933
+ .btn_link_warning .btn_last_icon,
934
+ .btn_link_success .btn_last_icon {
935
+ margin-left: 4px !important;
936
+ }
937
+
938
+ .btn_link_primary {
939
+ color: var(--btn-color-primary);
940
+ }
941
+
942
+ .btn_link_secondary {
943
+ color: var(--btn-color-secondary);
944
+ }
945
+
946
+ .btn_link_grey {
947
+ color: var(--grey-3);
948
+ }
949
+
950
+ .btn_link_alert {
951
+ color: var(--btn-color-alert);
952
+ }
953
+
954
+ .btn_link_warning {
955
+ color: var(--btn-color-warning);
956
+ }
957
+
958
+ .btn_link_success {
959
+ color: var(--btn-color-success);
960
+ }
961
+
962
+ .btn_link_primary.btn_disabled,
963
+ .btn_link_secondary.btn_disabled,
964
+ .btn_link_grey.btn_disabled,
965
+ .btn_link_alert.btn_disabled,
966
+ .btn_link_warning.btn_disabled,
967
+ .btn_link_success.btn_disabled,
968
+ .btn_link_primary.btn_disabled:hover,
969
+ .btn_link_secondary.btn_disabled:hover,
970
+ .btn_link_grey.btn_disabled:hover,
971
+ .btn_link_alert.btn_disabled:hover,
972
+ .btn_link_warning.btn_disabled:hover,
973
+ .btn_link_success.btn_disabled:hover {
974
+ background: none;
975
+ color: #CAD0DB;
976
+ }
977
+
978
+ /*****************/
979
+ /* EXTRA */
980
+ /*****************/
981
+ /* ARROW */
982
+ .btnUi.has_arrow {
983
+ text-align: left;
984
+ }
985
+
986
+ /* TAB BTN */
987
+ .btnUi.tab_btn {
988
+ width: 22px;
989
+ height: 22px;
990
+ padding: 0;
991
+ border-radius: 22px;
992
+ margin-left: 10px;
993
+ }
994
+
995
+ .btnUi.tab_btn .fa,
996
+ .btnUi.tab_btn .fas {
997
+ font-size: 11px;
998
+ }
999
+
1000
+ /* ICON BUTTON */
1001
+ .icon_btn {
1002
+ display: inline-block;
1003
+ vertical-align: middle;
1004
+ line-height: normal;
1005
+ padding: 4px;
1006
+ font-size: 20px;
1007
+ color: var(--grey-3);
1008
+ cursor: pointer;
1009
+ margin: 0 4px;
1010
+ transition: all 200ms;
1011
+ border-radius: 40px;
1012
+ }
1013
+
1014
+ .icon_btn:focus,
1015
+ .icon_btn:hover {
1016
+ color: var(--turquoise);
1017
+ }
1018
+
1019
+ a:hover .icon_btn,
1020
+ a:focus .icon_btn {
1021
+ color: inherit;
1022
+ }
1023
+
1024
+ .icon_btn_color {
1025
+ color: var(--turquoise);
1026
+ }
1027
+
1028
+ .icon_btn_light {
1029
+ color: var(--grey-4);
1030
+ }
1031
+
1032
+ .icon_btn_white {
1033
+ color: #fff;
1034
+ }
1035
+
1036
+ .icon_btn_black {
1037
+ color: #000;
1038
+ opacity: 0.65;
1039
+ }
1040
+
1041
+ .icon_btn_black:hover,
1042
+ .icon_btn_black:focus {
1043
+ color: #000;
1044
+ opacity: 1;
1045
+ }
1046
+
1047
+ .icon_btn.m {
1048
+ font-size: 17px;
1049
+ }
1050
+
1051
+ .icon_btn.s {
1052
+ font-size: 16px;
1053
+ margin: 0 2px;
1054
+ }
1055
+
1056
+ .icon_btn.xs {
1057
+ font-size: 14px;
1058
+ margin: 0 2px;
1059
+ }
1060
+
1061
+ .icon_btn.xs {
1062
+ font-size: 14px;
1063
+ margin: 0 2px;
1064
+ }
1065
+
1066
+ .icon_btn.xxs {
1067
+ font-size: 12px;
1068
+ margin: 0 1px;
1069
+ }
1070
+
1071
+ /* SVG */
1072
+ .btnUi svg.btn_svg_stroke g {
1073
+ stroke: currentColor;
1074
+ }
1075
+
1076
+ .panel_inner {
1077
+ /* Padding horizontal des sections */
1078
+ --section-padding-left: 30px;
1079
+ }
1080
+
1081
+ .panel_inner.is_invisible {
1082
+ opacity: 0;
1083
+ pointer-events: none;
1084
+ }
1085
+
1086
+ .panel_overlay {
1087
+ position: fixed;
1088
+ z-index: 10000;
1089
+ top: 0;
1090
+ left: 0;
1091
+ right: 0;
1092
+ bottom: 0;
1093
+ background: rgba(0, 0, 0, 0.4);
1094
+ }
1095
+
1096
+ .panel_inner {
1097
+ position: fixed;
1098
+ z-index: 10000;
1099
+ right: 0;
1100
+ top: 0;
1101
+ bottom: 0;
1102
+ width: 500px;
1103
+ max-width: calc(100% - 20px);
1104
+ background: #fff;
1105
+ box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px;
1106
+ outline: none;
1107
+ display: -ms-flexbox;
1108
+ display: -webkit-flex;
1109
+ display: -webkit-box;
1110
+ display: -moz-box;
1111
+ display: flex;
1112
+ -webkit-flex-direction: column;
1113
+ -ms-flex-direction: column;
1114
+ -webkit-box-orient: vertical;
1115
+ -webkit-box-direction: normal;
1116
+ -moz-box-orient: vertical;
1117
+ -moz-box-direction: normal;
1118
+ flex-direction: column;
1119
+ transition: padding 300ms, width 300ms;
1120
+ }
1121
+
1122
+ .panel_inner.left {
1123
+ left: 0;
1124
+ right: auto;
1125
+ }
1126
+
1127
+ .panel_overlay.anim_show {
1128
+ animation: panel_overlay_show 300ms ease-out;
1129
+ }
1130
+
1131
+ .panel_overlay.anim_hide {
1132
+ animation: panel_overlay_hide 300ms ease-out;
1133
+ }
1134
+
1135
+ .panel_inner.anim_show {
1136
+ animation: panel_right_show 300ms ease-out;
1137
+ }
1138
+
1139
+ .panel_inner.anim_hide {
1140
+ animation: panel_right_hide 300ms ease-out;
1141
+ }
1142
+
1143
+ .panel_inner.anim_show.left {
1144
+ animation: panel_left_show 300ms ease-out;
1145
+ }
1146
+
1147
+ .panel_inner.anim_hide.left {
1148
+ animation: panel_left_hide 300ms ease-out;
1149
+ }
1150
+
1151
+ @keyframes panel_overlay_show {
1152
+ 0% {
1153
+ opacity: 0;
1154
+ }
1155
+ 100% {
1156
+ opacity: 1;
1157
+ }
1158
+ }
1159
+ @keyframes panel_overlay_hide {
1160
+ 0% {
1161
+ opacity: 1;
1162
+ }
1163
+ 100% {
1164
+ opacity: 0;
1165
+ }
1166
+ }
1167
+ @keyframes panel_right_show {
1168
+ 0% {
1169
+ opacity: 0;
1170
+ transform: translateX(50%);
1171
+ }
1172
+ 100% {
1173
+ opacity: 1;
1174
+ transform: translateX(0);
1175
+ }
1176
+ }
1177
+ @keyframes panel_right_hide {
1178
+ 0% {
1179
+ opacity: 1;
1180
+ transform: translateX(0);
1181
+ }
1182
+ 100% {
1183
+ opacity: 0;
1184
+ transform: translateX(50%);
1185
+ }
1186
+ }
1187
+ @keyframes panel_left_show {
1188
+ 0% {
1189
+ opacity: 0;
1190
+ transform: translateX(-50%);
1191
+ }
1192
+ 100% {
1193
+ opacity: 1;
1194
+ transform: translateX(0);
1195
+ }
1196
+ }
1197
+ @keyframes panel_left_hide {
1198
+ 0% {
1199
+ opacity: 1;
1200
+ transform: translateX(0);
1201
+ }
1202
+ 100% {
1203
+ opacity: 0;
1204
+ transform: translateX(-50%);
1205
+ }
1206
+ }
1207
+ /* Panel close */
1208
+ .panel_close {
1209
+ all: unset;
1210
+ display: flex;
1211
+ align-items: center;
1212
+ justify-content: center;
1213
+ width: 40px;
1214
+ height: 40px;
1215
+ cursor: pointer;
1216
+ overflow: hidden;
1217
+ background: none;
1218
+ box-shadow: none;
1219
+ outline: none;
1220
+ border: none;
1221
+ padding: 0;
1222
+ }
1223
+
1224
+ .panel_close_left {
1225
+ composes: panel_close;
1226
+ margin-left: -12px;
1227
+ margin-right: 10px;
1228
+ }
1229
+
1230
+ .panel_close_absolute {
1231
+ composes: panel_close;
1232
+ position: absolute;
1233
+ width: 48px;
1234
+ height: 48px;
1235
+ top: 5px;
1236
+ right: 3px;
1237
+ }
1238
+
1239
+ .panel_close_inner {
1240
+ display: flex;
1241
+ align-items: center;
1242
+ justify-content: center;
1243
+ flex: 0 0 auto;
1244
+ width: 32px;
1245
+ height: 32px;
1246
+ border-radius: 32px;
1247
+ transition: background 200ms;
1248
+ }
1249
+
1250
+ .panel_close:hover .panel_close_inner,
1251
+ .panel_close:focus .panel_close_inner {
1252
+ background-color: var(--main-bg-color);
1253
+ }
1254
+
1255
+ .panel_close_img {
1256
+ flex: 0 1 auto;
1257
+ }
1258
+
1259
+ /* Panel side */
1260
+ .panel_side {
1261
+ position: fixed;
1262
+ top: 0;
1263
+ bottom: 0;
1264
+ background: #F5F6F8;
1265
+ animation: panel_side_left_show 300ms ease-out;
1266
+ }
1267
+
1268
+ .panel_inner.left .panel_side {
1269
+ right: 0;
1270
+ }
1271
+
1272
+ @keyframes panel_side_left_show {
1273
+ 0% {
1274
+ opacity: 0;
1275
+ }
1276
+ 100% {
1277
+ opacity: 1;
1278
+ }
1279
+ }
1280
+ /* HEADER */
1281
+ .panel_header {
1282
+ -ms-flex: 0 0 auto;
1283
+ -webkit-flex: 0 0 auto;
1284
+ -webkit-box-flex: 0;
1285
+ -moz-box-flex: 0;
1286
+ flex: 0 0 auto;
1287
+ padding: 20px 30px;
1288
+ line-height: 1;
1289
+ }
1290
+
1291
+ .panel_header.has_border {
1292
+ border-bottom: solid 1px #eee;
1293
+ }
1294
+
1295
+ .panel_header.has_no_bottom_padding {
1296
+ padding-bottom: 0;
1297
+ }
1298
+
1299
+ .panel_title {
1300
+ font-size: 20px;
1301
+ font-weight: 400;
1302
+ }
1303
+
1304
+ .panel_desc {
1305
+ margin-top: 6px;
1306
+ font-size: 14px;
1307
+ color: #757b96;
1308
+ line-height: 1.3;
1309
+ }
1310
+
1311
+ .panel_intro {
1312
+ margin-bottom: 8px;
1313
+ font-size: 14px;
1314
+ font-weight: 500;
1315
+ color: var(--grey-2);
1316
+ }
1317
+
1318
+ /* BODY */
1319
+ .panel_body_outer {
1320
+ -ms-flex: 1 1 auto;
1321
+ -webkit-flex: 1 1 auto;
1322
+ -webkit-box-flex: 1;
1323
+ -moz-box-flex: 1;
1324
+ flex: 1 1 auto;
1325
+ display: flex;
1326
+ flex-direction: column;
1327
+ overflow: hidden;
1328
+ }
1329
+
1330
+ .panel_body_outer_grey {
1331
+ background: var(--main-bg-color);
1332
+ }
1333
+
1334
+ .panel_body_outer_rel {
1335
+ position: relative;
1336
+ }
1337
+
1338
+ .panel_body_inner {
1339
+ flex: 1 1 auto;
1340
+ padding: 0 30px;
1341
+ overflow-y: auto;
1342
+ }
1343
+
1344
+ .panel_body_inner::before,
1345
+ .panel_body_inner::after {
1346
+ content: "";
1347
+ display: block;
1348
+ margin-bottom: 24px;
1349
+ }
1350
+
1351
+ .panel_body_inner_no_margin::before,
1352
+ .panel_body_inner_no_margin::after {
1353
+ display: none;
1354
+ }
1355
+
1356
+ .red {
1357
+ color: red;
1358
+ }
1359
+
1360
+ .blue {
1361
+ color: blue;
1362
+ }
1363
+
1364
+ .green {
1365
+ color: green;
1366
+ }
1367
+
1368
+ .h1,
1369
+ .h2,
1370
+ .h3 {
1371
+ color: var(--black);
1372
+ font-weight: 500;
1373
+ line-height: 1.3;
1374
+ margin: 0;
1375
+ }
1376
+
1377
+ .h1 {
1378
+ font-size: 25px;
1379
+ }
1380
+
1381
+ .h2 {
1382
+ font-size: 20px;
1383
+ }
1384
+
1385
+ .h3 {
1386
+ font-size: 17px;
1387
+ } /* Wrapper */
1388
+ /* Header */
1389
+ .header {
1390
+ display: flex;
1391
+ align-items: center;
1392
+ }
1393
+
1394
+ .header_btn {
1395
+ position: relative;
1396
+ flex: 0 0 auto;
1397
+ cursor: pointer;
1398
+ font-size: 16px;
1399
+ font-weight: 500;
1400
+ padding: 6px 10px;
1401
+ padding-left: 24px;
1402
+ border-radius: 5px;
1403
+ transition: all 200ms;
1404
+ }
1405
+
1406
+ .header_btn:hover,
1407
+ .header_btn:focus {
1408
+ background-color: var(--main-border-color);
1409
+ }
1410
+
1411
+ .header::after {
1412
+ content: "";
1413
+ flex: 1 1 auto;
1414
+ border-top: solid 1px var(--main-border-color);
1415
+ margin-left: 4px;
1416
+ }
1417
+
1418
+ /* Arrow */
1419
+ .arrow {
1420
+ position: absolute;
1421
+ left: 0px;
1422
+ top: 50%;
1423
+ margin-top: -7px;
1424
+ width: 20px;
1425
+ height: 14px;
1426
+ transition: all 100ms;
1427
+ }
1428
+
1429
+ .arrow .fas {
1430
+ display: block;
1431
+ }
1432
+
1433
+ .wrapper_open .arrow {
1434
+ transform: rotate(180deg);
1435
+ }
1436
+
1437
+ /* Body */
1438
+ .body {
1439
+ transition: all 200ms;
1440
+ margin-top: 8px;
1441
+ margin-bottom: 16px;
1442
+ }
1443
+
1444
+ .wrapper_close .body {
1445
+ height: 0;
1446
+ margin-top: 0;
1447
+ overflow: hidden;
1448
+ }