sccoreui 6.5.38 → 6.5.39

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.
Files changed (2) hide show
  1. package/dist/App.scss +3352 -43
  2. package/package.json +1 -1
package/dist/App.scss CHANGED
@@ -1,8 +1,40 @@
1
+ @use "sass:map";
2
+ @use "sass:list";
1
3
  @import url("./assets/theme.css");
2
4
  @import url("./assets/sccoreui.css");
3
- @import url("./assets/sccoreicons.css");
4
5
  @import url("./assets/flex.css");
5
6
  @import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
7
+ @import url("./assets/sccoreicons.css");
8
+
9
+ // variables
10
+
11
+ @font-face {
12
+ font-family: "RobotoBold";
13
+ src: url("./assets/fonts/Roboto-Bold.ttf") format("truetype");
14
+ font-weight: 700;
15
+ font-style: italic;
16
+ }
17
+
18
+ @font-face {
19
+ font-family: "RobotoMedium";
20
+ src: url("./assets/fonts/Roboto-Medium.ttf") format("truetype");
21
+ font-weight: normal;
22
+ font-style: normal;
23
+ }
24
+
25
+ @font-face {
26
+ font-family: "RobotoItalic";
27
+ src: url("./assets/fonts/Roboto-Italic.ttf") format("truetype");
28
+ font-weight: normal;
29
+ font-style: normal;
30
+ }
31
+
32
+ @font-face {
33
+ font-family: "RobotoRegular";
34
+ src: url("./assets/fonts/Roboto-Regular.ttf") format("truetype");
35
+ font-weight: normal;
36
+ font-style: normal;
37
+ }
6
38
 
7
39
  :root {
8
40
  --fw-600: 600;
@@ -14,76 +46,280 @@
14
46
  --fs-14: 14px;
15
47
  --grey-bg: #101828;
16
48
  --border-none: border-none;
49
+ --box-shadow-none: none;
50
+ --_primary-800: #0e184f;
51
+ --_primary-700: #111c5b;
52
+ --_primary-600: #132067;
53
+ --_primary-500: #162578;
54
+ --_primary-400: #243dc6;
55
+ --_primary-300: #d0d5dd;
56
+ --_primary-100: #ced4f6;
57
+ --_primary-200: #8794db;
58
+ --_primary-50: #e2e5fa;
59
+ --_primary-25: #f5f6fd;
60
+
61
+ --_gray-700: #344054;
62
+ --_gray-800: #1d2939;
63
+ --_gray-200: #eaecf0;
64
+ --_gray-300: #d0d5dd;
65
+ --_gray-50: #f9fafb;
66
+ --_base-white: #fff;
67
+
68
+ --_text-secondary-600: #475467;
69
+ --_outline-800: #1d2939;
70
+ --_outline-200: #eaecf0;
71
+ --_outline-300: #d0d5dd;
72
+ --_outline-50: #f9fafb;
73
+ --_base-white: #fff;
74
+ }
75
+
76
+ @mixin flex($justify: flex-start, $align: center, $direction: row) {
77
+ display: flex;
78
+ justify-content: $justify;
79
+ align-items: $align;
80
+ flex-direction: $direction;
81
+ }
82
+
83
+ @mixin auto__h($height: 0px) {
84
+ height: calc(100vh - $height);
85
+ overflow-y: auto;
86
+ }
87
+
88
+ @mixin grid__responsive($minWidth: 350px, $maxWidth: 500px) {
89
+ display: var(--_d-grid);
90
+ grid-template-columns: repeat(auto-fill, min($minWidth, $maxWidth));
91
+ width: 100%;
92
+
93
+ &>div {
94
+ width: 100%;
95
+ }
96
+ }
97
+
98
+ .p-button {
99
+ border: 0 !important;
100
+
101
+ &.btn-primary {
102
+ background-color: var(--primary-500);
103
+ color: var(--_base-white);
104
+ padding: 8px 14px;
105
+
106
+ &:hover {
107
+ background-color: var(--primary-700);
108
+ }
109
+
110
+ &:focus {
111
+ background-color: var(--primary-700);
112
+ }
113
+
114
+ &:disabled {
115
+ background-color: var(--primary-200);
116
+ color: var(--_base-white);
117
+ }
118
+ }
119
+
120
+ &.btn-text-outline {
121
+ background-color: var(--_bg-white);
122
+ color: var(--gray-700);
123
+ padding: 8px 14px;
124
+ border: 1px solid var(--gray-300) !important;
125
+
126
+ svg {
127
+ path {
128
+ stroke: var(--gray-700);
129
+ }
130
+ }
131
+
132
+ &:has(svg) {
133
+ display: flex;
134
+ align-items: center;
135
+ gap: 8px;
136
+ }
137
+
138
+ &:hover {
139
+ background-color: var(--primary-25) !important;
140
+ border: 1px solid var(--primary-100) !important;
141
+ color: var(--primary-400) !important;
142
+
143
+ svg {
144
+ path {
145
+ stroke: var(--primary-400);
146
+ }
147
+ }
148
+ }
149
+
150
+ &:focus {
151
+ background-color: var(--primary-25) !important;
152
+ color: var(--primary-600) !important;
153
+ }
154
+
155
+ &:disabled {
156
+ color: var(--gray-300);
157
+ }
158
+ }
159
+
160
+ &.btn-secondary {
161
+ background-color: var(--primary-50);
162
+ color: var(--primary-500);
163
+ padding: 8px 14px;
164
+
165
+ &:hover {
166
+ background-color: var(--primary-100) !important;
167
+ color: var(--primary-800) !important;
168
+ }
169
+
170
+ &:focus {
171
+ background-color: var(--primary-100);
172
+ }
173
+
174
+ &:disabled {
175
+ background-color: var(--primary-50);
176
+ color: var(--gray-300);
177
+ }
178
+ }
179
+
180
+ &.btn-text {
181
+ background-color: var(--_base-white);
182
+ color: var(--gray-600);
183
+ padding: 8px 14px;
184
+ border: 0 !important;
185
+ font-weight: 600;
186
+
187
+ &:hover {
188
+ background-color: var(--gray-50) !important;
189
+ color: var(--gray-700) !important;
190
+ }
191
+
192
+ &:focus {
193
+ background-color: var(--gray-50);
194
+ color: var(--gray-700);
195
+ border: 0px !important;
196
+ }
197
+
198
+ &:disabled {
199
+ background-color: var(--primary-50) !important;
200
+ color: var(--gray-300);
201
+ }
202
+ }
203
+
204
+ &.btn-text-primary {
205
+ background-color: var(--_base-white);
206
+ color: var(--primary-400);
207
+ padding: 8px 14px;
208
+ border: 0 !important;
209
+ display: flex;
210
+ gap: 4px;
211
+ align-items: center;
212
+
213
+ &:hover {
214
+ background-color: var(--primary-25) !important;
215
+ color: var(--primary-600) !important;
216
+
217
+ svg {
218
+ path {
219
+ stroke: var(--primary-600);
220
+ }
221
+ }
222
+ }
223
+
224
+ &:focus {
225
+ background-color: var(--primary-25) !important;
226
+ color: var(--primary-600) !important;
227
+ }
228
+
229
+ // &:disabled {
230
+ // color: var(--gray-300);
231
+ // }
232
+
233
+ svg {
234
+ path {
235
+ stroke: var(--primary-400);
236
+ }
237
+ }
238
+ }
239
+ }
240
+
241
+ // height and width utility classes
242
+
243
+ .h-40 {
244
+ height: 40px;
245
+ }
246
+
247
+ .h-44 {
248
+ height: 44px !important;
17
249
  }
18
250
 
19
251
  // @font-face {
20
252
  // font-family: "Lato";
21
- // src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
22
253
  // }
23
254
 
24
255
  // @font-face {
25
- // font-family: "Lato-600";
256
+ // font-family: "Lato";
26
257
  // font-weight: 600;
27
258
  // src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
28
259
  // }
29
260
 
30
- // * {
31
- // padding: 0;
32
- // margin: 0;
33
- // }
34
-
35
261
  body {
36
262
  font-family: "Lato", sans-serif;
37
263
  -webkit-font-smoothing: antialiased;
38
264
  -moz-osx-font-smoothing: grayscale;
39
- line-height: var(--lh);
265
+ line-height: 20px;
40
266
  padding: 0;
41
267
  margin: 0;
268
+ color: var(--gray-700);
42
269
  }
43
270
 
44
271
  code {
45
272
  font-family: "Lato", sans-serif;
46
273
  }
47
274
 
