Marthee commited on
Commit
14dedd2
·
verified ·
1 Parent(s): a224a68

Upload popups.css

Browse files
Files changed (1) hide show
  1. static/popups.css +497 -458
static/popups.css CHANGED
@@ -1,459 +1,498 @@
1
- .mpopuppassword {
2
- display: none; /* Ensure popup is hidden by default */
3
- position: fixed;
4
- top: 0;
5
- left: 0;
6
- width: 100%;
7
- height: 100%;
8
- background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
9
- backdrop-filter: blur(10px); /* Apply blur effect to the background */
10
- -webkit-backdrop-filter: blur(5px); /* For Safari support */
11
- justify-content: center;
12
- align-items: center;
13
- }
14
- /* Styling for the error message */
15
- .error-message {
16
- display: none;
17
- background-color: #f44336;
18
- color: white;
19
- padding: 10px;
20
- margin-top: 10px;
21
- text-align: center;
22
- border-radius: 5px;
23
- }
24
- #submitBtn{
25
- background-color: #16c72e;
26
- border: none;
27
- padding: 10px 30px; /*102*/
28
- cursor: pointer;
29
- border-radius: 5px;
30
- margin-left: 3px;
31
- font-family: "acumin-pro", sans-serif;
32
- font-weight: bold;
33
- font-style: normal;
34
- font-size: 14px;
35
- color:white;
36
- float : right;
37
- display:inline-block;
38
- }
39
- .modal-contentpassword {
40
- background: white;
41
- padding: 20px;
42
- border-radius: 8px;
43
- }
44
-
45
- /* Modal Overlay */
46
- .mpopup, .overlay , .dropdown-content{
47
- display: none;
48
- position: absolute;
49
- z-index: 100;
50
- padding-top: 100px;
51
- left: 0;
52
- top: 0;
53
- width: 100%;
54
- height: 100%;
55
- overflow: auto;
56
- background-color: rgba(0, 0, 0, 0.4);
57
- }
58
-
59
- /* Modal Content */
60
- .modal-content, .popup ,#userguidetext{
61
- position: fixed;
62
- background-color: #fff;
63
- margin: auto;
64
- padding: 0;
65
- overflow: visible;
66
- display: block;
67
- box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
68
- animation: animatetop 0.4s;
69
- border-radius: 0.3rem;
70
- }
71
- .modal-content {
72
- -webkit-animation-name: zoom;
73
- -webkit-animation-duration: 0.6s;
74
- animation-name: zoom;
75
- animation-duration: 0.6s;
76
- }
77
-
78
- /* 100% Image Width on Smaller Screens */
79
- @media only screen and (max-width: 700px){
80
- .modal-content {
81
- width: 100%;
82
- }
83
- }
84
-
85
- .modal-content {
86
- margin: auto;
87
- display: block;
88
- width: 490px;
89
- margin-left:400px;
90
- margin-top:50px;
91
- /* max-width: 560px; */
92
- overflow-x: visible;
93
- }
94
-
95
- #userguideHome{
96
- color:white;
97
- margin-top:10px;
98
- font-size: 1.7em;
99
- margin-left:5px;
100
- }
101
- #userguideTableMaya{
102
- float:right;
103
- color:white;
104
- margin-top:8px;
105
- margin-right:5px;
106
- font-size: 1.25em;
107
- }
108
- #userguideHome:hover,#userguideTableMaya:hover,.Userguidecontainer:hover{
109
- cursor:pointer;
110
- color:#302f2f;
111
- }
112
- #userguidetext{
113
- width:97%;
114
- height:88%;
115
- margin-top:-40px;
116
- margin-left: 25px;
117
- margin-right: 25px;
118
- overflow-y:auto;
119
- font-family: "acumin-pro", sans-serif;
120
- font-weight: 400;
121
- font-style: normal;
122
- position:fixed;
123
- }
124
-
125
- #textfirstpage, .othesectionsuserguide{
126
- margin-left: 20px;
127
- margin-right: 20px;
128
- margin-top: 50px;
129
- margin-bottom:20px;
130
- font-size: 15px;
131
-
132
- }
133
- #userguideheadings{
134
- font-size: 14px;
135
- font-weight: bold;
136
- }
137
- #underlinedLables{
138
- text-decoration: underline;
139
- }
140
-
141
- /* Style the entire scrollbar */
142
- #userguidetext::-webkit-scrollbar, #UserGuideSideBar::-webkit-scrollbar{
143
- width: 8px; /* Width of the scrollbar */
144
- height: 8px; /* Height of the scrollbar (if horizontal) */
145
- }
146
-
147
- /* Style the thumb (the draggable part) */
148
- #userguidetext::-webkit-scrollbar-thumb , #UserGuideSideBar::-webkit-scrollbar-thumb{
149
- background-color: #888; /* Color of the thumb */
150
- border: 2px solid #fff; /* Optional: Adds a border around the thumb */
151
- }
152
- /* Hover effect for the thumb */
153
- #userguidetext::-webkit-scrollbar-thumb:hover , #UserGuideSideBar::-webkit-scrollbar-thumb:hover {
154
- background-color: #2d2d2d; /* Darker color when hovering over the thumb */
155
- }
156
-
157
- /* Style the track (the area the thumb moves within) */
158
- #userguidetext::-webkit-scrollbar-track , #UserGuideSideBar::-webkit-scrollbar-track{
159
- background: #eee; /* Light gray background for the track */
160
- border-radius: 15px; /* Rounded corners for the track */
161
- }
162
-
163
-
164
-
165
-
166
-
167
- .Userguidecontainer {
168
- /* display: inline-block; */
169
- cursor: pointer;
170
- margin-top: 2px;
171
- margin-bottom:2px;
172
- display: block;
173
- float: left;
174
- margin-right: 5px;
175
-
176
- }
177
-
178
- .UserGuidebar1, .UserGuidebar2, .UserGuidebar3 {
179
- width: 30px;
180
- height: 5px;
181
- background-color: #ffffff;
182
- margin: 5px 0;
183
- transition: 0.4s;
184
- margin-left: 5px;
185
-
186
- }
187
-
188
-
189
-
190
- .change .UserGuidebar1 {
191
- transform: translate(0, 10px) rotate(-45deg);
192
- }
193
-
194
- .change .UserGuidebar2 {opacity: 0;}
195
-
196
- .change .UserGuidebar3 {
197
- transform: translate(0, -10px) rotate(45deg);
198
- }
199
-
200
- #UserGuidemenuOptions{
201
- margin-left: 5px;
202
- font-size: 18px;
203
- margin-top: 8px;
204
- color: white;
205
- font-family: "acumin-pro", sans-serif;
206
- font-weight: 400;
207
-
208
- font-style: normal;
209
- text-decoration: none;
210
- }
211
-
212
- #UserGuidemenuOptions li:hover{
213
- color: #100f0f;
214
- cursor:pointer;
215
-
216
- }
217
- #UserGuideSideBar{
218
-
219
- position: fixed;
220
-
221
- height:82.6%;
222
-
223
- margin-top: 11px;
224
-
225
- background:rgb(179, 179, 179);
226
-
227
- transform: translateX(-100%);
228
-
229
- -webkit-transform: translateX(-100%);
230
-
231
- z-index: 2;
232
-
233
- overflow-y:auto
234
- }
235
-
236
- #UserguideRibbon{
237
- position: fixed;
238
- background-color: #ee6464;
239
- width:97%;
240
- }
241
-
242
- #UserGuideHeader{
243
-
244
- font-size: 18px;
245
- color:white;
246
-
247
- font-family: "acumin-pro", sans-serif;
248
- margin-top:4px;
249
- margin-left:35px;
250
- position:absolute;
251
- }
252
-
253
- .UserGuideslide-in {
254
- animation: slide-in 0.9s forwards;
255
- -webkit-animation: slide-in 0.9s forwards;
256
- }
257
-
258
- .UserGuideslide-out {
259
- animation: UserGuideslide-out 0.9s forwards;
260
- -webkit-animation: UserGuideslide-out 0.9s forwards;
261
- }
262
-
263
- @keyframes UserGuideslide-in {
264
- 100% { transform: translateX(0%); }
265
- }
266
-
267
- @-webkit-keyframes UserGuideslide-in {
268
- 100% { -webkit-transform: translateX(0%); }
269
- }
270
-
271
- @keyframes UserGuideslide-out {
272
- 0% { transform: translateX(0%); }
273
- 100% { transform: translateX(-100%); }
274
- }
275
-
276
- @-webkit-keyframes UserGuideslide-out {
277
- 0% { -webkit-transform: translateX(0%); }
278
- 100% { -webkit-transform: translateX(-100%); }
279
- }
280
- .fa fa-circle-o{
281
- margin-left:20px;
282
- }
283
- /* Modal Header */
284
- .modal-header ,.errorModal-header{
285
- padding: 2px 15px;
286
- background-color: #ffffff;
287
- color: #333;
288
- border-bottom: 1px solid #e9ecef;
289
- border-top-left-radius: 0.3rem;
290
- border-top-right-radius: 0.3rem;
291
- cursor: move;
292
- cursor: grab;
293
-
294
-
295
- &:active {
296
- cursor: grabbing;
297
- }
298
- }
299
-
300
-
301
- .modal-header h2 , .errorModal-header h2 {
302
- font-size: 17px;
303
- font-family: "acumin-pro", sans-serif;
304
- margin: 14px 0;
305
- color: maroon;
306
- }
307
-
308
- /* Modal Body */
309
- .modal-body {
310
- padding: 2px 15px;
311
- overflow: visible; /* Ensure tooltip is not clipped */
312
- }
313
-
314
-
315
- #modal-bodyText ,#enterPText{
316
- font-family: "acumin-pro", sans-serif;
317
- font-weight: 400;
318
- font-style: normal;
319
- font-size: 16px;
320
-
321
- white-space: pre-line;
322
-
323
- }
324
-
325
- .close {
326
- color: #888;
327
- float: right;
328
- font-size: 28px;
329
- font-weight: bold;
330
- }
331
- .close:hover, .close:focus {
332
- color: maroon;
333
- text-decoration: none;
334
- cursor: pointer;
335
- }
336
-
337
- /* add animation effects */
338
- @-webkit-keyframes animatetop {
339
- from {top:-300px; opacity:0}
340
- to {top:0; opacity:1}
341
- }
342
-
343
- @keyframes animatetop {
344
- from {top:-300px; opacity:0}
345
- to {top:0; opacity:1}
346
- }
347
-
348
- .closeModal {
349
- /* color: #aaa; */
350
- float: right;
351
- margin-top:3px;
352
- margin-right:7px;
353
- font-size: 28px;
354
- font-weight: bold;
355
- background: none;
356
- border: none;
357
- }
358
-
359
- .closeModal:hover,
360
- .closeModal:focus {
361
- color:rgb(134, 28, 28);
362
- text-decoration: none;
363
- cursor: pointer;
364
-
365
- }
366
- #passwordField{
367
- font-size: 12px;
368
- width: 310px;
369
- height: 33px;
370
- border-radius: 1px;
371
- border-color:#646060;
372
- margin-bottom: 3px;
373
- margin-right: 0.2%;
374
- font-family: "acumin-pro", sans-serif;
375
- font-weight: 400;
376
- font-style: normal;
377
- }
378
- .text-right{
379
- text-align: right;
380
- float: right;
381
- margin-top: -14px;
382
- margin-right: 27px;
383
- }
384
- .dialog-btn#confirm{
385
- background-color:#098815;
386
- }
387
- .dialog-btn#cancel{
388
- background-color:#880909;
389
- }
390
- .dialog-btn {
391
- color: white;
392
- font-weight: 600;
393
- font-size: 12px;
394
- border: none;
395
- border-radius: 5px;
396
- height: 30px;
397
- width: 50px;
398
- }
399
-
400
- .dialog-btn#confirm:hover{
401
- box-shadow: 0 0 8px 2px #098815;
402
- color:black;
403
- cursor: pointer;
404
- }
405
- .dialog-btn#cancel:hover{
406
- box-shadow: 0 0 8px 2px #880909;
407
- color:black;
408
- cursor: pointer;
409
- }
410
-
411
-
412
- /* Custom style for all <ul> elements with class="custom-ul" */
413
- .custom-ul {
414
- padding-left: 20px; /* Indent from the left */
415
- margin-bottom: 10px;
416
- }
417
-
418
- .custom-ul li {
419
- margin: 6px 0; /* Spacing between list items */
420
- line-height: 1.5;
421
- font-size: 15px;
422
- color: #333; /* Dark gray text */
423
- }
424
-
425
- /* Optional: add a subtle bullet style */
426
- .custom-ul li::marker {
427
- color: #555; /* Bullet color */
428
- font-size: 14px;
429
- }
430
-
431
-
432
- /* The Modal (background) */
433
- .ErrorModalClass {
434
- display: none; /* Hidden by default */
435
- position: fixed; /* Stay in place */
436
- z-index: 1; /* Sit on top */
437
- padding-top: 150px; /* Location of the box */
438
- left: 0;
439
- top: 0;
440
- width: 100%; /* Full width */
441
- height: 100%; /* Full height */
442
- overflow: auto; /* Enable scroll if needed */
443
- background-color: rgb(0,0,0); /* Fallback color */
444
- background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
445
- }
446
-
447
- /* Modal Content */
448
- .Errormodal-content{
449
- background-color: #fefefe;
450
- margin: auto;
451
- padding: 20px;
452
- border: 1px solid #888;
453
- width: 30%;
454
- }
455
- #errorTextContent{
456
- font-family: "acumin-pro", sans-serif;
457
- font-style: normal;
458
- font-size: 16px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  }
 
