@selco/installation-ui-css 1.0.0

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 (161) hide show
  1. package/CHANGELOG.md +163 -0
  2. package/README.md +62 -0
  3. package/dist/index.css +14290 -0
  4. package/dist/index.min.css +6 -0
  5. package/img/browser-icon.png +0 -0
  6. package/img/m_seva_white_logo.png +0 -0
  7. package/img/mseva-demo.png +0 -0
  8. package/package.json +68 -0
  9. package/src/components/CardBasedOptions.scss +46 -0
  10. package/src/components/CitizenHomeCard.scss +60 -0
  11. package/src/components/EllipsisMenu.scss +17 -0
  12. package/src/components/EventCalendarView.scss +10 -0
  13. package/src/components/FAQ.scss +64 -0
  14. package/src/components/OnGroundEventCard.scss +72 -0
  15. package/src/components/PageBasedInput.scss +42 -0
  16. package/src/components/PopupHeadingLabel.scss +15 -0
  17. package/src/components/PropertySearchForm.scss +58 -0
  18. package/src/components/SearchForm.scss +56 -0
  19. package/src/components/SearchOnRadioButton.scss +10 -0
  20. package/src/components/StandaloneSearchBar.scss +10 -0
  21. package/src/components/TimeLine.scss +68 -0
  22. package/src/components/WhatsNewCard.scss +13 -0
  23. package/src/components/actionLink.scss +3 -0
  24. package/src/components/actionbar.scss +97 -0
  25. package/src/components/bannercomponents.scss +136 -0
  26. package/src/components/body.scss +144 -0
  27. package/src/components/buttons.scss +101 -0
  28. package/src/components/card.scss +391 -0
  29. package/src/components/cardHeaderWithOptions.scss +14 -0
  30. package/src/components/changeLanguage.scss +3 -0
  31. package/src/components/charts.scss +186 -0
  32. package/src/components/checkbox.scss +53 -0
  33. package/src/components/checkpoint.scss +64 -0
  34. package/src/components/citizenInfoLabel.scss +14 -0
  35. package/src/components/custombtn.scss +11 -0
  36. package/src/components/datatable.scss +134 -0
  37. package/src/components/datewrap.scss +21 -0
  38. package/src/components/detailscard.scss +6 -0
  39. package/src/components/detailscontainer.scss +13 -0
  40. package/src/components/filters.scss +98 -0
  41. package/src/components/grey.scss +3 -0
  42. package/src/components/hoc/InboxComposer.scss +115 -0
  43. package/src/components/hoc/index.scss +1 -0
  44. package/src/components/howItWorks.scss +71 -0
  45. package/src/components/imageviewer.scss +33 -0
  46. package/src/components/inboxv2/InboxLinks.scss +59 -0
  47. package/src/components/inboxv2/horizontalNav.scss +224 -0
  48. package/src/components/inboxv2/inboxSearch.scss +116 -0
  49. package/src/components/inboxv2/inboxSearchComposer.scss +169 -0
  50. package/src/components/inboxv2/index.scss +5 -0
  51. package/src/components/inboxv2/searchComponentTable.scss +45 -0
  52. package/src/components/info-banner.scss +35 -0
  53. package/src/components/inputotp.scss +15 -0
  54. package/src/components/keynote.scss +27 -0
  55. package/src/components/languageSelector.scss +23 -0
  56. package/src/components/loader.scss +96 -0
  57. package/src/components/loaderWithGap.scss +45 -0
  58. package/src/components/map.scss +30 -0
  59. package/src/components/menu.scss +0 -0
  60. package/src/components/metricsTable.scss +29 -0
  61. package/src/components/multiLink.scss +88 -0
  62. package/src/components/multiSelectDropdown.scss +78 -0
  63. package/src/components/navbar.scss +321 -0
  64. package/src/components/plusMinus.scss +15 -0
  65. package/src/components/popup.scss +16 -0
  66. package/src/components/radiobtn.scss +46 -0
  67. package/src/components/ratingstar.scss +33 -0
  68. package/src/components/roundedLabel.scss +10 -0
  69. package/src/components/searchAction.scss +20 -0
  70. package/src/components/sectionalDropdown.scss +43 -0
  71. package/src/components/selectdropdown.scss +175 -0
  72. package/src/components/sidebar.scss +141 -0
  73. package/src/components/staticDynamicMessages.scss +107 -0
  74. package/src/components/staticSideBar.scss +27 -0
  75. package/src/components/statushighlight.scss +17 -0
  76. package/src/components/submiterrors.scss +11 -0
  77. package/src/components/summary.scss +29 -0
  78. package/src/components/table.scss +201 -0
  79. package/src/components/tag.scss +27 -0
  80. package/src/components/telephone.scss +17 -0
  81. package/src/components/textfields.scss +96 -0
  82. package/src/components/toast.scss +31 -0
  83. package/src/components/toggleSwitch.scss +41 -0
  84. package/src/components/topbar.scss +153 -0
  85. package/src/components/uploadcomponents.scss +102 -0
  86. package/src/digitv2/components/ErrorMessage.scss +6 -0
  87. package/src/digitv2/components/FormComposerV2.scss +126 -0
  88. package/src/digitv2/components/actionLinkV2.scss +7 -0
  89. package/src/digitv2/components/actionbarV2.scss +108 -0
  90. package/src/digitv2/components/appContainerV2.scss +55 -0
  91. package/src/digitv2/components/backButtonV2.scss +26 -0
  92. package/src/digitv2/components/bannerV2.scss +120 -0
  93. package/src/digitv2/components/bodyContainerV2.scss +39 -0
  94. package/src/digitv2/components/breakLineV2.scss +7 -0
  95. package/src/digitv2/components/cardV2.scss +385 -0
  96. package/src/digitv2/components/checkboxV2.scss +61 -0
  97. package/src/digitv2/components/checkpointV2.scss +71 -0
  98. package/src/digitv2/components/collapseAndExpandGroups.scss +60 -0
  99. package/src/digitv2/components/dateWrapV2.scss +12 -0
  100. package/src/digitv2/components/displayPhotosV2.scss +33 -0
  101. package/src/digitv2/components/headerV2.scss +6 -0
  102. package/src/digitv2/components/infoBannerV2.scss +37 -0
  103. package/src/digitv2/components/keynoteV2.scss +35 -0
  104. package/src/digitv2/components/loaderV2.scss +90 -0
  105. package/src/digitv2/components/mobileNumberV2.scss +33 -0
  106. package/src/digitv2/components/multiSelectDropdownV2.scss +92 -0
  107. package/src/digitv2/components/noresultsfoundV2.scss +11 -0
  108. package/src/digitv2/components/otpInputV2.scss +15 -0
  109. package/src/digitv2/components/popUpV2.scss +24 -0
  110. package/src/digitv2/components/radiobtnV2.scss +51 -0
  111. package/src/digitv2/components/ratingV2.scss +33 -0
  112. package/src/digitv2/components/selectdropdownV2.scss +180 -0
  113. package/src/digitv2/components/tagV2.scss +28 -0
  114. package/src/digitv2/components/telephoneV2.scss +18 -0
  115. package/src/digitv2/components/textInputV2.scss +123 -0
  116. package/src/digitv2/components/textareaV2.scss +11 -0
  117. package/src/digitv2/components/uploadFileV2.scss +146 -0
  118. package/src/digitv2/index.scss +166 -0
  119. package/src/digitv2/pages/employee/index.scss +35 -0
  120. package/src/digitv2/pages/employee/workbench.scss +1112 -0
  121. package/src/digitv2/typography.scss +241 -0
  122. package/src/index.scss +868 -0
  123. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +8 -0
  124. package/src/pages/citizen/DocumentList.scss +305 -0
  125. package/src/pages/citizen/Events.scss +47 -0
  126. package/src/pages/citizen/HomePageWrapper.scss +158 -0
  127. package/src/pages/citizen/SurveyList.scss +22 -0
  128. package/src/pages/citizen/citizenDocument.scss +22 -0
  129. package/src/pages/citizen/container.scss +19 -0
  130. package/src/pages/citizen/payment/payment-type.scss +3 -0
  131. package/src/pages/citizen/updatePropertyNumber.scss +46 -0
  132. package/src/pages/employee/EmployeeLogin.scss +7 -0
  133. package/src/pages/employee/cardfix.scss +13 -0
  134. package/src/pages/employee/container.scss +72 -0
  135. package/src/pages/employee/dss.scss +266 -0
  136. package/src/pages/employee/form-fields.scss +24 -0
  137. package/src/pages/employee/iframe.scss +66 -0
  138. package/src/pages/employee/inbox.scss +593 -0
  139. package/src/pages/employee/index.scss +613 -0
  140. package/src/pages/employee/login.scss +351 -0
  141. package/src/pages/employee/oldMobileInbox.scss +5 -0
  142. package/src/pages/employee/popupmodule.scss +34 -0
  143. package/src/pages/employee/response.scss +3 -0
  144. package/src/pages/employee/sandbox.scss +1293 -0
  145. package/src/pages/employee/scroll-table.scss +119 -0
  146. package/src/pages/employee/searchaction.scss +14 -0
  147. package/src/pages/employee/surveys.scss +273 -0
  148. package/src/pages/employee/tooltip.scss +36 -0
  149. package/src/pages/employee/updateNumber.scss +13 -0
  150. package/svg/arrowdown.svg +1 -0
  151. package/svg/arrowleft.svg +1 -0
  152. package/svg/calendar.svg +1 -0
  153. package/svg/camera.svg +4 -0
  154. package/svg/check.svg +4 -0
  155. package/svg/close.svg +4 -0
  156. package/svg/error.svg +4 -0
  157. package/svg/error2.svg +5 -0
  158. package/svg/searchicon.svg +4 -0
  159. package/svg/starempty.svg +4 -0
  160. package/svg/starfilled.svg +5 -0
  161. package/svg/success.svg +4 -0
