icleafreportui 0.1.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 (77) hide show
  1. package/.env +7 -0
  2. package/README.md +70 -0
  3. package/package.json +55 -0
  4. package/public/favicon.ico +0 -0
  5. package/public/images/EResourcesImg.png +0 -0
  6. package/public/images/courseCardImg.png +0 -0
  7. package/public/images/courseInfo.png +0 -0
  8. package/public/images/exam-options.png +0 -0
  9. package/public/images/icleaf-11.png +0 -0
  10. package/public/images/icleaf_logo.png +0 -0
  11. package/public/images/template.png +0 -0
  12. package/public/images/unnamed.png +0 -0
  13. package/public/images/user.jpg +0 -0
  14. package/public/images/young-man-studying-library-using-laptop-1.png +0 -0
  15. package/public/index.html +45 -0
  16. package/public/logo192.png +0 -0
  17. package/public/logo512.png +0 -0
  18. package/public/manifest.json +25 -0
  19. package/public/robots.txt +3 -0
  20. package/src/App.css +24 -0
  21. package/src/App.js +37 -0
  22. package/src/Login.js +159 -0
  23. package/src/Reports/CourseReport.js +209 -0
  24. package/src/Reports/ExamPackReport.js +554 -0
  25. package/src/Reports/ExamReport.js +269 -0
  26. package/src/Reports/Report.js +271 -0
  27. package/src/api/client.jsx +42 -0
  28. package/src/components/Header.css +301 -0
  29. package/src/components/Header.jsx +192 -0
  30. package/src/components/Loader.jsx +23 -0
  31. package/src/components/imagePathUrl.jsx +11 -0
  32. package/src/components/sidebar.css +947 -0
  33. package/src/components/sidebar.jsx +81 -0
  34. package/src/context/TenantProvider.jsx +22 -0
  35. package/src/fonts/210000.jpg +0 -0
  36. package/src/fonts/210001.jpg +0 -0
  37. package/src/fonts/210003.jpg +0 -0
  38. package/src/fonts/210004.jpg +0 -0
  39. package/src/fonts/210006.jpg +0 -0
  40. package/src/fonts/210018.jpg +0 -0
  41. package/src/fonts/210019.jpg +0 -0
  42. package/src/fonts/210020.jpg +0 -0
  43. package/src/fonts/210279.jpg +0 -0
  44. package/src/fonts/210280.jpg +0 -0
  45. package/src/fonts/Gilroy-Black.ttf +0 -0
  46. package/src/fonts/Gilroy-BlackItalic.ttf +0 -0
  47. package/src/fonts/Gilroy-Bold.ttf +0 -0
  48. package/src/fonts/Gilroy-BoldItalic.ttf +0 -0
  49. package/src/fonts/Gilroy-ExtraBold.ttf +0 -0
  50. package/src/fonts/Gilroy-ExtraBoldItalic.ttf +0 -0
  51. package/src/fonts/Gilroy-Heavy.ttf +0 -0
  52. package/src/fonts/Gilroy-HeavyItalic.ttf +0 -0
  53. package/src/fonts/Gilroy-Light.ttf +0 -0
  54. package/src/fonts/Gilroy-LightItalic.ttf +0 -0
  55. package/src/fonts/Gilroy-Medium.ttf +0 -0
  56. package/src/fonts/Gilroy-MediumItalic.ttf +0 -0
  57. package/src/fonts/Gilroy-Regular.ttf +0 -0
  58. package/src/fonts/Gilroy-RegularItalic.ttf +0 -0
  59. package/src/fonts/Gilroy-SemiBold.ttf +0 -0
  60. package/src/fonts/Gilroy-SemiBoldItalic.ttf +0 -0
  61. package/src/fonts/Gilroy-Thin.ttf +0 -0
  62. package/src/fonts/Gilroy-ThinItalic.ttf +0 -0
  63. package/src/fonts/Gilroy-UltraLight.ttf +0 -0
  64. package/src/fonts/Gilroy-UltraLightItalic.ttf +0 -0
  65. package/src/fonts/Help - Guide Document.pdf +0 -0
  66. package/src/fonts/License.txt +144 -0
  67. package/src/fonts/More Free Fonts on fontshmonts.com.url +2 -0
  68. package/src/fonts/cover.jpg +0 -0
  69. package/src/index.css +13 -0
  70. package/src/index.js +21 -0
  71. package/src/login.css +809 -0
  72. package/src/logo.svg +1 -0
  73. package/src/package.js +10 -0
  74. package/src/reportWebVitals.js +13 -0
  75. package/src/setupTests.js +5 -0
  76. package/src/styles.css +2026 -0
  77. package/src/theme.css +107 -0
