@djb25/digit-ui-css 1.0.23 → 1.0.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djb25/digit-ui-css",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -93,6 +93,10 @@
93
93
  width: 100%;
94
94
  }
95
95
 
96
+ .new-application-card {
97
+ grid-template-columns: 1fr;
98
+ }
99
+
96
100
  .finance-heading {
97
101
  display: flex;
98
102
  justify-content: center;
@@ -337,20 +337,30 @@ body {
337
337
 
338
338
  .carousel-track {
339
339
  display: grid;
340
- grid-template-rows: repeat(2, minmax(0, 1fr));
341
340
  grid-auto-flow: column;
342
- grid-auto-columns: 100%;
343
- gap: 20px;
341
+ grid-auto-rows: 1fr;
342
+ grid-auto-columns: calc(25% - 9px);
343
+ gap: 12px;
344
344
  overflow-x: auto;
345
345
  scroll-behavior: smooth;
346
346
  scroll-snap-type: x mandatory;
347
347
  width: 100%;
348
- padding: 10px 0px;
349
- column-gap: 20px;
350
348
  -ms-overflow-style: none;
351
349
  scrollbar-width: none;
350
+ padding-top: 10px;
352
351
  }
353
352
 
353
+ @media (max-width: 1024px) {
354
+ .carousel-track {
355
+ grid-auto-columns: calc(50% - 9px);
356
+ }
357
+ }
358
+
359
+ @media (max-width: 512px) {
360
+ .carousel-track {
361
+ grid-auto-columns: 100%;
362
+ }
363
+ }
354
364
 
355
365
  .carousel-track::-webkit-scrollbar {
356
366
  display: none;
@@ -366,20 +376,6 @@ body {
366
376
 
367
377
 
368
378
 
369
-
370
- @media (min-width: 640px) {
371
-
372
- .carousel-track {
373
- grid-auto-columns: calc((100% - 20px) / 2);
374
- }
375
- }
376
-
377
- @media (min-width: 1024px) {
378
- .carousel-track {
379
- grid-auto-columns: calc((100% - 3 * 20px) / 4);
380
- }
381
- }
382
-
383
379
  .carousel-track .new-employee-card {
384
380
  width: 100%;
385
381
  height: 100%;
@@ -420,14 +416,150 @@ body {
420
416
  box-shadow: none;
421
417
  }
422
418
 
423
- @screen dt {
424
- .carousel-track {
425
- grid-auto-columns: calc((100% - 3 * 20px) / 4);
419
+ .header-right-area {
420
+ display: flex;
421
+ flex-direction: column;
422
+ align-items: center;
423
+ justify-content: center;
424
+ gap: 10px;
425
+ position: relative;
426
+ margin-left: auto;
427
+ padding-right: 20px;
428
+ }
429
+
430
+ .header-icon-area {
431
+ position: relative;
432
+ opacity: 0.9;
433
+ pointer-events: none;
434
+ width: 160px;
435
+ height: 110px;
436
+ display: flex;
437
+ align-items: center;
438
+ justify-content: center;
439
+ z-index: 1;
440
+
441
+ @media (max-width: 768px) {
442
+ width: 130px;
443
+ height: 90px;
444
+ transform: scale(0.85);
426
445
  }
427
446
  }
428
447
 
429
- @screen dt {
430
- .carousel-track {
431
- grid-auto-columns: calc((100% - 3 * 20px) / 4);
448
+ .header-actions-area {
449
+ z-index: 10;
450
+ position: relative;
451
+
452
+ @media (max-width: 1024px) {
453
+ margin-right: 140px;
454
+ }
455
+
456
+ @media (max-width: 768px) {
457
+ margin-right: 0;
458
+ margin-left: 0;
459
+ width: 100%;
460
+ display: flex;
461
+ justify-content: flex-start;
462
+ }
463
+ }
464
+
465
+ .view-dashboard-btn {
466
+ display: flex;
467
+ align-items: center;
468
+ gap: 12px;
469
+ background: linear-gradient(135deg, #31a1f9 0%, #3585c4 100%);
470
+ padding: 6px 12px;
471
+ border-radius: 50px;
472
+ text-decoration: none;
473
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
474
+ box-shadow: 0 4px 15px rgba(26, 103, 163, 0.2);
475
+ border: 1px solid rgba(255, 255, 255, 0.1);
476
+ width: fit-content;
477
+
478
+ .btn-text {
479
+ color: #ffffff;
480
+ font-size: 13px;
481
+ font-weight: 600;
482
+ letter-spacing: 0.3px;
483
+ white-space: nowrap;
484
+ }
485
+
486
+ .btn-icon-bg {
487
+ width: 24px;
488
+ height: 24px;
489
+ background: rgba(255, 255, 255, 0.15);
490
+ border-radius: 50%;
491
+ display: flex;
492
+ align-items: center;
493
+ justify-content: center;
494
+ transition: transform 0.3s ease;
495
+
496
+ svg.finance-chart-icon {
497
+ width: 14px;
498
+ height: 14px;
499
+ fill: white;
500
+ }
501
+ }
502
+
503
+ &:hover {
504
+ background: linear-gradient(135deg, #217bbd 0%, #4a98d3 100%);
505
+ transform: translateY(-2px);
506
+ box-shadow: 0 6px 20px rgba(26, 103, 163, 0.3);
507
+ border-color: rgba(255, 255, 255, 0.3);
508
+
509
+ .btn-icon-bg {
510
+ transform: rotate(15deg) scale(1.1);
511
+ background: rgba(255, 255, 255, 0.25);
512
+ }
513
+ }
514
+
515
+ &:active {
516
+ transform: translateY(0);
517
+ box-shadow: 0 2px 10px rgba(26, 103, 163, 0.2);
518
+ }
519
+ }
520
+
521
+ @media (max-width: 640px) {
522
+ .view-dashboard-btn {
523
+ padding: 5px 10px;
524
+ gap: 8px;
525
+
526
+ .btn-text {
527
+ font-size: 12px;
528
+ }
529
+
530
+ .btn-icon-bg {
531
+ width: 22px;
532
+ height: 22px;
533
+
534
+ svg {
535
+ width: 12px;
536
+ height: 12px;
537
+ }
538
+ }
539
+ }
540
+ }
541
+
542
+ @keyframes toastSlideUp {
543
+ from {
544
+ transform: translateY(100%) scale(0.9);
545
+ opacity: 0;
546
+ }
547
+
548
+ to {
549
+ transform: translateY(0) scale(1);
550
+ opacity: 1;
551
+ }
552
+ }
553
+
554
+ .coming-soon-toast {
555
+ h2 {
556
+ color: #ffffff !important;
557
+ margin: 0 !important;
558
+ font-size: 16px !important;
559
+ font-weight: 600 !important;
560
+ }
561
+
562
+ svg {
563
+ fill: #ffffff !important;
432
564
  }
433
565
  }
@@ -471,10 +471,7 @@
471
471
  .new-employee-card {
472
472
  position: relative;
473
473
  background-color: #ffffff;
474
- background-image:
475
- radial-gradient(circle at 0% 0%, rgba(186, 230, 253, 0.6) 0%, transparent 60%),
476
- radial-gradient(circle at 100% 0%, rgba(243, 232, 255, 0.5) 0%, transparent 60%),
477
- radial-gradient(circle at 100% 100%, rgba(255, 237, 213, 0.4) 0%, transparent 60%);
474
+ background-image: linear-gradient(135deg, rgba(186, 230, 253, 0.2) 0%, rgba(243, 232, 255, 0.15) 100%);
478
475
  border: 1px solid #eef1f5;
479
476
  border-radius: 20px;
480
477
  padding: 10px;
@@ -484,45 +481,15 @@
484
481
  width: 100%;
485
482
  max-width: 426px;
486
483
  max-height: 180px;
487
- box-shadow:
488
- 0 10px 25px -5px rgba(0, 0, 0, 0.04),
489
- 0 8px 10px -6px rgba(0, 0, 0, 0.02);
484
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
490
485
  font-family: inherit;
491
486
  overflow: hidden;
492
- transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
493
- }
494
-
495
- .new-employee-card::after {
496
- content: "";
497
- position: absolute;
498
- top: -10%;
499
- right: -5%;
500
- width: 200px;
501
- height: 200px;
502
- background: radial-gradient(circle, rgba(235, 244, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
503
- filter: blur(40px);
504
- border-radius: 50%;
505
- z-index: 0;
506
- pointer-events: none;
507
- }
508
-
509
- .new-employee-card::before {
510
- content: "";
511
- position: absolute;
512
- bottom: -15%;
513
- left: -10%;
514
- width: 250px;
515
- height: 250px;
516
- background: radial-gradient(circle, rgba(245, 243, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
517
- filter: blur(50px);
518
- border-radius: 50%;
519
- z-index: 0;
520
- pointer-events: none;
487
+ transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
521
488
  }
522
489
 
523
490
  .new-employee-card:hover {
524
491
  transform: translateY(-4px);
525
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
492
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
526
493
  }
527
494
 
528
495
  .new-employee-card>* {
@@ -76,8 +76,73 @@
76
76
  }
77
77
 
78
78
  .upload-file {
79
- min-height: 56px;
80
- @apply relative border border-input-border w-full;
79
+ .uploaaad {
80
+ display: flex;
81
+ align-items: center;
82
+ gap: 8px;
83
+ background-color: #95afe0;
84
+ font-weight: 700;
85
+ color: white;
86
+ position: relative;
87
+ padding-left: 8px;
88
+ padding-right: 16px;
89
+ border-radius: 0.375rem 0 0 0.375rem;
90
+ cursor: pointer;
91
+ div {
92
+ margin-top: 0 !important;
93
+ padding-left: 0;
94
+ }
95
+ .input-mirror-selector-button {
96
+ width: 100% !important;
97
+ height: 100% !important;
98
+ cursor: pointer;
99
+ input {
100
+ cursor: pointer;
101
+ }
102
+ }
103
+ input {
104
+ width: 100% !important;
105
+ height: 100% !important;
106
+ cursor: pointer;
107
+ }
108
+ .upload-button {
109
+ margin-top: 0;
110
+ cursor: pointer;
111
+ }
112
+ .file-upload-status {
113
+ font-size: 14px;
114
+ font-weight: 500;
115
+ }
116
+ }
117
+ .tag-container {
118
+ margin-top: 0;
119
+ margin-bottom: 0;
120
+ max-width: 50%;
121
+ margin-left: 5px;
122
+ padding-left: 0;
123
+
124
+ ::-webkit-scrollbar {
125
+ display: none;
126
+ }
127
+ scrollbar-width: none;
128
+ -ms-overflow-style: none;
129
+
130
+ .tag {
131
+ display: flex;
132
+ align-items: center;
133
+ padding-top: 0;
134
+ padding-bottom: 0;
135
+ margin: 0;
136
+ .text {
137
+ max-width: calc(100% - 25px);
138
+ }
139
+ }
140
+ }
141
+ }
142
+
143
+ .upload-file {
144
+ min-height: 40px;
145
+ @apply relative border border-input-border w-full rounded-md;
81
146
 
82
147
  div {
83
148
  @apply flex flex-row h-full items-center pl-md mt-sm flex-wrap;
@@ -98,3 +163,9 @@
98
163
  height: 158px;
99
164
  }
100
165
  }
166
+
167
+ .ws-doc-upload {
168
+ .label-field-pair {
169
+ justify-content: flex-end;
170
+ }
171
+ }
package/src/index.scss CHANGED
@@ -748,6 +748,28 @@ input[type="number"] {
748
748
  }
749
749
  }
750
750
 
751
+ .ws-search-form {
752
+ display: flex;
753
+ flex-direction: column;
754
+ gap: 20px;
755
+
756
+ .ws-search-form-wrapper {
757
+ border-radius: 0;
758
+ }
759
+ }
760
+
761
+ .ws-search-form-wrapper {
762
+ padding: 0;
763
+ overflow-y: scroll;
764
+ }
765
+
766
+ .ws-submit {
767
+ display: flex;
768
+ gap: 16px;
769
+ justify-content: end;
770
+ align-items: center;
771
+ }
772
+
751
773
  .plumber-details-new-value-wrapper {
752
774
  flex: 2 1 auto;
753
775
  }
@@ -74,7 +74,7 @@
74
74
  }
75
75
  }
76
76
 
77
- .employee-main-application-details{
77
+ .employee-main-application-details {
78
78
  width: 100%;
79
79
  overflow-y: scroll;
80
80
  }
@@ -88,8 +88,6 @@
88
88
  gap: 16px;
89
89
  }
90
90
 
91
-
92
-
93
91
  .citizen {
94
92
  .main {
95
93
  padding-top: 82px;
@@ -97,6 +95,10 @@
97
95
  }
98
96
  }
99
97
 
98
+ .ws-edit-form-card-wrapper {
99
+ grid-template-columns: 1fr;
100
+ }
101
+
100
102
  .citizen,
101
103
  .employee {
102
104
  .sidebar {
@@ -243,7 +245,8 @@
243
245
  &.active {
244
246
  border-left: 4px solid theme(colors.primary.main);
245
247
 
246
- &.level-0 {}
248
+ &.level-0 {
249
+ }
247
250
 
248
251
  &.level-1 {
249
252
  border-left: 8.5px solid theme(colors.primary.main);
@@ -253,7 +256,8 @@
253
256
  border-left: 4px solid theme(colors.primary.main);
254
257
  }
255
258
 
256
- &.level-3 {}
259
+ &.level-3 {
260
+ }
257
261
 
258
262
  color: theme(colors.primary.main) !important;
259
263
  border-right: none;
@@ -422,8 +426,6 @@
422
426
  display: flex;
423
427
  align-items: center;
424
428
  justify-content: space-between;
425
- /* Space between Greeting and Search */
426
- flex-wrap: wrap;
427
429
  gap: 20px;
428
430
  overflow: hidden;
429
431
 
@@ -432,30 +434,21 @@
432
434
  -webkit-backdrop-filter: blur(20px) saturate(150%);
433
435
  border: 1px solid rgba(255, 255, 255, 0.3);
434
436
 
435
- box-shadow:
436
- inset 0 2px 4px rgba(255, 255, 255, 0.4),
437
- inset 0 -2px 6px rgba(0, 0, 0, 0.1),
438
- 0 12px 30px rgba(97, 119, 236, 0.2);
437
+ box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), inset 0 -2px 6px rgba(0, 0, 0, 0.1), 0 12px 30px rgba(97, 119, 236, 0.2);
439
438
 
440
439
  .header-icon-area {
441
- position: absolute;
442
- top: 41%;
443
- right: 20px;
444
- transform: translateY(-50%);
445
- opacity: 0.5;
440
+ opacity: 0.8;
446
441
  pointer-events: none;
447
442
  max-width: 157px;
448
443
 
449
444
  @media (max-width: 768px) {
450
- right: 10px;
451
- transform: translateY(-50%) scale(0.8);
445
+ transform: scale(0.8);
452
446
  }
453
447
  }
454
448
 
455
449
  .header-greeting-area {
456
450
  display: flex;
457
451
  flex-direction: column;
458
-
459
452
  }
460
453
 
461
454
  .greeting-title {
@@ -481,7 +474,6 @@
481
474
  font-weight: 500;
482
475
  color: rgba(255, 255, 255, 0.9);
483
476
  letter-spacing: 0.5px;
484
-
485
477
  }
486
478
 
487
479
  /* --- Right: Omni Search Area --- */
@@ -543,7 +535,7 @@
543
535
  padding: 4px 10px;
544
536
  border-radius: 8px;
545
537
  margin-right: 6px;
546
- font-family: 'SFMono-Regular', Consolas, monospace;
538
+ font-family: "SFMono-Regular", Consolas, monospace;
547
539
  border: 1px solid rgba(255, 255, 255, 0.3);
548
540
  }
549
541
  }
@@ -656,7 +648,8 @@
656
648
  justify-content: center;
657
649
  }
658
650
 
659
- .center-container {}
651
+ .center-container {
652
+ }
660
653
  }
661
654
  }
662
655
 
@@ -874,12 +867,10 @@
874
867
  }
875
868
  }
876
869
 
877
- /* --- TOP INFO CARDS: NEWS & RECENT ACTIVITY --- */
878
870
 
879
871
  .top-info-cards-wrapper {
880
872
  display: flex;
881
873
  flex-direction: column;
882
- /* Stack natively on mobile */
883
874
  gap: 20px;
884
875
  width: 100%;
885
876
  margin-bottom: 10px;
@@ -888,12 +879,13 @@
888
879
  @media (min-width: 1024px) {
889
880
  .top-info-cards-wrapper {
890
881
  display: grid;
891
- grid-template-columns: 3fr 1fr;
882
+ grid-template-columns: 3fr 1fr;
892
883
  align-items: stretch;
893
884
  }
894
885
  }
895
886
 
896
- @media (min-width: 375px) {}
887
+ @media (min-width: 375px) {
888
+ }
897
889
 
898
890
  .static-card {
899
891
  background: white;
@@ -912,6 +904,7 @@
912
904
  margin-bottom: 8px;
913
905
  padding: 0 16px;
914
906
  }
907
+
915
908
  .custom-tab-btn {
916
909
  padding: 12px 16px;
917
910
  background: none;
@@ -976,6 +969,7 @@
976
969
  color: #64748b;
977
970
  white-space: nowrap;
978
971
  }
972
+
979
973
  .compact-right-text.danger {
980
974
  color: #ef4444;
981
975
  font-weight: 600;
@@ -987,6 +981,7 @@
987
981
  padding: 12px 16px;
988
982
  border-bottom: 1px solid #f1f5f9;
989
983
  }
984
+
990
985
  .ra-compact-item:last-child {
991
986
  border-bottom: none;
992
987
  }
@@ -1008,14 +1003,15 @@
1008
1003
  border-radius: 4px;
1009
1004
  margin-right: 8px;
1010
1005
  }
1006
+
1011
1007
  .ra-footer {
1012
- margin-top: auto;
1013
- padding-top: 16px;
1014
- padding-bottom: 0px;
1008
+ margin-top: auto;
1009
+ padding-top: 16px;
1010
+ padding-bottom: 0px;
1015
1011
  display: flex;
1016
1012
  justify-content: center;
1017
1013
  align-items: center;
1018
- background: transparent;
1014
+ background: transparent;
1019
1015
  z-index: 10;
1020
1016
  }
1021
1017
 
@@ -1092,12 +1088,14 @@
1092
1088
  background: #f1f5f9;
1093
1089
  color: #ef4444;
1094
1090
  }
1091
+
1095
1092
  .ra-timeline {
1096
- flex: 1;
1097
- overflow-y: auto;
1098
- min-height: 0;
1099
- padding-right: 8px;
1093
+ flex: 1;
1094
+ overflow-y: auto;
1095
+ min-height: 0;
1096
+ padding-right: 8px;
1100
1097
  }
1098
+
1101
1099
  .ra-timeline-modal {
1102
1100
  padding: 24px;
1103
1101
  overflow-y: auto;
@@ -1118,7 +1116,6 @@
1118
1116
  justify-content: space-between;
1119
1117
  align-items: center;
1120
1118
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
1121
-
1122
1119
  }
1123
1120
 
1124
1121
  .ra-header h3 {
@@ -1260,11 +1257,11 @@
1260
1257
  row-gap: 1rem;
1261
1258
  }
1262
1259
 
1263
- .vendor-two-column-form .employeeCard>.card-header,
1264
- .vendor-two-column-form .employeeCard>header,
1265
- .vendor-two-column-form .employeeCard>.submit-bar,
1266
- .vendor-two-column-form .employeeCard>.primary-label-btn,
1267
- .vendor-two-column-form .employeeCard>.break-line {
1260
+ .vendor-two-column-form .employeeCard > .card-header,
1261
+ .vendor-two-column-form .employeeCard > header,
1262
+ .vendor-two-column-form .employeeCard > .submit-bar,
1263
+ .vendor-two-column-form .employeeCard > .primary-label-btn,
1264
+ .vendor-two-column-form .employeeCard > .break-line {
1268
1265
  grid-column: 1 / -1;
1269
1266
  }
1270
1267
 
@@ -1289,22 +1286,21 @@
1289
1286
  align-items: flex-start;
1290
1287
  }
1291
1288
 
1292
- .vendor-two-column-form .digit-card>.card-header,
1293
- .vendor-two-column-form .digit-card>.card-sub-header,
1294
- .vendor-two-column-form .digit-card>header,
1295
- .vendor-two-column-form .employeeCard>.card-header,
1296
- .vendor-two-column-form .employeeCard>.card-sub-header,
1297
- .vendor-two-column-form .employeeCard>header,
1298
- .vendor-two-column-form .card>.card-header,
1299
- .vendor-two-column-form .card>.card-sub-header,
1300
- .vendor-two-column-form .card>header,
1301
- .vendor-two-column-form .card>hr {
1289
+ .vendor-two-column-form .digit-card > .card-header,
1290
+ .vendor-two-column-form .digit-card > .card-sub-header,
1291
+ .vendor-two-column-form .digit-card > header,
1292
+ .vendor-two-column-form .employeeCard > .card-header,
1293
+ .vendor-two-column-form .employeeCard > .card-sub-header,
1294
+ .vendor-two-column-form .employeeCard > header,
1295
+ .vendor-two-column-form .card > .card-header,
1296
+ .vendor-two-column-form .card > .card-sub-header,
1297
+ .vendor-two-column-form .card > header,
1298
+ .vendor-two-column-form .card > hr {
1302
1299
  grid-column: 1 / -1;
1303
1300
  width: 100%;
1304
1301
  }
1305
1302
 
1306
1303
  @media (max-width: 768px) {
1307
-
1308
1304
  .vendor-two-column-form .digit-card,
1309
1305
  .vendor-two-column-form .employeeCard,
1310
1306
  .vendor-two-column-form .card {
@@ -1354,7 +1350,7 @@
1354
1350
  width: 100%;
1355
1351
  }
1356
1352
 
1357
- .vendor-select-address-inline>.label-field-pair {
1353
+ .vendor-select-address-inline > .label-field-pair {
1358
1354
  flex: 1;
1359
1355
  }
1360
1356
 
@@ -1366,7 +1362,6 @@
1366
1362
 
1367
1363
  @media (min-width: 325px) and (max-width: 768px) {
1368
1364
  .home-header {
1369
-
1370
1365
  .header-top-section {
1371
1366
  margin-inline: 10px;
1372
1367
  }
@@ -1504,15 +1499,16 @@
1504
1499
  grid-template-columns: repeat(4, 1fr) !important;
1505
1500
  gap: 16px;
1506
1501
  width: 100%;
1502
+ margin-bottom: 40px;
1507
1503
  }
1508
1504
 
1509
1505
  .engagement-custom-card {
1510
1506
  display: flex !important;
1511
-
1507
+
1512
1508
  .employeeCard {
1513
1509
  margin: 0 !important;
1514
1510
  width: 100% !important;
1515
- min-height: 120px !important;
1511
+ min-height: 120px !important;
1516
1512
  border-radius: 12px;
1517
1513
  background: linear-gradient(145deg, #ffffff, #f9fafb);
1518
1514
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
@@ -1530,6 +1526,7 @@
1530
1526
 
1531
1527
  .complaint-links-container {
1532
1528
  margin-top: auto;
1529
+
1533
1530
  .employeeCard-link {
1534
1531
  font-size: 13px;
1535
1532
  padding: 4px 0;
@@ -1582,4 +1579,4 @@
1582
1579
  .engagement-cards-grid {
1583
1580
  grid-template-columns: 1fr !important;
1584
1581
  }
1585
- }
1582
+ }