@@ -0,0 +1,1293 @@
1
+ .sandbox-module-container {
2
+ display: flex;
3
+ flex-direction: row;
4
+ gap: 1.5rem;
5
+ }
6
+
7
+ .sandbox-module-card {
8
+ min-height: 263px !important;
9
+ width: 263px !important;
10
+ margin-bottom: 1.5rem;
11
+ background-color: #fff;
12
+ padding: unset !important;
13
+ margin: unset !important;
14
+ position: relative;
15
+ }
16
+
17
+ .sandbox-module-button {
18
+ position: absolute;
19
+ width: 100%;
20
+ bottom: 1.5rem;
21
+ left: 1rem;
22
+ right: 1rem;
23
+ margin: auto;
24
+ width: auto;
25
+ }
26
+
27
+ .sandbox-table-actions {
28
+ display: flex;
29
+ gap: 1rem;
30
+ }
31
+
32
+ .table.sandbox-application-table {
33
+ border-collapse: collapse;
34
+ border-color: transparent;
35
+ border-width: 0 1.5rem;
36
+
37
+ thead {
38
+ tr {
39
+ th {
40
+ background-color: #ffffff !important;
41
+ }
42
+ }
43
+ }
44
+
45
+ tbody {
46
+ tr:hover {
47
+ background: rgba(theme(colors.primary.main), 0.12);
48
+ }
49
+ }
50
+ }
51
+
52
+ .digit-header-content.sandbox-header {
53
+ font-size: 24px;
54
+ line-height: 32px;
55
+ font-weight: 700;
56
+ margin-bottom: 16px;
57
+ }
58
+
59
+ .sandbox-success-signup {
60
+ height: 4rem;
61
+ width: 4rem;
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: center;
65
+ border: 1px solid #fff;
66
+ border-radius: 50%;
67
+ background-color: #00703c;
68
+ margin-top: -1rem;
69
+ }
70
+
71
+ .digit-card-header.cardHeader-sandbox {
72
+ color: #00703c !important;
73
+ font-family: "Roboto";
74
+ font-weight: 700;
75
+ font-size: 1.5rem;
76
+ margin-bottom: 0.5rem;
77
+ }
78
+
79
+ .cardText-sandbox {
80
+ font-size: 1rem !important;
81
+ font-family: "Roboto";
82
+ font-weight: 400;
83
+ color: #00703c !important;
84
+ margin-top: -0.625rem !important;
85
+ margin-bottom: 1rem !important;
86
+ text-align: center !important;
87
+ }
88
+
89
+ .field-sandbox {
90
+ width: 100%;
91
+ padding: 0.625rem;
92
+ /* 10px / 16 */
93
+ border: 0.0625rem solid #d6d5d4;
94
+ /* 1px / 16 */
95
+ border-radius: 0.3125rem;
96
+ /* 5px / 16 */
97
+ }
98
+
99
+ .sandbox-url-footer {
100
+ align-self: flex-start;
101
+ margin-bottom: 1rem;
102
+ font-size: 14px;
103
+ margin-top: -0.5rem;
104
+ color: #505a5f;
105
+ font-family: "Roboto";
106
+ }
107
+
108
+ .sandbox-onboarding-wrapper {
109
+ height: 500px !important;
110
+ width: 408px !important;
111
+ display: flex;
112
+ justify-content: space-between;
113
+
114
+ .employee-card-sub-header {
115
+ font-size: 1.5rem;
116
+ }
117
+
118
+ .digit-card-component {
119
+ .bannerHeader p {
120
+ font-size: 2rem;
121
+ }
122
+ }
123
+
124
+ .digit-card-component {
125
+ .bannerHeader {
126
+ margin-top: -1.5rem;
127
+ margin-bottom: -0.5rem !important;
128
+
129
+ .bannerLogo {
130
+ width: 10rem;
131
+ height: 2rem;
132
+ }
133
+ }
134
+ }
135
+
136
+ .employeeCard {
137
+ height: 500px !important;
138
+ width: 408px !important;
139
+
140
+ .submit-bar-disabled {
141
+ align-self: flex-end;
142
+ margin-top: 3rem;
143
+ width: 100%;
144
+ }
145
+
146
+ .submit-bar {
147
+ align-self: flex-end;
148
+ margin-top: 3rem;
149
+ width: 100%;
150
+ background-color: theme(colors.primary.main);
151
+ }
152
+
153
+ .bannerHeader {
154
+ .bannerLogo {
155
+ margin-top: 1rem;
156
+ width: 10rem;
157
+ height: 2rem;
158
+ margin-bottom: 0.5rem;
159
+ }
160
+ }
161
+ }
162
+
163
+ .digit-description {
164
+ margin-bottom: -1rem;
165
+ }
166
+ }
167
+
168
+ .card-sandbox {
169
+ height: 500px !important;
170
+ width: 408px !important;
171
+ display: flex;
172
+ flex-direction: column;
173
+ align-items: center;
174
+ border-radius: 0.5rem;
175
+ /* 8px / 16 */
176
+ padding: 1.25rem;
177
+ /* 20px / 16 */
178
+ box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
179
+
180
+ /* 0 2px 10px */
181
+ .digit-header-content.label {
182
+ align-self: flex-start;
183
+
184
+ .label-container {
185
+ margin-bottom: -0.5rem;
186
+ font-size: 1rem;
187
+ }
188
+ }
189
+ }
190
+
191
+ .sandbox-custom-otp-header {
192
+ font-family: "Roboto";
193
+ font-weight: 400 !important;
194
+ font-size: 1rem;
195
+ text-align: center;
196
+ }
197
+
198
+ .sandbox-custom-otp-email {
199
+ font-family: "Roboto";
200
+ font-size: 1rem;
201
+ font-weight: 700;
202
+ text-align: center;
203
+ }
204
+
205
+ .digit-card-label.sandbox-custom-otp-subheader {
206
+ font-family: "Roboto";
207
+ font-weight: 700;
208
+ font-size: 1.5rem;
209
+ text-align: center;
210
+ margin-top: 2.5rem;
211
+ }
212
+
213
+ .input-otp-wrap.sandbox-otp-input {
214
+ margin-left: auto;
215
+ margin-right: auto;
216
+ width: fit-content;
217
+ }
218
+
219
+ .digit-card-text.sandbox-resend-otp {
220
+ margin: 0;
221
+ margin-top: -1rem;
222
+ text-align: center;
223
+ width: 100%;
224
+ }
225
+
226
+ .card-text-button.sandbox-otp-input {
227
+ margin: 0;
228
+ margin-top: -1rem;
229
+ text-align: center;
230
+ width: 100%;
231
+ }
232
+
233
+ .sandbox-resend-otp {
234
+ font-family: "Roboto";
235
+ font-weight: 400;
236
+ font-size: 1rem;
237
+ text-align: center;
238
+ }
239
+
240
+ .sandbox-signup-form .digit-field .digit-error-message {
241
+ font-size: 0.8rem;
242
+ }
243
+
244
+ .sandbox-signup-form {
245
+ .digit-employee-card.signupCardClassName {
246
+ display: flex;
247
+ flex-direction: column;
248
+ gap: 1rem;
249
+ }
250
+
251
+ header.digit-header-content {
252
+ &:not(.label) {
253
+ text-align: center;
254
+ font-size: 1.5rem;
255
+ font-weight: 700;
256
+ }
257
+ }
258
+ }
259
+
260
+ .digit-card-component.signupCardClassName.sandbox-onboarding-wrapper {
261
+ .bannerHeader {
262
+ .bannerLogo {
263
+ margin-top: 0.5rem;
264
+ height: 2rem;
265
+ width: 10rem;
266
+ margin-bottom: -0.5rem;
267
+ }
268
+ }
269
+ }
270
+
271
+ .digit-card-component.card-sandbox {
272
+ .bannerHeader {
273
+ .bannerLogo {
274
+ margin-top: 0.5rem;
275
+ width: 10rem;
276
+ height: 2rem;
277
+ }
278
+ }
279
+
280
+ .digit-button-primary {
281
+ width: 100%;
282
+ }
283
+ }
284
+
285
+ .digit-employee-card.card-sandbox {
286
+ .bannerHeader {
287
+ .bannerLogo {
288
+ width: 10rem;
289
+ height: 2rem;
290
+ }
291
+ }
292
+
293
+ .sandbox-success-signup {
294
+ margin-top: unset;
295
+ }
296
+
297
+ .digit-field {
298
+ margin-top: 0.5rem;
299
+ }
300
+
301
+ .sandbox-url-footer {
302
+ margin-top: 0.5rem;
303
+ }
304
+
305
+ .digit-button-primary {
306
+ width: 100%;
307
+ }
308
+ }
309
+
310
+ .submit-bar {
311
+ background-color: theme(colors.primary.main);
312
+ }
313
+
314
+ .digit-employee-card.card-sandbox {
315
+ .digit-card-header.cardHeader-sandbox {
316
+ color: #00703c !important;
317
+ }
318
+ }
319
+
320
+ .sandbox-url-wrapper {
321
+ display: flex;
322
+ width: 100%;
323
+
324
+
325
+ .digit-button-secondary.large.copyButton {
326
+ width: 30%;
327
+ padding: 0;
328
+ }
329
+ }
330
+
331
+ .setupMasterSetupActionBar {
332
+ margin-top: 2.5rem;
333
+ margin-bottom: -1rem;
334
+ margin-left: -1rem;
335
+ margin-right: -1rem;
336
+ z-index: 1000;
337
+ box-shadow: 0 -0.063rem 0.125rem 0 rgba(0, 0, 0, 0.14902);
338
+ padding: 1.5rem;
339
+ display: flex;
340
+ flex-direction: row-reverse;
341
+ }
342
+
343
+ .digit-employee-card.sandboxSetupMasterInfo {
344
+ .h1.headerFlex {
345
+ display: flex;
346
+ gap: 1rem;
347
+ align-items: center;
348
+ }
349
+
350
+ .digit-card-header.subHeader {
351
+ font-size: 1.5rem;
352
+ font-weight: 700;
353
+ color: unset !important;
354
+ }
355
+ }
356
+
357
+ .digit-card-component.sandboxSetupMasterInfo {
358
+ .h1.headerFlex {
359
+ display: flex;
360
+ gap: 1rem;
361
+ align-items: center;
362
+ }
363
+
364
+ .digit-card-header.subHeader {
365
+ font-size: 1.5rem;
366
+ font-weight: 700;
367
+ color: unset !important;
368
+ }
369
+ }
370
+
371
+ .digit-card-header.setupMaster-subheading {
372
+ font-size: 1.5rem;
373
+ color: unset !important;
374
+ margin-left: 1.5rem;
375
+ }
376
+
377
+ .digit-popup-wrapper.masterHandlerPopup {
378
+ .digit-popup-header {
379
+ .header-close-container {
380
+ .digit-popup-close {
381
+ display: none !important;
382
+ }
383
+ }
384
+ }
385
+ }
386
+
387
+ .digit-topbar-ulb {
388
+ .state {
389
+ width: 5rem;
390
+ height: 19px;
391
+ }
392
+ }
393
+
394
+ .digit-topbar .digit-header-img-ulb-wrapper-mobileview .digit-topbar-ulb-mobileview {
395
+ .state {
396
+ width: 5rem;
397
+ height: 19px;
398
+ }
399
+ }
400
+
401
+ .digit-popup-footer.masterHandlerPopUpFooter {
402
+ .digit-popup-footer-buttons {
403
+ margin-left: unset;
404
+ width: 100%;
405
+ justify-content: center;
406
+ }
407
+ }
408
+
409
+ .main.center-container.citizen-home-container {
410
+ z-index: 100;
411
+ justify-content: flex-start;
412
+ }
413
+
414
+ .SideBarStatic {
415
+ z-index: 10;
416
+ height: 100vh;
417
+ }
418
+
419
+ .citizen-form-wrapper {
420
+ justify-content: flex-start !important;
421
+
422
+ .citizen-card-input.citizen-card-input--front {
423
+ margin-bottom: 0;
424
+ }
425
+
426
+ .digit-app-container {
427
+ .digit-back-link {
428
+ margin-bottom: 1rem !important;
429
+ }
430
+
431
+ .digit-card-component {
432
+ .digit-card-header {
433
+ font-size: 2rem !important;
434
+ font-weight: 700 !important;
435
+ }
436
+ }
437
+ }
438
+ }
439
+
440
+ .selection-card-wrapper {
441
+ .digit-page-based-input-wrapper {
442
+ .digit-card-component {
443
+ .digit-card-header {
444
+ font-size: 2rem;
445
+ font-weight: 700;
446
+ }
447
+ }
448
+ }
449
+ }
450
+
451
+ .action-bar-wrap {
452
+ .menu-wrap {
453
+ p {
454
+ margin: 0 !important;
455
+ }
456
+ }
457
+ }
458
+
459
+ .digit-popup-wrapper.setupMasterPopUp.alert {
460
+ .digit-popup-alert-content {
461
+ .digit-popup-alert-heading {
462
+ color: #00703c;
463
+ }
464
+ }
465
+ }
466
+
467
+ .digit-popup-wrapper.setupMasterPopUp.error.alert {
468
+ .digit-popup-alert-content {
469
+ .digit-popup-alert-heading {
470
+ color: #b91800;
471
+ }
472
+ }
473
+ }
474
+
475
+ .digit-employee-card.customError {
476
+ width: 35rem;
477
+ }
478
+
479
+ .customErrorButton {
480
+ margin: auto;
481
+ }
482
+
483
+ .digit-employee-card.digit-landing-page-card {
484
+ display: flex;
485
+ flex-direction: column;
486
+ }
487
+
488
+ .digit-card-header.center {
489
+ text-align: center;
490
+ }
491
+
492
+ digit-card-text.center {
493
+ text-align: center;
494
+ }
495
+
496
+ .pgr-citizen-wrapper {
497
+ .applications-list-container {
498
+ .card {
499
+ .date-wrap {
500
+ align-items: center;
501
+ justify-content: flex-start;
502
+ }
503
+ }
504
+ }
505
+ }
506
+
507
+ .pgr-citizen-wrapper {
508
+ .applications-list-container {
509
+ .card {
510
+ .status-highlight {
511
+ display: flex;
512
+ align-items: center;
513
+ justify-content: center;
514
+ }
515
+ }
516
+ }
517
+ }
518
+
519
+ .homeWrapper {
520
+ display: flex;
521
+ justify-content: space-between;
522
+ /* Ensure spacing between the two components */
523
+ align-items: flex-start;
524
+ }
525
+
526
+ .homeWrapper> :first-child {
527
+ flex-grow: 1;
528
+ /* Makes the first child (RoleBasedEmployeeHome) take up remaining space */
529
+ margin-right: 1rem;
530
+ /* Optional: Add some spacing between the components */
531
+ }
532
+
533
+ .homeWrapper> :last-child {
534
+ width: 20.688rem;
535
+ /* Fixed width for QuickSetupConfigComponent */
536
+ flex-shrink: 0;
537
+ /* Prevents it from shrinking */
538
+ margin-left: auto;
539
+ /* Aligns the component to the right end */
540
+ }
541
+
542
+ .homeWrapper {
543
+ .digit-employee-card {
544
+ .digit-card-header {
545
+ color: #0b4b66 !important;
546
+ font-size: 1.87rem !important;
547
+ text-align: center;
548
+ font-weight: 700;
549
+ }
550
+ }
551
+ }
552
+
553
+ .homeWrapper {
554
+ .digit-card-component {
555
+ .digit-card-header {
556
+ color: #0b4b66 !important;
557
+ font-size: 1.87rem !important;
558
+ text-align: center;
559
+ font-weight: 700;
560
+ }
561
+ }
562
+ }
563
+
564
+ .homeWrapper {
565
+ .digit-card-component {
566
+ .digit-card-text {
567
+ font-size: 1rem !important;
568
+ font-weight: 700;
569
+ }
570
+ }
571
+ }
572
+
573
+ .homeWrapper {
574
+ .digit-employee-card {
575
+ .digit-card-text {
576
+ font-size: 1rem !important;
577
+ font-weight: 700;
578
+ }
579
+ }
580
+ }
581
+
582
+ .quickLink {
583
+ color: theme(colors.primary.main);
584
+ text-decoration: none;
585
+ font-weight: 500;
586
+ font-size: 1rem;
587
+ }
588
+
589
+ .overlay {
590
+ position: fixed;
591
+ top: 0;
592
+ left: 0;
593
+ width: 100%;
594
+ height: 100%;
595
+ background-color: rgba(0, 0, 0, 0.5);
596
+ display: flex;
597
+ justify-content: center;
598
+ align-items: center;
599
+ z-index: 1000;
600
+ }
601
+
602
+ .player-wrapper {
603
+ position: relative;
604
+ display: inline-block;
605
+ cursor: pointer;
606
+ }
607
+
608
+ .player-click-area {
609
+ position: absolute;
610
+ width: 100%;
611
+ height: 100%;
612
+ z-index: 1;
613
+ }
614
+
615
+ .player-iframe {
616
+ position: relative;
617
+ z-index: 0;
618
+ width: fit-content;
619
+ }
620
+
621
+ .label-field-pair.pgr-field-pair {
622
+ align-items: flex-start;
623
+
624
+ .card-label-error {
625
+ margin-top: -1rem;
626
+ }
627
+ }
628
+
629
+ @media (max-width: 768px) {
630
+ .digit-home-moduleCardWrapper {
631
+ align-items: center;
632
+ gap: 1.5rem;
633
+ }
634
+ }
635
+
636
+ .digit-home-moduleCardWrapper {
637
+ display: flex;
638
+
639
+ .digit-landing-page-card {
640
+ flex: 1;
641
+ min-width: 20rem;
642
+ max-width: fit-content;
643
+ }
644
+ }
645
+
646
+ .digit-uploader-content {
647
+ .digit-button-secondary.large {
648
+ .icon-label-container.secondary.large {
649
+ .digit-button-label {
650
+ width: fit-content !important;
651
+ }
652
+ }
653
+ }
654
+ }
655
+
656
+ .digit-card-label.user-profile {
657
+ width: 3rem;
658
+ }
659
+
660
+ .sidebar-list {
661
+ a {
662
+ text-decoration: none;
663
+ }
664
+ }
665
+
666
+ .profileDropdown {
667
+ input {
668
+ font-size: 1rem !important;
669
+ }
670
+ }
671
+
672
+ .digit-card-component {
673
+ &.sandbox-guide {
674
+ &::-webkit-scrollbar {
675
+ width: 0.3rem;
676
+ background-color: #fff;
677
+ }
678
+
679
+ &::-webkit-scrollbar-track {
680
+ background-color: #fff;
681
+ border-radius: 0.3rem;
682
+ }
683
+
684
+ &::-webkit-scrollbar-thumb {
685
+ background-color: #d6d5d4;
686
+ border-radius: 0.3rem;
687
+ }
688
+ }
689
+ }
690
+
691
+ .infotext {
692
+ width: 20rem !important;
693
+ }
694
+
695
+ .mrsm.divToBeHidden.icon-label-download {
696
+ align-items: center !important;
697
+ }
698
+
699
+ .chart-metric-wrapper {
700
+ .row {
701
+ align-items: baseline !important;
702
+ }
703
+ }
704
+
705
+ .sandbox-loader {
706
+ width: 50px;
707
+ aspect-ratio: 1;
708
+ display: grid;
709
+ border-radius: 50%;
710
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 30%, transparent 0 70%, rgba(0, 0, 0, 1) 0) 50% / 8% 100%,
711
+ linear-gradient(90deg, rgba(0, 0, 0, 0.25) 30%, transparent 0 70%, rgba(0, 0, 0, 0.75) 0) 50% / 100% 8%;
712
+ background-repeat: no-repeat;
713
+ animation: l23 1s infinite steps(12);
714
+ }
715
+
716
+ .sandbox-loader::before,
717
+ .sandbox-loader::after {
718
+ content: "";
719
+ grid-area: 1/1;
720
+ border-radius: 50%;
721
+ background: inherit;
722
+ opacity: 0.915;
723
+ transform: rotate(30deg);
724
+ }
725
+
726
+ .sandbox-loader::after {
727
+ opacity: 0.83;
728
+ transform: rotate(60deg);
729
+ }
730
+
731
+ @keyframes l23 {
732
+ 100% {
733
+ transform: rotate(1turn);
734
+ }
735
+ }
736
+
737
+ .sandbox-loader-screen {
738
+ display: flex;
739
+ flex-direction: column;
740
+ align-items: center;
741
+ justify-content: center;
742
+ height: 100vh;
743
+ background-color: #f5f5f5;
744
+ font-family: Arial, sans-serif;
745
+ }
746
+
747
+ .sandbox-installation-steps {
748
+ list-style: none;
749
+ padding: 0;
750
+ margin: 0;
751
+ margin-top: 5rem;
752
+ }
753
+
754
+ .sandbox-installation-steps li {
755
+ font-size: 18px;
756
+ margin: 10px 0;
757
+ color: #888;
758
+ }
759
+
760
+ .sandbox-installation-steps .sandbox-completed {
761
+ color: #2ecc71;
762
+ }
763
+
764
+ .sandbox-checkmark {
765
+ color: #2ecc71;
766
+ margin-right: 8px;
767
+ }
768
+
769
+ .sandbox-step {
770
+ display: flex;
771
+ align-items: center;
772
+ opacity: 0;
773
+ transform: translateX(-100px);
774
+ /* Slide in from left */
775
+ transition: opacity 0.5s ease, transform 0.5s ease;
776
+ margin-bottom: 10px;
777
+ }
778
+
779
+ .sandbox-step.sandbox-visible {
780
+ opacity: 1;
781
+ transform: translateX(0);
782
+ /* Slide to normal position */
783
+ }
784
+
785
+ .sandbox-step .sandbox-step-text {
786
+ margin-right: 10px;
787
+ /* Space between text and tick */
788
+ width: 25rem;
789
+ }
790
+
791
+ .sandbox-step svg {
792
+ opacity: 0;
793
+ transition: opacity 0.3s ease 0.3s;
794
+ /* Fade in tick mark after a short delay */
795
+ }
796
+
797
+ .sandbox-step.sandbox-visible svg {
798
+ opacity: 1;
799
+ }
800
+
801
+ .digit-card-component.digit-landing-page-card {
802
+ max-width: 30rem !important;
803
+ }
804
+
805
+ .digit-msb-sidebar-children.expanded {
806
+ margin-left: 1.5rem !important;
807
+ border-left: 0.031rem solid #c5c5c5 !important;
808
+ }
809
+
810
+ @media (max-width: 768px) {
811
+ .homeWrapper> :last-child {
812
+ margin-left: 1rem !important;
813
+ }
814
+
815
+ .digit-landing-page-wrapper {
816
+ margin-left: 1rem !important;
817
+ }
818
+ }
819
+
820
+ .RightMostTopBarOptions {
821
+ .digit-dropdown-employee-select-wrap.language-dropdown {
822
+ .header-dropdown-label {
823
+ .cp {
824
+ color: #fff !important;
825
+ }
826
+
827
+ .header-dropdown-arrow {
828
+ path {
829
+ fill: #fff !important;
830
+ }
831
+ }
832
+ }
833
+
834
+ .header-dropdown-menu {
835
+ right: 1rem !important;
836
+ }
837
+ }
838
+
839
+ .select-wrap {
840
+ margin-bottom: unset !important;
841
+
842
+ svg {
843
+ fill: theme(colors.white) !important;
844
+ }
845
+ }
846
+ }
847
+
848
+
849
+ @media (max-width: 768px) {
850
+ .role-action-container {
851
+ flex-direction: column;
852
+ align-items: center;
853
+ }
854
+
855
+ .role-card {
856
+ width: 100%;
857
+ margin-bottom: 0.625rem;
858
+ }
859
+ }
860
+
861
+
862
+ .faq-answer {
863
+ .card-section-sub-text {
864
+ margin-left: 0.5rem;
865
+ }
866
+ }
867
+
868
+
869
+ .role-landing-container {
870
+ display: flex;
871
+ justify-content: center;
872
+ align-items: center;
873
+ padding: 2rem;
874
+ }
875
+
876
+ .role-landing-card {
877
+ max-width: 60rem;
878
+ width: 100%;
879
+ background-color: #fff;
880
+ padding: 2rem;
881
+ box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
882
+ /* 4px 8px to rem */
883
+ border-radius: 0.5rem;
884
+ /* 8px to rem */
885
+ display: flex;
886
+ flex-direction: column;
887
+ justify-content: flex-start;
888
+ }
889
+
890
+ .header-video-section {
891
+ text-align: center;
892
+ margin-bottom: 2rem;
893
+ }
894
+
895
+ .role-header {
896
+ font-weight: 700 !important;
897
+ font-size: 2rem !important;
898
+ margin-bottom: 1.5rem;
899
+ color: #0b4b66 !important;
900
+ }
901
+
902
+ .role-video {
903
+ max-width: 100%;
904
+ margin-bottom: 2rem;
905
+ }
906
+
907
+ .config-section {
908
+ margin-bottom: 1.5rem;
909
+ }
910
+
911
+ .role-section-header {
912
+ font-size: 1.75rem !important;
913
+ font-weight: bold !important;
914
+ color: #0b4b66 !important;
915
+ margin-bottom: 1rem;
916
+ }
917
+
918
+ .role-paragraph {
919
+ font-size: 1rem !important;
920
+ color: #363636 !important;
921
+ line-height: 1.6;
922
+ margin-bottom: 1rem;
923
+ }
924
+
925
+ .role-list {
926
+ padding-left: 1.5rem;
927
+ margin-bottom: 1.5rem;
928
+ }
929
+
930
+ .role-list-item {
931
+ font-size: 1rem;
932
+ color: #363636;
933
+ line-height: 1.6;
934
+ margin-bottom: 0.75rem;
935
+ }
936
+
937
+ .role-action-container {
938
+ display: flex;
939
+ justify-content: space-between;
940
+ gap: 1.5rem;
941
+ align-items: stretch;
942
+ }
943
+
944
+ .role-card {
945
+ display: flex;
946
+ flex-direction: column;
947
+ flex: 1;
948
+ min-width: 0;
949
+ padding: 1.5rem;
950
+ background-color: #f9f9f9;
951
+ border-radius: 0.5rem;
952
+ /* 8px to rem */
953
+ text-align: center;
954
+ box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
955
+ /* 4px 8px to rem */
956
+ }
957
+
958
+ .icon-container {
959
+ display: flex;
960
+ justify-content: center;
961
+ align-items: center;
962
+ margin-bottom: 1rem;
963
+ }
964
+
965
+ .role-button {
966
+ width: 20rem !important;
967
+ margin-top: 1rem !important;
968
+ align-self: center !important;
969
+ }
970
+
971
+ .role-list {
972
+ padding-left: 1.5rem;
973
+ margin-bottom: 1.5rem;
974
+ list-style-type: disc;
975
+ }
976
+
977
+ .role-list-item {
978
+ font-size: 1rem;
979
+ color: #363636;
980
+ line-height: 1.6;
981
+ margin-bottom: 0.75rem;
982
+ }
983
+
984
+ /* Custom container for the entire landing component */
985
+ .custom-landing-container {
986
+ display: flex;
987
+ justify-content: center;
988
+ align-items: center;
989
+ padding: 2rem;
990
+ }
991
+
992
+ /* Custom card styling for the landing page */
993
+ .custom-landing-card {
994
+ max-width: 75rem;
995
+ /* 800px to rem */
996
+ width: 100%;
997
+ background-color: #fff;
998
+ padding: 2rem;
999
+ box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
1000
+ /* 4px 8px to rem */
1001
+ border-radius: 0.5rem;
1002
+ /* 8px to rem */
1003
+ display: flex;
1004
+ flex-direction: column;
1005
+ justify-content: flex-start;
1006
+ }
1007
+
1008
+ /* Custom header styling */
1009
+ .custom-landing-header {
1010
+ font-weight: 700;
1011
+ font-size: 2rem;
1012
+ color: #0b4b66;
1013
+ text-align: left;
1014
+ }
1015
+
1016
+ .custom-landing-header-grey {
1017
+ font-weight: 700;
1018
+ font-size: 2rem;
1019
+ margin-bottom: 1.25rem;
1020
+ color: #0b4b66;
1021
+ text-align: left;
1022
+ max-width: 70%;
1023
+ }
1024
+
1025
+ .custom-landing-header-button {
1026
+ font-weight: 700;
1027
+ font-size: 2rem;
1028
+ color: #0b4b66;
1029
+ text-align: center;
1030
+ max-width: 25%;
1031
+ }
1032
+
1033
+ .highlight-sandbox {
1034
+ color: "#c84c0e";
1035
+ /* or your specific orange color code */
1036
+ }
1037
+
1038
+ .custom-landing-sub-header {
1039
+ font-weight: 100;
1040
+ font-size: 2rem;
1041
+ margin-bottom: 1.25rem;
1042
+ color: #0b4b66;
1043
+ text-align: left;
1044
+ }
1045
+
1046
+ /* Custom video section */
1047
+ .custom-video-section {
1048
+ text-align: center;
1049
+ margin-bottom: 2rem;
1050
+ padding: 1rem 0;
1051
+ }
1052
+
1053
+ /* Custom section container */
1054
+ .custom-section-container {
1055
+ margin-bottom: 1.5rem;
1056
+ }
1057
+
1058
+ /* Custom section header */
1059
+ .custom-section-header {
1060
+ font-size: 1.5rem;
1061
+ font-weight: bold;
1062
+ color: #0b4b66;
1063
+ margin-bottom: 1rem;
1064
+ text-align: left;
1065
+ }
1066
+
1067
+ /* Custom paragraph styling */
1068
+ .custom-section-paragraph {
1069
+ font-size: 1rem;
1070
+ color: #363636;
1071
+ line-height: 1.6;
1072
+ margin-bottom: 1rem;
1073
+ text-align: justify;
1074
+ }
1075
+
1076
+ /* Custom list styling for steps */
1077
+ .custom-steps-list {
1078
+ padding-left: 1.5rem;
1079
+ margin-bottom: 1.5rem;
1080
+ list-style-type: disc;
1081
+ }
1082
+
1083
+ .custom-step-header {
1084
+ padding-top: 0.5rem;
1085
+ font-weight: bold;
1086
+ font-size: 1.2rem;
1087
+ color: #505A5F;
1088
+ ;
1089
+
1090
+ }
1091
+
1092
+ /* Custom button container */
1093
+ .custom-continue-button-container {
1094
+ display: flex;
1095
+ justify-content: center;
1096
+ /* Align the button to the right */
1097
+ margin-top: 2rem;
1098
+ }
1099
+
1100
+ /* Custom button styling */
1101
+ .custom-continue-button {
1102
+ align-self: flex-end;
1103
+ /* Ensure the button aligns to the right */
1104
+ }
1105
+
1106
+ .custom-steps-list {
1107
+ padding-left: 1.5rem;
1108
+ margin-bottom: 1.5rem;
1109
+ list-style-type: disc;
1110
+ }
1111
+
1112
+ /* Styling for each step item */
1113
+ .custom-step-item {
1114
+ margin-bottom: 0.75rem;
1115
+ font-size: 1rem;
1116
+ color: #363636;
1117
+ line-height: 1.6;
1118
+ }
1119
+
1120
+ .tooltiptext {
1121
+ width: 30rem !important;
1122
+ }
1123
+
1124
+ .flexSpaceAround {
1125
+ display: flex;
1126
+ justify-content: space-around;
1127
+ }
1128
+
1129
+ .left-section {
1130
+ text-align: left;
1131
+ padding: 1rem;
1132
+ width: 40%;
1133
+ }
1134
+
1135
+ .middle-section {
1136
+ display: flex;
1137
+ justify-content: space-around;
1138
+ background-color: whitesmoke;
1139
+ margin-left: -2rem;
1140
+ margin-right: -2rem;
1141
+ }
1142
+
1143
+ .middle-header {
1144
+ width: 40%;
1145
+ margin-top: 2.3rem;
1146
+ margin-left: 9rem;
1147
+ }
1148
+
1149
+ .steps-list {
1150
+ max-width: 50%;
1151
+ color: #0b4b66;
1152
+ }
1153
+
1154
+
1155
+ .step-item {
1156
+ max-width: 95%;
1157
+ }
1158
+
1159
+ .step-break {
1160
+ max-width: 80%;
1161
+ border-color: #b6b5b4;
1162
+ margin-left: 0;
1163
+ }
1164
+
1165
+ .bottom-section {
1166
+ display: flex;
1167
+ flex-direction: column;
1168
+ align-items: center;
1169
+ margin-top: 2.25rem;
1170
+ }
1171
+
1172
+ .header-span {
1173
+ font-weight: 100;
1174
+ font-size: 20px;
1175
+ }
1176
+
1177
+ .products-container {
1178
+ padding: 2rem;
1179
+ margin-left: 1.5rem;
1180
+ }
1181
+
1182
+ .icon-wrap {
1183
+ width: 34px;
1184
+ height: 34px;
1185
+ display: flex;
1186
+ justify-content: center;
1187
+ }
1188
+
1189
+ .icon-wrap svg {
1190
+ width: 34px;
1191
+ height: 34px;
1192
+ }
1193
+
1194
+ .products-title {
1195
+ font-size: 2.5rem;
1196
+ font-weight: bold;
1197
+ color: #0B4B66;
1198
+ }
1199
+
1200
+ .products-description {
1201
+ font-size: 1rem;
1202
+ color: #666;
1203
+ margin-bottom: 2rem;
1204
+ max-width: 100%;
1205
+ }
1206
+
1207
+ .products-list {
1208
+ display: flex;
1209
+ gap: 2rem;
1210
+ flex-wrap: wrap;
1211
+ }
1212
+
1213
+ .product-card {
1214
+ flex: 1 1 calc(25% - 2rem);
1215
+ padding: 1.5rem;
1216
+ border-radius: 8px;
1217
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
1218
+ display: flex;
1219
+ flex-direction: column;
1220
+ align-items: flex-start;
1221
+ background: #fff;
1222
+ flex-grow: revert;
1223
+ }
1224
+
1225
+ .product-header {
1226
+ display: flex;
1227
+ align-items: center;
1228
+ gap: 0.5rem;
1229
+ min-height: 3.2rem;
1230
+
1231
+ }
1232
+
1233
+
1234
+
1235
+ .product-title {
1236
+ display: flex;
1237
+ align-items: center;
1238
+ font-size: 24px;
1239
+ font-weight: bold;
1240
+ color: #0B4B66;
1241
+ }
1242
+
1243
+ .product-icon {
1244
+ fill: #c84c0e;
1245
+ width: 2.5rem;
1246
+ margin-right: 0.5rem;
1247
+ display: flex;
1248
+ align-items: center;
1249
+
1250
+ }
1251
+
1252
+ .product-icon svg {
1253
+ height: 34px;
1254
+ width: 34px;
1255
+
1256
+ }
1257
+
1258
+ .product-description {
1259
+ font-size: 0.9rem;
1260
+ color: #555;
1261
+ margin: 0.5rem 0;
1262
+ }
1263
+
1264
+ .explore-button {
1265
+ margin-top: auto;
1266
+ border: 1px solid #d9534f;
1267
+ color: #d9534f;
1268
+ font-weight: bold;
1269
+ width: 100%;
1270
+ }
1271
+
1272
+ .icon-header-container {
1273
+ display: flex;
1274
+ align-items: center;
1275
+ gap: 8px;
1276
+ margin-bottom: 2rem;
1277
+ }
1278
+
1279
+ .custom-image-container {
1280
+ display: flex;
1281
+ justify-content: center;
1282
+ /* Centers image */
1283
+ margin: 10px 0;
1284
+ /* Adds spacing */
1285
+ }
1286
+
1287
+ .custom-image {
1288
+ max-width: 100%;
1289
+ /* Adjust width */
1290
+ height: auto;
1291
+ border-radius: 8px;
1292
+ /* Optional styling */
1293
+ }