48
- h1 {
49
- font-size: var(--fs-24);
50
- font-weight: var(--fw-600);
275
+ .pr-60 {
276
+ padding-right: 60px !important;
51
277
  }
52
278
 
53
- h2 {
54
- font-size: var(--fs-18);
55
- font-weight: var(--fw-600);
56
- }
57
-
58
- h3 {
59
- font-size: var(--fs-16);
60
- font-weight: var(--fw-400);
61
- }
279
+ .delete-action {
280
+ &:hover {
281
+ transition: all 0.4 ease-in-out;
282
+ transform: scale(1.2);
62
283
 
63
- .p-multiselect {
64
- .p-multiselect-header {
65
- .p-multiselect-close {
66
- display: none !important;
67
- }
68
- }
69
- .p-multiselect-items {
70
- .p-multiselect-item {
71
- border-radius: 4px !important;
284
+ svg {
285
+ path {
286
+ stroke: var(--red-400);
287
+ }
72
288
  }
73
289
  }
74
290
  }
75
291
 
76
- .p-multiselect-items-wrapper {
77
- .p-multiselect-item.p-highlight {
78
- &::after {
79
- content: url("../assets/png/checkmark_icon.png");
80
- position: absolute;
81
- top: 48%;
82
- right: 8px;
83
- transform: translateY(-50%);
84
- }
85
- }
86
- }
292
+ // h1 {
293
+ // font-size: var(--fs-24);
294
+ // font-weight: var(--fw-600);
295
+ // }
296
+
297
+ // h2 {
298
+ // font-size: var(--fs-18);
299
+ // font-weight: var(--fw-600);
300
+ // }
301
+
302
+ // h3 {
303
+ // font-size: var(--fs-16);
304
+ // font-weight: var(--fw-400);
305
+ // }
306
+
307
+ // ============= Button styles =============== //
308
+ // .btn-primary {
309
+ // @include btn(primary);
310
+ // }
311
+
312
+ // .btn-secondary {
313
+ // @include btn(secondary);
314
+ // }
315
+
316
+ // .btn-outline {
317
+ // @include btn(outline);
318
+ // }
319
+
320
+ // .btn-text {
321
+ // @include btn(text);
322
+ // }
87
323
 
88
324
  // ============= custom progress steps =============== //
89
325
 
@@ -128,10 +364,52 @@ h3 {
128
364
  }
129
365
  }
130
366
 
367
+ // .col-gr-icon-lg {
368
+ // width: 20px;
369
+ // animation: scaleImgLarge 0.4s forwards;
370
+ // }
371
+
372
+ // .col-gr-icon-sm {
373
+ // width: 0px;
374
+ // animation: scaleImgsmall 0.4s forwards;
375
+ // }
376
+
377
+ // @keyframes scaleImgLarge {
378
+ // 0% {
379
+ // width: 0;
380
+ // }
381
+ // 100% {
382
+ // width: 20px;
383
+ // }
384
+ // }
385
+
386
+ // @keyframes scaleImgsmall {
387
+ // 100% {
388
+ // width: 20px;
389
+ // }
390
+ // 0% {
391
+ // width: 0px;
392
+ // }
393
+ // }
394
+
395
+ .col-gr-icon {
396
+ width: 0;
397
+ transition: width 0.4s ease;
398
+ }
399
+
400
+ .col-gr-icon-active {
401
+ width: 20px;
402
+ transition: width 0.4s ease;
403
+ /* Ensure transition applies both ways */
404
+ }
405
+
406
+ .no-content {
407
+ text-align: center;
408
+ padding: 10px;
409
+ }
410
+
131
411
  .progress-step-item {
132
412
  &.horizontal {
133
- // transform: translateX(10%);
134
-
135
413
  &:nth-of-type(1) {
136
414
  transform: translateX(-50%);
137
415
  }
@@ -153,3 +431,3034 @@ h3 {
153
431
  }
154
432
  }
155
433
  }
434
+
435
+ .disabled {
436
+ cursor: not-allowed;
437
+ pointer-events: none;
438
+ opacity: 0.2;
439
+ }
440
+
441
+ // CUSTOM multiselect style started
442
+ .Multi_select_dropdown_panel {
443
+ .p-multiselect-header {
444
+ display: block;
445
+ padding: 8px 0;
446
+
447
+ .p-checkbox,
448
+ .p-multiselect-close {
449
+ display: none;
450
+ }
451
+
452
+ .p-multiselect-filter-container {
453
+ .p-inputtext {
454
+ padding-right: 12px;
455
+ padding-left: 1.75rem;
456
+ }
457
+
458
+ .p-multiselect-filter-icon {
459
+ left: 0.55rem;
460
+ }
461
+ }
462
+ }
463
+
464
+ .p-multiselect-items-wrapper {
465
+ .p-multiselect-item.p-highlight {
466
+ &::after {
467
+ // content: "";
468
+ // width: 14px;
469
+ // height: 6px;
470
+ // border-left: 2px solid #132067;
471
+ // border-bottom: 2px solid #132067;
472
+ // transform: rotate(-45deg);
473
+ // position: absolute;
474
+ // right: 10px;
475
+ content: url("./assets/png/checkmark_icon.png");
476
+ position: absolute;
477
+ top: 48%;
478
+ right: 8px;
479
+ transform: translateY(-50%);
480
+ }
481
+ }
482
+ }
483
+ }
484
+
485
+ .bulk-action-feature {
486
+ .p-overlaypanel-content {
487
+ padding: 0 !important;
488
+ border-radius: 6px !important;
489
+ }
490
+ }
491
+
492
+ .column_group_overlay {
493
+ overflow: hidden;
494
+
495
+ .p-overlaypanel-content {
496
+ padding: 0px !important;
497
+ }
498
+ }
499
+
500
+ .list-items {
501
+ padding: 4px;
502
+ border: 0;
503
+
504
+ .p-treenode-content {
505
+ padding: 2px !important;
506
+ }
507
+
508
+ .p-treenode-droppoint {
509
+ height: 2px;
510
+ }
511
+ }
512
+
513
+ .sc_custom_multiselect {
514
+ width: max-content;
515
+
516
+ * {
517
+ color: #344054;
518
+ font-weight: 700;
519
+ }
520
+
521
+ .left_section_item {
522
+ left: 1rem;
523
+ }
524
+
525
+ .right_section_item {
526
+ right: 1rem;
527
+ }
528
+
529
+ .selected_moreThan_one {
530
+ right: 40px;
531
+ }
532
+
533
+ .p-inputwrapper-filled {
534
+ background: #f5f6fd;
535
+ border: 1px solid #8190e8;
536
+ }
537
+
538
+ .p-multiselect {
539
+ max-width: 100%;
540
+ width: max-content !important;
541
+
542
+ .p-multiselect-label {
543
+ padding: 0;
544
+ padding-left: 44px;
545
+ max-width: 100%;
546
+ height: 100%;
547
+
548
+ .p-multiselect-token {
549
+ border: none;
550
+ width: 100%;
551
+ min-width: 100%;
552
+ background: none;
553
+ padding-left: 0;
554
+
555
+ .p-multiselect-token-label {
556
+ width: 100%;
557
+ white-space: nowrap;
558
+ overflow: hidden;
559
+ text-overflow: ellipsis;
560
+ }
561
+ }
562
+
563
+ // svg {
564
+ // display: none;
565
+ // }
566
+ }
567
+ }
568
+
569
+ .p-multiselect-trigger {
570
+ width: 2rem;
571
+
572
+ // svg {
573
+ // display: none;
574
+ // }
575
+ }
576
+ }
577
+
578
+ // .no_icon {
579
+ // .p-multiselect-label {
580
+ // padding-left: 16px !important;
581
+ // }
582
+ // }
583
+
584
+ .status_dropdown {
585
+ .p-multiselect {
586
+ .p-multiselect-label {
587
+ padding-left: 34px;
588
+ }
589
+ }
590
+
591
+ .select_status_prv {
592
+ ul {
593
+ li {
594
+ width: 10px;
595
+ height: 10px;
596
+ border-radius: var(--border-radius);
597
+ position: absolute;
598
+ transform: translateY(-50%);
599
+ }
600
+
601
+ li.all {
602
+ background: #667085;
603
+ }
604
+
605
+ li:nth-child(2) {
606
+ left: 6px;
607
+ }
608
+
609
+ li:nth-child(3) {
610
+ left: 12px;
611
+ }
612
+ }
613
+ }
614
+ }
615
+
616
+ .table_filters_1 {
617
+ height: auto;
618
+ display: flex;
619
+ // justify-content: center;
620
+ align-items: center;
621
+ padding: 10px 0px !important;
622
+
623
+ .chip_comp {
624
+ height: 44px !important;
625
+ border: 1px solid var(--gray-300);
626
+ overflow-y: auto;
627
+
628
+ .p-inputtext {
629
+ padding: 6px 20px 7px 20px;
630
+ height: 44px !important;
631
+ border-top-left-radius: 0px !important;
632
+ border-top-right-radius: 0px !important;
633
+ }
634
+ }
635
+
636
+ .p-chips-multiple-container {
637
+ padding: 7px 10px 6px 10px;
638
+ width: 100%;
639
+ // max-height: 40px !important;
640
+ border-top-left-radius: 0 !important;
641
+ border-bottom-left-radius: 0 !important;
642
+ overflow: auto;
643
+ height: 44px;
644
+
645
+ .p-chips-token {
646
+ .p-chips-token-label {
647
+ white-space: nowrap;
648
+ }
649
+ }
650
+
651
+ &:not(.p-disabled):hover {
652
+ border-color: var(--gray-300);
653
+ }
654
+
655
+ &:not(.p-disabled).p-focus {
656
+ box-shadow: none;
657
+ }
658
+ }
659
+ }
660
+
661
+ .conditional_btn {
662
+ height: 30px;
663
+ width: 30px;
664
+ display: flex;
665
+ justify-content: center;
666
+ align-items: center;
667
+ // &:hover {
668
+ // background-color: var(--primary-25);
669
+ // border-radius: 6px;
670
+ // }
671
+ }
672
+
673
+ .multi-pl-32 {
674
+ padding-left: 40px;
675
+ border: 1px solid red;
676
+ }
677
+
678
+ .selected_multile {
679
+ .p-multiselect-token-label {
680
+ padding-right: 18px;
681
+ height: 100%;
682
+ }
683
+
684
+ .p-multiselect-label {
685
+ height: 100%;
686
+ }
687
+ }
688
+
689
+ .selected_multile.selected_num_2 {
690
+ .p-multiselect .p-multiselect-label {
691
+ padding-left: 12px;
692
+ }
693
+ }
694
+
695
+ .selected_attributes {
696
+ // height: calc(100vh - 180px);
697
+ overflow-y: auto;
698
+ }
699
+
700
+ .selected_multile.selected_num_3,
701
+ .selected_multile.moreThanThreeItems {
702
+ .p-multiselect .p-multiselect-label {
703
+ padding-left: 12px;
704
+ }
705
+ }
706
+
707
+ .mutli_select_status {
708
+ .p-multiselect-label {
709
+ padding-left: 44px !important;
710
+ }
711
+ }
712
+
713
+ .status_dropdown.selected_multile {
714
+ .left_section_item {
715
+ max-width: 28px;
716
+ overflow: hidden;
717
+ height: 11px;
718
+ width: -webkit-fill-available;
719
+ align-items: center;
720
+ display: flex;
721
+ }
722
+ }
723
+
724
+ .status_dropdown_item.Active::before {
725
+ background: #12b76a;
726
+ }
727
+
728
+ .status_dropdown_item.Inactive::before {
729
+ background: #f04438;
730
+ }
731
+
732
+ .status_dropdown_item.Draft::before {
733
+ background: #162578;
734
+ }
735
+
736
+ .status_dropdown_item {
737
+ .status_dot {
738
+ width: 10px;
739
+ height: 10px;
740
+ border-radius: 50px;
741
+ position: absolute;
742
+ transform: translateY(-50%);
743
+ top: 50%;
744
+ left: 10px;
745
+ }
746
+ }
747
+
748
+ .custom_date_picker_sec {
749
+ .custom_date_picker {
750
+ .p-inputtext {
751
+ padding-right: 16px;
752
+ width: 130px;
753
+ }
754
+
755
+ .p-inputtext {
756
+ &:enabled {
757
+ &:focus {
758
+ box-shadow: none !important;
759
+ border-color: #d0d5dd !important;
760
+ }
761
+ }
762
+ }
763
+
764
+ .p-datepicker-trigger {
765
+ &:focus {
766
+ box-shadow: none !important;
767
+ border-color: #d0d5dd !important;
768
+ }
769
+ }
770
+ }
771
+
772
+ .custom_date_picker.multiple {
773
+ .p-inputtext {
774
+ width: 236px;
775
+ }
776
+ }
777
+
778
+ .clear_icon_sec {
779
+ right: 32px;
780
+ }
781
+ }
782
+
783
+ .p-datepicker .p-datepicker-header .p-datepicker-title {
784
+ display: inline-flex;
785
+ flex-wrap: nowrap;
786
+ align-items: center;
787
+ white-space: nowrap;
788
+ }
789
+
790
+ .p-datepicker .p-datepicker-header .p-datepicker-title .date_nav_dropdown {
791
+ min-width: 0 !important;
792
+ background: transparent;
793
+ border: none;
794
+ box-shadow: none;
795
+ border-radius: 4px;
796
+
797
+ &:hover,
798
+ &:not(.p-disabled):hover {
799
+ background: #f3f4f6;
800
+ border: none;
801
+ }
802
+
803
+ &:not(.p-disabled).p-focus {
804
+ box-shadow: none;
805
+ border: none;
806
+ }
807
+
808
+ .p-dropdown-label {
809
+ padding: 2px 6px;
810
+ font-size: 1rem;
811
+ font-weight: 600;
812
+ color: #495057;
813
+ line-height: 1.5rem;
814
+ }
815
+
816
+ .p-dropdown-trigger {
817
+ display: none;
818
+ }
819
+ }
820
+
821
+ .p-datepicker .p-dropdown-panel,
822
+ .date_nav_dropdown~.p-dropdown-panel {
823
+ min-width: 6rem;
824
+
825
+ .p-dropdown-items .p-dropdown-item {
826
+ display: flex;
827
+ align-items: center;
828
+ justify-content: space-between;
829
+ gap: 0.75rem;
830
+ padding-right: 0.75rem;
831
+ }
832
+ }
833
+
834
+ .date_filter {
835
+ margin: 0;
836
+ position: absolute;
837
+ top: 0;
838
+ left: 0px;
839
+ background: #fff;
840
+ height: 100%;
841
+ padding: 4px 16px;
842
+
843
+ li {
844
+ height: 40px;
845
+
846
+ &:hover {
847
+ background: #f9fafb;
848
+ }
849
+ }
850
+
851
+ .active {
852
+ background: #f9fafb;
853
+ }
854
+ }
855
+
856
+ div:has(ul.date_filter) .p-datepicker-group-container {
857
+ padding-left: 116px;
858
+ margin: -8px;
859
+ }
860
+
861
+ .bottom_date_filters {
862
+ width: calc(100% - 116px);
863
+ border-left: 1px solid #dee2e6;
864
+ }
865
+
866
+ div:has(ul.date_filter) .p-datepicker-group-container .p-datepicker table td>span {
867
+ width: 40px;
868
+ height: 40px;
869
+ }
870
+
871
+ div:has(ul.date_filter) .p-datepicker-group-container .p-datepicker-group {
872
+ width: 328px;
873
+ max-width: 328px;
874
+ padding: 8px 20px !important;
875
+ border: 1px solid #dee2e6;
876
+ border-top: 0;
877
+ }
878
+
879
+ div:has(ul.date_filter) .p-datepicker-group-container div:nth-child(2) {
880
+ border-right: 0;
881
+ }
882
+
883
+ div:has(ul.date_filter) .p-datepicker-group-container table td {
884
+ padding: 0;
885
+ }
886
+
887
+ div:has(ul.date_filter) .p-datepicker-footer {
888
+ margin: -8px;
889
+ }
890
+
891
+ .panel_status {
892
+ .p-multiselect-filter-container {
893
+ display: none;
894
+ }
895
+
896
+ .p-multiselect-header {
897
+ padding: 0 !important;
898
+ border-bottom: 0;
899
+ }
900
+ }
901
+
902
+ .p-multiselect-panel {
903
+ .p-multiselect-items {
904
+ padding: 4px;
905
+ min-width: 140px !important;
906
+ }
907
+ }
908
+
909
+ .panel_withIcon.p-multiselect-panel {
910
+ .p-multiselect-items {
911
+ .p-multiselect-item {
912
+ padding: 0 10px;
913
+ }
914
+ }
915
+ }
916
+
917
+ .Multi_select_dropdown_panel.hidePanelHeader {
918
+ .p-multiselect-header {
919
+ display: none;
920
+ }
921
+ }
922
+
923
+ // .errorField {
924
+ // color: var(--red-500);
925
+ // height: auto;
926
+ // line-height: 20px;
927
+ // }
928
+
929
+ .full_form_field {
930
+ // width: 37.125rem;
931
+ width: 100%;
932
+ }
933
+
934
+ .form_field {
935
+ // width: 18.063rem;
936
+ width: 100%;
937
+
938
+ &:has(.p-multiselect-token) {
939
+ .p-multiselect-label {
940
+ padding-left: 6px;
941
+ }
942
+ }
943
+ }
944
+
945
+ .PhoneInput {
946
+ background: #ffffff;
947
+ border: 1px solid var(--gray-300);
948
+ transition:
949
+ background-color 0.2s,
950
+ color 0.2s,
951
+ border-color 0.2s,
952
+ box-shadow 0.2s;
953
+ border-radius: var(--border-radius);
954
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
955
+ padding-top: 10px;
956
+ padding-bottom: 10px;
957
+ padding-right: 12px;
958
+ padding-left: 0px;
959
+ height: 40px;
960
+
961
+ :focus-visible {
962
+ outline: none;
963
+ }
964
+
965
+ &:focus-within {
966
+ outline: 0 none;
967
+ outline-offset: 0;
968
+ box-shadow:
969
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
970
+ 0px 0px 0px 2px var(--primary-100);
971
+ border-radius: var(--border-radius);
972
+ border: 1px solid var(--primary-300);
973
+ }
974
+
975
+ .PhoneInputInput {
976
+ border: none;
977
+ }
978
+ }
979
+
980
+ .PhoneInputCountry {
981
+ .PhoneInputCountryIcon--border {
982
+ box-shadow: none;
983
+ background-color: #ffffff;
984
+ }
985
+
986
+ .PhoneInputCountryIconImg {
987
+ width: 20px;
988
+ height: 20px;
989
+ object-fit: cover;
990
+ border-radius: 100%;
991
+ position: absolute;
992
+ top: 0;
993
+ }
994
+ }
995
+
996
+ .phoneNumberClass {
997
+ margin-left: 14.5rem;
998
+ }
999
+
1000
+ #customCountryDropDown {
1001
+ .p-dropdown {
1002
+ border: none;
1003
+ box-shadow: none;
1004
+ background: none;
1005
+ padding: 0;
1006
+
1007
+ .p-dropdown-label {
1008
+ padding: 0;
1009
+ padding-right: 4px;
1010
+ }
1011
+
1012
+ .p-dropdown-trigger {
1013
+ padding-top: 20px;
1014
+ }
1015
+
1016
+ .p-dropdown-trigger[aria-expanded="true"] {
1017
+ padding-bottom: 20px;
1018
+ }
1019
+ }
1020
+ }
1021
+
1022
+ .customNumberField {
1023
+ .p-inputnumber-input {
1024
+ padding-left: 24px;
1025
+ }
1026
+ }
1027
+
1028
+ .text-editor {
1029
+ button {
1030
+ &::after {
1031
+ content: none !important;
1032
+ }
1033
+ }
1034
+ }
1035
+
1036
+ button#formatULOptions-1:hover::before,
1037
+ button#formatULOptions-1.fr-btn-hover::before,
1038
+ button#formatULOptions-1.fr-active::before,
1039
+ button#formatOLOptions-1:hover::before,
1040
+ button#formatOLOptions-1.fr-btn-hover::before,
1041
+ button#formatOLOptions-1.fr-active::before {
1042
+ content: "";
1043
+ border: 2px solid gray;
1044
+ border-left: 0;
1045
+ border-top: 0;
1046
+ width: 6px;
1047
+ height: 6px;
1048
+ position: absolute;
1049
+ left: 2px;
1050
+ top: 39%;
1051
+ transform: rotate(45deg);
1052
+ }
1053
+
1054
+ .fr-toolbar .fr-btn-grp {
1055
+ display: inline-block;
1056
+ margin: 0 0px 0 12px !important;
1057
+ }
1058
+
1059
+ .fr-buttons.fr-tabs {
1060
+ display: none;
1061
+ }
1062
+
1063
+ .fr-element {
1064
+ padding: 12px !important;
1065
+ }
1066
+
1067
+ .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active {
1068
+ background: #f9fafb !important;
1069
+ }
1070
+
1071
+ button[data-cmd="fontFamily"]:focus {
1072
+ box-shadow:
1073
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
1074
+ 0px 0px 0px 2px var(--primary-100);
1075
+ border: 1px solid var(--primary-300) !important;
1076
+ background: none !important;
1077
+ }
1078
+
1079
+ .text-editor {
1080
+ border: 1px solid #d0d5dd;
1081
+ border-radius: var(--border-radius);
1082
+
1083
+ * {
1084
+ border: none !important;
1085
+ }
1086
+ }
1087
+
1088
+ .text-editor.focus-text-editor {
1089
+ box-shadow:
1090
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
1091
+ 0px 0px 0px 4px var(--primary-100);
1092
+ border: 1px solid var(--primary-300) !important;
1093
+ }
1094
+
1095
+ .text-editor.p-invalid.focus-text-editor {
1096
+ box-shadow:
1097
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
1098
+ 0px 0px 0px 4px var(--red-100);
1099
+ border: 1px solid var(--red-300) !important;
1100
+ }
1101
+
1102
+ button[data-cmd="fontFamily"] {
1103
+ border: 1px solid var(--gray-300) !important;
1104
+
1105
+ &::before {
1106
+ content: "";
1107
+ border: 1.8px solid #0b0c12;
1108
+ border-left: 0;
1109
+ border-top: 0;
1110
+ width: 7px;
1111
+ height: 7px;
1112
+ position: absolute;
1113
+ right: 8px;
1114
+ top: 39%;
1115
+ transform: rotate(45deg);
1116
+ }
1117
+ }
1118
+
1119
+ .fr-toolbar .fr-btn-grp {
1120
+ margin-right: 0px;
1121
+ margin-left: 8px;
1122
+ }
1123
+
1124
+ .fr-wrapper .fr-placeholder {
1125
+ color: #667085 !important;
1126
+ }
1127
+
1128
+ button[aria-expanded="true"] {
1129
+ &::before {
1130
+ top: 48%;
1131
+ transform: rotate(-136deg);
1132
+ }
1133
+ }
1134
+
1135
+ /// Custon treeDropdownSelect style
1136
+ .treeNoCollaps {
1137
+ li {
1138
+ padding-left: 0 !important;
1139
+ padding-right: 0 !important;
1140
+ }
1141
+
1142
+ .p-tree-toggler {
1143
+ display: none;
1144
+ }
1145
+
1146
+ .treeBadge {
1147
+ background: var(--Gray-100, #f2f4f7) !important;
1148
+ }
1149
+
1150
+ .p-treenode-content:hover {
1151
+ background: var(--Primary-25, #f5f6fd) !important;
1152
+ }
1153
+
1154
+ .p-treenode-content:hover .treeItem,
1155
+ .p-treenode-content:focus .treeItem {
1156
+ color: var(--primary-400);
1157
+
1158
+ .treeBadge {
1159
+ color: var(--Primary-400, #243dc6) !important;
1160
+ background: var(--Primary-50, #e2e5fa) !important;
1161
+ }
1162
+ }
1163
+
1164
+ .p-treenode-content:hover svg path,
1165
+ .p-treenode-content:focus svg path {
1166
+ stroke: var(--primary-400) !important;
1167
+ }
1168
+
1169
+ .p-treenode-content:focus {
1170
+ box-shadow: none !important;
1171
+ outline: none !important;
1172
+ background: var(--Primary-25, #f5f6fd) !important;
1173
+
1174
+ .treeBadge {
1175
+ color: var(--Primary-400, #243dc6) !important;
1176
+ background: var(--Primary-50, #e2e5fa) !important;
1177
+ }
1178
+ }
1179
+ }
1180
+
1181
+ /// Custon treeDropdownSelect style end /////////////////
1182
+
1183
+ /////// Custom list_box_dropdown ///////////
1184
+
1185
+ .icon-30x30 {
1186
+ height: 30px !important;
1187
+ width: 30px !important;
1188
+ }
1189
+
1190
+ .icon-38x38 {
1191
+ height: 38px !important;
1192
+ width: 38px !important;
1193
+ display: flex;
1194
+ justify-content: center;
1195
+ align-items: center;
1196
+ }
1197
+
1198
+ .icon-40x40 {
1199
+ height: 40px !important;
1200
+ width: 40px !important;
1201
+ display: flex;
1202
+ justify-content: center;
1203
+ align-items: center;
1204
+
1205
+ &.feature-hover {
1206
+ &:hover {
1207
+ svg {
1208
+ path {
1209
+ stroke: var(--primary-400);
1210
+ }
1211
+ }
1212
+ }
1213
+ }
1214
+ }
1215
+
1216
+ .p-button.sc_list_box_btn {
1217
+ height: auto;
1218
+ padding: 4px 8px;
1219
+ border-radius: var(--border-radius);
1220
+ color: var(--primary-400);
1221
+ background-color: transparent;
1222
+
1223
+ svg {
1224
+ path {
1225
+ stroke: var(--primary-400);
1226
+ }
1227
+ }
1228
+
1229
+ &:enabled {
1230
+ &:hover {
1231
+ background-color: var(--primary-25);
1232
+ border-radius: var(--border-radius);
1233
+ color: var(--primary-400);
1234
+
1235
+ svg {
1236
+ path {
1237
+ stroke: var(--primary-400);
1238
+ }
1239
+ }
1240
+ }
1241
+ }
1242
+ }
1243
+
1244
+ .p-button.list_box_btn {
1245
+ font-weight: 600;
1246
+ border-radius: var(--border-radius);
1247
+ display: flex;
1248
+ align-items: center;
1249
+ padding: 8px 16px;
1250
+ cursor: pointer;
1251
+ font-size: 14px;
1252
+ padding-inline: 6px 10px !important;
1253
+ color: var(--primary-400);
1254
+ background: transparent;
1255
+
1256
+ &:not(.section_btn) {
1257
+ height: 28px;
1258
+ }
1259
+
1260
+ &.section_btn {
1261
+ padding: 6px 10px 6px 6px;
1262
+ }
1263
+
1264
+ &:hover {
1265
+ background-color: var(--primary-25);
1266
+ color: var(--primary-700);
1267
+
1268
+ svg {
1269
+ path {
1270
+ stroke: var(--primary-700);
1271
+ }
1272
+ }
1273
+ }
1274
+
1275
+ &:has(svg) {
1276
+ display: flex;
1277
+ align-items: center;
1278
+ gap: 4px;
1279
+ }
1280
+
1281
+ svg {
1282
+ path {
1283
+ stroke: var(--primary-400);
1284
+ }
1285
+ }
1286
+ }
1287
+
1288
+ .p-button.data_label {
1289
+ color: var(--gray-600);
1290
+ background-color: transparent;
1291
+ display: flex;
1292
+ gap: 4px;
1293
+
1294
+ svg {
1295
+ path {
1296
+ stroke: var(--gray-700);
1297
+ }
1298
+ }
1299
+
1300
+ &:hover {
1301
+ background-color: var(--gray-200);
1302
+ color: var(--gray-700);
1303
+ }
1304
+ }
1305
+
1306
+ .list_box_chips {
1307
+ display: flex;
1308
+ flex-wrap: wrap;
1309
+ align-items: center;
1310
+ list-style: none;
1311
+ margin: 0;
1312
+ padding: 0;
1313
+ gap: 8px;
1314
+
1315
+ .list_box_chip {
1316
+ padding: 3px 4px 3px 8px;
1317
+ border: 1px solid var(--gray-200);
1318
+ border-radius: var(--border-radius);
1319
+ color: var(--gray-700);
1320
+ display: flex;
1321
+ align-items: center;
1322
+ font-size: 14px;
1323
+ gap: 4px;
1324
+
1325
+ svg {
1326
+ width: 15px;
1327
+ height: 15px;
1328
+
1329
+ path {
1330
+ stroke: var(--gray-400);
1331
+ }
1332
+ }
1333
+
1334
+ &:hover {
1335
+
1336
+ // border: 1px solid var(--gray-300);
1337
+ // background-color: var(--primary-25);
1338
+ svg {
1339
+ transform: scale(1.1);
1340
+ cursor: pointer;
1341
+
1342
+ path {
1343
+ stroke: var(--gray-700);
1344
+ }
1345
+ }
1346
+ }
1347
+ }
1348
+ }
1349
+
1350
+ .listbox_label {
1351
+ display: -webkit-box;
1352
+ -webkit-box-orient: vertical;
1353
+ -webkit-line-clamp: 1;
1354
+ white-space: normal;
1355
+ }
1356
+
1357
+ .list_box_dropdown {
1358
+ .p-listbox-header {
1359
+ padding: 12px !important;
1360
+ border-top: 1px solid var(--gray-200);
1361
+ }
1362
+
1363
+ ul.p-listbox-list {
1364
+ padding: 6px;
1365
+
1366
+ li {
1367
+ margin: 4px 0 !important;
1368
+ border-radius: 6px !important;
1369
+ padding: 8px 14px !important;
1370
+
1371
+ .item_content {
1372
+ max-width: 80%;
1373
+ white-space: nowrap;
1374
+ text-overflow: ellipsis;
1375
+ overflow: hidden;
1376
+ // width: 100%;
1377
+ }
1378
+
1379
+ .item_icon {
1380
+ display: none;
1381
+ }
1382
+
1383
+ &:hover {
1384
+ background-color: var(--gray-50) !important;
1385
+ }
1386
+
1387
+ &:focus {
1388
+ box-shadow: none !important;
1389
+ }
1390
+ }
1391
+
1392
+ .p-highlight {
1393
+ background: var(--Primary-25);
1394
+ color: #162578 !important;
1395
+
1396
+ .item_icon {
1397
+ display: block;
1398
+ }
1399
+ }
1400
+ }
1401
+ }
1402
+
1403
+ /////// Custom list_box_dropdown ///////////
1404
+
1405
+ //ScMulti Select//
1406
+ .sc_multiSelect {
1407
+ height: 40px !important;
1408
+
1409
+ .p-multiselect-clear-icon {
1410
+ right: 42px !important;
1411
+ }
1412
+
1413
+ .p-multiselect-label {
1414
+ line-height: 38px !important;
1415
+ }
1416
+
1417
+ // .p-multiselect-token-label {
1418
+ // width: 60px;
1419
+ // overflow: hidden;
1420
+ // text-overflow: ellipsis;
1421
+ // }
1422
+ }
1423
+
1424
+ .sc_multiSelect.noShowSelectedCount {
1425
+ .p-multiselect-label {
1426
+ padding-right: 0px;
1427
+ }
1428
+ }
1429
+
1430
+ // .sc_multiSelect.hideChipremoveIcon {
1431
+ // .p-multiselect-token {
1432
+ // svg {
1433
+ // display: none;
1434
+ // }
1435
+ // }
1436
+ // }
1437
+
1438
+ .sc_icon_hover {
1439
+ &:hover {
1440
+ svg {
1441
+ transform: scale(1.1);
1442
+ transition: 0.3s all;
1443
+ }
1444
+ }
1445
+ }
1446
+
1447
+ .hide-focus {
1448
+ &:not(.p-disabled) {
1449
+ &.p-focus {
1450
+ box-shadow: var(--box-shadow-none);
1451
+ border: 1px solid var(--gray-300);
1452
+ }
1453
+ }
1454
+
1455
+ &:enabled {
1456
+ &:focus {
1457
+ box-shadow: var(--box-shadow-none);
1458
+ border: 1px solid var(--gray-300);
1459
+ }
1460
+ }
1461
+ }
1462
+
1463
+ .sc_multiSelect_panel {
1464
+ .p-multiselect-items {
1465
+ padding: 4px !important;
1466
+
1467
+ .p-multiselect-item,
1468
+ .p-highlight {
1469
+ span {
1470
+ padding-right: 28px;
1471
+ }
1472
+ }
1473
+
1474
+ .p-highlight::after {
1475
+ content: "";
1476
+ width: 12px;
1477
+ height: 6px;
1478
+ border: solid #162578;
1479
+ border-width: 1.9px;
1480
+ border-top: 0;
1481
+ border-right: 0;
1482
+ transform: rotate(-45deg);
1483
+ margin-right: 8px;
1484
+ position: absolute;
1485
+ right: 4px;
1486
+ }
1487
+ }
1488
+ }
1489
+
1490
+ //////////////////////////////////////////////
1491
+ ///
1492
+
1493
+ .condition_menu {
1494
+ width: 648px !important;
1495
+ }
1496
+
1497
+ .condition_attribute_list_sect {
1498
+ height: 215px;
1499
+
1500
+ .attr_chip {
1501
+ transition: all 0.1s;
1502
+
1503
+ &:hover {
1504
+ transform: scale(1.05);
1505
+ // transition: all 0.2s;
1506
+ }
1507
+ }
1508
+ }
1509
+
1510
+ .condition_configure {
1511
+ height: 224px;
1512
+ outline: none;
1513
+ line-height: 30px;
1514
+ letter-spacing: 2px;
1515
+
1516
+ .formulaChipElm {
1517
+ line-height: 24px;
1518
+ letter-spacing: 0px;
1519
+ }
1520
+
1521
+ .chip-h-25 {
1522
+ height: 25px;
1523
+ display: flex;
1524
+ align-items: center;
1525
+ justify-content: center;
1526
+ }
1527
+
1528
+ .formulaSpanElm {
1529
+ font-size: 16px;
1530
+ margin: 2px 0;
1531
+ float: left;
1532
+ min-width: 6px;
1533
+ height: 32px;
1534
+ position: relative;
1535
+ top: -4px;
1536
+
1537
+ &:first-child {
1538
+ display: none;
1539
+ }
1540
+ }
1541
+ }
1542
+
1543
+ .operator_divider {
1544
+ width: 1px;
1545
+ height: 15px;
1546
+ display: inline-block;
1547
+ background-color: var(--gray-300);
1548
+ }
1549
+
1550
+ .formula_condition_dropdown {
1551
+ box-shadow: none !important;
1552
+
1553
+ .p-dropdown-label {
1554
+ display: block !important;
1555
+ }
1556
+ }
1557
+
1558
+ .p-button.p-button-link:enabled:hover {
1559
+ color: var(--primary-400) !important;
1560
+ }
1561
+
1562
+ .p-button.p-button-text:enabled:hover {
1563
+ background: var(--primary-50);
1564
+ }
1565
+
1566
+ /* AG GRID - styles */
1567
+ @import url("./assets/theme.css");
1568
+ @import url("./assets/sccoreui.css");
1569
+ @import url("./assets/sccoreicons.css");
1570
+ @import url("./assets/flex.css");
1571
+ @import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
1572
+
1573
+ // variables
1574
+
1575
+ @font-face {
1576
+ font-family: "RobotoBold";
1577
+ src: url("./assets/fonts/Roboto-Bold.ttf") format("truetype");
1578
+ font-weight: 700;
1579
+ font-style: italic;
1580
+ }
1581
+
1582
+ @font-face {
1583
+ font-family: "RobotoMedium";
1584
+ src: url("./assets/fonts/Roboto-Medium.ttf") format("truetype");
1585
+ font-weight: normal;
1586
+ font-style: normal;
1587
+ }
1588
+
1589
+ @font-face {
1590
+ font-family: "RobotoItalic";
1591
+ src: url("./assets/fonts/Roboto-Italic.ttf") format("truetype");
1592
+ font-weight: normal;
1593
+ font-style: normal;
1594
+ }
1595
+
1596
+ @font-face {
1597
+ font-family: "RobotoRegular";
1598
+ src: url("./assets/fonts/Roboto-Regular.ttf") format("truetype");
1599
+ font-weight: normal;
1600
+ font-style: normal;
1601
+ }
1602
+
1603
+ :root {
1604
+ --fw-600: 600;
1605
+ --fw-400: 400;
1606
+ --fs-24: 24px;
1607
+ --fs-18: 18px;
1608
+ --fs-16: 16px;
1609
+ --lh: 24px;
1610
+ --fs-14: 14px;
1611
+ --grey-bg: #101828;
1612
+ --border-none: border-none;
1613
+ }
1614
+
1615
+ // height and width utility classes
1616
+
1617
+ .h-40 {
1618
+ height: 40px;
1619
+ }
1620
+
1621
+ // @font-face {
1622
+ // font-family: "Lato";
1623
+ // }
1624
+
1625
+ // @font-face {
1626
+ // font-family: "Lato";
1627
+ // font-weight: 600;
1628
+ // src: url("./assets/fonts/Lato-Regular.ttf") format("truetype");
1629
+ // }
1630
+
1631
+ body {
1632
+ font-family: "Lato", sans-serif;
1633
+ -webkit-font-smoothing: antialiased;
1634
+ -moz-osx-font-smoothing: grayscale;
1635
+ line-height: 20px;
1636
+ padding: 0;
1637
+ margin: 0;
1638
+ color: var(--gray-700);
1639
+ }
1640
+
1641
+ code {
1642
+ font-family: "Lato", sans-serif;
1643
+ }
1644
+
1645
+ // h1 {
1646
+ // font-size: var(--fs-24);
1647
+ // font-weight: var(--fw-600);
1648
+ // }
1649
+
1650
+ // h2 {
1651
+ // font-size: var(--fs-18);
1652
+ // font-weight: var(--fw-600);
1653
+ // }
1654
+
1655
+ // h3 {
1656
+ // font-size: var(--fs-16);
1657
+ // font-weight: var(--fw-400);
1658
+ // }
1659
+
1660
+ // ============= custom progress steps =============== //
1661
+
1662
+ .progress-container {
1663
+ isolation: isolate;
1664
+
1665
+ &::before {
1666
+ content: "";
1667
+ background-color: var(--gray-200);
1668
+ position: absolute;
1669
+ z-index: -1;
1670
+ }
1671
+
1672
+ &.horizontal::before {
1673
+ height: 2px;
1674
+ width: 100%;
1675
+ top: 11%;
1676
+ }
1677
+
1678
+ &.vertical::before {
1679
+ height: 100%;
1680
+ width: 2px;
1681
+ left: 5%;
1682
+ top: 0;
1683
+ }
1684
+ }
1685
+
1686
+ .progressbar {
1687
+ z-index: -1;
1688
+ transition: all 0.6s ease;
1689
+
1690
+ &.horizontal {
1691
+ left: 0;
1692
+ height: 2px;
1693
+ top: 11%;
1694
+ }
1695
+
1696
+ &.vertical {
1697
+ width: 2px;
1698
+ left: 5%;
1699
+ top: 0;
1700
+ }
1701
+ }
1702
+
1703
+ .progress-step-item {
1704
+ &.horizontal {
1705
+ &:nth-of-type(1) {
1706
+ transform: translateX(-50%);
1707
+ }
1708
+
1709
+ &:last-child {
1710
+ transform: translateX(50%);
1711
+ }
1712
+ }
1713
+
1714
+ &.vertical {
1715
+ transform: translateY(50%);
1716
+
1717
+ &:nth-of-type(1) {
1718
+ transform: translateY(-5%);
1719
+ }
1720
+
1721
+ &:last-child {
1722
+ transform: translateY(100%);
1723
+ }
1724
+ }
1725
+ }
1726
+
1727
+ // CUSTOM multiselect style started
1728
+ .Multi_select_dropdown_panel {
1729
+ .p-multiselect-header {
1730
+ display: block;
1731
+ padding: 6px;
1732
+
1733
+ .p-checkbox,
1734
+ .p-multiselect-close {
1735
+ display: none;
1736
+ }
1737
+
1738
+ .p-multiselect-filter-container {
1739
+ .p-inputtext {
1740
+ padding-right: 12px;
1741
+ padding-left: 1.75rem;
1742
+ }
1743
+
1744
+ .p-multiselect-filter-icon {
1745
+ left: 0.55rem;
1746
+ }
1747
+ }
1748
+ }
1749
+
1750
+ .p-multiselect-items-wrapper {
1751
+ .p-multiselect-item.p-highlight {
1752
+ &::after {
1753
+ content: "";
1754
+ width: 10px;
1755
+ height: 4px;
1756
+ border-left: 1px solid #132067;
1757
+ border-bottom: 1px solid #132067;
1758
+ transform: rotate(-45deg);
1759
+ position: absolute;
1760
+ right: 10px;
1761
+ top: 14px;
1762
+ }
1763
+ }
1764
+ }
1765
+ }
1766
+
1767
+ .bulk-action-feature {
1768
+ .p-overlaypanel-content {
1769
+ padding: 0 !important;
1770
+ border-radius: 6px !important;
1771
+ }
1772
+ }
1773
+
1774
+ .column_group_overlay {
1775
+ overflow: hidden;
1776
+
1777
+ .p-overlaypanel-content {
1778
+ padding: 0px !important;
1779
+ }
1780
+ }
1781
+
1782
+ .list-items {
1783
+ padding: 4px;
1784
+ border: 0;
1785
+
1786
+ .p-treenode-content {
1787
+ padding: 2px !important;
1788
+ }
1789
+
1790
+ .p-treenode-droppoint {
1791
+ height: 2px;
1792
+ }
1793
+ }
1794
+
1795
+ .sc_custom_multiselect {
1796
+ width: max-content;
1797
+
1798
+ * {
1799
+ color: #344054;
1800
+ font-weight: 700;
1801
+ }
1802
+
1803
+ .left_section_item {
1804
+ left: 1rem;
1805
+ }
1806
+
1807
+ .right_section_item {
1808
+ right: 1rem;
1809
+ }
1810
+
1811
+ .selected_moreThan_one {
1812
+ right: 40px;
1813
+ }
1814
+
1815
+ .p-inputwrapper-filled {
1816
+ background: #f5f6fd;
1817
+ border: 1px solid #8190e8;
1818
+ }
1819
+
1820
+ .p-multiselect {
1821
+ max-width: 100%;
1822
+ width: max-content !important;
1823
+
1824
+ .p-multiselect-label {
1825
+ // padding: 0;
1826
+ padding-left: 12px !important;
1827
+ max-width: 100%;
1828
+
1829
+ .p-multiselect-token {
1830
+ border: none;
1831
+ width: 100%;
1832
+ min-width: 100%;
1833
+ background: none;
1834
+ padding-left: 0;
1835
+ line-height: 40px;
1836
+
1837
+ .p-multiselect-token-label {
1838
+ width: 55px;
1839
+ white-space: nowrap;
1840
+ overflow: hidden;
1841
+ text-overflow: ellipsis;
1842
+ height: 100%;
1843
+ // text-align: center;
1844
+ }
1845
+ }
1846
+
1847
+ svg {
1848
+ display: none;
1849
+ }
1850
+ }
1851
+ }
1852
+
1853
+ .p-multiselect-trigger {
1854
+ width: 2rem;
1855
+
1856
+ // svg {
1857
+ // display: none;
1858
+ // }
1859
+ }
1860
+ }
1861
+
1862
+ .currency_with_input {
1863
+ display: flex;
1864
+ border: 1px solid var(--gray-300);
1865
+ border-radius: 6px;
1866
+
1867
+ input {
1868
+ border: 0px !important;
1869
+ padding-inline: 0;
1870
+
1871
+ &:focus {
1872
+ outline: none !important;
1873
+ border: none !important;
1874
+ box-shadow: none !important;
1875
+ }
1876
+ }
1877
+
1878
+ .p-inputnumber .p-inputnumber-input {
1879
+ padding-inline: 0;
1880
+ }
1881
+
1882
+ &:focus-within {
1883
+ border: 1px solid var(--primary-300);
1884
+ outline: 2px solid var(--primary-50);
1885
+ }
1886
+ }
1887
+
1888
+ .text-truncate {
1889
+ white-space: nowrap;
1890
+ overflow: hidden;
1891
+ text-overflow: ellipsis;
1892
+ line-height: 20px;
1893
+ }
1894
+
1895
+ // .no_icon {
1896
+ // .p-multiselect-label {
1897
+ // padding-left: 16px !important;
1898
+ // }
1899
+ // }
1900
+
1901
+ .status_dropdown {
1902
+ .p-multiselect {
1903
+ .p-multiselect-label {
1904
+ padding-left: 34px;
1905
+ height: 100%;
1906
+ }
1907
+ }
1908
+
1909
+ .select_status_prv {
1910
+ ul {
1911
+ li {
1912
+ width: 10px;
1913
+ height: 10px;
1914
+ border-radius: var(--border-radius);
1915
+ position: absolute;
1916
+ transform: translateY(-50%);
1917
+ }
1918
+
1919
+ li.all {
1920
+ background: #667085;
1921
+ }
1922
+
1923
+ li:nth-child(2) {
1924
+ left: 6px;
1925
+ }
1926
+
1927
+ li:nth-child(3) {
1928
+ left: 12px;
1929
+ }
1930
+ }
1931
+ }
1932
+ }
1933
+
1934
+ .multi-pl-32 {
1935
+ padding-left: 40px;
1936
+ border: 1px solid red;
1937
+ }
1938
+
1939
+ .selected_multile {
1940
+ .p-multiselect-token-label {
1941
+ padding-right: 18px;
1942
+ }
1943
+ }
1944
+
1945
+ .selected_multile.selected_num_2 {
1946
+ .p-multiselect .p-multiselect-label {
1947
+ padding-left: 12px;
1948
+ height: 100%;
1949
+ }
1950
+ }
1951
+
1952
+ .selected_multile.selected_num_3,
1953
+ .selected_multile.moreThanThreeItems {
1954
+ .p-multiselect .p-multiselect-label {
1955
+ padding-left: 12px;
1956
+ }
1957
+ }
1958
+
1959
+ .mutli_select_status {
1960
+ .p-multiselect-label {
1961
+ padding-left: 12px !important;
1962
+ height: 100%;
1963
+ }
1964
+ }
1965
+
1966
+ .status_dropdown.selected_multile {
1967
+ .left_section_item {
1968
+ max-width: 28px;
1969
+ overflow: hidden;
1970
+ height: 11px;
1971
+ width: -webkit-fill-available;
1972
+ align-items: center;
1973
+ display: flex;
1974
+ }
1975
+ }
1976
+
1977
+ .status_dropdown_item.Active::before {
1978
+ background: #12b76a;
1979
+ }
1980
+
1981
+ .status_dropdown_item.Inactive::before {
1982
+ background: #f04438;
1983
+ }
1984
+
1985
+ .status_dropdown_item.Draft::before {
1986
+ background: #162578;
1987
+ }
1988
+
1989
+ .status_dropdown_item {
1990
+ .status_dot {
1991
+ width: 10px;
1992
+ height: 10px;
1993
+ border-radius: 50px;
1994
+ position: absolute;
1995
+ transform: translateY(-50%);
1996
+ top: 50%;
1997
+ left: 10px;
1998
+ }
1999
+ }
2000
+
2001
+ .custom_date_picker_sec {
2002
+ .custom_date_picker {
2003
+ .p-inputtext {
2004
+ padding-right: 16px;
2005
+ width: 130px;
2006
+ }
2007
+
2008
+ .p-inputtext {
2009
+ &:enabled {
2010
+ &:focus {
2011
+ box-shadow: none !important;
2012
+ border-color: #d0d5dd !important;
2013
+ }
2014
+ }
2015
+ }
2016
+
2017
+ .p-datepicker-trigger {
2018
+ &:focus {
2019
+ box-shadow: none !important;
2020
+ border-color: #d0d5dd !important;
2021
+ }
2022
+ }
2023
+ }
2024
+
2025
+ .custom_date_picker.multiple {
2026
+ .p-inputtext {
2027
+ width: 236px;
2028
+ }
2029
+ }
2030
+
2031
+ .clear_icon_sec {
2032
+ right: 32px;
2033
+ }
2034
+ }
2035
+
2036
+ .p-datepicker .p-datepicker-header .p-datepicker-title {
2037
+ display: inline-flex;
2038
+ flex-wrap: nowrap;
2039
+ align-items: center;
2040
+ white-space: nowrap;
2041
+ }
2042
+
2043
+ .p-datepicker .p-datepicker-header .p-datepicker-title .date_nav_dropdown {
2044
+ min-width: 0 !important;
2045
+ background: transparent;
2046
+ border: none;
2047
+ box-shadow: none;
2048
+ border-radius: 4px;
2049
+
2050
+ &:hover,
2051
+ &:not(.p-disabled):hover {
2052
+ background: #f3f4f6;
2053
+ border: none;
2054
+ }
2055
+
2056
+ &:not(.p-disabled).p-focus {
2057
+ box-shadow: none;
2058
+ border: none;
2059
+ }
2060
+
2061
+ .p-dropdown-label {
2062
+ padding: 2px 6px;
2063
+ font-size: 1rem;
2064
+ font-weight: 600;
2065
+ color: #495057;
2066
+ line-height: 1.5rem;
2067
+ }
2068
+
2069
+ .p-dropdown-trigger {
2070
+ display: none;
2071
+ }
2072
+ }
2073
+
2074
+ .p-datepicker .p-dropdown-panel,
2075
+ .date_nav_dropdown~.p-dropdown-panel {
2076
+ min-width: 6rem;
2077
+
2078
+ .p-dropdown-items .p-dropdown-item {
2079
+ display: flex;
2080
+ align-items: center;
2081
+ justify-content: space-between;
2082
+ gap: 0.75rem;
2083
+ padding-right: 0.75rem;
2084
+ }
2085
+ }
2086
+
2087
+ .date_filter {
2088
+ margin: 0;
2089
+ position: absolute;
2090
+ top: 0;
2091
+ left: 0px;
2092
+ background: #fff;
2093
+ height: 100%;
2094
+ padding: 4px 16px;
2095
+
2096
+ li {
2097
+ height: 40px;
2098
+
2099
+ &:hover {
2100
+ background: #f9fafb;
2101
+ }
2102
+ }
2103
+
2104
+ .active {
2105
+ background: #f9fafb;
2106
+ }
2107
+ }
2108
+
2109
+ div:has(ul.date_filter) .p-datepicker-group-container {
2110
+ padding-left: 116px;
2111
+ margin: -8px;
2112
+ }
2113
+
2114
+ .bottom_date_filters {
2115
+ width: calc(100% - 116px);
2116
+ border-left: 1px solid #dee2e6;
2117
+ }
2118
+
2119
+ div:has(ul.date_filter) .p-datepicker-group-container .p-datepicker table td>span {
2120
+ width: 40px;
2121
+ height: 40px;
2122
+ }
2123
+
2124
+ div:has(ul.date_filter) .p-datepicker-group-container .p-datepicker-group {
2125
+ width: 328px;
2126
+ max-width: 328px;
2127
+ padding: 8px 20px !important;
2128
+ border: 1px solid #dee2e6;
2129
+ border-top: 0;
2130
+ }
2131
+
2132
+ div:has(ul.date_filter) .p-datepicker-group-container div:nth-child(2) {
2133
+ border-right: 0;
2134
+ }
2135
+
2136
+ div:has(ul.date_filter) .p-datepicker-group-container table td {
2137
+ padding: 0;
2138
+ }
2139
+
2140
+ div:has(ul.date_filter) .p-datepicker-footer {
2141
+ margin: -8px;
2142
+ }
2143
+
2144
+ .panel_status {
2145
+ .p-multiselect-filter-container {
2146
+ display: none;
2147
+ }
2148
+
2149
+ .p-multiselect-header {
2150
+ padding: 0 !important;
2151
+ border-bottom: 0;
2152
+ }
2153
+ }
2154
+
2155
+ .p-multiselect-panel {
2156
+ .p-multiselect-items {
2157
+ padding: 4px;
2158
+ min-width: 140px !important;
2159
+ }
2160
+ }
2161
+
2162
+ .p-multiselect {
2163
+ .p-multiselect-header {
2164
+ .p-multiselect-close {
2165
+ display: none !important;
2166
+ }
2167
+ }
2168
+
2169
+ .p-multiselect-items {
2170
+ .p-multiselect-item {
2171
+ border-radius: 4px !important;
2172
+ }
2173
+ }
2174
+ }
2175
+
2176
+ .grid-global-search {
2177
+ width: 21rem;
2178
+
2179
+ .p-input-icon-left {
2180
+ width: 100%;
2181
+ }
2182
+
2183
+ .p-inputtext {
2184
+ width: 100%;
2185
+ }
2186
+ }
2187
+
2188
+ .panel_withIcon.p-multiselect-panel {
2189
+ .p-multiselect-items {
2190
+ .p-multiselect-item {
2191
+ padding: 0 10px;
2192
+ }
2193
+ }
2194
+ }
2195
+
2196
+ .Multi_select_dropdown_panel.hidePanelHeader {
2197
+ .p-multiselect-header {
2198
+ display: none;
2199
+ }
2200
+ }
2201
+
2202
+ .errorField {
2203
+ color: var(--red-500);
2204
+ max-height: 50px;
2205
+ padding-block: 2px 6px;
2206
+ }
2207
+
2208
+ .full_form_field {
2209
+ // width: 37.125rem;
2210
+ }
2211
+
2212
+ .form_field {
2213
+ // width: 18.063rem;
2214
+ }
2215
+
2216
+ .PhoneInput {
2217
+ background: #ffffff;
2218
+ border: 1px solid var(--gray-300);
2219
+ transition:
2220
+ background-color 0.2s,
2221
+ color 0.2s,
2222
+ border-color 0.2s,
2223
+ box-shadow 0.2s;
2224
+ border-radius: var(--border-radius);
2225
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
2226
+ padding-top: 10px;
2227
+ padding-bottom: 10px;
2228
+ padding-right: 12px;
2229
+ padding-left: 0px;
2230
+ height: 40px;
2231
+
2232
+ :focus-visible {
2233
+ outline: none;
2234
+ }
2235
+
2236
+ &:focus-within {
2237
+ outline: 0 none;
2238
+ outline-offset: 0;
2239
+ box-shadow:
2240
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
2241
+ 0px 0px 0px 2px var(--primary-100);
2242
+ border-radius: var(--border-radius);
2243
+ border: 1px solid var(--primary-300);
2244
+ }
2245
+
2246
+ .PhoneInputInput {
2247
+ border: none;
2248
+ }
2249
+ }
2250
+
2251
+ .PhoneInputCountry {
2252
+ .PhoneInputCountryIcon--border {
2253
+ box-shadow: none;
2254
+ background-color: #ffffff;
2255
+ }
2256
+
2257
+ .PhoneInputCountryIconImg {
2258
+ width: 20px;
2259
+ height: 20px;
2260
+ object-fit: cover;
2261
+ border-radius: 100%;
2262
+ position: absolute;
2263
+ top: 0;
2264
+ }
2265
+ }
2266
+
2267
+ .phoneNumberClass {
2268
+ margin-left: 14.5rem;
2269
+ }
2270
+
2271
+ #customCountryDropDown {
2272
+ .p-dropdown {
2273
+ border: none;
2274
+ box-shadow: none;
2275
+ background: none;
2276
+ padding: 0;
2277
+
2278
+ .p-dropdown-label {
2279
+ padding: 0;
2280
+ padding-right: 4px;
2281
+ }
2282
+
2283
+ .p-dropdown-trigger {
2284
+ padding-top: 20px;
2285
+ }
2286
+
2287
+ .p-dropdown-trigger[aria-expanded="true"] {
2288
+ padding-bottom: 20px;
2289
+ }
2290
+ }
2291
+ }
2292
+
2293
+ .customNumberField {
2294
+ .p-inputnumber-input {
2295
+ padding-left: 24px;
2296
+ }
2297
+ }
2298
+
2299
+ .text-editor {
2300
+ button {
2301
+ &::after {
2302
+ content: none !important;
2303
+ }
2304
+ }
2305
+ }
2306
+
2307
+ button#formatULOptions-1:hover::before,
2308
+ button#formatULOptions-1.fr-btn-hover::before,
2309
+ button#formatULOptions-1.fr-active::before,
2310
+ button#formatOLOptions-1:hover::before,
2311
+ button#formatOLOptions-1.fr-btn-hover::before,
2312
+ button#formatOLOptions-1.fr-active::before {
2313
+ content: "";
2314
+ border: 2px solid gray;
2315
+ border-left: 0;
2316
+ border-top: 0;
2317
+ width: 6px;
2318
+ height: 6px;
2319
+ position: absolute;
2320
+ left: 2px;
2321
+ top: 39%;
2322
+ transform: rotate(45deg);
2323
+ }
2324
+
2325
+ .fr-toolbar .fr-btn-grp {
2326
+ display: inline-block;
2327
+ margin: 0 0px 0 12px !important;
2328
+ }
2329
+
2330
+ .fr-buttons.fr-tabs {
2331
+ display: none;
2332
+ }
2333
+
2334
+ .fr-element {
2335
+ padding: 12px !important;
2336
+ }
2337
+
2338
+ .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active {
2339
+ background: #f9fafb !important;
2340
+ }
2341
+
2342
+ button[data-cmd="fontFamily"]:focus {
2343
+ box-shadow:
2344
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
2345
+ 0px 0px 0px 2px var(--primary-100);
2346
+ border: 1px solid var(--primary-300) !important;
2347
+ background: none !important;
2348
+ }
2349
+
2350
+ .text-editor {
2351
+ border: 1px solid #d0d5dd;
2352
+ border-radius: var(--border-radius);
2353
+
2354
+ * {
2355
+ border: none !important;
2356
+ }
2357
+ }
2358
+
2359
+ .text-editor.focus-text-editor {
2360
+ box-shadow:
2361
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
2362
+ 0px 0px 0px 4px var(--primary-100);
2363
+ border: 1px solid var(--primary-300) !important;
2364
+ }
2365
+
2366
+ .text-editor.p-invalid.focus-text-editor {
2367
+ box-shadow:
2368
+ 0px 1px 2px rgba(16, 24, 40, 0.05),
2369
+ 0px 0px 0px 4px var(--red-100);
2370
+ border: 1px solid var(--red-300) !important;
2371
+ }
2372
+
2373
+ button[data-cmd="fontFamily"] {
2374
+ border: 1px solid var(--gray-300) !important;
2375
+
2376
+ &::before {
2377
+ content: "";
2378
+ border: 1.8px solid #0b0c12;
2379
+ border-left: 0;
2380
+ border-top: 0;
2381
+ width: 7px;
2382
+ height: 7px;
2383
+ position: absolute;
2384
+ right: 8px;
2385
+ top: 39%;
2386
+ transform: rotate(45deg);
2387
+ }
2388
+ }
2389
+
2390
+ .fr-toolbar .fr-btn-grp {
2391
+ margin-right: 0px;
2392
+ margin-left: 8px;
2393
+ }
2394
+
2395
+ .fr-wrapper .fr-placeholder {
2396
+ color: #667085 !important;
2397
+ }
2398
+
2399
+ button[aria-expanded="true"] {
2400
+ &::before {
2401
+ top: 48%;
2402
+ transform: rotate(-136deg);
2403
+ }
2404
+ }
2405
+
2406
+ /// Custon treeDropdownSelect style
2407
+ .treeNoCollaps {
2408
+ li {
2409
+ padding-left: 0 !important;
2410
+ padding-right: 0 !important;
2411
+ }
2412
+
2413
+ .p-tree-toggler {
2414
+ display: none;
2415
+ }
2416
+
2417
+ .treeBadge {
2418
+ background: var(--Gray-100, #f2f4f7) !important;
2419
+ }
2420
+
2421
+ .p-treenode-content:hover {
2422
+ background: var(--Primary-25, #f5f6fd) !important;
2423
+ }
2424
+
2425
+ .p-treenode-content:hover .treeItem,
2426
+ .p-treenode-content:focus .treeItem {
2427
+ color: var(--primary-400);
2428
+
2429
+ .treeBadge {
2430
+ color: var(--Primary-400, #243dc6) !important;
2431
+ background: var(--Primary-50, #e2e5fa) !important;
2432
+ }
2433
+ }
2434
+
2435
+ .p-treenode-content:hover svg path,
2436
+ .p-treenode-content:focus svg path {
2437
+ stroke: var(--primary-400) !important;
2438
+ }
2439
+
2440
+ .p-treenode-content:focus {
2441
+ box-shadow: none !important;
2442
+ outline: none !important;
2443
+ background: var(--Primary-25, #f5f6fd) !important;
2444
+
2445
+ .treeBadge {
2446
+ color: var(--Primary-400, #243dc6) !important;
2447
+ background: var(--Primary-50, #e2e5fa) !important;
2448
+ }
2449
+ }
2450
+ }
2451
+
2452
+ /// Custon treeDropdownSelect style end /////////////////
2453
+
2454
+ /////// Custom list_box_dropdown ///////////
2455
+ .list_box_dropdown {
2456
+ .p-listbox-header {
2457
+ padding: 6px !important;
2458
+ border-top: 1px solid var(--gray-200);
2459
+ }
2460
+
2461
+ ul.p-listbox-list {
2462
+ padding: 6px;
2463
+
2464
+ li {
2465
+ margin: 4px 0 !important;
2466
+ border-radius: 6px !important;
2467
+ padding: 8px 14px !important;
2468
+
2469
+ .item_content {
2470
+ max-width: 80%;
2471
+ white-space: nowrap;
2472
+ text-overflow: ellipsis;
2473
+ overflow: hidden;
2474
+ // width: 100%;
2475
+ }
2476
+
2477
+ .item_icon {
2478
+ display: none;
2479
+ }
2480
+
2481
+ &:hover {
2482
+ background-color: var(--gray-50) !important;
2483
+ }
2484
+
2485
+ &:focus {
2486
+ box-shadow: none !important;
2487
+ }
2488
+ }
2489
+
2490
+ .p-highlight {
2491
+ background: var(--Primary-25);
2492
+ color: #162578 !important;
2493
+
2494
+ .item_icon {
2495
+ display: block;
2496
+ }
2497
+ }
2498
+ }
2499
+
2500
+ .selected-none {
2501
+ ul {
2502
+ li.p-highlight {
2503
+ display: none !important;
2504
+ }
2505
+ }
2506
+ }
2507
+ }
2508
+
2509
+ /////// Custom list_box_dropdown ///////////
2510
+
2511
+ //ScMulti Select//
2512
+ .sc_multiSelect {
2513
+ height: 40px !important;
2514
+
2515
+ .p-multiselect-clear-icon {
2516
+ right: 42px !important;
2517
+ }
2518
+
2519
+ .p-multiselect-label {
2520
+ line-height: 38px !important;
2521
+ height: 100%;
2522
+ }
2523
+ }
2524
+
2525
+ .sc_multiSelect.noShowSelectedCount {
2526
+ .p-multiselect-label {
2527
+ padding-right: 0px;
2528
+ }
2529
+ }
2530
+
2531
+ // .sc_multiSelect.hideChipremoveIcon {
2532
+ // .p-multiselect-token {
2533
+ // svg {
2534
+ // display: none;
2535
+ // }
2536
+ // }
2537
+ // }
2538
+
2539
+ .sc_multiSelect_panel {
2540
+ .p-multiselect-items {
2541
+ padding: 4px !important;
2542
+
2543
+ .p-multiselect-item,
2544
+ .p-highlight {
2545
+ span {
2546
+ padding-right: 28px;
2547
+ }
2548
+ }
2549
+
2550
+ .p-highlight::after {
2551
+ content: "";
2552
+ width: 12px;
2553
+ height: 6px;
2554
+ border: solid #162578;
2555
+ border-width: 1.9px;
2556
+ border-top: 0;
2557
+ border-right: 0;
2558
+ transform: rotate(-45deg);
2559
+ margin-right: 8px;
2560
+ position: absolute;
2561
+ right: 4px;
2562
+ }
2563
+ }
2564
+ }
2565
+
2566
+ //////////////////////////////////////////////
2567
+ ///
2568
+
2569
+ .condition_menu {
2570
+ width: 648px !important;
2571
+ }
2572
+
2573
+ .condition_attribute_list_sect {
2574
+ height: 215px;
2575
+
2576
+ .attr_chip {
2577
+ transition: all 0.1s;
2578
+
2579
+ &:hover {
2580
+ transform: scale(1.05);
2581
+ // transition: all 0.2s;
2582
+ }
2583
+ }
2584
+ }
2585
+
2586
+ .condition_configure {
2587
+ height: 224px;
2588
+ outline: none;
2589
+ line-height: 30px;
2590
+ letter-spacing: 2px;
2591
+
2592
+ .formulaChipElm {
2593
+ line-height: 24px;
2594
+ letter-spacing: 0px;
2595
+ margin: 2px;
2596
+ float: left;
2597
+ }
2598
+
2599
+ .formulaSpanElm {
2600
+ font-size: 16px;
2601
+ margin: 2px 0;
2602
+ float: left;
2603
+ min-width: 6px;
2604
+ height: 32px;
2605
+ }
2606
+ }
2607
+
2608
+ .formula_condition_dropdown {
2609
+ box-shadow: none !important;
2610
+
2611
+ .p-dropdown-label {
2612
+ display: block !important;
2613
+ }
2614
+ }
2615
+
2616
+ .p-button.p-button-link:enabled:hover {
2617
+ color: var(--primary-400) !important;
2618
+ }
2619
+
2620
+ /* AG GRID - styles */
2621
+ .ag-grid-container {
2622
+ background: #fff !important;
2623
+ box-shadow: 0px 0px 1px var(--gray-300) !important;
2624
+ overflow: hidden;
2625
+
2626
+ .ag-root-wrapper {
2627
+ &.ag-layout-normal {
2628
+ border: 0;
2629
+ }
2630
+ }
2631
+ }
2632
+
2633
+ .ag-header {
2634
+ background: var(--gray-50);
2635
+ border-top: 1px solid var(--gray-200) !important;
2636
+ border-bottom: 1px solid var(--gray-200) !important;
2637
+ }
2638
+
2639
+ .ag-root-wrapper {
2640
+ border-radius: 0 !important;
2641
+ }
2642
+
2643
+ .ag-body-horizontal-scroll {
2644
+ display: none !important;
2645
+ }
2646
+
2647
+ .ag-ltr .ag-cell-focus:not(.ag-cell-range-selected):focus-within {
2648
+ border: 0;
2649
+ border-color: initial;
2650
+ }
2651
+
2652
+ .ag-ltr .ag-cell {
2653
+ display: flex;
2654
+ align-items: center;
2655
+ }
2656
+
2657
+ .ag-grid-container {
2658
+ // border: 1px solid var(--gray-200) !important;
2659
+ background: #fff !important;
2660
+ box-shadow: 0px 0px 1px var(--gray-300);
2661
+ }
2662
+
2663
+ // .ag-row {
2664
+ // border-bottom: 1px solid var(--gray-200);
2665
+ // }
2666
+
2667
+ .ag-row-odd {
2668
+ background-color: var(--gray-25) !important;
2669
+ }
2670
+
2671
+ .ag-row:focus {
2672
+ background-color: var(--gray-100);
2673
+ }
2674
+
2675
+ /* ErrorBoundary.module.css */
2676
+ .errorContainer {
2677
+ display: flex;
2678
+ flex-direction: column;
2679
+ align-items: center;
2680
+ justify-content: center;
2681
+ padding: 20px;
2682
+ margin: auto;
2683
+ border-radius: var(--border-radius);
2684
+ background-color: var(--red-50);
2685
+ width: 100%;
2686
+ height: 100%;
2687
+ text-align: center;
2688
+ }
2689
+
2690
+ .error_description {
2691
+ // width: 750px;
2692
+ }
2693
+
2694
+ .rounded_btn {
2695
+ padding: 8px 10px !important;
2696
+ height: auto;
2697
+ border-radius: 6px !important;
2698
+ cursor: pointer;
2699
+
2700
+ &:hover {
2701
+ background: var(--primary-25);
2702
+ }
2703
+ }
2704
+
2705
+ .ag-grid-container {
2706
+ &:has(.web-cards) {
2707
+ .grid-header {
2708
+ position: sticky;
2709
+ top: 0;
2710
+ }
2711
+ }
2712
+ }
2713
+
2714
+ .p-button {
2715
+ &.p-button-secondary {
2716
+ padding: 8px 12px;
2717
+ }
2718
+
2719
+ &.p-button-outline {
2720
+ padding: 8px 12px;
2721
+ }
2722
+
2723
+ padding: 8px 12px;
2724
+
2725
+ .p-button-label {
2726
+ font-weight: 600;
2727
+ }
2728
+
2729
+ &.p-disabled {
2730
+ opacity: 0.2 !important;
2731
+ border: 0;
2732
+ }
2733
+ }
2734
+
2735
+ .ag-theme-quartz {
2736
+ --ag-active-color: var(--gray-300);
2737
+ }
2738
+
2739
+ .ag-ltr .ag-header-viewport .ag-header-cell-resize::after {
2740
+ background-color: var(--gray-200);
2741
+ width: 2px;
2742
+ }
2743
+
2744
+ .p-dropdown-panel .p-dropdown-items {
2745
+ padding-left: 0;
2746
+ }
2747
+
2748
+ .p-dropdown-panel .p-dropdown-items .p-dropdown-item {
2749
+ margin-bottom: 0px;
2750
+ }
2751
+
2752
+ .column-group {
2753
+ padding: 0 !important;
2754
+
2755
+ .p-overlaypanel-content {
2756
+ padding: 0 !important;
2757
+
2758
+ .column-header,
2759
+ .column-footer {
2760
+ padding: 16px;
2761
+ }
2762
+ }
2763
+ }
2764
+
2765
+ .w-25 {
2766
+ width: 25%;
2767
+ }
2768
+
2769
+ .lh-44 {
2770
+ line-height: 44px;
2771
+ }
2772
+
2773
+ .lh-40 {
2774
+ line-height: 40px;
2775
+ }
2776
+
2777
+ .br-8 {
2778
+ border-radius: 8px;
2779
+ }
2780
+
2781
+ /* conditions */
2782
+
2783
+ .status_select_field {
2784
+ .p-dropdown-item {
2785
+ height: 40px;
2786
+ }
2787
+ }
2788
+
2789
+ .filter-dropdowns {
2790
+ padding: 2px;
2791
+
2792
+ .p-dropdown:not(.p-disabled).p-focus {
2793
+ box-shadow: none !important;
2794
+ }
2795
+
2796
+ .condition-dropdown {
2797
+ width: 12rem !important;
2798
+ height: 44px;
2799
+ display: flex;
2800
+ justify-content: center;
2801
+ align-items: center;
2802
+ // border: 1px solid var(--gray-300) !important;
2803
+
2804
+ .p-dropdown .p-dropdown-label.p-inputtext {
2805
+ overflow: hidden;
2806
+ text-overflow: ellipsis;
2807
+ white-space: nowrap;
2808
+ }
2809
+
2810
+ .p-inputtext:enabled:focus {
2811
+ outline: 0 none;
2812
+ outline-offset: 0;
2813
+ box-shadow: none !important;
2814
+ border-radius: var(--border-radius);
2815
+ }
2816
+
2817
+ .p-inputtext:enabled:focus {
2818
+ outline: 0 none;
2819
+ outline-offset: 0;
2820
+ box-shadow: none !important;
2821
+ border-radius: var(--border-radius);
2822
+ }
2823
+ }
2824
+
2825
+ .operator-type {
2826
+ height: 44px !important;
2827
+ display: flex;
2828
+ justify-content: center;
2829
+ align-items: center;
2830
+ }
2831
+
2832
+ .condition-type {
2833
+ // width: 120px;
2834
+ height: 44px;
2835
+ display: flex;
2836
+ justify-content: center;
2837
+ align-items: center;
2838
+
2839
+ .p-dropdown .p-dropdown-label.p-inputtext {
2840
+ overflow: hidden;
2841
+ text-overflow: ellipsis;
2842
+ white-space: nowrap;
2843
+ }
2844
+ }
2845
+
2846
+ .filter-multi-dropdown {
2847
+ .p-multiselect {
2848
+ box-shadow: none !important;
2849
+ border: 1px solid var(--gray-300) !important;
2850
+ border-top-left-radius: 0;
2851
+ border-bottom-left-radius: 0;
2852
+ height: 44px;
2853
+ box-shadow: none !important;
2854
+ width: 200px !important;
2855
+
2856
+ &:focus {
2857
+ border-top-left-radius: 0 !important;
2858
+ border-bottom-left-radius: 0 !important;
2859
+ }
2860
+
2861
+ .p-inputwrapper-filled {
2862
+ background: #ffffff !important;
2863
+ }
2864
+ }
2865
+ }
2866
+
2867
+ .filter-calendar {
2868
+ .p-inputtext {
2869
+ border: 1px solid var(--gray-300) !important;
2870
+ border-top-left-radius: 0;
2871
+ border-bottom-left-radius: 0;
2872
+ height: 44px;
2873
+ line-height: 44px;
2874
+ box-shadow: none !important;
2875
+
2876
+ &:focus {
2877
+ border-top-left-radius: 0 !important;
2878
+ border-bottom-left-radius: 0 !important;
2879
+ }
2880
+ }
2881
+ }
2882
+
2883
+ .data_table_multi_checkbox {
2884
+ .p-checkbox {
2885
+ vertical-align: baseline;
2886
+ }
2887
+ }
2888
+ }
2889
+
2890
+ .p-multiselect-header {
2891
+ .p-checkbox {
2892
+ display: none !important;
2893
+ }
2894
+ }
2895
+
2896
+ .overlay_list_options {
2897
+ .p-overlaypanel-content {
2898
+ padding: 0;
2899
+ }
2900
+ }
2901
+
2902
+ .filter-btn-grid {
2903
+ padding: 10px;
2904
+ }
2905
+
2906
+ // modal with filter
2907
+ .modal_filter {
2908
+ width: 840px;
2909
+ overflow-x: auto;
2910
+
2911
+ @media (max-width: 760px) {
2912
+ width: 100%;
2913
+ }
2914
+
2915
+ @media (max-width: 1024px) {
2916
+ width: 840px;
2917
+ }
2918
+
2919
+ .p-dialog-header {
2920
+ display: none;
2921
+ }
2922
+
2923
+ .p-dialog-content {
2924
+ padding: 0px;
2925
+ border-radius: 6px;
2926
+ overflow-x: auto;
2927
+ }
2928
+ }
2929
+
2930
+ // .table-filter-overlay {
2931
+ // width: 51rem !important;
2932
+ // &:after,
2933
+ // &:before {
2934
+ // margin-left: -12px !important;
2935
+ // }
2936
+
2937
+ // margin-left: -10px;
2938
+
2939
+ // .p-overlaypanel-content {
2940
+ // padding: 0;
2941
+ // }
2942
+ // }
2943
+ .filter_dropdown_and {
2944
+ .p-dropdown-trigger {
2945
+ margin-top: 2px !important;
2946
+ }
2947
+ }
2948
+
2949
+ .icon-24x24 {
2950
+ width: 24px;
2951
+ height: 24px;
2952
+ }
2953
+
2954
+ .icon-32x32 {
2955
+ width: 32px;
2956
+ height: 32px;
2957
+ }
2958
+
2959
+ .h-38 {
2960
+ height: 38px;
2961
+ }
2962
+
2963
+ .border-round-6 {
2964
+ border-radius: 6px !important;
2965
+ }
2966
+
2967
+ // loader styles
2968
+ .loader-wrapper {
2969
+ width: 60px;
2970
+ height: 60px;
2971
+ top: 45%;
2972
+ left: 45%;
2973
+ transform: translate(-45%, -50%);
2974
+ border-radius: 50%;
2975
+ background-color: #fff;
2976
+ position: relative;
2977
+ transform: rotate(45deg);
2978
+ box-sizing: border-box;
2979
+ display: flex;
2980
+ justify-content: center;
2981
+ align-items: center;
2982
+
2983
+ /* HTML: <div class="loader"></div> */
2984
+ .loader-jobs {
2985
+ width: 35px;
2986
+ aspect-ratio: 1;
2987
+ border-radius: 50%;
2988
+ background:
2989
+ radial-gradient(farthest-side, var(--primary-500) 94%, #0000) top/5px 5px no-repeat,
2990
+ conic-gradient(#0000 5%, var(--primary-500));
2991
+ -webkit-mask: radial-gradient(farthest-side,
2992
+ #0000 calc(100% - 5px),
2993
+ #000 0);
2994
+ animation: l13 1s infinite linear;
2995
+ }
2996
+
2997
+ @keyframes l13 {
2998
+ 100% {
2999
+ transform: rotate(1turn);
3000
+ }
3001
+ }
3002
+
3003
+ @keyframes gradient {
3004
+ 0% {
3005
+ background-position: 100% 50%;
3006
+ }
3007
+
3008
+ 50% {
3009
+ background-position: 50% 70%;
3010
+ }
3011
+
3012
+ 100% {
3013
+ background-position: 70% 100%;
3014
+ }
3015
+ }
3016
+ }
3017
+
3018
+ .loader-main {
3019
+ width: 48px;
3020
+ height: 48px;
3021
+ border-radius: 50%;
3022
+ position: relative;
3023
+ animation: rotate 1s linear infinite;
3024
+
3025
+ &:nth-child(2) {
3026
+ width: 90%;
3027
+ }
3028
+
3029
+ &:nth-child(3) {
3030
+ width: 80%;
3031
+ }
3032
+
3033
+ &:nth-child(4) {
3034
+ width: 70%;
3035
+ }
3036
+ }
3037
+
3038
+ .loader-main::before {
3039
+ content: "";
3040
+ box-sizing: border-box;
3041
+ position: absolute;
3042
+ inset: 0px;
3043
+ border-radius: 50%;
3044
+ border: 3px solid var(--primary-500);
3045
+ animation: prixClipFix 2s linear infinite;
3046
+ }
3047
+
3048
+ .br-6 {
3049
+ border-radius: var(--border-radius);
3050
+ }
3051
+
3052
+ .line-clamp {
3053
+ display: -webkit-box;
3054
+ -webkit-box-orient: vertical;
3055
+ overflow: hidden;
3056
+ text-overflow: ellipsis;
3057
+ }
3058
+
3059
+ .line-clamp-1 {
3060
+ -webkit-line-clamp: 1;
3061
+ line-clamp: 1;
3062
+ }
3063
+
3064
+ .line-clamp-2 {
3065
+ -webkit-line-clamp: 2;
3066
+ line-clamp: 2;
3067
+ }
3068
+
3069
+ .pd-9 {
3070
+ padding: 9px;
3071
+ }
3072
+
3073
+ .custom_grid_checkbox {
3074
+ &.custom_grid_indeterminate {
3075
+ .p-checkbox-box {
3076
+ width: 20px;
3077
+ height: 20px;
3078
+ border-radius: 50%;
3079
+ cursor: pointer;
3080
+ position: absolute;
3081
+ top: 0;
3082
+ left: 0;
3083
+ background: url("./assets/png/checkbox_minus_icon.png");
3084
+ transition: background 0.3s;
3085
+ border: 0;
3086
+
3087
+ &.p-highlight {
3088
+ background: url("./assets/png/checkbox_minus_icon.png");
3089
+
3090
+ &:hover {
3091
+ background: url("./assets/png/checkbox_minus_icon.png") transparent !important;
3092
+ }
3093
+
3094
+ svg {
3095
+ width: 0 !important;
3096
+ height: 0 !important;
3097
+ }
3098
+ }
3099
+ }
3100
+ }
3101
+
3102
+ position: relative;
3103
+ margin-right: 5px;
3104
+
3105
+ .p-checkbox-box {
3106
+ width: 20px;
3107
+ height: 20px;
3108
+ border-radius: 50%;
3109
+ cursor: pointer;
3110
+ position: absolute;
3111
+ top: 0;
3112
+ left: 0;
3113
+ background: url("./assets/png/checkbox_outline_icon.png");
3114
+ transition: background 0.3s;
3115
+ border: 0;
3116
+
3117
+ &:hover {
3118
+ background: url("./assets/png/checkbox_outline_icon.png") transparent !important;
3119
+ border: 0 !important;
3120
+ }
3121
+
3122
+ &.p-highlight {
3123
+ background: url("./assets/png/checkbox_fill_icon.png");
3124
+
3125
+ &:hover {
3126
+ background: url("./assets/png/checkbox_fill_icon.png") transparent !important;
3127
+ }
3128
+
3129
+ svg {
3130
+ width: 0 !important;
3131
+ height: 0 !important;
3132
+ }
3133
+ }
3134
+ }
3135
+ }
3136
+
3137
+ // .ag-grid-container {
3138
+ // .ag-cell-wrapper {
3139
+ // width: 100% !important;
3140
+ // .ag-group-value {
3141
+ // width: 100% !important;
3142
+ // }
3143
+ // }
3144
+ // }
3145
+
3146
+ // .ag_grid_sidebar {
3147
+ // .p-sidebar-content {
3148
+ // padding-right: 16px;
3149
+ // }
3150
+ // }
3151
+
3152
+ .ag-center-cols-viewport {
3153
+ min-height: 0px !important;
3154
+ }
3155
+
3156
+ // .filter-dropdown-grid {
3157
+ // .p-placeholder {
3158
+ // margin-top: 3px;
3159
+ // }
3160
+ // }
3161
+
3162
+ .zoom_animate {
3163
+ transition: all 0.4s ease-in-out;
3164
+ animation: zoomin 0.2s linear;
3165
+ }
3166
+
3167
+ @keyframes zoomin {
3168
+ 0% {
3169
+ opacity: 0;
3170
+ transform: scale3d(0.3, 0.3, 0.3);
3171
+ }
3172
+
3173
+ 100% {
3174
+ opacity: 1;
3175
+ }
3176
+ }
3177
+
3178
+ // .slide_animate_sort {
3179
+ // overflow: hidden; /* Ensures content is not visible outside of the height */
3180
+ // height: 0; /* Start with height 0 */
3181
+ // opacity: 0; /* Start with full transparency */
3182
+ // animation: slide_down 0.5s ease-in-out forwards; /* Run the animation on load */
3183
+ // }
3184
+
3185
+ // @keyframes slide_down {
3186
+ // 0% {
3187
+ // height: 0;
3188
+ // // margin-top: -30px; /* Start 30px above the final position */
3189
+ // opacity: 0; /* Fully transparent */
3190
+ // }
3191
+ // 100% {
3192
+ // height: 90px; /* The final height */
3193
+ // // margin-top: 0px; /* Move to the final position */
3194
+ // opacity: 1; /* Fully opaque */
3195
+ // }
3196
+ // }
3197
+
3198
+ .pd-r-2 {
3199
+ padding-right: 2px;
3200
+ }
3201
+
3202
+ .ag-grid-container:has(.custom_class_name) {
3203
+ .ag-cell-wrapper {
3204
+ width: 100% !important;
3205
+
3206
+ .ag-group-value {
3207
+ width: 100% !important;
3208
+ }
3209
+ }
3210
+ }
3211
+
3212
+ @keyframes rotate {
3213
+ 100% {
3214
+ transform: rotate(360deg);
3215
+ }
3216
+ }
3217
+
3218
+ @keyframes prixClipFix {
3219
+ 0% {
3220
+ clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
3221
+ }
3222
+
3223
+ 25% {
3224
+ clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
3225
+ }
3226
+
3227
+ 50% {
3228
+ clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
3229
+ }
3230
+
3231
+ 75% {
3232
+ clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
3233
+ }
3234
+
3235
+ 100% {
3236
+ clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
3237
+ }
3238
+ }
3239
+
3240
+ .edited-record {
3241
+ background-color: var(--primary-50);
3242
+ }
3243
+
3244
+ .non-editable {
3245
+ background-color: var(--gray-100);
3246
+ }
3247
+
3248
+ .tagify {
3249
+ height: 200px;
3250
+
3251
+ .tagify__input {
3252
+ color: #000;
3253
+ overflow: auto;
3254
+
3255
+ tag[type="math"] {
3256
+ * {
3257
+ padding: 0 !important;
3258
+
3259
+ &::before {
3260
+ box-shadow: none !important;
3261
+ }
3262
+ }
3263
+
3264
+ x {
3265
+ display: none !important;
3266
+ }
3267
+ }
3268
+ }
3269
+ }
3270
+
3271
+ .text_ellipsis {
3272
+ display: -webkit-box !important;
3273
+ -webkit-box-orient: vertical;
3274
+ -webkit-line-clamp: 1;
3275
+ line-clamp: 1;
3276
+ white-space: normal;
3277
+ word-break: break-all;
3278
+ overflow: hidden;
3279
+ }
3280
+
3281
+ .line_clamp {
3282
+ display: -webkit-box !important;
3283
+ -webkit-box-orient: vertical;
3284
+ white-space: normal;
3285
+ word-break: break-all;
3286
+ overflow: hidden;
3287
+
3288
+ &.line_clamp_1 {
3289
+ -webkit-line-clamp: 1;
3290
+ line-clamp: 1;
3291
+ }
3292
+
3293
+ &.line_clamp_2 {
3294
+ -webkit-line-clamp: 2 !important;
3295
+ line-clamp: 2 !important;
3296
+ }
3297
+ }
3298
+
3299
+ // .text_ellipsis {
3300
+ // display: -webkit-box !important;
3301
+ // -webkit-box-orient: vertical;
3302
+ // -webkit-line-clamp: 1;
3303
+ // line-clamp: 1;
3304
+ // white-space: normal;
3305
+ // overflow: hidden;
3306
+ // }
3307
+
3308
+ // button styles
3309
+ // .p-button.sc_btn,
3310
+ // div.sc_btn {
3311
+ // font-weight: 600;
3312
+ // border-radius: var(--border-radius);
3313
+ // display: flex;
3314
+ // align-items: center;
3315
+ // padding: 8px 16px;
3316
+ // cursor: pointer;
3317
+ // font-size: 14px;
3318
+ // padding: 8px 16px;
3319
+
3320
+ // &:has(svg) {
3321
+ // display: flex;
3322
+ // align-items: center;
3323
+ // gap: 6px;
3324
+ // }
3325
+ // svg {
3326
+ // width: 18px;
3327
+ // height: 18px;
3328
+ // path {
3329
+ // stroke: #fff;
3330
+ // }
3331
+ // }
3332
+ // &.primary {
3333
+ // background-color: var(--primary-500);
3334
+ // color: #fff;
3335
+ // &:hover {
3336
+ // background-color: var(--primary-700);
3337
+ // }
3338
+ // }
3339
+ // &.destructive {
3340
+ // background-color: var(--red-600);
3341
+ // color: #fff;
3342
+ // &:hover {
3343
+ // background-color: var(--red-700);
3344
+ // }
3345
+ // }
3346
+
3347
+ // &.secondary {
3348
+ // background-color: var(--bg-white);
3349
+ // padding-block: 7px !important;
3350
+ // // outline-offset: -1px;
3351
+ // color: var(--gray-700);
3352
+ // border: 1px solid var(--gray-300) !important;
3353
+ // &:hover {
3354
+ // background-color: var(--gray-50);
3355
+ // color: var(--gray-900);
3356
+ // }
3357
+ // }
3358
+
3359
+ // // Teritiary buttons
3360
+ // &.tertiary {
3361
+ // background-color: transparent;
3362
+ // &.primary_text {
3363
+ // color: var(--primary-500);
3364
+ // &:hover {
3365
+ // background-color: var(--primary-25);
3366
+ // color: var(--primary-700);
3367
+ // svg {
3368
+ // path {
3369
+ // stroke: var(--primary-700);
3370
+ // }
3371
+ // }
3372
+ // }
3373
+ // svg {
3374
+ // path {
3375
+ // stroke: var(--primary-600);
3376
+ // }
3377
+ // }
3378
+ // }
3379
+ // &.destructive_text {
3380
+ // color: var(--red-600);
3381
+ // &:hover {
3382
+ // background-color: var(--red-50);
3383
+ // color: var(--red-700);
3384
+ // svg {
3385
+ // path {
3386
+ // stroke: var(--red-700);
3387
+ // }
3388
+ // }
3389
+ // }
3390
+ // svg {
3391
+ // path {
3392
+ // stroke: var(--red-600);
3393
+ // }
3394
+ // }
3395
+ // }
3396
+ // &.secondary_text {
3397
+ // color: var(--gray-600);
3398
+ // &:hover {
3399
+ // background-color: var(--gray-50);
3400
+ // color: var(--gray-700);
3401
+ // svg {
3402
+ // path {
3403
+ // stroke: var(--gray-700);
3404
+ // }
3405
+ // }
3406
+ // }
3407
+ // svg {
3408
+ // path {
3409
+ // stroke: var(--gray-600);
3410
+ // }
3411
+ // }
3412
+ // }
3413
+ // }
3414
+ // &.icon_right {
3415
+ // padding: 8px 12px 8px 16px;
3416
+ // }
3417
+ // &.icon_left {
3418
+ // padding: 8px 16px 8px 12px;
3419
+ // }
3420
+ // &.icon_both {
3421
+ // padding: 8px 12px;
3422
+ // }
3423
+ // &.icon_btn {
3424
+ // padding: 8px 12px;
3425
+ // border-radius: var(--border-radius);
3426
+ // background-color: transparent;
3427
+ // border: 0 !important;
3428
+
3429
+ // &.primary {
3430
+ // svg {
3431
+ // path {
3432
+ // stroke: var(--primary-500);
3433
+ // }
3434
+ // }
3435
+ // &:hover {
3436
+ // background-color: var(--primary-25);
3437
+ // svg {
3438
+ // path {
3439
+ // stroke: var(--primary-700);
3440
+ // }
3441
+ // }
3442
+ // }
3443
+ // }
3444
+ // &.secondary {
3445
+ // svg {
3446
+ // path {
3447
+ // stroke: var(--gray-600);
3448
+ // }
3449
+ // }
3450
+ // &:hover {
3451
+ // background-color: var(--gray-50);
3452
+ // svg {
3453
+ // path {
3454
+ // stroke: var(--gray-700);
3455
+ // }
3456
+ // }
3457
+ // }
3458
+ // }
3459
+ // }
3460
+ // }
3461
+
3462
+ .max-height {
3463
+ height: 340px;
3464
+ }