1
+ .mpopuppassword {
2
+ display: none; /* Ensure popup is hidden by default */
3
+ position: fixed;
4
+ top: 0;
5
+ left: 0;
6
+ width: 100%;
7
+ height: 100%;
8
+ background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
9
+ backdrop-filter: blur(10px); /* Apply blur effect to the background */
10
+ -webkit-backdrop-filter: blur(5px); /* For Safari support */
11
+ justify-content: center;
12
+ align-items: center;
13
+ }
14
+ /* Styling for the error message */
15
+ .error-message {
16
+ display: none;
17
+ background-color: #f44336;
18
+ color: white;
19
+ padding: 10px;
20
+ margin-top: 10px;
21
+ text-align: center;
22
+ border-radius: 5px;
23
+ }
24
+ #submitBtn{
25
+ background-color: #16c72e;
26
+ border: none;
27
+ padding: 10px 30px; /*102*/
28
+ cursor: pointer;
29
+ border-radius: 5px;
30
+ margin-left: 3px;
31
+ font-family: "acumin-pro", sans-serif;
32
+ font-weight: bold;
33
+ font-style: normal;
34
+ font-size: 14px;
35
+ color:white;
36
+ float : right;
37
+ display:inline-block;
38
+ }
39
+ .modal-contentpassword {
40
+ background: white;
41
+ padding: 20px;
42
+ border-radius: 8px;
43
+ }
44
+
45
+ /* Modal Overlay */
46
+ .mpopup, .overlay , .dropdown-content{
47
+ display: none;
48
+ position: absolute;
49
+ z-index: 100;
50
+ padding-top: 100px;
51
+ left: 0;
52
+ top: 0;
53
+ width: 100%;
54
+ height: 100%;
55
+ overflow: auto;
56
+ background-color: rgba(0, 0, 0, 0.4);
57
+ }
58
+
59
+ .Lpopup{
60
+ display: none;
61
+ position: absolute;
62
+ z-index: 100;
63
+ padding-top: 100px;
64
+ left: 0;
65
+ top: 0;
66
+ width: 100%;
67
+ height: 100%;
68
+ overflow: auto;
69
+ background-color: rgba(0, 0, 0, 0.4);
70
+ }
71
+
72
+ .modal-footerLegend {
73
+ display: flex;
74
+ justify-content: flex-end;
75
+ gap: 10px;
76
+ padding: 12px;
77
+ border-top: 1px solid #ccc;
78
+ margin-top: 10px;
79
+ }
80
+
81
+ .legend-btn {
82
+ padding: 6px 14px;
83
+ border-radius: 4px;
84
+ cursor: pointer;
85
+ border: none;
86
+ font-size: 14px;
87
+ }
88
+
89
+ .cancel-btn {
90
+ background: #ccc;
91
+ }
92
+
93
+ .submit-btn {
94
+ background: #4CAF50;
95
+ color: white;
96
+ }
97
+
98
+ /* Modal Content */
99
+ .modal-content, .popup ,#userguidetext{
100
+ position: fixed;
101
+ background-color: #fff;
102
+ margin: auto;
103
+ padding: 0;
104
+ overflow: visible;
105
+ display: block;
106
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
107
+ animation: animatetop 0.4s;
108
+ border-radius: 0.3rem;
109
+ }
110
+ .modal-content {
111
+ -webkit-animation-name: zoom;
112
+ -webkit-animation-duration: 0.6s;
113
+ animation-name: zoom;
114
+ animation-duration: 0.6s;
115
+ }
116
+
117
+ /* 100% Image Width on Smaller Screens */
118
+ @media only screen and (max-width: 700px){
119
+ .modal-content {
120
+ width: 100%;
121
+ }
122
+ }
123
+
124
+ .modal-content {
125
+ margin: auto;
126
+ display: block;
127
+ width: 490px;
128
+ margin-left:400px;
129
+ margin-top:50px;
130
+ /* max-width: 560px; */
131
+ overflow-x: visible;
132
+ }
133
+
134
+ #userguideHome{
135
+ color:white;
136
+ margin-top:10px;
137
+ font-size: 1.7em;
138
+ margin-left:5px;
139
+ }
140
+ #userguideTableMaya{
141
+ float:right;
142
+ color:white;
143
+ margin-top:8px;
144
+ margin-right:5px;
145
+ font-size: 1.25em;
146
+ }
147
+ #userguideHome:hover,#userguideTableMaya:hover,.Userguidecontainer:hover{
148
+ cursor:pointer;
149
+ color:#302f2f;
150
+ }
151
+ #userguidetext{
152
+ width:97%;
153
+ height:88%;
154
+ margin-top:-40px;
155
+ margin-left: 25px;
156
+ margin-right: 25px;
157
+ overflow-y:auto;
158
+ font-family: "acumin-pro", sans-serif;
159
+ font-weight: 400;
160
+ font-style: normal;
161
+ position:fixed;
162
+ }
163
+
164
+ #textfirstpage, .othesectionsuserguide{
165
+ margin-left: 20px;
166
+ margin-right: 20px;
167
+ margin-top: 50px;
168
+ margin-bottom:20px;
169
+ font-size: 15px;
170
+
171
+ }
172
+ #userguideheadings{
173
+ font-size: 14px;
174
+ font-weight: bold;
175
+ }
176
+ #underlinedLables{
177
+ text-decoration: underline;
178
+ }
179
+
180
+ /* Style the entire scrollbar */
181
+ #userguidetext::-webkit-scrollbar, #UserGuideSideBar::-webkit-scrollbar{
182
+ width: 8px; /* Width of the scrollbar */
183
+ height: 8px; /* Height of the scrollbar (if horizontal) */
184
+ }
185
+
186
+ /* Style the thumb (the draggable part) */
187
+ #userguidetext::-webkit-scrollbar-thumb , #UserGuideSideBar::-webkit-scrollbar-thumb{
188
+ background-color: #888; /* Color of the thumb */
189
+ border: 2px solid #fff; /* Optional: Adds a border around the thumb */
190
+ }
191
+ /* Hover effect for the thumb */
192
+ #userguidetext::-webkit-scrollbar-thumb:hover , #UserGuideSideBar::-webkit-scrollbar-thumb:hover {
193
+ background-color: #2d2d2d; /* Darker color when hovering over the thumb */
194
+ }
195
+
196
+ /* Style the track (the area the thumb moves within) */
197
+ #userguidetext::-webkit-scrollbar-track , #UserGuideSideBar::-webkit-scrollbar-track{
198
+ background: #eee; /* Light gray background for the track */
199
+ border-radius: 15px; /* Rounded corners for the track */
200
+ }
201
+
202
+
203
+
204
+
205
+
206
+ .Userguidecontainer {
207
+ /* display: inline-block; */
208
+ cursor: pointer;
209
+ margin-top: 2px;
210
+ margin-bottom:2px;
211
+ display: block;
212
+ float: left;
213
+ margin-right: 5px;
214
+
215
+ }
216
+
217
+ .UserGuidebar1, .UserGuidebar2, .UserGuidebar3 {
218
+ width: 30px;
219
+ height: 5px;
220
+ background-color: #ffffff;
221
+ margin: 5px 0;
222
+ transition: 0.4s;
223
+ margin-left: 5px;
224
+
225
+ }
226
+
227
+
228
+
229
+ .change .UserGuidebar1 {
230
+ transform: translate(0, 10px) rotate(-45deg);
231
+ }
232
+
233
+ .change .UserGuidebar2 {opacity: 0;}
234
+
235
+ .change .UserGuidebar3 {
236
+ transform: translate(0, -10px) rotate(45deg);
237
+ }
238
+
239
+ #UserGuidemenuOptions{
240
+ margin-left: 5px;
241
+ font-size: 18px;
242
+ margin-top: 8px;
243
+ color: white;
244
+ font-family: "acumin-pro", sans-serif;
245
+ font-weight: 400;
246
+
247
+ font-style: normal;
248
+ text-decoration: none;
249
+ }
250
+
251
+ #UserGuidemenuOptions li:hover{
252
+ color: #100f0f;
253
+ cursor:pointer;
254
+
255
+ }
256
+ #UserGuideSideBar{
257
+
258
+ position: fixed;
259
+
260
+ height:82.6%;
261
+
262
+ margin-top: 11px;
263
+
264
+ background:rgb(179, 179, 179);
265
+
266
+ transform: translateX(-100%);
267
+
268
+ -webkit-transform: translateX(-100%);
269
+
270
+ z-index: 2;
271
+
272
+ overflow-y:auto
273
+ }
274
+
275
+ #UserguideRibbon{
276
+ position: fixed;
277
+ background-color: #ee6464;
278
+ width:97%;
279
+ }
280
+
281
+ #UserGuideHeader{
282
+
283
+ font-size: 18px;
284
+ color:white;
285
+
286
+ font-family: "acumin-pro", sans-serif;
287
+ margin-top:4px;
288
+ margin-left:35px;
289
+ position:absolute;
290
+ }
291
+
292
+ .UserGuideslide-in {
293
+ animation: slide-in 0.9s forwards;
294
+ -webkit-animation: slide-in 0.9s forwards;
295
+ }
296
+
297
+ .UserGuideslide-out {
298
+ animation: UserGuideslide-out 0.9s forwards;
299
+ -webkit-animation: UserGuideslide-out 0.9s forwards;
300
+ }
301
+
302
+ @keyframes UserGuideslide-in {
303
+ 100% { transform: translateX(0%); }
304
+ }
305
+
306
+ @-webkit-keyframes UserGuideslide-in {
307
+ 100% { -webkit-transform: translateX(0%); }
308
+ }
309
+
310
+ @keyframes UserGuideslide-out {
311
+ 0% { transform: translateX(0%); }
312
+ 100% { transform: translateX(-100%); }
313
+ }
314
+
315
+ @-webkit-keyframes UserGuideslide-out {
316
+ 0% { -webkit-transform: translateX(0%); }
317
+ 100% { -webkit-transform: translateX(-100%); }
318
+ }
319
+ .fa fa-circle-o{
320
+ margin-left:20px;
321
+ }
322
+ /* Modal Header */
323
+ .modal-header ,.errorModal-header{
324
+ padding: 2px 15px;
325
+ background-color: #ffffff;
326
+ color: #333;
327
+ border-bottom: 1px solid #e9ecef;
328
+ border-top-left-radius: 0.3rem;
329
+ border-top-right-radius: 0.3rem;
330
+ cursor: move;
331
+ cursor: grab;
332
+
333
+
334
+ &:active {
335
+ cursor: grabbing;
336
+ }
337
+ }
338
+
339
+
340
+ .modal-header h2 , .errorModal-header h2 {
341
+ font-size: 17px;
342
+ font-family: "acumin-pro", sans-serif;
343
+ margin: 14px 0;
344
+ color: maroon;
345
+ }
346
+
347
+ /* Modal Body */
348
+ .modal-body {
349
+ padding: 2px 15px;
350
+ overflow: visible; /* Ensure tooltip is not clipped */
351
+ }
352
+
353
+
354
+ #modal-bodyText ,#enterPText{
355
+ font-family: "acumin-pro", sans-serif;
356
+ font-weight: 400;
357
+ font-style: normal;
358
+ font-size: 16px;
359
+
360
+ white-space: pre-line;
361
+
362
+ }
363
+
364
+ .close {
365
+ color: #888;
366
+ float: right;
367
+ font-size: 28px;
368
+ font-weight: bold;
369
+ }
370
+ .close:hover, .close:focus {
371
+ color: maroon;
372
+ text-decoration: none;
373
+ cursor: pointer;
374
+ }
375
+
376
+ /* add animation effects */
377
+ @-webkit-keyframes animatetop {
378
+ from {top:-300px; opacity:0}
379
+ to {top:0; opacity:1}
380
+ }
381
+
382
+ @keyframes animatetop {
383
+ from {top:-300px; opacity:0}
384
+ to {top:0; opacity:1}
385
+ }
386
+
387
+ .closeModal {
388
+ /* color: #aaa; */
389
+ float: right;
390
+ margin-top:3px;
391
+ margin-right:7px;
392
+ font-size: 28px;
393
+ font-weight: bold;
394
+ background: none;
395
+ border: none;
396
+ }
397
+
398
+ .closeModal:hover,
399
+ .closeModal:focus {
400
+ color:rgb(134, 28, 28);
401
+ text-decoration: none;
402
+ cursor: pointer;
403
+
404
+ }
405
+ #passwordField{
406
+ font-size: 12px;
407
+ width: 310px;
408
+ height: 33px;
409
+ border-radius: 1px;
410
+ border-color:#646060;
411
+ margin-bottom: 3px;
412
+ margin-right: 0.2%;
413
+ font-family: "acumin-pro", sans-serif;
414
+ font-weight: 400;
415
+ font-style: normal;
416
+ }
417
+ .text-right{
418
+ text-align: right;
419
+ float: right;
420
+ margin-top: -14px;
421
+ margin-right: 27px;
422
+ }
423
+ .dialog-btn#confirm{
424
+ background-color:#098815;
425
+ }
426
+ .dialog-btn#cancel{
427
+ background-color:#880909;
428
+ }
429
+ .dialog-btn {
430
+ color: white;
431
+ font-weight: 600;
432
+ font-size: 12px;
433
+ border: none;
434
+ border-radius: 5px;
435
+ height: 30px;
436
+ width: 50px;
437
+ }
438
+
439
+ .dialog-btn#confirm:hover{
440
+ box-shadow: 0 0 8px 2px #098815;
441
+ color:black;
442
+ cursor: pointer;
443
+ }
444
+ .dialog-btn#cancel:hover{
445
+ box-shadow: 0 0 8px 2px #880909;
446
+ color:black;
447
+ cursor: pointer;
448
+ }
449
+
450
+
451
+ /* Custom style for all <ul> elements with class="custom-ul" */
452
+ .custom-ul {
453
+ padding-left: 20px; /* Indent from the left */
454
+ margin-bottom: 10px;
455
+ }
456
+
457
+ .custom-ul li {
458
+ margin: 6px 0; /* Spacing between list items */
459
+ line-height: 1.5;
460
+ font-size: 15px;
461
+ color: #333; /* Dark gray text */
462
+ }
463
+
464
+ /* Optional: add a subtle bullet style */
465
+ .custom-ul li::marker {
466
+ color: #555; /* Bullet color */
467
+ font-size: 14px;
468
+ }
469
+
470
+
471
+ /* The Modal (background) */
472
+ .ErrorModalClass {
473
+ display: none; /* Hidden by default */
474
+ position: fixed; /* Stay in place */
475
+ z-index: 1; /* Sit on top */
476
+ padding-top: 150px; /* Location of the box */
477
+ left: 0;
478
+ top: 0;
479
+ width: 100%; /* Full width */
480
+ height: 100%; /* Full height */
481
+ overflow: auto; /* Enable scroll if needed */
482
+ background-color: rgb(0,0,0); /* Fallback color */
483
+ background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
484
+ }
485
+
486
+ /* Modal Content */
487
+ .Errormodal-content{
488
+ background-color: #fefefe;
489
+ margin: auto;
490
+ padding: 20px;
491
+ border: 1px solid #888;
492
+ width: 30%;
493
+ }
494
+ #errorTextContent{
495
+ font-family: "acumin-pro", sans-serif;
496
+ font-style: normal;
497
+ font-size: 16px;
498
  }