package/src/styles.css ADDED
@@ -0,0 +1,2026 @@
1
+ .divider {
2
+ width: 100%;
3
+ height: 1px;
4
+ background: #ccc;
5
+ margin: 10px 0;
6
+ }
7
+
8
+ * {
9
+ font-family: var(--font-family);
10
+ }
11
+
12
+ button {
13
+ background: var(--primary-color);
14
+ color: white;
15
+ }
16
+
17
+ .breadcrumbs-txt {
18
+ color: var(--secondary-color);
19
+ font-size: 20px;
20
+ font-weight: bold;
21
+ }
22
+
23
+ .breadcrumbs-icon {
24
+ color: var(--secondary-color);
25
+ background-color: #FFF;
26
+ border-radius: 50%;
27
+ padding: 5px;
28
+ align-items: center;
29
+ box-shadow: 4px 4px 32px 1px rgba(0, 0, 0, 0.20);
30
+ }
31
+
32
+ .breadcrumb-and-icon-div {
33
+ display: flex;
34
+ padding-left: 50px;
35
+ margin-top: 35px;
36
+ align-items: center;
37
+ gap: 10px;
38
+ }
39
+
40
+ .login-container {
41
+ display: flex;
42
+ justify-content: space-between;
43
+ align-items: center;
44
+ /* height: 100vh; */
45
+
46
+ }
47
+
48
+ .login-image {
49
+ flex: 1;
50
+ display: flex;
51
+ justify-content: center;
52
+ align-items: center;
53
+ /* background-color: #007bff; */
54
+ color: #fff;
55
+ }
56
+
57
+ .login-image img {
58
+ max-width: 100%;
59
+ height: auto;
60
+ }
61
+
62
+
63
+ .login-form {
64
+ flex: 1;
65
+ padding: 20px;
66
+ border-radius: 5px;
67
+ /* text-align: center; */
68
+ display: 'flex';
69
+ justify-content: 'center';
70
+ align-items: 'center';
71
+ }
72
+
73
+ .login-form h2 {
74
+ margin-bottom: 20px;
75
+ }
76
+
77
+ .form-group {
78
+ margin-bottom: 15px;
79
+ }
80
+
81
+ .form-group label {
82
+ display: block;
83
+ margin-bottom: 5px;
84
+ font-weight: bold;
85
+ }
86
+
87
+ .form-group input {
88
+ width: 100%;
89
+ /* padding: 10px; */
90
+ border: 1px solid #ccc;
91
+ border-radius: 5px;
92
+
93
+ display: flex;
94
+ height: 30px;
95
+ padding: 6px 12px;
96
+ align-items: center;
97
+ gap: 10px;
98
+ }
99
+
100
+ .login-button {
101
+ background-color: var(--primary-color);
102
+ border: none;
103
+ display: flex;
104
+ width: 456px;
105
+ padding: 14px 28px;
106
+ justify-content: center;
107
+ align-items: center;
108
+ gap: 10px;
109
+ border-radius: 6px;
110
+ }
111
+
112
+ .expiry-class {
113
+ color: var(--secondary-color);
114
+
115
+ }
116
+
117
+ .days-remaining {
118
+ color: var(--primary-color);
119
+
120
+ }
121
+ .right_div{
122
+ display: flex;
123
+ align-items: end;
124
+ justify-content: end;
125
+ }
126
+ .center_div{
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: center;
130
+ }
131
+ /*Change Password*/
132
+ .register-container {
133
+ flex: 1;
134
+ display: flex;
135
+ justify-content: center;
136
+ align-items: center;
137
+ }
138
+
139
+ .reg-text {
140
+ color: #667085;
141
+
142
+ font-size: 24px;
143
+ font-style: normal;
144
+ font-weight: 400;
145
+ line-height: normal;
146
+ }
147
+
148
+ .register-form-container {
149
+ width: 100%;
150
+ max-width: 400px;
151
+
152
+ }
153
+
154
+ .input-group {
155
+ display: flex;
156
+ flex-direction: column;
157
+ gap: 6px;
158
+ }
159
+
160
+ .input-group label {
161
+ margin-bottom: 5px;
162
+ margin-top: 14px;
163
+ font-weight: bold;
164
+ }
165
+
166
+ .input-group-input {
167
+ width: 95%;
168
+ padding: 10px;
169
+ border: 1px solid #ccc;
170
+ border-radius: 5px;
171
+ font-size: 16px;
172
+ /* color: var(--text-300, #BDBDBD); */
173
+ }
174
+
175
+
176
+ .input-group-input::placeholder {
177
+ color: #BDBDBD;
178
+
179
+ font-size: 12px;
180
+ font-style: normal;
181
+ font-weight: 400;
182
+ line-height: normal;
183
+ }
184
+
185
+ .input-group-input-name {
186
+ /* width: 100%; */
187
+ display: flex;
188
+ justify-content: space-between;
189
+ padding: 10px;
190
+ border: 1px solid #ccc;
191
+ border-radius: 5px;
192
+
193
+ font-size: 16px;
194
+ }
195
+
196
+ .input-group-input-name::placeholder {
197
+ color: #BDBDBD;
198
+
199
+ font-size: 12px;
200
+ font-style: normal;
201
+ font-weight: 400;
202
+ line-height: normal;
203
+ }
204
+
205
+ .continue-button {
206
+ background-color: var(--primary-color);
207
+ border: none;
208
+ display: flex;
209
+ width: 106%;
210
+ padding: 14px 28px;
211
+ justify-content: center;
212
+ align-items: center;
213
+ margin-top: 30px;
214
+ border-radius: 6px;
215
+ color: white;
216
+ }
217
+
218
+ .label-reg {
219
+ color: #667085;
220
+
221
+ font-size: 15px;
222
+ font-style: normal;
223
+ font-weight: 400;
224
+ line-height: normal;
225
+ }
226
+
227
+ .input-group-input {
228
+ position: relative;
229
+ }
230
+
231
+ .icon {
232
+ position: absolute;
233
+ left: 10px;
234
+ top: 50%;
235
+ transform: translateY(-50%);
236
+ z-index: 1;
237
+ padding: 10px;
238
+ }
239
+
240
+ .input-group-input input {
241
+ width: 100%;
242
+ padding: 10px;
243
+ padding-left: 30px;
244
+ border: 1px solid #ccc;
245
+ border-radius: 5px;
246
+ font-size: 16px;
247
+ }
248
+
249
+ .input-checkbox {
250
+ width: 14px;
251
+ height: 14px;
252
+ border-radius: 8px;
253
+ border: 4px solid black !important;
254
+
255
+ }
256
+
257
+ .policy-modal-close-button {
258
+ display: flex;
259
+ width: 412px;
260
+ padding: 14px 28px;
261
+ justify-content: center;
262
+ align-items: center;
263
+ gap: 10px;
264
+ border-radius: 6px;
265
+ border: 2px solid var(--primary-color);
266
+
267
+ }
268
+
269
+ .swal2-confirm {
270
+ display: flex;
271
+ width: 412px;
272
+ padding: 14px 28px;
273
+ justify-content: center;
274
+ align-items: center;
275
+ gap: 10px;
276
+ border-radius: 6px;
277
+ border: 1px solid var(--primary-color);
278
+
279
+ }
280
+
281
+ .swal2-close {
282
+ display: flex;
283
+ width: 412px;
284
+ background-color: var(--primary-color);
285
+ border-radius: 6px;
286
+ color: white;
287
+ }
288
+
289
+ .my-swal-content {
290
+ font-size: 16px;
291
+ color: #333;
292
+ }
293
+
294
+ .input-container {
295
+ display: flex;
296
+ align-items: center;
297
+ border: 1px solid #ccc;
298
+ border-radius: 4px;
299
+ }
300
+
301
+ /*Buy Courses*/
302
+
303
+ .course-card-inner {
304
+ position: relative;
305
+ }
306
+
307
+ .course-image {
308
+ position: relative;
309
+ }
310
+
311
+ .course-badge {
312
+ position: absolute;
313
+ top: 2px;
314
+ right: 3px;
315
+ background-color: white;
316
+ color: #f95502;
317
+ padding: 6px 10px;
318
+ border-radius: 0 2px 0 14px;
319
+ font-size: 12px;
320
+ }
321
+
322
+ .textFree {
323
+ color: #26C000;
324
+
325
+ font-size: 14px;
326
+ font-style: normal;
327
+ font-weight: 400;
328
+ line-height: normal;
329
+ }
330
+
331
+ .courseImage {
332
+ width: 243px;
333
+ height: 162px;
334
+ }
335
+
336
+ .rupee-icon {
337
+ color: #FFF;
338
+ background-color: #26C000;
339
+ border-radius: 50%;
340
+ width: 30px;
341
+ height: 30px;
342
+ align-items: center;
343
+ /* box-shadow: 4px 4px 32px 1px rgba(0, 0, 0, 0.20); */
344
+ }
345
+
346
+
347
+ /**/
348
+ .form-control-lg.form-control {
349
+ border-radius: 4px;
350
+ height: 46px;
351
+ }
352
+
353
+ .form-control-sm.form-control {
354
+ height: 30px;
355
+ border-radius: 0;
356
+ }
357
+
358
+ .input-group.input-group-lg .form-control {
359
+ height: 46px;
360
+ }
361
+
362
+ .material-icons {
363
+ font-family: 'Material Icons';
364
+ font-weight: normal;
365
+ font-style: normal;
366
+ font-size: 24px;
367
+ display: inline-block;
368
+ line-height: 1;
369
+ text-transform: none;
370
+ letter-spacing: normal;
371
+ word-wrap: normal;
372
+ white-space: nowrap;
373
+ direction: ltr;
374
+ -webkit-font-smoothing: antialiased;
375
+ text-rendering: optimizeLegibility;
376
+ -moz-osx-font-smoothing: grayscale;
377
+ font-feature-settings: 'liga';
378
+ }
379
+
380
+ /*---------------
381
+ dashboard
382
+ ----------------*/
383
+
384
+ .cdash-btn {
385
+ width: 350px;
386
+ height: 30px;
387
+ flex-shrink: 0;
388
+ border-radius: 4px;
389
+ background: #EAEAEA;
390
+ padding: 10px 20px;
391
+ margin: 10px;
392
+ font-size: 16px;
393
+ font-weight: bold;
394
+ color: white;
395
+ border-radius: 5px;
396
+ text-align: center;
397
+ cursor: pointer;
398
+ display: flex;
399
+ align-items: center;
400
+ justify-content: center;
401
+ }
402
+
403
+ .room-container {
404
+ padding: 30px;
405
+ }
406
+
407
+ .join-button {
408
+ width: 10px;
409
+ padding: 14px 28px;
410
+ gap: 10px;
411
+ border-radius: 4px;
412
+ background: #f95502;
413
+ height: 35px;
414
+ border: 1px solid transparent;
415
+ color: white;
416
+ display: flex;
417
+ align-items: center;
418
+ justify-content: center;
419
+ font-family: "Maven Pro", sans-serif;
420
+ font-weight: 500;
421
+ transition: background-color 0.3s ease;
422
+ }
423
+
424
+ .join-button:hover {
425
+ background: #28a745;
426
+ }
427
+
428
+
429
+ /*-----------------
430
+ Header
431
+ -----------------------*/
432
+ .header {
433
+ background: #fff;
434
+ border-bottom: 1px solid #ededed;
435
+ box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
436
+ height: 70px;
437
+ left: 0;
438
+ position: fixed;
439
+ right: 0;
440
+ top: 0;
441
+ z-index: 1002;
442
+ }
443
+
444
+ .header .header-left {
445
+ float: left;
446
+ height: 60px;
447
+ padding: 0 20px;
448
+ position: relative;
449
+ text-align: center;
450
+ width: 230px;
451
+ z-index: 1;
452
+ transition: all 0.2s ease-in-out;
453
+ }
454
+
455
+ .header .header-left .logo {
456
+ display: inline-block;
457
+ line-height: 60px;
458
+ }
459
+
460
+ .bar-icon {
461
+ display: inline-block;
462
+ width: 21px;
463
+ }
464
+
465
+ .bar-icon span {
466
+ background-color: #999;
467
+ border-radius: 500px;
468
+ display: block;
469
+ float: left;
470
+ height: 2px;
471
+ margin-bottom: 5px;
472
+ width: 21px;
473
+ }
474
+
475
+ .bar-icon span:nth-child(2) {
476
+ width: 15px;
477
+ }
478
+
479
+ .bar-icon span:nth-child(3) {
480
+ margin-bottom: 0;
481
+ }
482
+
483
+ .header .navbar-nav .badge {
484
+ position: absolute;
485
+ right: 7px;
486
+ top: 4px;
487
+ }
488
+
489
+ .header .dropdown-menu>li>a {
490
+ position: relative;
491
+ }
492
+
493
+ .header .dropdown-toggle::after {
494
+ display: none;
495
+ }
496
+
497
+ .header .has-arrow .dropdown-toggle:after {
498
+ border-top: 0;
499
+ border-left: 0;
500
+ border-bottom: 2px solid #999;
501
+ border-right: 2px solid #999;
502
+ content: '';
503
+ height: 8px;
504
+ display: inline-block;
505
+ pointer-events: none;
506
+ -webkit-transform-origin: 66% 66%;
507
+ -ms-transform-origin: 66% 66%;
508
+ transform-origin: 66% 66%;
509
+ -webkit-transform: rotate(45deg);
510
+ -ms-transform: rotate(45deg);
511
+ transform: rotate(45deg);
512
+ -webkit-transition: all 0.15s ease-in-out;
513
+ transition: all 0.15s ease-in-out;
514
+ width: 8px;
515
+ vertical-align: 2px;
516
+ }
517
+
518
+ .header .has-arrow .dropdown-toggle[aria-expanded="true"]:after {
519
+ -webkit-transform: rotate(-135deg);
520
+ -ms-transform: rotate(-135deg);
521
+ transform: rotate(-135deg);
522
+ }
523
+
524
+ .page-title-box {
525
+ border-radius: 0;
526
+ float: left;
527
+ height: 60px;
528
+ margin-bottom: 0;
529
+ padding: 17px 20px;
530
+ }
531
+
532
+ .page-title-box h3 {
533
+ color: #333;
534
+ font-size: 20px;
535
+ font-weight: normal;
536
+ margin: 0;
537
+ }
538
+
539
+ .user-menu {
540
+ float: right;
541
+ margin: 0;
542
+ position: relative;
543
+ z-index: 99;
544
+ }
545
+
546
+ .user-menu.nav>li>a {
547
+ color: #333;
548
+ font-size: 15px;
549
+ line-height: 60px;
550
+ padding: 0 15px;
551
+ height: 60px;
552
+ }
553
+
554
+ .user-menu.nav>li>a:hover,
555
+ .user-menu.nav>li>a:focus {
556
+ background-color: rgba(0, 0, 0, 0.2);
557
+ }
558
+
559
+ .flag-nav img {
560
+ margin-right: 5px;
561
+ }
562
+
563
+ .flag-nav .dropdown-menu {
564
+ max-height: 150px;
565
+ min-width: 120px;
566
+ overflow-y: auto;
567
+ }
568
+
569
+ .flag-nav .dropdown-menu .dropdown-item {
570
+ padding: 5px 15px;
571
+ }
572
+
573
+ .user-img {
574
+ display: inline-block;
575
+ position: relative;
576
+ }
577
+
578
+ .main-drop .user-img img {
579
+ border-radius: 50%;
580
+ width: 30px;
581
+ }
582
+
583
+ .user-img .status {
584
+ border: 2px solid #fff;
585
+ bottom: 0;
586
+ height: 10px;
587
+ margin: 0;
588
+ position: absolute;
589
+ right: 0;
590
+ width: 10px;
591
+ }
592
+
593
+ .user-menu .user-img .status {
594
+ bottom: 12px;
595
+ }
596
+
597
+ .status {
598
+ background-color: #263238;
599
+ border-radius: 50%;
600
+ display: inline-block;
601
+ height: 10px;
602
+ width: 10px;
603
+ }
604
+
605
+ .status.online {
606
+ background-color: #55ce63;
607
+ }
608
+
609
+ .status.offline {
610
+ background-color: #f62d51;
611
+ }
612
+
613
+ .status.away {
614
+ background-color: #faa937;
615
+ }
616
+
617
+ .main-drop .dropdown-menu {
618
+ min-width: 130px;
619
+ padding: 0;
620
+ }
621
+
622
+ /*-----------------
623
+ Content
624
+ -----------------------*/
625
+
626
+ .page-wrapper {
627
+ left: 0;
628
+ margin-left: 260px;
629
+ padding: 80px 50px 10px 50px;
630
+ position: relative;
631
+ transition: all 0.2s ease-in-out;
632
+ /* min-height: 528px; */
633
+ background-color: var(--content-background-color);
634
+ min-height: 100vh;
635
+ }
636
+ .page-wrapper_scorm_Track {
637
+ left: 0;
638
+ margin-left: 0px;
639
+ padding: 0px;
640
+ position: relative;
641
+ transition: all 0.2s ease-in-out;
642
+ /* min-height: 528px; */
643
+ background-color: var(--content-background-color);
644
+ min-height: 100vh;
645
+ }
646
+ .scorm_iframe{
647
+ width: 100%;
648
+ height: calc(100vh - 80px);
649
+ }
650
+ .page-wrapper>.content {
651
+ padding: 30px;
652
+ }
653
+
654
+ .page-header {
655
+ margin-bottom: 1.875rem;
656
+ }
657
+
658
+ .page-header .breadcrumb {
659
+ background-color: transparent;
660
+ color: #6c757d;
661
+ font-size: 1rem;
662
+ font-weight: 500;
663
+ margin-bottom: 0;
664
+ padding: 0;
665
+ }
666
+
667
+ .page-header .breadcrumb a {
668
+ color: #333;
669
+ }
670
+
671
+ .card {
672
+ border: 1px solid #ededed;
673
+ box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
674
+ margin-bottom: 30px;
675
+ }
676
+
677
+ .ant-pagination-item-active {
678
+ font-weight: 500;
679
+ background: #ff9b44 !important;
680
+ border-color: #ff9b44 !important;
681
+ color: rgb(255, 255, 255) !important;
682
+ z-index: 1 !important;
683
+ }
684
+
685
+ .card-title {
686
+ color: #1f1f1f;
687
+ font-size: 20px;
688
+ font-weight: 500;
689
+ margin-bottom: 20px;
690
+ }
691
+
692
+ .card-header {
693
+ background-color: #fff;
694
+ }
695
+
696
+ .card-footer {
697
+ background-color: #fff;
698
+ }
699
+
700
+ .page-title {
701
+ color: #1f1f1f;
702
+ font-size: 26px;
703
+ font-weight: 500;
704
+ margin-bottom: 5px;
705
+ }
706
+
707
+ .page-sub-title {
708
+ color: #565656;
709
+ font-size: 18px;
710
+ font-weight: normal;
711
+ margin-bottom: 20px;
712
+ }
713
+
714
+ /*------Hari-----*/
715
+
716
+ .page-title-container {
717
+ display: flex;
718
+ }
719
+
720
+ .project-title-icon {
721
+ color: var(--secondary-color);
722
+ background-color: #FFF;
723
+ border-radius: 50%;
724
+ padding: 5px;
725
+ align-items: center;
726
+ box-shadow: 4px 4px 32px 1px rgba(0, 0, 0, 0.20);
727
+ font-size: 28px;
728
+ margin-right: 10px;
729
+ }
730
+
731
+ .dataTable-subContainer {
732
+ display: flex;
733
+ align-items: center;
734
+ justify-content: space-between;
735
+ }
736
+
737
+ .data-table-container {
738
+ margin-top: 38px;
739
+ border: 1px solid #DBE1EF;
740
+ background-color: #FFF;
741
+ }
742
+
743
+ .data-table-container header {
744
+ justify-content: space-between;
745
+ display: block;
746
+ padding: 27px 50px;
747
+ }
748
+
749
+ .data-table-container h2 {
750
+ color: var(--secondary-color);
751
+ font-size: 18px;
752
+ font-style: normal;
753
+ font-weight: 400;
754
+ line-height: normal;
755
+ }
756
+
757
+ .table_search {
758
+ width: 398px;
759
+ height: 55px;
760
+ flex-shrink: 0;
761
+ border-radius: 23px;
762
+ background: #F7F8FA;
763
+ border-width: 0px;
764
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
765
+ padding: 0px 50px;
766
+ }
767
+
768
+ .table_search_icon {
769
+ position: absolute;
770
+ top: 54%;
771
+ left: 20px;
772
+ transform: translateY(-50%);
773
+ color: #555;
774
+ /* Adjust the color as needed */
775
+ cursor: pointer;
776
+ }
777
+
778
+ .dataTable-subContainer div:nth-child(2) {
779
+ width: fit-content;
780
+ position: relative;
781
+ }
782
+
783
+ .dataTable-subContainer div:first-child {
784
+ width: fit-content;
785
+ text-align: left;
786
+ }
787
+
788
+ .availableExam-btn {
789
+ border-radius: 4px;
790
+ width: 120px;
791
+ height: 33px;
792
+ flex-shrink: 0;
793
+ border-width: 0px;
794
+ text-align: center;
795
+ font-size: 14px;
796
+ font-style: normal;
797
+ font-weight: 400;
798
+ line-height: 16px;
799
+ }
800
+
801
+ .selected-btn {
802
+ border-radius: 4px;
803
+ background: #000;
804
+ width: 120px;
805
+ height: 33px;
806
+ flex-shrink: 0;
807
+ border-bottom: 2px solid #F95503;
808
+ color: #FFF;
809
+ text-align: center;
810
+ font-size: 14px;
811
+ font-style: normal;
812
+ font-weight: 400;
813
+ line-height: 16px;
814
+ }
815
+
816
+ .textareaquestion {
817
+ width: 100%;
818
+ height: 17px;
819
+ min-height: 100px;
820
+ border: 1px solid #ddd;
821
+ }
822
+
823
+ .textareanote {
824
+ font-size: 12px;
825
+ font-weight: 400;
826
+ }
827
+
828
+ .mini-sidebar .sidebar .sidebar-menu .icon_background {
829
+ box-shadow: none;
830
+ background-color: transparent;
831
+ border-radius: 50%;
832
+ padding: 0px !important;
833
+ font-size: 16px !important;
834
+ }
835
+
836
+ .mini-sidebar .sidebar .sidebar-menu li a {
837
+ padding: 10px 0px;
838
+ /* text-align: center; */
839
+ margin: 4px 14px;
840
+ }
841
+
842
+ .mini-sidebar .sidebar .sidebar-menu>ul>li>a i {
843
+ font-size: 30px;
844
+ width: auto !important;
845
+ }
846
+
847
+ .mini-sidebar .sidebar-menu li:has(a.subdrop) ul li a {
848
+ margin: 0px;
849
+ }
850
+
851
+ /*Hari..........*/
852
+ /*-----------------
853
+ Responsive
854
+ -----------------------*/
855
+
856
+ @media only screen and (min-width: 991px) {
857
+ #toggle_btn {
858
+ color: #999;
859
+ float: left;
860
+ font-size: 26px;
861
+ line-height: 60px;
862
+ padding: 0 10px;
863
+ }
864
+
865
+ .mini-sidebar .header-left .logo img {
866
+ height: auto;
867
+ max-height: 30px;
868
+ width: auto;
869
+ }
870
+
871
+ .mini-sidebar .header .header-left {
872
+ padding: 0 5px;
873
+ width: 80px;
874
+ }
875
+
876
+ .mini-sidebar .sidebar {
877
+ width: 80px;
878
+ }
879
+
880
+ .mini-sidebar .sidebar .sidebar-menu>ul>li>a {
881
+ display: block;
882
+ }
883
+
884
+ .mini-sidebar .sidebar .sidebar-menu .icon_background {
885
+ box-shadow: none;
886
+ background-color: transparent;
887
+ border-radius: 50%;
888
+ padding: 0px;
889
+ font-size: 14px;
890
+ /* display: block !important;
891
+ justify-content: center;
892
+ align-items: center;
893
+ margin-left: 0px !important;
894
+ height: 100%; */
895
+ }
896
+
897
+ .mini-sidebar .sidebar .sidebar-menu li i {
898
+ font-size: 14px;
899
+ }
900
+
901
+ .mini-sidebar .sidebar .sidebar-menu li a {
902
+ padding: 13px 10px;
903
+ }
904
+
905
+ .mini-sidebar .sidebar .sidebar-menu li:has(a.subdrop) ul li {
906
+ /* display: none; */
907
+
908
+ }
909
+
910
+ .mini-sidebar.expand-menu .sidebar {
911
+ width: 230px;
912
+ }
913
+
914
+ .mini-sidebar .menu-title {
915
+ visibility: hidden;
916
+ white-space: nowrap;
917
+ }
918
+
919
+ .mini-sidebar.expand-menu .menu-title {
920
+ visibility: visible;
921
+ }
922
+
923
+ .mini-sidebar .menu-title a {
924
+ visibility: hidden;
925
+ }
926
+
927
+ .mini-sidebar.expand-menu .menu-title a {
928
+ visibility: visible;
929
+ }
930
+
931
+ .mini-sidebar .sidebar .noti-dot:before {
932
+ display: none;
933
+ }
934
+
935
+ .mini-sidebar .sidebar .noti-dot:after {
936
+ display: none;
937
+ }
938
+
939
+ .mini-sidebar.expand-menu .sidebar .noti-dot:before {
940
+ display: block;
941
+ }
942
+
943
+ .mini-sidebar.expand-menu .sidebar .noti-dot:after {
944
+ display: block;
945
+ }
946
+
947
+ .modal-open.mini-sidebar .sidebar {
948
+ z-index: 1001;
949
+ }
950
+
951
+ .mini-sidebar .sidebar .sidebar-menu ul>li>a span {
952
+ display: none;
953
+ transition: all 0.2s ease-in-out;
954
+ opacity: 0;
955
+ }
956
+
957
+ .mini-sidebar .sidebar .sidebar-menu ul>li>a span.chat-avatar-sm {
958
+ display: inline-block;
959
+ opacity: 1;
960
+ }
961
+
962
+ .mini-sidebar .sidebar .sidebar-menu ul>li>a span.status {
963
+ display: inline-block;
964
+ opacity: 1;
965
+ }
966
+
967
+ .mini-sidebar.expand-menu .sidebar .sidebar-menu ul>li>a span {
968
+ display: inline;
969
+ opacity: 1;
970
+ }
971
+
972
+ .mini-sidebar .sidebar .sidebar-menu>ul>li>a i {
973
+ font-size: 30px;
974
+ width: 30px;
975
+ }
976
+
977
+ .mini-sidebar.expand-menu .sidebar .sidebar-menu>ul>li>a i {
978
+ font-size: 24px;
979
+ width: 20px;
980
+ }
981
+
982
+ .mini-sidebar .page-wrapper {
983
+ margin-left: 80px;
984
+ }
985
+
986
+ .mini-sidebar .header_whole_container {
987
+ margin-left: 80px;
988
+ width: calc(100% - 80px);
989
+ }
990
+ }
991
+
992
+ @media (max-width: 576px) {
993
+ .col-xs-1 {
994
+ flex: 0 0 auto;
995
+ width: 8.333333333333333%;
996
+ }
997
+ .col-xs-2 {
998
+ flex: 0 0 auto;
999
+ width: 16.66666666666667%;
1000
+ }
1001
+ .col-xs-3 {
1002
+ flex: 0 0 auto;
1003
+ width: 25%;
1004
+ }
1005
+ .col-xs-4 {
1006
+ flex: 0 0 auto;
1007
+ width: 33.33333333%;
1008
+ }
1009
+ .col-xs-5 {
1010
+ flex: 0 0 auto;
1011
+ width: 41.66666666666667%;
1012
+ }
1013
+ .col-xs-6 {
1014
+ flex: 0 0 auto;
1015
+ width: 50%;
1016
+ }
1017
+ .col-xs-7 {
1018
+ flex: 0 0 auto;
1019
+ width: 58.33333333333333%;
1020
+ }
1021
+ .col-xs-8 {
1022
+ flex: 0 0 auto;
1023
+ width: 66.66666666666667%;
1024
+ }
1025
+ .col-xs-9 {
1026
+ flex: 0 0 auto;
1027
+ width: 75%;
1028
+ }
1029
+ .col-xs-10 {
1030
+ flex: 0 0 auto;
1031
+ width: 83.33333333333333%;
1032
+ }
1033
+ .col-xs-11 {
1034
+ flex: 0 0 auto;
1035
+ width: 91.66666666666667%;
1036
+ }
1037
+ .col-xs-12 {
1038
+ flex: 0 0 auto;
1039
+ width: 100%;
1040
+ }
1041
+ }
1042
+
1043
+ @media only screen and (max-width: 1001px) {
1044
+
1045
+ .sidebar {
1046
+ margin-left: -225px;
1047
+ width: 225px;
1048
+ -webkit-transition: all 0.4s ease;
1049
+ -moz-transition: all 0.4s ease;
1050
+ transition: all 0.4s ease;
1051
+ z-index: 1041;
1052
+ }
1053
+
1054
+ .page-wrapper {
1055
+ margin-left: 0;
1056
+ padding-left: 15px;
1057
+ padding-right: 15px;
1058
+ }
1059
+
1060
+ #toggle_btn {
1061
+ display: none;
1062
+ }
1063
+
1064
+ .page-wrapper {
1065
+ -webkit-transition: all 0.4s ease;
1066
+ -moz-transition: all 0.4s ease;
1067
+ transition: all 0.4s ease;
1068
+ }
1069
+
1070
+ .header .has-arrow .dropdown-toggle>span:nth-child(2) {
1071
+ display: none;
1072
+ }
1073
+
1074
+ .header .has-arrow .dropdown-toggle::after {
1075
+ display: none;
1076
+ }
1077
+
1078
+ .header_whole_container {
1079
+ margin-left: 0px !important;
1080
+ width: 100% !important;
1081
+ }
1082
+ }
1083
+
1084
+ .MuiPaper-root {
1085
+ /* margin-top: 20px; */
1086
+ }
1087
+
1088
+ /*my profile*/
1089
+
1090
+ .myprofile_container {
1091
+ padding: 60px 90px 100px 105px;
1092
+ }
1093
+
1094
+ .profile-card {
1095
+ background-color: #fff;
1096
+ border-radius: 8px;
1097
+ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
1098
+ width: 750px;
1099
+ padding: 20px;
1100
+ }
1101
+
1102
+ .profile-column {
1103
+ flex-basis: calc(50% - 10px);
1104
+ padding: 10px;
1105
+ box-sizing: border-box;
1106
+ }
1107
+
1108
+ .profile-icon {
1109
+ color: var(--secondary-color);
1110
+ border-radius: 50%;
1111
+ padding: 10px;
1112
+ box-shadow: 4px 4px 32px 1px rgba(0, 0, 0, 0.20);
1113
+ background-color: #FFFFFF;
1114
+
1115
+ }
1116
+
1117
+ .profile-icon-border {
1118
+ margin-left: 7px;
1119
+ }
1120
+
1121
+ .profile-header {
1122
+ font-size: 22px;
1123
+ color: var(--secondary-color);
1124
+ margin-top: 3px;
1125
+ margin-left: 15px;
1126
+ font-weight: bold;
1127
+
1128
+
1129
+ }
1130
+
1131
+ .profile-bookicon {
1132
+
1133
+ position: absolute;
1134
+ margin-left: 13px;
1135
+ margin-top: 16px;
1136
+ color: var(--secondary-color);
1137
+ width: 16px;
1138
+ height: 16px;
1139
+
1140
+ /* top: 54%;
1141
+
1142
+ left: 20px;
1143
+
1144
+ transform: translateY(-50%);
1145
+
1146
+ color: #555;
1147
+
1148
+ cursor: pointer; */
1149
+
1150
+ }
1151
+
1152
+ .profile-bookicon-child {
1153
+
1154
+ margin-top: 35px;
1155
+ margin-left: 10px
1156
+ }
1157
+
1158
+ .profile-header h2 {
1159
+ color: #333;
1160
+ }
1161
+
1162
+ .profile-details {
1163
+ font-size: 16px;
1164
+ }
1165
+
1166
+ .profile-details .row {
1167
+ /* --bs-gutter-x: 0rem !important; */
1168
+ }
1169
+
1170
+ .profile-row {
1171
+ display: flex;
1172
+ justify-content: space-between;
1173
+ flex-wrap: wrap;
1174
+ }
1175
+
1176
+ .profile-row-label {
1177
+ display: flex;
1178
+ align-items: center;
1179
+ margin-top: 2%;
1180
+
1181
+ }
1182
+
1183
+ .profile-checkbox {
1184
+
1185
+ color: #667085;
1186
+ background-color: #FFFFFF;
1187
+ width: 16px;
1188
+ height: 16px;
1189
+ border-radius: 12px;
1190
+ border: 2px solid #667085;
1191
+ }
1192
+
1193
+ .profile-label {
1194
+ /* margin: 0;
1195
+ color: #777;
1196
+ font-weight: bold;
1197
+ margin-bottom: 5px; */
1198
+ width: 60%;
1199
+ height: 20%;
1200
+ margin-top: 25px;
1201
+ font-weight: normal;
1202
+ font-size: 16px;
1203
+ line-height: 16.41px;
1204
+ color: #667085;
1205
+ /* font-weight: lighter; */
1206
+
1207
+
1208
+ }
1209
+
1210
+
1211
+ .profile-value {
1212
+ color: #333;
1213
+ font-weight: bold;
1214
+ }
1215
+
1216
+ .profile-input {
1217
+ margin-top: 10px;
1218
+ background-color: #fff;
1219
+ border: none;
1220
+ padding: 10px;
1221
+ font-size: 16px;
1222
+ color: #858282;
1223
+ width: 100%;
1224
+ box-sizing: border-box;
1225
+ border: 1px solid #858282;
1226
+ height: 40%;
1227
+
1228
+
1229
+ }
1230
+
1231
+ .profile-input {
1232
+ width: 100%;
1233
+ height: 45px;
1234
+ display: flex;
1235
+ align-items: center;
1236
+ margin-top: 15px;
1237
+ border-radius: 6px;
1238
+ color: var(--secondary-color);
1239
+ border: 1px solid #A2A2A6;
1240
+ background-color: #FFFFFF;
1241
+ font-weight: 500;
1242
+ padding: 5px 10px 5px 40px;
1243
+ }
1244
+ .corpprofile-input {
1245
+ width: 100%;
1246
+ height: 45px;
1247
+ display: flex;
1248
+ align-items: center;
1249
+ margin-top: 15px;
1250
+ border-radius: 6px;
1251
+ color: var(--secondary-color);
1252
+ border: 1px solid #A2A2A6;
1253
+ background-color: #FFFFFF;
1254
+ font-weight: 500;
1255
+ padding: 5px 10px 5px 10px;
1256
+ }
1257
+ .profile-input-disabled {
1258
+ width: 100%;
1259
+ height: 45px;
1260
+ display: flex;
1261
+ align-items: center;
1262
+ margin-top: 15px;
1263
+ border-radius: 6px;
1264
+ color: var(--secondary-color);
1265
+ border: 1px solid #A2A2A6;
1266
+ background-color: #f6f2f2;
1267
+ font-weight: 500;
1268
+ padding: 5px 10px 5px 40px;
1269
+ }
1270
+ .corporateprofile-input-disabled {
1271
+ width: 100%;
1272
+ height: 45px;
1273
+ display: flex;
1274
+ align-items: center;
1275
+ margin-top: 15px;
1276
+ border-radius: 6px;
1277
+ color: var(--secondary-color);
1278
+ border: 1px solid #A2A2A6;
1279
+ background-color: #f6f2f2;
1280
+ font-weight: 500;
1281
+ padding: 5px 10px 5px 10px;
1282
+ }
1283
+ .required-star {
1284
+ color: red;
1285
+ }
1286
+
1287
+ .profile-update-button-container {
1288
+ display: flex;
1289
+ justify-content: center;
1290
+ margin-top: 20px;
1291
+ }
1292
+
1293
+ .profile-update-button {
1294
+ background: #C77E23;
1295
+
1296
+ }
1297
+
1298
+ .profile-checkboxlabel {
1299
+
1300
+
1301
+ font-size: 14px;
1302
+ line-height: 14.06px;
1303
+ color: #8692A6;
1304
+ font-weight: 300;
1305
+ }
1306
+
1307
+ .profile-clickhere {
1308
+
1309
+ color: #3665C5;
1310
+ text-align: center;
1311
+ cursor: pointer;
1312
+ font-size: 15px;
1313
+ line-height: 16px;
1314
+ }
1315
+
1316
+ .profile-button {
1317
+ background-color: var(--primary-color);
1318
+ color: white;
1319
+ border: none;
1320
+ padding: 10px 20px 10px 20px;
1321
+ border-radius: 6px;
1322
+ }
1323
+
1324
+ .profile_btn_container {
1325
+ display: flex;
1326
+ justify-content: center;
1327
+ margin-top: 20px;
1328
+ }
1329
+
1330
+ .eresources-button {
1331
+
1332
+ width: 300%;
1333
+ height: 50%;
1334
+ background-color: var(--primary-color);
1335
+ color: white;
1336
+ border: none;
1337
+ margin-top: 45px;
1338
+ }
1339
+
1340
+
1341
+ .profile-infoicon {
1342
+ width: 16px;
1343
+ height: 16px;
1344
+ color: #3665C5;
1345
+ cursor: pointer;
1346
+ }
1347
+
1348
+ .profile-infoicon-child1 {
1349
+ border: 1px solid #a2a2a6;
1350
+ background-color: rgb(243 243 243);
1351
+ /* margin-left: 10px;
1352
+ margin-right: 125px; */
1353
+ margin-top: 15px;
1354
+ border-radius: 5px;
1355
+ padding: 10px;
1356
+ }
1357
+
1358
+ .profile-infoicon-message {
1359
+ margin-left: 2%;
1360
+ margin-top: 1%;
1361
+ margin-bottom: 1%;
1362
+ }
1363
+
1364
+
1365
+
1366
+ /*jero CoursesDashboard css 25/10 */
1367
+
1368
+ .dashboard_option_container {
1369
+ display: flex;
1370
+ justify-content: space-between;
1371
+ }
1372
+
1373
+ .option_container {
1374
+ background: #EAEAEA;
1375
+ padding: 15px;
1376
+ width: 350px;
1377
+ height: 55px;
1378
+ border-radius: 5px;
1379
+ margin-right: 10px;
1380
+ cursor: pointer;
1381
+ }
1382
+
1383
+ .selected_option_container {
1384
+ background: var(--tab-color);
1385
+ padding: 15px;
1386
+ width: 350px;
1387
+ height: 55px;
1388
+ border-radius: 5px;
1389
+ margin-right: 10px;
1390
+ cursor: pointer;
1391
+ }
1392
+
1393
+ .option_text {
1394
+ font-size: 20px;
1395
+ line-height: 23px;
1396
+ letter-spacing: 0em;
1397
+ text-align: left;
1398
+ line-height: 23.44px;
1399
+ color: var(--secondary-color);
1400
+ font-weight: 400;
1401
+ }
1402
+
1403
+ .selected_option_text {
1404
+ font-size: 20px;
1405
+ line-height: 23px;
1406
+ letter-spacing: 0em;
1407
+ text-align: left;
1408
+ line-height: 23.44px;
1409
+ color: #ffffff;
1410
+ font-weight: 400;
1411
+ }
1412
+
1413
+
1414
+ /* latest header style */
1415
+
1416
+ .header_whole_container {
1417
+ display: flex;
1418
+ position: fixed;
1419
+ padding: 20px;
1420
+ /* width: 100%; */
1421
+ padding-bottom: 10px;
1422
+ height: 70px;
1423
+ align-items: center;
1424
+ z-index: 1010;
1425
+ border-bottom: 1px solid #dcdcdc;
1426
+ background-color: #FFFFFF;
1427
+ }
1428
+
1429
+ .header_logo_container {
1430
+ margin-left: 30px;
1431
+ }
1432
+
1433
+ .header-toggle-icon {
1434
+ background-color: #FFF;
1435
+ border-radius: 50%;
1436
+ padding: 5px;
1437
+ align-items: center;
1438
+ box-shadow: 4px 4px 32px 1px rgba(0, 0, 0, 0.20);
1439
+ }
1440
+
1441
+ .header_container1 {
1442
+ display: flex;
1443
+ align-items: center;
1444
+ width: 87%;
1445
+ }
1446
+
1447
+ /* .header_logo_img {
1448
+ height: 120px;
1449
+ width: 100px;
1450
+ } */
1451
+
1452
+ .header_container2 {
1453
+ display: flex;
1454
+ align-items: center;
1455
+ width: 13%;
1456
+ }
1457
+
1458
+ .user_icon_container {
1459
+ display: flex;
1460
+ justify-content: flex-end;
1461
+ }
1462
+
1463
+ .username_container {
1464
+ padding-left: 20px;
1465
+ }
1466
+
1467
+ .userName_text {
1468
+ font-size: 14px;
1469
+ color: #222222;
1470
+ font-weight: 500;
1471
+ line-height: 16px;
1472
+ letter-spacing: 0em;
1473
+ }
1474
+
1475
+ .header_container3 {
1476
+ padding-left: 22px;
1477
+ }
1478
+
1479
+ .logout_icon {
1480
+ box-shadow: 4px 4px 32px 1px rgba(0, 0, 0, 0.20);
1481
+ background-color: #FFFFFF;
1482
+ padding: 5px;
1483
+ border-radius: 50%;
1484
+ }
1485
+
1486
+ /* jero finish */
1487
+
1488
+ /* Eresources.css */
1489
+ .card-container {
1490
+ width: 100%;
1491
+ display: flex;
1492
+ flex-direction: column;
1493
+ align-items: center;
1494
+ padding: 100px 50px 30px 50px !important;
1495
+ }
1496
+
1497
+ .card {
1498
+ width: 80%;
1499
+ padding: 20px;
1500
+ border: 1px solid #ccc;
1501
+ border-radius: 10px;
1502
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
1503
+ margin-top: 5%;
1504
+ }
1505
+
1506
+ .alert_container {
1507
+ height: 0px;
1508
+ }
1509
+
1510
+ .alert_container {
1511
+ color: red;
1512
+ font-size: 12px;
1513
+
1514
+ }
1515
+
1516
+ .signup_alert_container {
1517
+ height: 10px;
1518
+ }
1519
+
1520
+ .signup_alert_container span {
1521
+ color: red;
1522
+ font-size: 12px;
1523
+ }
1524
+
1525
+ .modal_title {
1526
+ color: var(--secondary-color);
1527
+
1528
+ }
1529
+
1530
+ .modal-header .btn-close {
1531
+ color: red !important;
1532
+ font-size: 12px;
1533
+ }
1534
+
1535
+ .info {
1536
+ background: var(--primary-color) !important;
1537
+
1538
+ }
1539
+
1540
+ .SUCCESS {
1541
+ background: green !important;
1542
+ }
1543
+
1544
+ .error {
1545
+ background: red !important;
1546
+ }
1547
+
1548
+ .loader_modal .modal-content {
1549
+ border: none !important;
1550
+ background-color: transparent !important;
1551
+ align-items: center;
1552
+ }
1553
+
1554
+ /* input[type='file']::file-selector-button {
1555
+ display: none;
1556
+ }
1557
+
1558
+ input[type='file']::after {
1559
+ content: '';
1560
+ } */
1561
+
1562
+ @media only screen and (max-width:1200px) {
1563
+ .availableExam-btn {
1564
+ width: 120px;
1565
+ }
1566
+
1567
+ .selected-btn {
1568
+ width: 120px;
1569
+ }
1570
+ }
1571
+
1572
+ @media only screen and (max-width:950px) {
1573
+ .myprofile_container {
1574
+ padding: 60px 90px 100px 90px;
1575
+ }
1576
+
1577
+ .profile-infoicon-child1 {
1578
+ border: 1px solid #a2a2a6;
1579
+ background-color: rgb(243 243 243);
1580
+ margin-top: 15px;
1581
+ border-radius: 5px;
1582
+ padding: 10px;
1583
+ }
1584
+
1585
+ .project-title-icon {
1586
+ font-size: 25px;
1587
+ }
1588
+
1589
+ .breadcrumbs-txt {
1590
+ font-size: 18px;
1591
+ }
1592
+ }
1593
+
1594
+ .profile-row-label {
1595
+ --bs-gutter-x: 0rem !important;
1596
+ }
1597
+
1598
+ .profile_checkbox_container {
1599
+ width: 3%;
1600
+ display: flex;
1601
+ align-items: center;
1602
+ }
1603
+
1604
+ @media only screen and (max-width: 800px) {
1605
+ .data-card-exam {
1606
+ background-color: white;
1607
+ border-radius: 8px;
1608
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
1609
+ padding: 10px;
1610
+ margin-top: 25px;
1611
+ }
1612
+
1613
+ .data-table-container header {
1614
+ display: block;
1615
+ padding: 15px 30px;
1616
+ }
1617
+
1618
+ .dataTable-subContainer {
1619
+ flex-direction: column;
1620
+ align-items: flex-start;
1621
+ gap: 15px;
1622
+ }
1623
+
1624
+ .dataTable-subContainer div {
1625
+ /* width: 100%; */
1626
+ }
1627
+
1628
+ .dataTable-subContainer div:nth-child(2) {
1629
+ width: 100%;
1630
+ position: relative;
1631
+ }
1632
+
1633
+ .table_search {
1634
+ width: 42%;
1635
+ height: 45px;
1636
+ margin-top: 1px;
1637
+ padding: 15px 40px 15px 50px;
1638
+ border: 1px solid var(--input-border-color);
1639
+ outline: none;
1640
+ }
1641
+
1642
+ .table_search_icon {
1643
+ position: absolute;
1644
+ top: 50%;
1645
+ left: 10px;
1646
+ transform: translateY(-50%);
1647
+ color: #555;
1648
+ cursor: pointer;
1649
+ }
1650
+
1651
+ .page-title-container {
1652
+ display: flex;
1653
+ }
1654
+
1655
+ .availableExam-btn {
1656
+ width: 115px;
1657
+ height: 20px;
1658
+ }
1659
+
1660
+ .selected-btn {
1661
+ width: 115px;
1662
+ height: 20px;
1663
+ }
1664
+
1665
+ .project-title-icon {
1666
+ font-size: 25px;
1667
+ }
1668
+
1669
+ .breadcrumbs-txt {
1670
+ font-size: 18px;
1671
+ }
1672
+ }
1673
+
1674
+ @media only screen and (max-width:650px) {
1675
+ .myprofile_container {
1676
+ padding: 60px 50px 100px 50px;
1677
+ }
1678
+ }
1679
+
1680
+ @media only screen and (max-width:600px) {
1681
+ .profile-row-label>* {
1682
+ width: unset;
1683
+ }
1684
+
1685
+ .profile-checkboxlabel {
1686
+ padding-left: 10px;
1687
+ font-size: 15px;
1688
+ }
1689
+
1690
+ .table_search {
1691
+ width: 50%;
1692
+ height: 45px;
1693
+ }
1694
+ }
1695
+
1696
+ @media only screen and (max-width:520px) {
1697
+ .profile-checkboxlabel {
1698
+ padding-left: 10px;
1699
+ font-size: 13px;
1700
+ }
1701
+
1702
+ .profile-checkbox {
1703
+ width: 15px;
1704
+ height: 15px;
1705
+ }
1706
+
1707
+ .profile-clickhere {
1708
+ font-size: 13px;
1709
+ }
1710
+
1711
+ .profile-infoicon-message text {
1712
+ font-size: 15px;
1713
+ }
1714
+
1715
+ .project-title-icon {
1716
+ font-size: 25px;
1717
+ }
1718
+
1719
+ .breadcrumbs-txt {
1720
+ font-size: 18px;
1721
+ }
1722
+ }
1723
+
1724
+
1725
+ @media only screen and (max-width:500px) {
1726
+ .myprofile_container {
1727
+ padding: 60px 20px 100px 20px;
1728
+ }
1729
+
1730
+ .profile-input-disabled {
1731
+ width: 100%;
1732
+ }
1733
+
1734
+ .profile-input {
1735
+ width: 100%;
1736
+ }
1737
+
1738
+ .table_search {
1739
+ width: 100%;
1740
+ height: 45px;
1741
+ }
1742
+ }
1743
+
1744
+ @media only screen and (max-width:400px) {
1745
+ .profile-checkboxlabel {
1746
+ padding-left: 10px;
1747
+ font-size: 12px;
1748
+ }
1749
+
1750
+ .project-title-icon {
1751
+ font-size: 25px;
1752
+ }
1753
+
1754
+ .breadcrumbs-txt {
1755
+ font-size: 18px;
1756
+ }
1757
+
1758
+ .table_search {
1759
+ width: 100%;
1760
+ height: 45px;
1761
+ }
1762
+ }
1763
+
1764
+
1765
+ @media only screen and (max-width:370px) {
1766
+ .signup_alert_container span {
1767
+ font-size: 10px;
1768
+ }
1769
+
1770
+ .table_search {
1771
+ width: 100%;
1772
+ height: 40px;
1773
+ }
1774
+
1775
+ .profile-checkboxlabel {
1776
+ padding-left: 10px;
1777
+ font-size: 11px;
1778
+ }
1779
+
1780
+ .project-title-icon {
1781
+ font-size: 25px;
1782
+ }
1783
+
1784
+ .breadcrumbs-txt {
1785
+ font-size: 21px;
1786
+ }
1787
+ }
1788
+
1789
+
1790
+ /*DataTble list view for mobile*/
1791
+ .list-container {
1792
+ margin: 8px;
1793
+ padding: 5px;
1794
+ display: flex;
1795
+ gap: 30px;
1796
+ overflow-x: auto;
1797
+ border: 1px solid #DCDCDC;
1798
+ }
1799
+
1800
+ .column-list {
1801
+ /* border-right: 1px solid gray; */
1802
+ }
1803
+
1804
+ .title-card-header {
1805
+ font-weight: bold;
1806
+ font-size: 12px;
1807
+ line-height: 20px;
1808
+ }
1809
+
1810
+ .title-card {
1811
+ font-size: 12px;
1812
+ line-height: 24px;
1813
+ /* text-transform: none;
1814
+ display: -webkit-box;
1815
+ -webkit-line-clamp: 1;
1816
+ overflow: hidden;
1817
+ text-overflow: ellipsis;
1818
+ -webkit-box-orient: vertical;
1819
+ line-height: normal; */
1820
+ }
1821
+
1822
+ .custom-table {
1823
+ list-style: none;
1824
+ padding: 0;
1825
+ display: flex;
1826
+ flex-direction: column;
1827
+ width: 600px;
1828
+ overflow: auto;
1829
+ }
1830
+
1831
+ .custom-table-row {
1832
+ display: flex;
1833
+ flex-direction: column;
1834
+ justify-content: space-between;
1835
+ padding: 5px 0;
1836
+ gap: 10px;
1837
+ height: 50px;
1838
+ }
1839
+
1840
+ .custom-table-header {
1841
+ font-weight: bold;
1842
+ padding: 10px;
1843
+ }
1844
+
1845
+ .custom_col {
1846
+ row-gap: 15px;
1847
+ display: flex;
1848
+ flex-direction: column;
1849
+ font-size: 12px;
1850
+ }
1851
+
1852
+ .MuiTableCell-head {
1853
+ padding: 15px 10px !important;
1854
+ }
1855
+
1856
+ .MuiTablePagination-selectLabel {
1857
+ margin-bottom: 0px;
1858
+ color: rgba(0, 0, 0, 0.54) !important;
1859
+ font-size: 13px !important;
1860
+
1861
+ font-weight: normal !important;
1862
+ font-family: 'Gilroy' !important;
1863
+
1864
+ }
1865
+ .css-lm78jv{
1866
+ color: rgba(0, 0, 0, 0.54) !important;
1867
+ font-size: 13px !important;
1868
+ }
1869
+ .css-c8mw91 {
1870
+
1871
+ color: rgba(0, 0, 0, 0.54) !important;
1872
+ font-size: 13px !important;
1873
+
1874
+ }
1875
+
1876
+ .updateexam_admin {
1877
+
1878
+ margin-top: 0px !important;
1879
+
1880
+ }
1881
+
1882
+ .btn_primary {
1883
+ display: flex;
1884
+ min-width: 130px;
1885
+ padding: 5px 20px;
1886
+ justify-content: center;
1887
+ align-items: center;
1888
+ gap: 10px;
1889
+ border-radius: 4px;
1890
+ border: 0px;
1891
+ font-size: 14px;
1892
+ font-weight: 300;
1893
+ border: 1px solid var(--primary-color);
1894
+ letter-spacing: 0.03rem;
1895
+ }
1896
+
1897
+ .btn_secondary {
1898
+ display: flex;
1899
+ min-width: 130px;
1900
+ padding: 5px 20px;
1901
+ justify-content: center;
1902
+ align-items: center;
1903
+ gap: 10px;
1904
+ border-radius: 4px;
1905
+ border: 0px;
1906
+ font-size: 14px;
1907
+ font-weight: 300;
1908
+ letter-spacing: 0.03rem;
1909
+ color: var(--primary-color);
1910
+ background-color: white;
1911
+ border: 1px solid var(--primary-color);
1912
+ }
1913
+
1914
+ .page_name_icon {
1915
+ box-shadow: 4px 4px 32px 1px #0000001A;
1916
+ width: 35px;
1917
+ height: 35px;
1918
+ padding: 7px;
1919
+ border-radius: 34px;
1920
+ background: #FFFFFF;
1921
+ color: #7684A0;
1922
+ }
1923
+
1924
+ .head_text {
1925
+ color: var(--secondary-color);
1926
+ font-size: 20px;
1927
+ font-weight: bold;
1928
+ line-height: 23px;
1929
+ letter-spacing: 0em;
1930
+ text-align: left;
1931
+ color: var(--secondary-color);
1932
+ font-weight: bold;
1933
+ }
1934
+
1935
+ :where(.css-dev-only-do-not-override-1rqnfsa).ant-drawer {
1936
+ z-index: 1010;
1937
+ }
1938
+
1939
+ .head_whole_container {
1940
+ display: flex;
1941
+ align-items: center;
1942
+ background: white;
1943
+ padding: 10px;
1944
+ border-radius: 8px;
1945
+ }
1946
+
1947
+ .head_whole_container .breadcrumbs-txt {
1948
+ color: initial;
1949
+ }
1950
+
1951
+ .head_whole_container .page_name_icon {
1952
+ color: initial;
1953
+ box-shadow: unset;
1954
+ }
1955
+
1956
+ .head_whole_container .head_text_container {
1957
+ padding-left: 0px;
1958
+ }
1959
+ .css-1nmdiq5-menu div {
1960
+ word-break: break-all;
1961
+ }
1962
+ .css-v4u5dn-MuiInputBase-root-MuiInput-root:before {
1963
+ border-bottom: none !important
1964
+ }
1965
+ .css-v4u5dn-MuiInputBase-root-MuiInput-root:after {
1966
+ border-bottom: none !important
1967
+ }
1968
+ .css-ittuaa-MuiInputAdornment-root {
1969
+ color: gray;
1970
+
1971
+ }
1972
+ .css-v4u5dn-MuiInputBase-root-MuiInput-root{
1973
+ border: 1px solid var(--input-text-color);
1974
+ width: 200px;
1975
+ height: 40px;
1976
+ flex-shrink: 0;
1977
+ border-radius: 8px;
1978
+ box-shadow: unset;
1979
+ padding: 0;
1980
+ padding-left: 10px;
1981
+ font-size: 13px;
1982
+ }
1983
+ tr {
1984
+ border-bottom: 1px solid var(--datatable-border-color) !important;
1985
+
1986
+ }
1987
+ thead{
1988
+ border-bottom: 1px solid var(--datatable-border-color) !important;
1989
+ border-top: 1px solid var(--datatable-border-color) !important;
1990
+ }
1991
+ .css-1ex1afd-MuiTableCell-root {
1992
+ border-bottom: none !important;
1993
+ font-size: 14px !important;
1994
+ padding: 15px 10px !important;
1995
+ }
1996
+ .css-1g1pyhz-MuiTableCell-root{
1997
+ border-bottom: none !important;
1998
+ font-size: 14px !important;
1999
+ font-weight: bold !important;
2000
+ }
2001
+ .css-ptiqhd-MuiSvgIcon-root{
2002
+ color: var(--input-text-color) !important;
2003
+ cursor: pointer;
2004
+ width: 0.8em !important;
2005
+ /* height: calc(100% - 2px);
2006
+ padding: 0 11px;
2007
+ background: var(--bg-white-color);
2008
+ width: 34px;
2009
+ border-radius: 8px 0 0 8px;
2010
+ transform: unset; */
2011
+
2012
+ }
2013
+ .css-29rnav-MuiTableCell-root-MuiTablePagination-root{
2014
+ border-bottom: none !important;
2015
+ }
2016
+ .css-1x51dt5-MuiInputBase-input-MuiInput-input{
2017
+ font-size: 0.8em !important;
2018
+ color: var(--input-text-color) !important;
2019
+ }
2020
+ .css-ig9rso-MuiToolbar-root{
2021
+ padding: 20px 20px !important;
2022
+ }
2023
+ .css-28z0on-MuiFormControl-root-MuiTextField-root{
2024
+ padding: 0px !important;
2025
+ }
2026
+