@pmidc/upyog-css 1.2.36-dev.1.3 → 1.2.36-dev.1.30

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.
@@ -22,9 +22,10 @@
22
22
 
23
23
  .center-flex-mobile {
24
24
  display: flex;
25
+ flex-direction: row;
25
26
  justify-content: center;
26
- width: 80%;
27
27
  margin-bottom: 10px;
28
+ width: 50%
28
29
  }
29
30
 
30
31
  .video-preview {
@@ -50,12 +51,11 @@
50
51
 
51
52
  /* Button */
52
53
  .upload-file-button {
53
- position: absolute;
54
- opacity: 0;
55
- height: 40px;
56
- width: 175px;
57
- top: 10px;
58
- left: 15px;
54
+ height: auto;
55
+ min-height: 40px;
56
+ max-height: 40px;
57
+ width: 175px;
58
+ padding: 0;
59
59
  }
60
60
 
61
61
  /* Hide elements */
@@ -79,11 +79,13 @@
79
79
 
80
80
  /* File input */
81
81
  .upload-file-input {
82
- width: 43%;
83
- min-height: 42px;
84
- max-height: 42px;
85
- top: 5px;
86
- left: 5px;
82
+ @apply absolute opacity-0;
83
+ width: 175px;
84
+ max-width: 90%;
85
+ min-height: 50px;
86
+ max-height: 50px;
87
+ top: 10px;
88
+ left: 15px;
87
89
  }
88
90
 
89
91
  /* Error text */
@@ -91,6 +93,19 @@
91
93
  color: red;
92
94
  }
93
95
 
96
+ .close-btn {
97
+ padding: 5px 10px;
98
+ &:hover {
99
+ transform: translateY(-2px) !important;
100
+ box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
101
+ }
102
+ }
103
+
104
+ .upload-file-message {
105
+ padding: 15px 0px;
106
+ font-size: 14px;
107
+ }
108
+
94
109
  .advisory-text {
95
110
  font-size: 13px;
96
111
  color: red;
@@ -113,9 +128,5130 @@
113
128
 
114
129
  }
115
130
 
131
+ .inbox-name {
132
+ display: inline;
133
+ padding-left: 30px;
134
+ }
135
+ .back-button-container {
136
+ cursor: pointer;
137
+ width: fit-content;
138
+ display: flex;
139
+ font-family: 'Roboto Condensed', sans-serif;
140
+ color: rgba(13, 67, 167, var(--text-opacity));
141
+ font-size: 16px;
142
+ line-height: 24px;
143
+ }
144
+
145
+ .stepper-margin {
146
+ margin-left: 30px;
147
+ }
148
+
149
+ .document-link-bpa {
150
+ text-decoration: none;
151
+ cursor: pointer;
152
+ transition: transform 0.2s, box-shadow 0.2s;
153
+ width: 250px;
154
+
155
+ &:hover .document-card {
156
+ transform: translateY(-4px);
157
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
158
+ }
159
+ }
160
+
161
+
162
+ .action-bar-wrap-menu {
163
+ box-shadow: rgba(0, 0, 0, 0.16) 0 -2px 8px;
164
+ z-index: 100;
165
+ height: auto;
166
+
167
+ @apply absolute bg-white text-right;
168
+
169
+ top: 100%;
170
+ left: 0;
171
+ width: 100%;
172
+
173
+ div {
174
+ @apply w-full;
175
+ }
176
+
177
+ .menu-wrap-position {
178
+ @apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
179
+
180
+ top: 100%;
181
+ left: 0;
182
+
183
+ box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px,
184
+ rgba(0, 0, 0, 0.12) 0 3px 14px 2px,
185
+ rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
186
+
187
+ width: auto;
188
+ min-width: 200px;
189
+ max-width: calc(100% - 16px);
190
+ padding: 2px;
191
+
192
+ div {
193
+ @apply h-12 pl-sm py-md text-body-l text-text-primary;
194
+
195
+ &:hover {
196
+ @apply bg-grey-mid w-full;
197
+ }
198
+ }
199
+ }
200
+ }
201
+
202
+ .card-dropdown-wrapper {
203
+ position: relative;
204
+ }
205
+
116
206
  /* Mobile */
117
207
  @media (max-width: 768px) {
118
208
  .upload-tag-container {
119
209
  width: 80%;
120
210
  }
121
- }
211
+ }
212
+
213
+ .inbox-name {
214
+ font-size: 32px;
215
+ font-family: "Noto Sans", sans-serif;
216
+ color: black;
217
+ display: inline;
218
+ padding-left: 180px;
219
+ }
220
+
221
+ .custom-loader-overlay {
222
+ position: fixed;
223
+ top: 0;
224
+ left: 0;
225
+ width: 100%;
226
+ height: 100vh;
227
+ display: flex;
228
+ flex-direction: column;
229
+ align-items: center;
230
+ justify-content: center;
231
+ background-color: rgba(255, 255, 255, 0.95);
232
+ z-index: 9999;
233
+ gap: 30px;
234
+ backdrop-filter: blur(15px);
235
+ }
236
+
237
+ .custom-loader-spinner-wrapper {
238
+ width: 130px;
239
+ height: 130px;
240
+ position: relative;
241
+ display: flex;
242
+ align-items: center;
243
+ justify-content: center;
244
+ filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
245
+ }
246
+
247
+ .custom-loader-spinner {
248
+ position: absolute;
249
+ width: 100%;
250
+ height: 100%;
251
+ border: 12px solid #f0f0f0;
252
+ border-top: 12px solid #1a1a1a;
253
+ border-right: 12px solid #1a1a1a;
254
+ border-radius: 50%;
255
+ animation: spin 0.8s linear infinite;
256
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
257
+ }
258
+
259
+ .custom-loader-text {
260
+ font-size: 18px;
261
+ font-weight: 700;
262
+ color: #1a1a1a;
263
+ letter-spacing: 0.5px;
264
+ display: flex;
265
+ align-items: baseline;
266
+ gap: 2px;
267
+ }
268
+
269
+ .custom-loader-dots {
270
+ min-width: 20px;
271
+ display: inline-block;
272
+ }
273
+
274
+ @keyframes spin {
275
+ 0% {
276
+ transform: rotate(0deg);
277
+ }
278
+ 100% {
279
+ transform: rotate(360deg);
280
+ }
281
+ }
282
+
283
+ .view-button {
284
+ width: 80%;
285
+ }
286
+
287
+ .disabled-CustomUpload {
288
+ padding-top: 12px;
289
+ padding-bottom: 12px;
290
+ padding-left: 5px;
291
+ }
292
+
293
+ .rich-textbox-wrapper {
294
+ width: 100%;
295
+ }
296
+
297
+ .rich-textbox-toolbar {
298
+ background: #f7f9fb;
299
+ border: 1px solid #e6edf3;
300
+ padding: 6px;
301
+ border-radius: 6px;
302
+ display: flex;
303
+ align-items: center;
304
+ }
305
+
306
+ .rich-textbox-toolbar button {
307
+ background: transparent;
308
+ border: none;
309
+ padding: 6px 8px;
310
+ margin: 0 2px;
311
+ cursor: pointer;
312
+ border-radius: 4px;
313
+ color: #2f3b45;
314
+ font-weight: 600;
315
+ }
316
+
317
+ .rich-textbox-toolbar button:hover {
318
+ background: rgba(47,59,69,0.06);
319
+ }
320
+
321
+ .rich-textbox-toolbar button:active {
322
+ background: rgba(47,59,69,0.12);
323
+ }
324
+
325
+ .rich-textbox-toolbar button[title="Bold"] {
326
+ width: 32px;
327
+ height: 32px;
328
+ }
329
+
330
+ .rich-textbox-toolbar button[title="Italic"] {
331
+ width: 32px;
332
+ height: 32px;
333
+ }
334
+
335
+ .rich-textbox-toolbar button[title="Underline"] {
336
+ width: 32px;
337
+ height: 32px;
338
+ }
339
+
340
+ .rich-textbox-textarea {
341
+ width: 100%;
342
+ border: 1px solid #e6edf3;
343
+ border-radius: 6px;
344
+ padding: 10px;
345
+ font-size: 14px;
346
+ line-height: 1.4;
347
+ color: #222;
348
+ }
349
+
350
+ .rich-textbox-wrapper .rich-textbox-toolbar div {
351
+ color: #8592a0;
352
+ }
353
+
354
+ .investor-notice-container {
355
+ color: #d32f2f;
356
+ font-family: Roboto, "Helvetica Neue", sans-serif;
357
+ font-size: 15px;
358
+ line-height: 1.6;
359
+ padding: 10px 20px;
360
+ }
361
+
362
+ .investor-notice-container p {
363
+ margin-bottom: 16px;
364
+ }
365
+
366
+ .investor-notice-container .notice-salutation {
367
+ margin-bottom: 20px;
368
+ }
369
+
370
+ .investor-notice-container .notice-list {
371
+ list-style: disc !important;
372
+ padding-left: 20px !important;
373
+ margin: 16px 0 !important;
374
+ }
375
+
376
+ .investor-notice-container .notice-list li {
377
+ display: list-item !important;
378
+ margin-bottom: 8px;
379
+ }
380
+
381
+ .investor-notice-container .notice-link {
382
+ color: #0066cc;
383
+ text-decoration: underline;
384
+ cursor: pointer;
385
+ }
386
+
387
+ .investor-notice-container .notice-link:hover {
388
+ color: #004499;
389
+ }
390
+
391
+ .investor-notice-container .notice-body-link {
392
+ margin-top: -8px;
393
+ margin-bottom: 20px;
394
+ }
395
+
396
+ .investor-notice-container .notice-footer {
397
+ margin-top: 24px;
398
+ line-height: 1.4;
399
+ }
400
+
401
+ /* OBPS active inline style extraction. */
402
+ .obps-components-action-menu--style-1 {
403
+ position: relative;
404
+ display: inline-block;
405
+ }
406
+
407
+ .obps-components-action-menu--style-2 {
408
+ cursor: pointer;
409
+ display: flex;
410
+ align-items: center;
411
+ padding: 4px;
412
+ }
413
+
414
+ .obps-components-bpasite-photographs--style-1 {
415
+ padding: 20px 0px;
416
+ }
417
+
418
+ .obps-components-bpasite-photographs--style-2 {
419
+ display: flex;
420
+ justify-content: space-between;
421
+ margin-top: 10px;
422
+ padding: 0px 20px;
423
+ }
424
+
425
+ .obps-components-bpasite-photographs--style-3 {
426
+ text-align: start;
427
+ }
428
+
429
+ .obps-components-challan-documents--style-1 {
430
+ margin-bottom: 24px;
431
+ }
432
+
433
+ .obps-components-challan-documents--style-2 {
434
+ display: inline;
435
+ }
436
+
437
+ .obps-components-challan-documents--style-3 {
438
+ color: red;
439
+ }
440
+
441
+ .obps-components-custom-owner-image--style-1 {
442
+ display: flex;
443
+ justify-content: flex-end;
444
+ margin-top: 10px;
445
+ padding: 0px 20px;
446
+ }
447
+
448
+ .obps-components-custom-owner-image--style-2 {
449
+ text-align: center;
450
+ }
451
+
452
+ .obps-components-custom-upload-file--style-1 {
453
+ fill: red;
454
+ }
455
+
456
+ .obps-components-employee-module-card--style-1 {
457
+ color: inherit;
458
+ text-decoration: none;
459
+ }
460
+
461
+ .obps-components-layout-site-photographs--style-1 {
462
+ padding: 20px 0px;
463
+ }
464
+
465
+ .obps-components-layout-site-photographs--style-2 {
466
+ display: flex;
467
+ justify-content: space-between;
468
+ margin-top: 10px;
469
+ padding: 0px 20px;
470
+ }
471
+
472
+ .obps-components-layout-site-photographs--style-3 {
473
+ text-align: start;
474
+ }
475
+
476
+ .obps-components-noc-site-photographs--style-1 {
477
+ padding: 20px 0px;
478
+ }
479
+
480
+ .obps-components-noc-site-photographs--style-2 {
481
+ display: flex;
482
+ justify-content: space-between;
483
+ margin-top: 10px;
484
+ padding: 0px 20px;
485
+ }
486
+
487
+ .obps-components-noc-site-photographs--style-3 {
488
+ text-align: start;
489
+ }
490
+
491
+ .obps-components-noc-site-photographs-new--style-1 {
492
+ flex: 1 1 210px;
493
+ max-width: calc(25% - 15px);
494
+ min-width: 0;
495
+ padding: 20px 0px;
496
+ }
497
+
498
+ @media (max-width: 1100px) {
499
+ .obps-components-noc-site-photographs-new--style-1 {
500
+ max-width: calc(33.333% - 14px);
501
+ }
502
+ }
503
+
504
+ @media (max-width: 768px) {
505
+ .obps-components-noc-site-photographs-new--style-1 {
506
+ flex-basis: 100%;
507
+ max-width: 100%;
508
+ }
509
+ }
510
+
511
+ .obps-components-noc-site-photographs-new--style-2 {
512
+ display: flex;
513
+ justify-content: space-between;
514
+ margin-top: 10px;
515
+ padding: 0px 20px;
516
+ }
517
+
518
+ .obps-components-noc-site-photographs-new--style-3 {
519
+ text-align: start;
520
+ }
521
+
522
+ .obps-components-pdf-preview-modal--style-1 {
523
+ height: 80vh;
524
+ width: 100%;
525
+ display: flex;
526
+ flex-direction: column;
527
+ gap: 8px;
528
+ }
529
+
530
+ .obps-components-pdf-preview-modal--style-2 {
531
+ flex: 1;
532
+ border: none;
533
+ width: 100%;
534
+ }
535
+
536
+ .obps-components-zone-update--style-1 {
537
+ margin-bottom: 16px;
538
+ }
539
+
540
+ .obps-components-zone-update--style-2 {
541
+ margin-bottom: 20px;
542
+ }
543
+
544
+ .obps-components-zone-update--style-3 {
545
+ margin-bottom: 20px;
546
+ }
547
+
548
+ .obps-page-components-bpadocument-checklist--style-1 {
549
+ overflow: hidden;
550
+ }
551
+
552
+ .obps-page-components-bpadocument-checklist--style-2 {
553
+ overflow: hidden;
554
+ }
555
+
556
+ .obps-page-components-bpadocuments--style-1 {
557
+ color: #505A5F;
558
+ }
559
+
560
+ .obps-page-components-bpadocuments--style-2 {
561
+ color: #333;
562
+ }
563
+
564
+ .obps-page-components-bpadocuments--style-3 {
565
+ display: flex;
566
+ flex-wrap: wrap;
567
+ gap: 8px;
568
+ align-items: center;
569
+ }
570
+
571
+ .obps-page-components-bpadocuments--style-4 {
572
+ display: flex;
573
+ flex-direction: column;
574
+ align-items: center;
575
+ text-decoration: none;
576
+ margin-right: 10px;
577
+ color: #505A5F;
578
+ }
579
+
580
+ .obps-page-components-bpadocuments--style-5 {
581
+ margin-top: 8px;
582
+ text-align: center;
583
+ font-size: 12px;
584
+ color: #505A5F;
585
+ word-break: break-word;
586
+ }
587
+
588
+ .obps-page-components-bpanew-buildingdetails--style-1 {
589
+ margin-bottom: 15px;
590
+ }
591
+
592
+ .obps-page-components-bpanew-buildingdetails--style-2 {
593
+ padding: 10px;
594
+ font-size: 14px;
595
+ }
596
+
597
+ .obps-page-components-bpanew-buildingdetails--style-3 {
598
+ padding: 10px;
599
+ font-size: 14px;
600
+ }
601
+
602
+ .obps-page-components-bpanew-buildingdetails--style-4 {
603
+ padding: 10px;
604
+ font-size: 14px;
605
+ }
606
+
607
+ .obps-page-components-bpasearch-modal--style-1 {
608
+ color: white;
609
+ width: 100%;
610
+ max-width: 100px;
611
+ }
612
+
613
+ .obps-page-components-bharat-map--style-1 {
614
+ border: none;
615
+ }
616
+
617
+ .obps-page-components-cluapplicant-details--style-1 {
618
+ margin-top: 20px;
619
+ }
620
+
621
+ .obps-page-components-cluapplicant-details--style-2 {
622
+ color: red;
623
+ margin: 10px 0px;
624
+ }
625
+
626
+ .obps-page-components-cluapplicant-details--style-3 {
627
+ border: 1px solid #ddd;
628
+ padding: 16px;
629
+ margin-bottom: 12px;
630
+ }
631
+
632
+ .obps-page-components-cluapplicant-details--style-4 {
633
+ display: flex;
634
+ justify-content: flex-end;
635
+ gap: 8px;
636
+ cursor: pointer;
637
+ }
638
+
639
+ .obps-page-components-cluapplicant-details--style-5 {
640
+ margin-bottom: 20px;
641
+ }
642
+
643
+ .obps-page-components-cluapplicant-details--style-6 {
644
+ color: red;
645
+ margin-bottom: 0;
646
+ }
647
+
648
+ .obps-page-components-cluapplicant-details--style-7 {
649
+ margin-bottom: 20px;
650
+ }
651
+
652
+ .obps-page-components-cluapplicant-details--style-8 {
653
+ display: flex;
654
+ position: relative;
655
+ align-items: center;
656
+ width: 100%;
657
+ }
658
+
659
+ .obps-page-components-cluapplicant-details--style-9 {
660
+ width: 100%;
661
+ padding-right: 40px;
662
+ }
663
+
664
+ .obps-page-components-cluapplicant-details--style-10 {
665
+ margin-bottom: 20px;
666
+ }
667
+
668
+ .obps-page-components-cluapplicant-details--style-11 {
669
+ margin-bottom: 20px;
670
+ }
671
+
672
+ .obps-page-components-cluapplicant-details--style-12 {
673
+ margin-bottom: 20px;
674
+ }
675
+
676
+ .obps-page-components-cluapplicant-details--style-13 {
677
+ margin-bottom: 20px;
678
+ }
679
+
680
+ .obps-page-components-cluapplicant-details--style-14 {
681
+ margin-bottom: 20px;
682
+ }
683
+
684
+ .obps-page-components-cluapplicant-details--style-15 {
685
+ margin-bottom: 20px;
686
+ }
687
+
688
+ .obps-page-components-cluapplicant-details--style-16 {
689
+ margin-bottom: 20px;
690
+ }
691
+
692
+ .obps-page-components-cluapplicant-details--style-17 {
693
+ margin-bottom: 20px;
694
+ }
695
+
696
+ .obps-page-components-cluapplicant-details--style-18 {
697
+ margin-bottom: 15px;
698
+ margin-top: 20px;
699
+ }
700
+
701
+ .obps-page-components-cluapplicant-details--style-19 {
702
+ width: 100%;
703
+ }
704
+
705
+ .obps-page-components-cluapplicant-details--style-20 {
706
+ margin-bottom: 15px;
707
+ margin-top: 20px;
708
+ }
709
+
710
+ .obps-page-components-cluapplicant-details--style-21 {
711
+ width: 100%;
712
+ }
713
+
714
+ .obps-page-components-cluapplicant-details--style-22 {
715
+ cursor: pointer;
716
+ }
717
+
718
+ .obps-page-components-cludocument-check-list--style-1 {
719
+ overflow: hidden;
720
+ }
721
+
722
+ .obps-page-components-cludocument-check-list--style-2 {
723
+ overflow: hidden;
724
+ }
725
+
726
+ .obps-page-components-cludocument-table-view--style-1 {
727
+ width: 20px;
728
+ }
729
+
730
+ .obps-page-components-cludocument-table-view--style-2 {
731
+ float: right;
732
+ display: inline;
733
+ }
734
+
735
+ .obps-page-components-cludocument-table-view--style-3 {
736
+ overflow-x: auto;
737
+ -webkit-overflow-scrolling: touch;
738
+ width: 100%;
739
+ display: block;
740
+ }
741
+
742
+ .obps-page-components-cludocument-table-view--style-4 {
743
+ width: 100%;
744
+ min-width: 400px;
745
+ table-layout: auto;
746
+ }
747
+
748
+ .obps-page-components-cludocuments-required--style-1 {
749
+ padding: 10px;
750
+ font-size: 14px;
751
+ }
752
+
753
+ .obps-page-components-cludocuments-required--style-2 {
754
+ padding: 10px;
755
+ font-size: 14px;
756
+ }
757
+
758
+ .obps-page-components-clufee-estimation-details--style-1 {
759
+ color: green;
760
+ font-weight: bold;
761
+ }
762
+
763
+ .obps-page-components-clufee-table--style-1 {
764
+ font-size: 14px;
765
+ }
766
+
767
+ .obps-page-components-clufee-table--style-2 {
768
+ font-size: 0.85em;
769
+ color: #555;
770
+ margin-top: 4px;
771
+ line-height: 1.3;
772
+ }
773
+
774
+ .obps-page-components-clufee-table--style-3 {
775
+ height: 50px;
776
+ overflow: hidden;
777
+ }
778
+
779
+ .obps-page-components-clufee-table--style-4 {
780
+ overflow: hidden;
781
+ }
782
+
783
+ .obps-page-components-clufees-estimation-details-table--style-1 {
784
+ width: 100%;
785
+ overflow-x: auto;
786
+ -webkit-overflow-scrolling: touch;
787
+ }
788
+
789
+ .obps-page-components-clufees-estimation-details-table--style-2 {
790
+ width: 100%;
791
+ }
792
+
793
+ .obps-page-components-cluimge-view--style-1 {
794
+ padding: 20px 0px;
795
+ }
796
+
797
+ .obps-page-components-cluimge-view--style-2 {
798
+ display: flex;
799
+ justify-content: flex-end;
800
+ margin-top: 10px;
801
+ padding: 0px 20px;
802
+ }
803
+
804
+ .obps-page-components-cluimge-view--style-3 {
805
+ text-align: center;
806
+ }
807
+
808
+ .obps-page-components-clulocality-info--style-1 {
809
+ margin-bottom: 20px;
810
+ }
811
+
812
+ .obps-page-components-clulocality-info--style-2 {
813
+ margin-bottom: 20px;
814
+ }
815
+
816
+ .obps-page-components-cluprofessional-details--style-1 {
817
+ margin-bottom: 20px;
818
+ }
819
+
820
+ .obps-page-components-cluprofessional-details--style-2 {
821
+ margin-bottom: 20px;
822
+ }
823
+
824
+ .obps-page-components-cluprofessional-details--style-3 {
825
+ margin-bottom: 20px;
826
+ }
827
+
828
+ .obps-page-components-cluprofessional-details--style-4 {
829
+ margin-bottom: 20px;
830
+ }
831
+
832
+ .obps-page-components-cluprofessional-details--style-5 {
833
+ margin-bottom: 20px;
834
+ }
835
+
836
+ .obps-page-components-cluresponse--style-1 {
837
+ padding: 10px;
838
+ }
839
+
840
+ .obps-page-components-cluresponse--style-2 {
841
+ display: flex;
842
+ justify-content: space-evenly;
843
+ }
844
+
845
+ .obps-page-components-cluresponse--style-3 {
846
+ overflow: hidden;
847
+ }
848
+
849
+ .obps-page-components-cluresponse--style-4 {
850
+ display: flex;
851
+ justify-content: flex-end;
852
+ align-items: baseline;
853
+ }
854
+
855
+ .obps-page-components-clusite-details--style-1 {
856
+ margin-bottom: 20px;
857
+ }
858
+
859
+ .obps-page-components-clusite-details--style-2 {
860
+ margin-bottom: 20px;
861
+ }
862
+
863
+ .obps-page-components-clusite-details--style-3 {
864
+ margin-bottom: 20px;
865
+ }
866
+
867
+ .obps-page-components-clusite-details--style-4 {
868
+ margin-bottom: 20px;
869
+ }
870
+
871
+ .obps-page-components-clusite-details--style-5 {
872
+ margin-bottom: 20px;
873
+ }
874
+
875
+ .obps-page-components-clusite-details--style-6 {
876
+ margin-bottom: 20px;
877
+ }
878
+
879
+ .obps-page-components-clusite-details--style-7 {
880
+ margin-bottom: 20px;
881
+ }
882
+
883
+ .obps-page-components-clusite-details--style-8 {
884
+ margin-bottom: 20px;
885
+ }
886
+
887
+ .obps-page-components-clusite-details--style-9 {
888
+ margin-bottom: 20px;
889
+ }
890
+
891
+ .obps-page-components-clusite-details--style-10 {
892
+ margin-bottom: 20px;
893
+ }
894
+
895
+ .obps-page-components-clusite-details--style-11 {
896
+ margin-bottom: 20px;
897
+ }
898
+
899
+ .obps-page-components-clusite-details--style-12 {
900
+ margin-bottom: 20px;
901
+ }
902
+
903
+ .obps-page-components-clusite-details--style-13 {
904
+ margin-bottom: 20px;
905
+ }
906
+
907
+ .obps-page-components-clusite-details--style-14 {
908
+ margin-bottom: 20px;
909
+ }
910
+
911
+ .obps-page-components-clusite-details--style-15 {
912
+ margin-bottom: 20px;
913
+ }
914
+
915
+ .obps-page-components-clusite-details--style-16 {
916
+ margin-bottom: 20px;
917
+ }
918
+
919
+ .obps-page-components-clusite-details--style-17 {
920
+ margin-bottom: 20px;
921
+ }
922
+
923
+ .obps-page-components-clusite-details--style-18 {
924
+ margin-bottom: 20px;
925
+ }
926
+
927
+ .obps-page-components-clusite-details--style-19 {
928
+ margin-bottom: 20px;
929
+ }
930
+
931
+ .obps-page-components-clusite-details--style-20 {
932
+ margin-bottom: 20px;
933
+ }
934
+
935
+ .obps-page-components-clusite-details--style-21 {
936
+ margin-bottom: 20px;
937
+ }
938
+
939
+ .obps-page-components-clusite-details--style-22 {
940
+ margin-bottom: 20px;
941
+ }
942
+
943
+ .obps-page-components-clusite-details--style-23 {
944
+ margin-bottom: 20px;
945
+ }
946
+
947
+ .obps-page-components-clusite-details--style-24 {
948
+ margin-bottom: 20px;
949
+ }
950
+
951
+ .obps-page-components-corrospondence-address--style-1 {
952
+ border: none;
953
+ }
954
+
955
+ .obps-page-components-corrospondence-address--style-2 {
956
+ padding-bottom: 10px;
957
+ padding-top: 10px;
958
+ }
959
+
960
+ .obps-page-components-corrospondence-address--style-3 {
961
+ disabled: true;
962
+ height: 30px;
963
+ width: 100%;
964
+ font-size: 14px;
965
+ }
966
+
967
+ .obps-page-components-digit-camera-capture--style-1 {
968
+ text-align: center;
969
+ }
970
+
971
+ .obps-page-components-digit-camera-capture--style-2 {
972
+ display: none;
973
+ }
974
+
975
+ .obps-page-components-digit-camera-capture--style-3 {
976
+ font-size: 12px;
977
+ color: #B45309;
978
+ margin-top: 4px;
979
+ }
980
+
981
+ .obps-page-components-digit-camera-capture--style-4 {
982
+ display: flex;
983
+ justify-content: center;
984
+ gap: 12px;
985
+ margin-top: 16px;
986
+ }
987
+
988
+ .obps-page-components-document-details--style-1 {
989
+ padding: 10px;
990
+ font-size: 14px;
991
+ }
992
+
993
+ .obps-page-components-fee-estimation--style-1 {
994
+ font-size: 20px;
995
+ margin-top: 20px;
996
+ }
997
+
998
+ .obps-page-components-fee-estimation--style-2 {
999
+ font-size: 20px;
1000
+ color: #3f4351;
1001
+ }
1002
+
1003
+ .obps-page-components-fee-estimation--style-3 {
1004
+ font-size: 20px;
1005
+ color: #3f4351;
1006
+ }
1007
+
1008
+ .obps-page-components-fee-history-table--style-1 {
1009
+ margin-top: 16px;
1010
+ }
1011
+
1012
+ .obps-page-components-fee-history-table--style-2 {
1013
+ cursor: pointer;
1014
+ }
1015
+
1016
+ .obps-page-components-gis--style-1 {
1017
+ position: fixed;
1018
+ background: #00000050;
1019
+ width: 100%;
1020
+ height: 100vh;
1021
+ top: 0;
1022
+ left: 0;
1023
+ }
1024
+
1025
+ .obps-page-components-gis--style-2 {
1026
+ position: relative;
1027
+ margin-top: 60px;
1028
+ }
1029
+
1030
+ .obps-page-components-gis--style-3 {
1031
+ position: relative;
1032
+ margin-top: 100px;
1033
+ margin-bottom: -100px;
1034
+ }
1035
+
1036
+ .obps-page-components-inspection-report--style-1 {
1037
+ float: right;
1038
+ display: inline;
1039
+ }
1040
+
1041
+ .obps-page-components-inspection-report--style-2 {
1042
+ width: 100px;
1043
+ display: inline;
1044
+ background: black;
1045
+ }
1046
+
1047
+ .obps-page-components-inspection-report--style-3 {
1048
+ float: right;
1049
+ position: relative;
1050
+ bottom: -6px;
1051
+ }
1052
+
1053
+ .obps-page-components-inspection-report--style-4 {
1054
+ width: 100px;
1055
+ }
1056
+
1057
+ .obps-page-components-inspection-report--style-5 {
1058
+ width: 100px;
1059
+ }
1060
+
1061
+ .obps-page-components-inspection-report-display--style-1 {
1062
+ margin-top: 16px;
1063
+ }
1064
+
1065
+ .obps-page-components-layout-applicant-details--style-1 {
1066
+ color: red;
1067
+ font-size: 12px;
1068
+ margin-top: 4px;
1069
+ }
1070
+
1071
+ .obps-page-components-layout-applicant-details--style-2 {
1072
+ margin-bottom: 15px;
1073
+ }
1074
+
1075
+ .obps-page-components-layout-applicant-details--style-3 {
1076
+ color: red;
1077
+ margin: 10px 0px 20px 0px;
1078
+ }
1079
+
1080
+ .obps-page-components-layout-applicant-details--style-4 {
1081
+ margin-top: 20px;
1082
+ }
1083
+
1084
+ .obps-page-components-layout-applicant-details--style-5 {
1085
+ margin-top: 20px;
1086
+ margin-bottom: 20px;
1087
+ }
1088
+
1089
+ .obps-page-components-layout-applicant-details--style-6 {
1090
+ display: flex;
1091
+ }
1092
+
1093
+ .obps-page-components-layout-applicant-details--style-7 {
1094
+ margin-top: 25px;
1095
+ }
1096
+
1097
+ .obps-page-components-layout-applicant-details--style-8 {
1098
+ margin-bottom: 15px;
1099
+ }
1100
+
1101
+ .obps-page-components-layout-applicant-details--style-9 {
1102
+ margin-bottom: 15px;
1103
+ }
1104
+
1105
+ .obps-page-components-layout-applicant-details--style-10 {
1106
+ margin-bottom: 15px;
1107
+ }
1108
+
1109
+ .obps-page-components-layout-applicant-details--style-11 {
1110
+ margin-bottom: 15px;
1111
+ margin-top: 20px;
1112
+ }
1113
+
1114
+ .obps-page-components-layout-applicant-details--style-12 {
1115
+ width: 100%;
1116
+ }
1117
+
1118
+ .obps-page-components-layout-applicant-details--style-13 {
1119
+ margin-bottom: 15px;
1120
+ margin-top: 20px;
1121
+ }
1122
+
1123
+ .obps-page-components-layout-applicant-details--style-14 {
1124
+ width: 100%;
1125
+ }
1126
+
1127
+ .obps-page-components-layout-applicant-details--style-15 {
1128
+ margin-bottom: 15px;
1129
+ margin-top: 20px;
1130
+ }
1131
+
1132
+ .obps-page-components-layout-applicant-details--style-16 {
1133
+ width: 100%;
1134
+ }
1135
+
1136
+ .obps-page-components-layout-applicant-details--style-17 {
1137
+ margin-top: 30px;
1138
+ margin-bottom: 20px;
1139
+ }
1140
+
1141
+ .obps-page-components-layout-applicant-details--style-18 {
1142
+ display: flex;
1143
+ justify-content: space-between;
1144
+ align-items: center;
1145
+ margin-bottom: 10px;
1146
+ padding-bottom: 10px;
1147
+ border-bottom: 1px solid #d1d5db;
1148
+ }
1149
+
1150
+ .obps-page-components-layout-applicant-details--style-19 {
1151
+ font-size: 16px;
1152
+ font-weight: 600;
1153
+ }
1154
+
1155
+ .obps-page-components-layout-applicant-details--style-20 {
1156
+ cursor: pointer;
1157
+ display: flex;
1158
+ align-items: center;
1159
+ }
1160
+
1161
+ .obps-page-components-layout-applicant-details--style-21 {
1162
+ display: flex;
1163
+ }
1164
+
1165
+ .obps-page-components-layout-applicant-details--style-22 {
1166
+ margin-top: 23px;
1167
+ cursor: pointer;
1168
+ }
1169
+
1170
+ .obps-page-components-layout-applicant-details--style-23 {
1171
+ margin-bottom: 15px;
1172
+ }
1173
+
1174
+ .obps-page-components-layout-applicant-details--style-24 {
1175
+ margin-bottom: 15px;
1176
+ margin-top: 3rem;
1177
+ }
1178
+
1179
+ .obps-page-components-layout-applicant-details--style-25 {
1180
+ width: 100%;
1181
+ }
1182
+
1183
+ .obps-page-components-layout-applicant-details--style-26 {
1184
+ margin-bottom: 15px;
1185
+ margin-top: 3rem;
1186
+ }
1187
+
1188
+ .obps-page-components-layout-applicant-details--style-27 {
1189
+ width: 100%;
1190
+ }
1191
+
1192
+ .obps-page-components-layout-applicant-details--style-28 {
1193
+ margin-bottom: 15px;
1194
+ margin-top: 20px;
1195
+ }
1196
+
1197
+ .obps-page-components-layout-applicant-details--style-29 {
1198
+ width: 100%;
1199
+ }
1200
+
1201
+ .obps-page-components-layout-applicant-details--style-30 {
1202
+ margin-top: 20px;
1203
+ }
1204
+
1205
+ .obps-page-components-layout-applicant-details--style-31 {
1206
+ color: #a82227;
1207
+ font-weight: 600;
1208
+ font-size: 14px;
1209
+ cursor: pointer;
1210
+ display: inline-block;
1211
+ }
1212
+
1213
+ .obps-page-components-layout-cludetails--style-1 {
1214
+ color: red;
1215
+ margin-top: 4px;
1216
+ margin-bottom: 0;
1217
+ }
1218
+
1219
+ .obps-page-components-layout-cludetails--style-2 {
1220
+ display: flex;
1221
+ gap: 10px;
1222
+ align-items: flex-start;
1223
+ }
1224
+
1225
+ .obps-page-components-layout-cludetails--style-3 {
1226
+ flex: 1;
1227
+ }
1228
+
1229
+ .obps-page-components-layout-cludetails--style-4 {
1230
+ padding: 10px 16px;
1231
+ background: #1976d2;
1232
+ color: white;
1233
+ cursor: pointer;
1234
+ margin-top: 4px;
1235
+ border: none;
1236
+ border-radius: 2px;
1237
+ font-weight: bold;
1238
+ min-width: 120px;
1239
+ }
1240
+
1241
+ .obps-page-components-layout-cludetails--style-5 {
1242
+ color: red;
1243
+ margin-top: 4px;
1244
+ margin-bottom: 0;
1245
+ }
1246
+
1247
+ .obps-page-components-layout-cludetails--style-6 {
1248
+ width: 100%;
1249
+ }
1250
+
1251
+ .obps-page-components-layout-cludetails--style-7 {
1252
+ color: red;
1253
+ margin-top: 4px;
1254
+ margin-bottom: 0;
1255
+ }
1256
+
1257
+ .obps-page-components-layout-cludetails--style-8 {
1258
+ color: red;
1259
+ margin-top: 4px;
1260
+ margin-bottom: 0;
1261
+ }
1262
+
1263
+ .obps-page-components-layout-cludetails--style-9 {
1264
+ color: red;
1265
+ margin-top: 4px;
1266
+ margin-bottom: 0;
1267
+ }
1268
+
1269
+ .obps-page-components-layout-cludetails--style-10 {
1270
+ color: red;
1271
+ margin-top: 4px;
1272
+ margin-bottom: 0;
1273
+ }
1274
+
1275
+ .obps-page-components-layout-cludetails--style-11 {
1276
+ color: #999;
1277
+ margin-top: 4px;
1278
+ margin-bottom: 0;
1279
+ }
1280
+
1281
+ .obps-page-components-layout-cludetails--style-12 {
1282
+ color: red;
1283
+ margin-top: 4px;
1284
+ margin-bottom: 0;
1285
+ }
1286
+
1287
+ .obps-page-components-layout-cludetails--style-13 {
1288
+ color: red;
1289
+ margin-top: 4px;
1290
+ margin-bottom: 0;
1291
+ }
1292
+
1293
+ .obps-page-components-layout-document-table-view--style-1 {
1294
+ width: 20px;
1295
+ }
1296
+
1297
+ .obps-page-components-layout-document-table-view--style-2 {
1298
+ float: right;
1299
+ display: inline;
1300
+ }
1301
+
1302
+ .obps-page-components-layout-document-table-view--style-3 {
1303
+ overflow-x: auto;
1304
+ -webkit-overflow-scrolling: touch;
1305
+ width: 100%;
1306
+ display: block;
1307
+ }
1308
+
1309
+ .obps-page-components-layout-document-table-view--style-4 {
1310
+ width: 100%;
1311
+ min-width: 400px;
1312
+ table-layout: auto;
1313
+ }
1314
+
1315
+ .obps-page-components-layout-documents-required--style-1 {
1316
+ margin-bottom: 24px;
1317
+ }
1318
+
1319
+ .obps-page-components-layout-documents-required--style-2 {
1320
+ width: 100%;
1321
+ }
1322
+
1323
+ .obps-page-components-layout-documents-required--style-3 {
1324
+ display: flex;
1325
+ flex-direction: column;
1326
+ gap: 10px;
1327
+ }
1328
+
1329
+ .obps-page-components-layout-documents-required--style-4 {
1330
+ padding: 10px;
1331
+ font-size: 14px;
1332
+ }
1333
+
1334
+ .obps-page-components-layout-documents-required--style-5 {
1335
+ padding: 10px;
1336
+ font-size: 14px;
1337
+ }
1338
+
1339
+ .obps-page-components-layout-documents-required--style-6 {
1340
+ padding: 10px;
1341
+ font-size: 14px;
1342
+ }
1343
+
1344
+ .obps-page-components-layout-documents-required--style-7 {
1345
+ padding: 10px;
1346
+ font-size: 14px;
1347
+ }
1348
+
1349
+ .obps-page-components-layout-fee-estimation-details--style-1 {
1350
+ color: green;
1351
+ font-weight: bold;
1352
+ }
1353
+
1354
+ .obps-page-components-layout-fee-estimation-details-table--style-1 {
1355
+ width: 100%;
1356
+ overflow-x: auto;
1357
+ -webkit-overflow-scrolling: touch;
1358
+ }
1359
+
1360
+ .obps-page-components-layout-fee-table--style-1 {
1361
+ font-size: 14px;
1362
+ }
1363
+
1364
+ .obps-page-components-layout-fee-table--style-2 {
1365
+ font-size: 0.85em;
1366
+ color: #555;
1367
+ margin-top: 4px;
1368
+ line-height: 1.3;
1369
+ }
1370
+
1371
+ .obps-page-components-layout-fee-table--style-3 {
1372
+ font-size: 14px;
1373
+ }
1374
+
1375
+ .obps-page-components-layout-fee-table--style-4 {
1376
+ font-size: 0.85em;
1377
+ color: #555;
1378
+ margin-top: 4px;
1379
+ line-height: 1.3;
1380
+ }
1381
+
1382
+ .obps-page-components-layout-image-view--style-1 {
1383
+ display: flex;
1384
+ justify-content: flex-end;
1385
+ margin-top: 10px;
1386
+ padding: 0px 20px;
1387
+ }
1388
+
1389
+ .obps-page-components-layout-image-view--style-2 {
1390
+ text-align: center;
1391
+ }
1392
+
1393
+ .obps-page-components-layout-new-applicant-details--style-1 {
1394
+ word-break: break-all;
1395
+ }
1396
+
1397
+ .obps-page-components-layout-new-applicant-details--style-2 {
1398
+ display: flex;
1399
+ gap: 12px;
1400
+ align-items: center;
1401
+ justify-content: center;
1402
+ }
1403
+
1404
+ .obps-page-components-layout-new-applicant-details--style-3 {
1405
+ cursor: pointer;
1406
+ display: flex;
1407
+ align-items: center;
1408
+ }
1409
+
1410
+ .obps-page-components-layout-new-applicant-details--style-4 {
1411
+ cursor: pointer;
1412
+ display: flex;
1413
+ align-items: center;
1414
+ }
1415
+
1416
+ .obps-page-components-layout-new-applicant-details--style-5 {
1417
+ margin-bottom: 15px;
1418
+ }
1419
+
1420
+ .obps-page-components-layout-new-applicant-details--style-6 {
1421
+ margin-bottom: 15px;
1422
+ }
1423
+
1424
+ .obps-page-components-layout-new-applicant-details--style-7 {
1425
+ margin-top: 20px;
1426
+ margin-bottom: 20px;
1427
+ }
1428
+
1429
+ .obps-page-components-layout-new-applicant-details--style-8 {
1430
+ margin-bottom: 10px;
1431
+ font-size: 16px;
1432
+ }
1433
+
1434
+ .obps-page-components-layout-new-applicant-details--style-9 {
1435
+ color: red;
1436
+ font-size: 12px;
1437
+ margin-top: 10px;
1438
+ }
1439
+
1440
+ .obps-page-components-layout-new-applicant-details--style-10 {
1441
+ color: red;
1442
+ font-size: 12px;
1443
+ margin-top: 10px;
1444
+ }
1445
+
1446
+ .obps-page-components-layout-new-applicant-details--style-11 {
1447
+ margin-top: 20px;
1448
+ }
1449
+
1450
+ .obps-page-components-layout-new-applicant-details--style-12 {
1451
+ color: #a82227;
1452
+ font-weight: 600;
1453
+ font-size: 14px;
1454
+ cursor: pointer;
1455
+ display: inline-block;
1456
+ }
1457
+
1458
+ .obps-page-components-layout-owner-search-modal--style-1 {
1459
+ color: white;
1460
+ width: 100%;
1461
+ max-width: 120px;
1462
+ height: 40px;
1463
+ margin: 0;
1464
+ }
1465
+
1466
+ .obps-page-components-layout-owner-search-modal--style-2 {
1467
+ border: 1px solid #d6d6d6;
1468
+ padding: 20px;
1469
+ border-radius: 4px;
1470
+ background: #fff;
1471
+ margin-top: 20px;
1472
+ margin-bottom: 20px;
1473
+ position: relative;
1474
+ }
1475
+
1476
+ .obps-page-components-layout-owner-search-modal--style-3 {
1477
+ display: flex;
1478
+ justify-content: space-between;
1479
+ align-items: center;
1480
+ margin-bottom: 20px;
1481
+ }
1482
+
1483
+ .obps-page-components-layout-owner-search-modal--style-4 {
1484
+ margin: 0;
1485
+ }
1486
+
1487
+ .obps-page-components-layout-owner-search-modal--style-5 {
1488
+ margin-bottom: 20px;
1489
+ }
1490
+
1491
+ .obps-page-components-layout-owner-search-modal--style-6 {
1492
+ margin-bottom: 8px;
1493
+ font-weight: 600;
1494
+ }
1495
+
1496
+ .obps-page-components-layout-owner-search-modal--style-7 {
1497
+ flex: 1;
1498
+ }
1499
+
1500
+ .obps-page-components-layout-owner-search-modal--style-8 {
1501
+ width: 100%;
1502
+ margin-bottom: 0;
1503
+ }
1504
+
1505
+ .obps-page-components-layout-owner-search-modal--style-9 {
1506
+ color: white;
1507
+ width: 100%;
1508
+ max-width: 120px;
1509
+ height: 40px;
1510
+ margin: 0;
1511
+ }
1512
+
1513
+ .obps-page-components-layout-owner-search-modal--style-10 {
1514
+ margin-top: 20px;
1515
+ overflow-x: auto;
1516
+ width: 100%;
1517
+ display: block;
1518
+ }
1519
+
1520
+ .obps-page-components-layout-owner-search-modal--style-11 {
1521
+ margin-top: 20px;
1522
+ border-top: 1px solid #d1d5db;
1523
+ padding-top: 15px;
1524
+ }
1525
+
1526
+ .obps-page-components-layout-owner-search-modal--style-12 {
1527
+ margin-top: 10px;
1528
+ }
1529
+
1530
+ .obps-page-components-layout-owner-search-modal--style-13 {
1531
+ color: #a82227;
1532
+ font-weight: 600;
1533
+ font-size: 14px;
1534
+ cursor: pointer;
1535
+ display: inline-block;
1536
+ }
1537
+
1538
+ .obps-page-components-layout-owner-search-modal--style-14 {
1539
+ background: #f9fafb;
1540
+ padding: 20px;
1541
+ border-radius: 8px;
1542
+ border: 1px solid #e5e7eb;
1543
+ }
1544
+
1545
+ .obps-page-components-layout-owner-search-modal--style-15 {
1546
+ font-size: 16px;
1547
+ font-weight: 600;
1548
+ margin-bottom: 20px;
1549
+ color: #111827;
1550
+ }
1551
+
1552
+ .obps-page-components-layout-owner-search-modal--style-16 {
1553
+ margin-bottom: 16px;
1554
+ }
1555
+
1556
+ .obps-page-components-layout-owner-search-modal--style-17 {
1557
+ margin-bottom: 6px;
1558
+ font-weight: 500;
1559
+ }
1560
+
1561
+ .obps-page-components-layout-owner-search-modal--style-18 {
1562
+ width: 100%;
1563
+ }
1564
+
1565
+ .obps-page-components-layout-owner-search-modal--style-19 {
1566
+ margin-top: 4px;
1567
+ }
1568
+
1569
+ .obps-page-components-layout-owner-search-modal--style-20 {
1570
+ margin-bottom: 16px;
1571
+ }
1572
+
1573
+ .obps-page-components-layout-owner-search-modal--style-21 {
1574
+ margin-bottom: 6px;
1575
+ font-weight: 500;
1576
+ }
1577
+
1578
+ .obps-page-components-layout-owner-search-modal--style-22 {
1579
+ width: 100%;
1580
+ }
1581
+
1582
+ .obps-page-components-layout-owner-search-modal--style-23 {
1583
+ margin-bottom: 16px;
1584
+ }
1585
+
1586
+ .obps-page-components-layout-owner-search-modal--style-24 {
1587
+ margin-bottom: 6px;
1588
+ font-weight: 500;
1589
+ }
1590
+
1591
+ .obps-page-components-layout-owner-search-modal--style-25 {
1592
+ width: 100%;
1593
+ }
1594
+
1595
+ .obps-page-components-layout-owner-search-modal--style-26 {
1596
+ margin-top: 4px;
1597
+ }
1598
+
1599
+ .obps-page-components-layout-owner-search-modal--style-27 {
1600
+ margin-bottom: 16px;
1601
+ }
1602
+
1603
+ .obps-page-components-layout-owner-search-modal--style-28 {
1604
+ margin-bottom: 6px;
1605
+ font-weight: 500;
1606
+ }
1607
+
1608
+ .obps-page-components-layout-owner-search-modal--style-29 {
1609
+ width: 100%;
1610
+ }
1611
+
1612
+ .obps-page-components-layout-owner-search-modal--style-30 {
1613
+ margin-top: 4px;
1614
+ }
1615
+
1616
+ .obps-page-components-layout-owner-search-modal--style-31 {
1617
+ margin-bottom: 16px;
1618
+ }
1619
+
1620
+ .obps-page-components-layout-owner-search-modal--style-32 {
1621
+ margin-bottom: 6px;
1622
+ font-weight: 500;
1623
+ }
1624
+
1625
+ .obps-page-components-layout-owner-search-modal--style-33 {
1626
+ margin-top: 4px;
1627
+ }
1628
+
1629
+ .obps-page-components-layout-owner-search-modal--style-34 {
1630
+ margin-bottom: 16px;
1631
+ }
1632
+
1633
+ .obps-page-components-layout-owner-search-modal--style-35 {
1634
+ margin-bottom: 6px;
1635
+ font-weight: 500;
1636
+ }
1637
+
1638
+ .obps-page-components-layout-owner-search-modal--style-36 {
1639
+ margin-top: 4px;
1640
+ }
1641
+
1642
+ .obps-page-components-layout-owner-search-modal--style-37 {
1643
+ margin-top: 24px;
1644
+ display: flex;
1645
+ gap: 12px;
1646
+ justify-content: flex-end;
1647
+ }
1648
+
1649
+ .obps-page-components-layout-owner-search-modal--style-38 {
1650
+ color: #0b0c0c;
1651
+ background: #f4f5f5;
1652
+ border: 1px solid #0b0c0c;
1653
+ cursor: pointer;
1654
+ }
1655
+
1656
+ .obps-page-components-layout-owner-search-modal--style-39 {
1657
+ color: white;
1658
+ cursor: pointer;
1659
+ }
1660
+
1661
+ .obps-page-components-layout-owner-search-modal--style-40 {
1662
+ background: #f9fafb;
1663
+ padding: 20px;
1664
+ border-radius: 8px;
1665
+ border: 1px solid #e5e7eb;
1666
+ }
1667
+
1668
+ .obps-page-components-layout-owner-search-modal--style-41 {
1669
+ display: flex;
1670
+ justify-content: space-between;
1671
+ align-items: center;
1672
+ margin-bottom: 15px;
1673
+ }
1674
+
1675
+ .obps-page-components-layout-owner-search-modal--style-42 {
1676
+ font-size: 16px;
1677
+ font-weight: 600;
1678
+ color: #111827;
1679
+ margin: 0;
1680
+ }
1681
+
1682
+ .obps-page-components-layout-owner-search-modal--style-43 {
1683
+ background: #ffffff;
1684
+ padding: 12px 16px;
1685
+ border-radius: 6px;
1686
+ border: 1px solid #e5e7eb;
1687
+ margin-bottom: 20px;
1688
+ }
1689
+
1690
+ .obps-page-components-layout-owner-search-modal--style-44 {
1691
+ margin: 4px 0;
1692
+ font-size: 14px;
1693
+ }
1694
+
1695
+ .obps-page-components-layout-owner-search-modal--style-45 {
1696
+ margin: 4px 0;
1697
+ font-size: 14px;
1698
+ }
1699
+
1700
+ .obps-page-components-layout-owner-search-modal--style-46 {
1701
+ margin: 4px 0;
1702
+ font-size: 14px;
1703
+ }
1704
+
1705
+ .obps-page-components-layout-owner-search-modal--style-47 {
1706
+ color: red;
1707
+ font-size: 12px;
1708
+ margin-bottom: 15px;
1709
+ }
1710
+
1711
+ .obps-page-components-layout-owner-search-modal--style-48 {
1712
+ color: red;
1713
+ font-size: 12px;
1714
+ margin-bottom: 15px;
1715
+ }
1716
+
1717
+ .obps-page-components-layout-owner-search-modal--style-49 {
1718
+ width: 100%;
1719
+ }
1720
+
1721
+ .obps-page-components-layout-owner-search-modal--style-50 {
1722
+ color: red;
1723
+ font-size: 12px;
1724
+ margin-bottom: 15px;
1725
+ }
1726
+
1727
+ .obps-page-components-layout-owner-search-modal--style-51 {
1728
+ width: 100%;
1729
+ }
1730
+
1731
+ .obps-page-components-layout-owner-search-modal--style-52 {
1732
+ color: red;
1733
+ font-size: 12px;
1734
+ margin-bottom: 15px;
1735
+ }
1736
+
1737
+ .obps-page-components-layout-owner-search-modal--style-53 {
1738
+ width: 100%;
1739
+ }
1740
+
1741
+ .obps-page-components-layout-owner-search-modal--style-54 {
1742
+ color: red;
1743
+ font-size: 12px;
1744
+ margin-bottom: 15px;
1745
+ }
1746
+
1747
+ .obps-page-components-layout-owner-search-modal--style-55 {
1748
+ color: red;
1749
+ font-size: 12px;
1750
+ margin-bottom: 15px;
1751
+ }
1752
+
1753
+ .obps-page-components-layout-owner-search-modal--style-56 {
1754
+ margin-top: 24px;
1755
+ display: flex;
1756
+ gap: 12px;
1757
+ justify-content: flex-end;
1758
+ }
1759
+
1760
+ .obps-page-components-layout-owner-search-modal--style-57 {
1761
+ color: #0b0c0c;
1762
+ background: #f4f5f5;
1763
+ border: 1px solid #0b0c0c;
1764
+ cursor: pointer;
1765
+ }
1766
+
1767
+ .obps-page-components-layout-owner-search-modal--style-58 {
1768
+ color: white;
1769
+ cursor: pointer;
1770
+ }
1771
+
1772
+ .obps-page-components-layout-professional-details--style-1 {
1773
+ color: red;
1774
+ margin-top: 4px;
1775
+ margin-bottom: 0;
1776
+ }
1777
+
1778
+ .obps-page-components-layout-professional-details--style-2 {
1779
+ color: red;
1780
+ margin-top: 4px;
1781
+ margin-bottom: 0;
1782
+ }
1783
+
1784
+ .obps-page-components-layout-professional-details--style-3 {
1785
+ color: red;
1786
+ margin-top: 4px;
1787
+ margin-bottom: 0;
1788
+ }
1789
+
1790
+ .obps-page-components-layout-professional-details--style-4 {
1791
+ color: red;
1792
+ margin-top: 4px;
1793
+ margin-bottom: 0;
1794
+ }
1795
+
1796
+ .obps-page-components-layout-professional-details--style-5 {
1797
+ color: red;
1798
+ margin-top: 4px;
1799
+ margin-bottom: 0;
1800
+ }
1801
+
1802
+ .obps-page-components-layout-professional-details--style-6 {
1803
+ color: red;
1804
+ margin-top: 4px;
1805
+ margin-bottom: 0;
1806
+ }
1807
+
1808
+ .obps-page-components-layout-site-details--style-1 {
1809
+ margin-bottom: 16px;
1810
+ }
1811
+
1812
+ .obps-page-components-layout-site-details--style-2 {
1813
+ color: red;
1814
+ margin-top: 4px;
1815
+ margin-bottom: 0;
1816
+ }
1817
+
1818
+ .obps-page-components-layout-site-details--style-3 {
1819
+ color: red;
1820
+ margin-top: 4px;
1821
+ margin-bottom: 0;
1822
+ }
1823
+
1824
+ .obps-page-components-layout-site-details--style-4 {
1825
+ color: red;
1826
+ margin-top: 4px;
1827
+ margin-bottom: 0;
1828
+ }
1829
+
1830
+ .obps-page-components-layout-site-details--style-5 {
1831
+ display: flex;
1832
+ justify-content: flex-end;
1833
+ margin-top: 8px;
1834
+ margin-bottom: 8px;
1835
+ }
1836
+
1837
+ .obps-page-components-layout-site-details--style-6 {
1838
+ visibility: hidden;
1839
+ }
1840
+
1841
+ .obps-page-components-layout-site-details--style-7 {
1842
+ display: flex;
1843
+ justify-content: flex-end;
1844
+ align-items: center;
1845
+ gap: 12px;
1846
+ }
1847
+
1848
+ .obps-page-components-layout-site-details--style-8 {
1849
+ color: #00703c;
1850
+ font-weight: 500;
1851
+ }
1852
+
1853
+ .obps-page-components-layout-site-details--style-9 {
1854
+ color: red;
1855
+ margin-top: 4px;
1856
+ margin-bottom: 16px;
1857
+ }
1858
+
1859
+ .obps-page-components-layout-site-details--style-10 {
1860
+ margin-bottom: 12px;
1861
+ display: flex;
1862
+ align-items: center;
1863
+ gap: 12px;
1864
+ }
1865
+
1866
+ .obps-page-components-layout-site-details--style-11 {
1867
+ padding: 8px 16px;
1868
+ background: #2947a3;
1869
+ color: white;
1870
+ cursor: pointer;
1871
+ border: none;
1872
+ border-radius: 4px;
1873
+ font-weight: bold;
1874
+ font-size: 14px;
1875
+ }
1876
+
1877
+ .obps-page-components-layout-site-details--style-12 {
1878
+ color: red;
1879
+ margin-top: 4px;
1880
+ margin-bottom: 0;
1881
+ }
1882
+
1883
+ .obps-page-components-layout-site-details--style-13 {
1884
+ color: red;
1885
+ margin-top: 4px;
1886
+ margin-bottom: 0;
1887
+ }
1888
+
1889
+ .obps-page-components-layout-site-details--style-14 {
1890
+ color: red;
1891
+ margin-top: 4px;
1892
+ margin-bottom: 0;
1893
+ }
1894
+
1895
+ .obps-page-components-layout-site-details--style-15 {
1896
+ color: red;
1897
+ margin-top: 4px;
1898
+ margin-bottom: 0;
1899
+ }
1900
+
1901
+ .obps-page-components-layout-site-details--style-16 {
1902
+ color: red;
1903
+ margin-top: 4px;
1904
+ margin-bottom: 0;
1905
+ }
1906
+
1907
+ .obps-page-components-layout-site-details--style-17 {
1908
+ color: red;
1909
+ margin-top: 4px;
1910
+ margin-bottom: 0;
1911
+ }
1912
+
1913
+ .obps-page-components-layout-site-details--style-18 {
1914
+ color: red;
1915
+ margin-top: 4px;
1916
+ margin-bottom: 0;
1917
+ }
1918
+
1919
+ .obps-page-components-layout-site-details--style-19 {
1920
+ color: red;
1921
+ margin-top: 4px;
1922
+ margin-bottom: 0;
1923
+ }
1924
+
1925
+ .obps-page-components-layout-site-details--style-20 {
1926
+ color: red;
1927
+ margin-top: 4px;
1928
+ margin-bottom: 0;
1929
+ }
1930
+
1931
+ .obps-page-components-layout-site-details--style-21 {
1932
+ color: red;
1933
+ margin-top: 4px;
1934
+ margin-bottom: 0;
1935
+ }
1936
+
1937
+ .obps-page-components-layout-site-details--style-22 {
1938
+ color: red;
1939
+ margin-top: 4px;
1940
+ margin-bottom: 0;
1941
+ }
1942
+
1943
+ .obps-page-components-layout-site-details--style-23 {
1944
+ color: red;
1945
+ margin-top: 4px;
1946
+ margin-bottom: 0;
1947
+ }
1948
+
1949
+ .obps-page-components-layout-site-details--style-24 {
1950
+ color: red;
1951
+ margin-top: 4px;
1952
+ margin-bottom: 0;
1953
+ }
1954
+
1955
+ .obps-page-components-layout-site-details--style-25 {
1956
+ color: red;
1957
+ margin-top: 4px;
1958
+ margin-bottom: 0;
1959
+ }
1960
+
1961
+ .obps-page-components-layout-site-details--style-26 {
1962
+ color: red;
1963
+ margin-top: 4px;
1964
+ margin-bottom: 0;
1965
+ }
1966
+
1967
+ .obps-page-components-layout-site-details--style-27 {
1968
+ color: red;
1969
+ margin-top: 4px;
1970
+ margin-bottom: 0;
1971
+ }
1972
+
1973
+ .obps-page-components-layout-site-details--style-28 {
1974
+ color: red;
1975
+ margin-top: 4px;
1976
+ margin-bottom: 0;
1977
+ }
1978
+
1979
+ .obps-page-components-layout-site-details--style-29 {
1980
+ color: red;
1981
+ margin-top: 4px;
1982
+ margin-bottom: 0;
1983
+ }
1984
+
1985
+ .obps-page-components-layout-site-details--style-30 {
1986
+ color: red;
1987
+ margin-top: 4px;
1988
+ margin-bottom: 0;
1989
+ }
1990
+
1991
+ .obps-page-components-layout-site-details--style-31 {
1992
+ color: red;
1993
+ margin-top: 4px;
1994
+ margin-bottom: 0;
1995
+ }
1996
+
1997
+ .obps-page-components-layout-site-details--style-32 {
1998
+ color: red;
1999
+ margin-top: 4px;
2000
+ margin-bottom: 0;
2001
+ }
2002
+
2003
+ .obps-page-components-layout-site-details--style-33 {
2004
+ color: red;
2005
+ margin-top: 4px;
2006
+ margin-bottom: 0;
2007
+ }
2008
+
2009
+ .obps-page-components-layout-site-details--style-34 {
2010
+ color: red;
2011
+ margin-top: 4px;
2012
+ margin-bottom: 0;
2013
+ }
2014
+
2015
+ .obps-page-components-layout-site-details--style-35 {
2016
+ color: red;
2017
+ margin-top: 4px;
2018
+ margin-bottom: 0;
2019
+ }
2020
+
2021
+ .obps-page-components-layout-site-details--style-36 {
2022
+ color: red;
2023
+ margin-top: 4px;
2024
+ margin-bottom: 0;
2025
+ }
2026
+
2027
+ .obps-page-components-layout-site-details--style-37 {
2028
+ color: red;
2029
+ margin-top: 4px;
2030
+ margin-bottom: 0;
2031
+ }
2032
+
2033
+ .obps-page-components-layout-site-details--style-38 {
2034
+ color: red;
2035
+ margin-top: 4px;
2036
+ margin-bottom: 0;
2037
+ }
2038
+
2039
+ .obps-page-components-layout-site-details--style-39 {
2040
+ color: red;
2041
+ margin-top: 4px;
2042
+ margin-bottom: 0;
2043
+ }
2044
+
2045
+ .obps-page-components-layout-site-details--style-40 {
2046
+ color: red;
2047
+ margin-top: 4px;
2048
+ margin-bottom: 0;
2049
+ }
2050
+
2051
+ .obps-page-components-layout-site-details--style-41 {
2052
+ color: red;
2053
+ margin-top: 4px;
2054
+ margin-bottom: 0;
2055
+ }
2056
+
2057
+ .obps-page-components-layout-site-details--style-42 {
2058
+ color: red;
2059
+ margin-top: 4px;
2060
+ margin-bottom: 0;
2061
+ }
2062
+
2063
+ .obps-page-components-layout-site-details--style-43 {
2064
+ color: red;
2065
+ margin-top: 4px;
2066
+ margin-bottom: 0;
2067
+ }
2068
+
2069
+ .obps-page-components-layout-site-details--style-44 {
2070
+ color: red;
2071
+ margin-top: 4px;
2072
+ margin-bottom: 0;
2073
+ }
2074
+
2075
+ .obps-page-components-layout-site-details--style-45 {
2076
+ color: red;
2077
+ margin-top: 4px;
2078
+ margin-bottom: 0;
2079
+ }
2080
+
2081
+ .obps-page-components-layout-site-details--style-46 {
2082
+ color: red;
2083
+ margin-top: 4px;
2084
+ margin-bottom: 0;
2085
+ }
2086
+
2087
+ .obps-page-components-layout-site-details--style-47 {
2088
+ color: red;
2089
+ margin-top: 4px;
2090
+ margin-bottom: 0;
2091
+ }
2092
+
2093
+ .obps-page-components-layout-site-details--style-48 {
2094
+ color: red;
2095
+ margin-top: 4px;
2096
+ margin-bottom: 0;
2097
+ }
2098
+
2099
+ .obps-page-components-layout-site-details--style-49 {
2100
+ color: red;
2101
+ margin-top: 4px;
2102
+ margin-bottom: 0;
2103
+ }
2104
+
2105
+ .obps-page-components-layout-site-details--style-50 {
2106
+ color: red;
2107
+ margin-top: 4px;
2108
+ margin-bottom: 0;
2109
+ }
2110
+
2111
+ .obps-page-components-layout-site-details--style-51 {
2112
+ color: red;
2113
+ margin-top: 4px;
2114
+ margin-bottom: 0;
2115
+ }
2116
+
2117
+ .obps-page-components-layout-site-details--style-52 {
2118
+ color: red;
2119
+ margin-top: 4px;
2120
+ margin-bottom: 0;
2121
+ }
2122
+
2123
+ .obps-page-components-layout-site-details--style-53 {
2124
+ color: red;
2125
+ margin-top: 4px;
2126
+ margin-bottom: 0;
2127
+ }
2128
+
2129
+ .obps-page-components-layout-site-details--style-54 {
2130
+ color: red;
2131
+ margin-top: 4px;
2132
+ margin-bottom: 0;
2133
+ }
2134
+
2135
+ .obps-page-components-layout-site-details--style-55 {
2136
+ margin-bottom: 12px;
2137
+ padding: 12px;
2138
+ background-color: #fff3cd;
2139
+ border: 1px solid #ffc107;
2140
+ border-radius: 4px;
2141
+ }
2142
+
2143
+ .obps-page-components-layout-site-details--style-56 {
2144
+ color: #856404;
2145
+ margin: 0;
2146
+ font-size: 14px;
2147
+ }
2148
+
2149
+ .obps-page-components-layout-site-photographs--style-1 {
2150
+ padding: 50px 0px;
2151
+ display: flex;
2152
+ justify-content: space-evenly;
2153
+ }
2154
+
2155
+ .obps-page-components-layout-site-photographs--style-2 {
2156
+ display: flex;
2157
+ flex-direction: column;
2158
+ width: 200px;
2159
+ height: 200px;
2160
+ align-items: center;
2161
+ }
2162
+
2163
+ .obps-page-components-layout-site-photographs--style-3 {
2164
+ margin: 5px;
2165
+ }
2166
+
2167
+ .obps-page-components-layout-site-photographs--style-4 {
2168
+ width: 120px;
2169
+ height: 120px;
2170
+ object-fit: fill;
2171
+ border-radius: 10%;
2172
+ cursor: pointer;
2173
+ }
2174
+
2175
+ .obps-page-components-layout-summary--style-1 {
2176
+ border: none;
2177
+ }
2178
+
2179
+ .obps-page-components-layout-summary--style-2 {
2180
+ display: flex;
2181
+ gap: 20px;
2182
+ flex-wrap: wrap;
2183
+ justify-content: space-between;
2184
+ }
2185
+
2186
+ .obps-page-components-layout-summary--style-3 {
2187
+ padding: 0 0.5rem;
2188
+ }
2189
+
2190
+ .obps-page-components-layout-summary--style-4 {
2191
+ padding: 0 0.5rem;
2192
+ }
2193
+
2194
+ .obps-page-components-license-details--style-1 {
2195
+ padding-bottom: 30px;
2196
+ }
2197
+
2198
+ .obps-page-components-license-details--style-2 {
2199
+ cursor: pointer;
2200
+ width: fit-content;
2201
+ display: flex;
2202
+ font-family: 'Roboto Condensed', sans-serif;
2203
+ color: rgba(13, 67, 167, var(--text-opacity));
2204
+ font-size: 16px;
2205
+ line-height: 24px;
2206
+ }
2207
+
2208
+ .obps-page-components-license-type--style-1 {
2209
+ display: flex;
2210
+ justify-content: space-between;
2211
+ align-items: flex-start;
2212
+ padding-bottom: 60px;
2213
+ }
2214
+
2215
+ .obps-page-components-license-type--style-2 {
2216
+ flex: 1;
2217
+ margin-right: 20px;
2218
+ }
2219
+
2220
+ .obps-page-components-license-type--style-3 {
2221
+ margin-top: 32px;
2222
+ background-color: #f8f9fa;
2223
+ border-radius: 12px;
2224
+ padding: 24px;
2225
+ border: 1px solid #e5e7eb;
2226
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
2227
+ }
2228
+
2229
+ .obps-page-components-license-type--style-4 {
2230
+ font-size: 20px;
2231
+ font-weight: 700;
2232
+ color: #1f2937;
2233
+ margin-bottom: 16px;
2234
+ margin-top: 0;
2235
+ }
2236
+
2237
+ .obps-page-components-license-type--style-5 {
2238
+ list-style: none;
2239
+ padding: 0;
2240
+ margin: 0;
2241
+ }
2242
+
2243
+ .obps-page-components-license-type--style-6 {
2244
+ position: absolute;
2245
+ left: 0;
2246
+ top: 12px;
2247
+ width: 6px;
2248
+ height: 6px;
2249
+ background-color: #2563eb;
2250
+ border-radius: 50%;
2251
+ }
2252
+
2253
+ .obps-page-components-license-type--style-7 {
2254
+ padding: 0 0;
2255
+ padding-left: 28px;
2256
+ position: relative;
2257
+ font-size: 13px;
2258
+ color: #666666;
2259
+ font-style: italic;
2260
+ line-height: 1.6;
2261
+ margin-top: 8px;
2262
+ padding-top: 16px;
2263
+ border-top: 1px solid #fff;
2264
+ }
2265
+
2266
+ .obps-page-components-license-type--style-8 {
2267
+ position: absolute;
2268
+ left: 0;
2269
+ top: 16px;
2270
+ width: 6px;
2271
+ height: 6px;
2272
+ background-color: #f59e0b;
2273
+ border-radius: 50%;
2274
+ }
2275
+
2276
+ .obps-page-components-location-details--style-1 {
2277
+ padding: 10px;
2278
+ font-size: 14px;
2279
+ }
2280
+
2281
+ .obps-page-components-location-details--style-2 {
2282
+ padding: 10px;
2283
+ font-size: 14px;
2284
+ }
2285
+
2286
+ .obps-page-components-location-details--style-3 {
2287
+ padding-top: 10px;
2288
+ }
2289
+
2290
+ .obps-page-components-nocdetails--style-1 {
2291
+ border: 1px solid #D6D5D4;
2292
+ padding: 16px 8px 16px 8px;
2293
+ background: #FAFAFA;
2294
+ border-radius: 5px;
2295
+ margin-bottom: 24px;
2296
+ margin-top: 5px;
2297
+ }
2298
+
2299
+ .obps-page-components-nocdetails--style-2 {
2300
+ color: #0B0C0C;
2301
+ line-height: 37px;
2302
+ font-weight: 700;
2303
+ font-size: 32px;
2304
+ font-family: Roboto Condensed;
2305
+ padding-bottom: 24px;
2306
+ }
2307
+
2308
+ .obps-page-components-nocdetails--style-3 {
2309
+ display: flex;
2310
+ padding-bottom: 24px;
2311
+ }
2312
+
2313
+ .obps-page-components-nocdetails--style-4 {
2314
+ color: #0B0C0C;
2315
+ line-height: 19px;
2316
+ font-weight: 700;
2317
+ font-size: 16px;
2318
+ font-family: Roboto;
2319
+ margin-right: 10px;
2320
+ }
2321
+
2322
+ .obps-page-components-obpsdocuments--style-1 {
2323
+ width: 250px;
2324
+ }
2325
+
2326
+ .obps-page-components-obpsdocuments-emp--style-1 {
2327
+ margin-bottom: 24px;
2328
+ }
2329
+
2330
+ .obps-page-components-obpsdocuments-emp--style-2 {
2331
+ width: 100%;
2332
+ }
2333
+
2334
+ .obps-page-components-obpsdocuments-emp--style-3 {
2335
+ width: 100%;
2336
+ }
2337
+
2338
+ .obps-page-components-obpsdocuments-emp--style-4 {
2339
+ width: 100%;
2340
+ }
2341
+
2342
+ .obps-page-components-obpsdocuments-holder--style-1 {
2343
+ margin-top: 19px;
2344
+ }
2345
+
2346
+ .obps-page-components-obpsdocuments-holder--style-2 {
2347
+ display: flex;
2348
+ flex-wrap: wrap;
2349
+ }
2350
+
2351
+ .obps-page-components-obpsdocuments-holder--style-3 {
2352
+ display: flex;
2353
+ justify-content: flex-start;
2354
+ flex-wrap: wrap;
2355
+ }
2356
+
2357
+ .obps-page-components-obpsdocuments-holder--style-4 {
2358
+ min-width: 80px;
2359
+ margin-right: 10px;
2360
+ max-width: 100px;
2361
+ height: auto;
2362
+ }
2363
+
2364
+ .obps-page-components-obpsdocuments-holder--style-5 {
2365
+ display: flex;
2366
+ justify-content: center;
2367
+ }
2368
+
2369
+ .obps-page-components-obpsdocuments-holder--style-6 {
2370
+ margin-top: 8px;
2371
+ text-align: center;
2372
+ color: #505A5F;
2373
+ }
2374
+
2375
+ .obps-page-components-obpsdocuments-holder--style-7 {
2376
+ color: #cccccc;
2377
+ background-color: #cccccc;
2378
+ height: 2px;
2379
+ margin-top: 20px;
2380
+ margin-bottom: 20px;
2381
+ }
2382
+
2383
+ .obps-page-components-ocbasic-details--style-1 {
2384
+ margin-bottom: 10px;
2385
+ }
2386
+
2387
+ .obps-page-components-ocedcrdocs-required--style-1 {
2388
+ color: #0B0C0C;
2389
+ margin-top: 12px;
2390
+ font-size: 16px;
2391
+ font-weight: 400;
2392
+ line-height: 24px;
2393
+ }
2394
+
2395
+ .obps-page-components-ocedcrdocs-required--style-2 {
2396
+ font-weight: 700;
2397
+ }
2398
+
2399
+ .obps-page-components-ocedcrdocs-required--style-3 {
2400
+ display: flex;
2401
+ }
2402
+
2403
+ .obps-page-components-ocupload-plan-diagram--style-1 {
2404
+ disabled: true;
2405
+ height: 30px;
2406
+ width: 100%;
2407
+ font-size: 14px;
2408
+ }
2409
+
2410
+ .obps-page-components-oce-dcrscrutiny--style-1 {
2411
+ color: #cccccc;
2412
+ background-color: #cccccc;
2413
+ height: 2px;
2414
+ margin-top: 20px;
2415
+ margin-bottom: 20px;
2416
+ }
2417
+
2418
+ .obps-page-components-oce-dcrscrutiny--style-2 {
2419
+ font-size: 18px;
2420
+ line-height: 21px;
2421
+ font-weight: 700;
2422
+ padding: 0px 0px 16px 0px;
2423
+ }
2424
+
2425
+ .obps-page-components-oce-dcrscrutiny--style-3 {
2426
+ font-size: 18px;
2427
+ line-height: 21px;
2428
+ font-weight: 700;
2429
+ padding: 0px 0px 16px 0px;
2430
+ }
2431
+
2432
+ .obps-page-components-oce-dcrscrutiny--style-4 {
2433
+ min-width: 160px;
2434
+ margin-right: 20px;
2435
+ }
2436
+
2437
+ .obps-page-components-oce-dcrscrutiny--style-5 {
2438
+ margin-top: 8px;
2439
+ font-size: 14px;
2440
+ line-height: 19px;
2441
+ color: #505A5F;
2442
+ font-weight: 400;
2443
+ }
2444
+
2445
+ .obps-page-components-oce-dcrscrutiny--style-6 {
2446
+ font-size: 18px;
2447
+ line-height: 21px;
2448
+ font-weight: 700;
2449
+ padding: 0px 0px 16px 0px;
2450
+ }
2451
+
2452
+ .obps-page-components-oce-dcrscrutiny--style-7 {
2453
+ min-width: 160px;
2454
+ margin-right: 20px;
2455
+ }
2456
+
2457
+ .obps-page-components-oce-dcrscrutiny--style-8 {
2458
+ margin-top: 8px;
2459
+ font-size: 14px;
2460
+ line-height: 19px;
2461
+ color: #505A5F;
2462
+ font-weight: 400;
2463
+ }
2464
+
2465
+ .obps-page-components-owner-details--style-1 {
2466
+ width: 24px;
2467
+ height: 24px;
2468
+ }
2469
+
2470
+ .obps-page-components-owner-details--style-2 {
2471
+ cursor: pointer;
2472
+ }
2473
+
2474
+ .obps-page-components-owner-details--style-3 {
2475
+ margin-bottom: 10px;
2476
+ }
2477
+
2478
+ .obps-page-components-owner-details--style-4 {
2479
+ display: flex;
2480
+ align-items: center;
2481
+ padding: 0 8px;
2482
+ color: green;
2483
+ font-weight: bold;
2484
+ gap: 4px;
2485
+ }
2486
+
2487
+ .obps-page-components-owner-details--style-5 {
2488
+ padding: 10px;
2489
+ font-size: 14px;
2490
+ }
2491
+
2492
+ .obps-page-components-owner-details--style-6 {
2493
+ padding: 10px;
2494
+ font-size: 14px;
2495
+ }
2496
+
2497
+ .obps-page-components-owner-details--style-7 {
2498
+ margin-top: 30px;
2499
+ }
2500
+
2501
+ .obps-page-components-pay-two-table--style-1 {
2502
+ margin-top: 24px;
2503
+ }
2504
+
2505
+ .obps-page-components-pay-two-table--style-2 {
2506
+ font-size: 0.9em;
2507
+ color: #555;
2508
+ margin-top: 4px;
2509
+ }
2510
+
2511
+ .obps-page-components-pay-two-table--style-3 {
2512
+ width: 100%;
2513
+ padding: 4px;
2514
+ border: 1px solid #ccc;
2515
+ border-radius: 4px;
2516
+ }
2517
+
2518
+ .obps-page-components-pay-two-table-regular--style-1 {
2519
+ margin-top: 24px;
2520
+ }
2521
+
2522
+ .obps-page-components-pay-two-table-regular--style-2 {
2523
+ font-size: 0.9em;
2524
+ color: #555;
2525
+ margin-top: 4px;
2526
+ }
2527
+
2528
+ .obps-page-components-pay-two-table-regular--style-3 {
2529
+ width: 100%;
2530
+ padding: 4px;
2531
+ border: 1px solid #ccc;
2532
+ border-radius: 4px;
2533
+ }
2534
+
2535
+ .obps-page-components-permanent-address--style-1 {
2536
+ padding-bottom: 10px;
2537
+ padding-top: 10px;
2538
+ }
2539
+
2540
+ .obps-page-components-plot-details--style-1 {
2541
+ margin-top: 1rem;
2542
+ }
2543
+
2544
+ .obps-page-components-plot-details--style-2 {
2545
+ font-size: 12px;
2546
+ color: red;
2547
+ }
2548
+
2549
+ .obps-page-components-plot-details--style-3 {
2550
+ font-size: 12px;
2551
+ color: black;
2552
+ }
2553
+
2554
+ .obps-page-components-plot-details--style-4 {
2555
+ font-size: 12px;
2556
+ color: red;
2557
+ }
2558
+
2559
+ .obps-page-components-plot-details--style-5 {
2560
+ font-size: 12px;
2561
+ color: red;
2562
+ }
2563
+
2564
+ .obps-page-components-plot-details--style-6 {
2565
+ margin-bottom: 1rem;
2566
+ }
2567
+
2568
+ .obps-page-components-plot-details--style-7 {
2569
+ margin-bottom: 1rem;
2570
+ }
2571
+
2572
+ .obps-page-components-plot-details--style-8 {
2573
+ font-size: 12px;
2574
+ color: red;
2575
+ }
2576
+
2577
+ .obps-page-components-plot-details--style-9 {
2578
+ font-size: 12px;
2579
+ color: red;
2580
+ }
2581
+
2582
+ .obps-page-components-plot-details-oc--style-1 {
2583
+ font-size: 12px;
2584
+ color: red;
2585
+ }
2586
+
2587
+ .obps-page-components-professional-sign-update--style-1 {
2588
+ color: black;
2589
+ }
2590
+
2591
+ .obps-page-components-professional-sign-update--style-2 {
2592
+ color: black;
2593
+ }
2594
+
2595
+ .obps-page-components-property-search--style-1 {
2596
+ margin-bottom: 16px;
2597
+ margin-top: 20px;
2598
+ }
2599
+
2600
+ .obps-page-components-property-search--style-2 {
2601
+ display: flex;
2602
+ gap: 16px;
2603
+ align-items: baseline;
2604
+ width: 100%;
2605
+ }
2606
+
2607
+ .obps-page-components-property-search--style-3 {
2608
+ color: white;
2609
+ width: 100%;
2610
+ max-width: 100px;
2611
+ }
2612
+
2613
+ .obps-page-components-property-search-bathinda--style-1 {
2614
+ margin-bottom: 16px;
2615
+ margin-top: 20px;
2616
+ }
2617
+
2618
+ .obps-page-components-property-search-bathinda--style-2 {
2619
+ display: flex;
2620
+ gap: 16px;
2621
+ align-items: baseline;
2622
+ width: 100%;
2623
+ }
2624
+
2625
+ .obps-page-components-property-search-bathinda--style-3 {
2626
+ color: white;
2627
+ width: 100%;
2628
+ max-width: 100px;
2629
+ }
2630
+
2631
+ .obps-page-components-property-search-ludhiana--style-1 {
2632
+ margin-bottom: 16px;
2633
+ margin-top: 20px;
2634
+ }
2635
+
2636
+ .obps-page-components-property-search-ludhiana--style-2 {
2637
+ display: flex;
2638
+ gap: 16px;
2639
+ align-items: baseline;
2640
+ width: 100%;
2641
+ }
2642
+
2643
+ .obps-page-components-property-search-ludhiana--style-3 {
2644
+ color: white;
2645
+ width: 100%;
2646
+ max-width: 100px;
2647
+ }
2648
+
2649
+ .obps-page-components-property-search-modal--style-1 {
2650
+ width: 100px;
2651
+ }
2652
+
2653
+ .obps-page-components-property-search-modal--style-2 {
2654
+ color: white;
2655
+ width: 100%;
2656
+ max-width: 100px;
2657
+ }
2658
+
2659
+ .obps-page-components-scrutiny-details--style-1 {
2660
+ overflow-wrap: break-word;
2661
+ }
2662
+
2663
+ .obps-page-components-site-inspection--style-1 {
2664
+ float: right;
2665
+ display: inline;
2666
+ }
2667
+
2668
+ .obps-page-components-site-inspection--style-2 {
2669
+ margin-bottom: 16px;
2670
+ margin-top: 32px;
2671
+ }
2672
+
2673
+ .obps-page-components-site-inspection--style-3 {
2674
+ margin-top: 20px;
2675
+ }
2676
+
2677
+ .obps-page-components-site-inspection--style-4 {
2678
+ margin-bottom: 16px;
2679
+ margin-top: 32px;
2680
+ }
2681
+
2682
+ .obps-page-components-stakeholder-docs-required--style-1 {
2683
+ display: flex;
2684
+ }
2685
+
2686
+ .obps-page-components-stakeholder-documents--style-1 {
2687
+ cursor: pointer;
2688
+ width: fit-content;
2689
+ display: flex;
2690
+ font-family: 'Roboto Condensed', sans-serif;
2691
+ color: rgba(13, 67, 167, var(--text-opacity));
2692
+ font-size: 16px;
2693
+ line-height: 24px;
2694
+ }
2695
+
2696
+ .obps-page-components-stakeholder-documents--style-2 {
2697
+ margin-bottom: 24px;
2698
+ }
2699
+
2700
+ .obps-page-components-stakeholder-documents--style-3 {
2701
+ margin-bottom: 10px;
2702
+ }
2703
+
2704
+ .obps-page-components-stakeholder-documents--style-4 {
2705
+ font-size: 12px;
2706
+ color: #505A5F;
2707
+ font-weight: 400;
2708
+ line-height: 15px;
2709
+ margin-bottom: 10px;
2710
+ }
2711
+
2712
+ .obps-page-components-stakeholder-documents--style-5 {
2713
+ padding: 10px;
2714
+ font-size: 14px;
2715
+ }
2716
+
2717
+ .obps-page-components-stakeholder-documents--style-6 {
2718
+ padding: 10px;
2719
+ font-size: 14px;
2720
+ }
2721
+
2722
+ .obps-page-components-summary-details--style-1 {
2723
+ overflow-wrap: break-word;
2724
+ }
2725
+
2726
+ .obps-page-components-summary-details--style-2 {
2727
+ width: 20px;
2728
+ }
2729
+
2730
+ .obps-page-components-summary-details--style-3 {
2731
+ margin-top: 20px;
2732
+ }
2733
+
2734
+ .obps-page-components-summary-details--style-4 {
2735
+ margin-top: 16px;
2736
+ }
2737
+
2738
+ .obps-page-components-summary-details--style-5 {
2739
+ margin-top: 16px;
2740
+ }
2741
+
2742
+ .obps-page-components-summary-details--style-6 {
2743
+ margin-top: 16px;
2744
+ }
2745
+
2746
+ .obps-page-components-summary-details--style-7 {
2747
+ margin-top: 16px;
2748
+ }
2749
+
2750
+ .obps-page-components-summary-details--style-8 {
2751
+ margin-top: 8px;
2752
+ }
2753
+
2754
+ .obps-page-components-summary-details--style-9 {
2755
+ word-break: break-word;
2756
+ }
2757
+
2758
+ .obps-page-components-summary-details--style-10 {
2759
+ margin-top: 16px;
2760
+ }
2761
+
2762
+ .obps-page-components-summary-details--style-11 {
2763
+ margin-top: 16px;
2764
+ }
2765
+
2766
+ .obps-page-components-summary-details--style-12 {
2767
+ display: flex;
2768
+ gap: 20px;
2769
+ flex-wrap: wrap;
2770
+ justify-content: space-between;
2771
+ }
2772
+
2773
+ .obps-pages-citizen-application-detail-index--style-1 {
2774
+ word-break: break-word;
2775
+ }
2776
+
2777
+ .obps-pages-citizen-application-detail-index--style-2 {
2778
+ display: flex;
2779
+ justify-content: space-between;
2780
+ align-items: flex-start;
2781
+ margin-bottom: 2rem;
2782
+ gap: 1rem;
2783
+ }
2784
+
2785
+ .obps-pages-citizen-application-detail-index--style-3 {
2786
+ flex: 1;
2787
+ }
2788
+
2789
+ .obps-pages-citizen-application-detail-index--style-4 {
2790
+ font-size: 2rem;
2791
+ color: #2e4a66;
2792
+ margin-bottom: 1rem;
2793
+ }
2794
+
2795
+ .obps-pages-citizen-application-detail-index--style-5 {
2796
+ position: static;
2797
+ }
2798
+
2799
+ .obps-pages-citizen-application-detail-index--style-6 {
2800
+ display: flex;
2801
+ flex-direction: column;
2802
+ align-items: center;
2803
+ margin-bottom: 1rem;
2804
+ }
2805
+
2806
+ .obps-pages-citizen-application-detail-index--style-7 {
2807
+ max-width: 120px;
2808
+ max-height: 120px;
2809
+ border: 2px solid #e0e0e0;
2810
+ border-radius: 8px;
2811
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
2812
+ flex-shrink: 0;
2813
+ }
2814
+
2815
+ .obps-pages-citizen-application-detail-index--style-8 {
2816
+ overflow-x: auto;
2817
+ }
2818
+
2819
+ .obps-pages-citizen-application-detail-index--style-9 {
2820
+ width: 100%;
2821
+ border-collapse: collapse;
2822
+ margin-top: 1rem;
2823
+ }
2824
+
2825
+ .obps-pages-citizen-application-detail-index--style-10 {
2826
+ background-color: #f5f5f5;
2827
+ border-bottom: 2px solid #ddd;
2828
+ }
2829
+
2830
+ .obps-pages-citizen-application-detail-index--style-11 {
2831
+ padding: 0.75rem;
2832
+ text-align: center;
2833
+ font-weight: 600;
2834
+ color: #2e4a66;
2835
+ width: 100px;
2836
+ }
2837
+
2838
+ .obps-pages-citizen-application-detail-index--style-12 {
2839
+ padding: 0.75rem;
2840
+ text-align: left;
2841
+ font-weight: 600;
2842
+ color: #2e4a66;
2843
+ }
2844
+
2845
+ .obps-pages-citizen-application-detail-index--style-13 {
2846
+ padding: 0.75rem;
2847
+ text-align: center;
2848
+ font-weight: 600;
2849
+ color: #2e4a66;
2850
+ width: 150px;
2851
+ }
2852
+
2853
+ .obps-pages-citizen-application-detail-index--style-14 {
2854
+ border-bottom: 1px solid #e0e0e0;
2855
+ }
2856
+
2857
+ .obps-pages-citizen-application-detail-index--style-15 {
2858
+ padding: 0.75rem;
2859
+ text-align: center;
2860
+ color: #333;
2861
+ font-weight: 500;
2862
+ }
2863
+
2864
+ .obps-pages-citizen-application-detail-index--style-16 {
2865
+ padding: 0.75rem;
2866
+ }
2867
+
2868
+ .obps-pages-citizen-application-detail-index--style-17 {
2869
+ color: #333;
2870
+ }
2871
+
2872
+ .obps-pages-citizen-application-detail-index--style-18 {
2873
+ font-size: 12px;
2874
+ color: #505A5F;
2875
+ margin-top: 5px;
2876
+ }
2877
+
2878
+ .obps-pages-citizen-application-detail-index--style-19 {
2879
+ padding: 0.75rem;
2880
+ text-align: center;
2881
+ }
2882
+
2883
+ .obps-pages-citizen-application-detail-index--style-20 {
2884
+ padding: 0.5rem 1rem;
2885
+ background-color: #2e4a66;
2886
+ color: #fff;
2887
+ border: none;
2888
+ border-radius: 4px;
2889
+ cursor: pointer;
2890
+ font-size: 0.875rem;
2891
+ font-weight: 500;
2892
+ transition: background-color 0.2s;
2893
+ }
2894
+
2895
+ .obps-pages-citizen-applications-cluapplication-details--style-1 {
2896
+ margin-right: auto;
2897
+ max-width: 960px;
2898
+ }
2899
+
2900
+ .obps-pages-citizen-applications-cluapplication-details--style-2 {
2901
+ margin-bottom: 30px;
2902
+ background: #FAFAFA;
2903
+ padding: 16px;
2904
+ border-radius: 4px;
2905
+ }
2906
+
2907
+ .obps-pages-citizen-applications-cluapplication-details--style-3 {
2908
+ margin-bottom: 30px;
2909
+ background: #FAFAFA;
2910
+ padding: 16px;
2911
+ border-radius: 4px;
2912
+ }
2913
+
2914
+ .obps-pages-citizen-applications-cluapplication-details--style-4 {
2915
+ margin-bottom: 30px;
2916
+ background: #FAFAFA;
2917
+ padding: 16px;
2918
+ border-radius: 4px;
2919
+ }
2920
+
2921
+ .obps-pages-citizen-applications-cluapplication-details--style-5 {
2922
+ margin-bottom: 30px;
2923
+ background: #FAFAFA;
2924
+ padding: 16px;
2925
+ border-radius: 4px;
2926
+ }
2927
+
2928
+ .obps-pages-citizen-applications-cluapplication-details--style-6 {
2929
+ margin-bottom: 30px;
2930
+ background: #FAFAFA;
2931
+ padding: 16px;
2932
+ border-radius: 4px;
2933
+ }
2934
+
2935
+ .obps-pages-citizen-applications-cluapplication-details--style-7 {
2936
+ margin-bottom: 16px;
2937
+ margin-top: 32px;
2938
+ }
2939
+
2940
+ .obps-pages-citizen-applications-cluapplication-details--style-8 {
2941
+ margin-top: 16px;
2942
+ }
2943
+
2944
+ .obps-pages-citizen-applications-clumy-applications--style-1 {
2945
+ text-align: center;
2946
+ }
2947
+
2948
+ .obps-pages-citizen-applications-clumy-applications--style-2 {
2949
+ display: flex;
2950
+ flex-direction: column;
2951
+ gap: 12px;
2952
+ }
2953
+
2954
+ .obps-pages-citizen-applications-clumy-applications--style-3 {
2955
+ padding: 12px;
2956
+ border-radius: 8px;
2957
+ box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
2958
+ }
2959
+
2960
+ .obps-pages-citizen-applications-clumy-applications--style-4 {
2961
+ font-size: 16px;
2962
+ margin-bottom: 8px;
2963
+ }
2964
+
2965
+ .obps-pages-citizen-applications-clumy-applications--style-5 {
2966
+ margin: 4px 0;
2967
+ }
2968
+
2969
+ .obps-pages-citizen-applications-clumy-applications--style-6 {
2970
+ margin: 4px 0;
2971
+ }
2972
+
2973
+ .obps-pages-citizen-applications-layout-application-summary--style-1 {
2974
+ overflow-x: scroll;
2975
+ }
2976
+
2977
+ .obps-pages-citizen-applications-layout-application-summary--style-2 {
2978
+ margin-top: 8px;
2979
+ }
2980
+
2981
+ .obps-pages-citizen-applications-layout-application-summary--style-3 {
2982
+ overflow-x: scroll;
2983
+ }
2984
+
2985
+ .obps-pages-citizen-applications-layout-application-summary--style-4 {
2986
+ margin-top: 8px;
2987
+ }
2988
+
2989
+ .obps-pages-citizen-applications-layout-application-summary--style-5 {
2990
+ display: flex;
2991
+ justify-content: space-between;
2992
+ align-items: center;
2993
+ }
2994
+
2995
+ .obps-pages-citizen-applications-layout-application-summary--style-6 {
2996
+ display: flex;
2997
+ align-items: center;
2998
+ gap: 16px;
2999
+ margin-left: auto;
3000
+ }
3001
+
3002
+ .obps-pages-citizen-applications-layout-application-summary--style-7 {
3003
+ margin-bottom: 20px;
3004
+ }
3005
+
3006
+ .obps-pages-citizen-applications-layout-application-summary--style-8 {
3007
+ display: flex;
3008
+ gap: 20px;
3009
+ flex-wrap: wrap;
3010
+ justify-content: space-between;
3011
+ }
3012
+
3013
+ .obps-pages-citizen-applications-layout-application-summary--style-9 {
3014
+ margin-top: 16px;
3015
+ }
3016
+
3017
+ .obps-pages-citizen-applications-layout-document-view--style-1 {
3018
+ float: right;
3019
+ display: inline;
3020
+ }
3021
+
3022
+ .obps-pages-citizen-applications-layout-document-view--style-2 {
3023
+ padding: 16px;
3024
+ text-align: center;
3025
+ color: #666;
3026
+ }
3027
+
3028
+ .obps-pages-citizen-applications-layout-my-applications--style-1 {
3029
+ text-align: center;
3030
+ }
3031
+
3032
+ .obps-pages-citizen-applications-layout-my-applications--style-2 {
3033
+ display: flex;
3034
+ flex-direction: column;
3035
+ gap: 12px;
3036
+ }
3037
+
3038
+ .obps-pages-citizen-applications-layout-my-applications--style-3 {
3039
+ padding: 12px;
3040
+ border-radius: 8px;
3041
+ box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
3042
+ }
3043
+
3044
+ .obps-pages-citizen-applications-layout-my-applications--style-4 {
3045
+ font-size: 16px;
3046
+ margin-bottom: 8px;
3047
+ }
3048
+
3049
+ .obps-pages-citizen-applications-layout-my-applications--style-5 {
3050
+ margin: 4px 0;
3051
+ }
3052
+
3053
+ .obps-pages-citizen-applications-layout-my-applications--style-6 {
3054
+ margin: 4px 0;
3055
+ }
3056
+
3057
+ .obps-pages-citizen-applications-layout-response-citizen--style-1 {
3058
+ padding: 10px;
3059
+ }
3060
+
3061
+ .obps-pages-citizen-applications-layout-response-citizen--style-2 {
3062
+ display: flex;
3063
+ justify-content: flex-end;
3064
+ align-items: baseline;
3065
+ }
3066
+
3067
+ .obps-pages-citizen-architect-inbox-application-card--style-1 {
3068
+ margin-top: 20px;
3069
+ }
3070
+
3071
+ .obps-pages-citizen-architect-inbox-application-card--style-2 {
3072
+ text-align: center;
3073
+ }
3074
+
3075
+ .obps-pages-citizen-architect-inbox-application-links--style-1 {
3076
+ justify-content: flex-start;
3077
+ }
3078
+
3079
+ .obps-pages-citizen-architect-inbox-desktop-inbox--style-1 {
3080
+ margin-top: 20px;
3081
+ }
3082
+
3083
+ .obps-pages-citizen-architect-inbox-desktop-inbox--style-2 {
3084
+ text-align: center;
3085
+ }
3086
+
3087
+ .obps-pages-citizen-architect-inbox-desktop-inbox--style-3 {
3088
+ flex: 1;
3089
+ }
3090
+
3091
+ .obps-pages-citizen-architect-inbox-desktop-inbox--style-4 {
3092
+ margin-left: 24px;
3093
+ flex: 1;
3094
+ }
3095
+
3096
+ .obps-pages-citizen-architect-inbox-filter--style-1 {
3097
+ border: 1px solid #e0e0e0;
3098
+ padding: 6px;
3099
+ }
3100
+
3101
+ .obps-pages-citizen-architect-inbox-filter--style-2 {
3102
+ flex: 1;
3103
+ }
3104
+
3105
+ .obps-pages-citizen-architect-inbox-mobile-inbox--style-1 {
3106
+ padding: 0;
3107
+ }
3108
+
3109
+ .obps-pages-citizen-architect-inbox-search--style-1 {
3110
+ font-weight: 700;
3111
+ font-size: 24px;
3112
+ margin-top: 30px;
3113
+ line-height: 28px;
3114
+ }
3115
+
3116
+ .obps-pages-citizen-architect-inbox-search--style-2 {
3117
+ position: relative;
3118
+ float: right;
3119
+ margin-top: -60px;
3120
+ }
3121
+
3122
+ .obps-pages-citizen-architect-inbox-search--style-3 {
3123
+ width: 100%;
3124
+ display: grid;
3125
+ }
3126
+
3127
+ .obps-pages-citizen-architect-inbox-search--style-4 {
3128
+ font-weight: 700;
3129
+ color: rgba(212, 53, 28);
3130
+ padding-left: 8px;
3131
+ margin-top: -20px;
3132
+ font-size: 12px;
3133
+ }
3134
+
3135
+ .obps-pages-citizen-architect-inbox-search--style-5 {
3136
+ margin-top: 56px;
3137
+ }
3138
+
3139
+ .obps-pages-citizen-architect-inbox-search--style-6 {
3140
+ padding-top: 65px;
3141
+ margin-left: -75px;
3142
+ }
3143
+
3144
+ .obps-pages-citizen-architect-inbox-search--style-7 {
3145
+ flex: 1;
3146
+ }
3147
+
3148
+ .obps-pages-citizen-architect-inbox-search--style-8 {
3149
+ flex: 1;
3150
+ }
3151
+
3152
+ .obps-pages-citizen-architect-inbox-sort-by--style-1 {
3153
+ border: 1px solid #e0e0e0;
3154
+ padding: 6px;
3155
+ }
3156
+
3157
+ .obps-pages-citizen-architect-inbox-status--style-1 {
3158
+ font-weight: 400;
3159
+ font-size: 16px;
3160
+ }
3161
+
3162
+ .obps-pages-citizen-architect-inbox-status-count--style-1 {
3163
+ margin-top: 4px;
3164
+ }
3165
+
3166
+ .obps-pages-citizen-bpa-application-detail-bpaapplication-timeline--style-1 {
3167
+ margin-bottom: 16px;
3168
+ margin-top: 32px;
3169
+ }
3170
+
3171
+ .obps-pages-citizen-bpa-application-detail-bpacaption--style-1 {
3172
+ overflow: hidden;
3173
+ text-overflow: ellipsis;
3174
+ display: -webkit-box;
3175
+ -webkit-line-clamp: 1px;
3176
+ -webkit-box-orient: vertical;
3177
+ }
3178
+
3179
+ .obps-pages-citizen-bpa-application-detail-bpacaption--style-2 {
3180
+ color: #800000;
3181
+ }
3182
+
3183
+ .obps-pages-citizen-bpa-application-detail-bpacaption--style-3 {
3184
+ overflow: visible;
3185
+ }
3186
+
3187
+ .obps-pages-citizen-bpa-application-detail-bpacaption--style-4 {
3188
+ color: #800000;
3189
+ }
3190
+
3191
+ .obps-pages-citizen-bpa-application-detail-citizen-consent--style-1 {
3192
+ white-space: pre-wrap;
3193
+ word-wrap: break-word;
3194
+ text-align: justify;
3195
+ font-family: Roboto, serif;
3196
+ }
3197
+
3198
+ .obps-pages-citizen-bpa-application-detail-citizen-consent--style-2 {
3199
+ display: flex;
3200
+ justify-content: flex-end;
3201
+ }
3202
+
3203
+ .obps-pages-citizen-bpa-application-detail-citizen-consent--style-3 {
3204
+ display: flex;
3205
+ justify-content: flex-end;
3206
+ }
3207
+
3208
+ .obps-pages-citizen-bpa-application-detail-citizen-consent--style-4 {
3209
+ color: red;
3210
+ }
3211
+
3212
+ .obps-pages-citizen-bpa-application-detail-citizen-consent--style-5 {
3213
+ color: green;
3214
+ }
3215
+
3216
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-1 {
3217
+ margin-left: 22px;
3218
+ }
3219
+
3220
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-2 {
3221
+ background-color: #FFFFFF;
3222
+ }
3223
+
3224
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-3 {
3225
+ height: 100%;
3226
+ }
3227
+
3228
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-4 {
3229
+ height: 95%;
3230
+ }
3231
+
3232
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-5 {
3233
+ font-size: 18px;
3234
+ padding-bottom: 16px;
3235
+ color: #000000;
3236
+ font-weight: 700;
3237
+ }
3238
+
3239
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-6 {
3240
+ height: 90%;
3241
+ overflow: auto;
3242
+ }
3243
+
3244
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-7 {
3245
+ display: flex;
3246
+ justify-content: center;
3247
+ min-height: 5%;
3248
+ }
3249
+
3250
+ .obps-pages-citizen-bpa-application-detail-modal-index--style-8 {
3251
+ min-width: 240px;
3252
+ }
3253
+
3254
+ .obps-pages-citizen-bpa-application-detail-index--style-1 {
3255
+ color: green;
3256
+ }
3257
+
3258
+ .obps-pages-citizen-bpa-application-detail-index--style-2 {
3259
+ float: right;
3260
+ display: inline;
3261
+ }
3262
+
3263
+ .obps-pages-citizen-bpa-application-detail-index--style-3 {
3264
+ width: 20px;
3265
+ }
3266
+
3267
+ .obps-pages-citizen-bpa-application-detail-index--style-4 {
3268
+ float: right;
3269
+ display: inline;
3270
+ }
3271
+
3272
+ .obps-pages-citizen-bpa-application-detail-index--style-5 {
3273
+ float: right;
3274
+ display: inline;
3275
+ }
3276
+
3277
+ .obps-pages-citizen-bpa-application-detail-index--style-6 {
3278
+ float: right;
3279
+ display: inline;
3280
+ }
3281
+
3282
+ .obps-pages-citizen-bpa-application-detail-index--style-7 {
3283
+ float: right;
3284
+ display: inline;
3285
+ }
3286
+
3287
+ .obps-pages-citizen-bpa-application-detail-index--style-8 {
3288
+ color: #a82227;
3289
+ cursor: pointer;
3290
+ }
3291
+
3292
+ .obps-pages-citizen-bpa-application-detail-index--style-9 {
3293
+ padding-bottom: 50px;
3294
+ }
3295
+
3296
+ .obps-pages-citizen-bpa-application-detail-index--style-10 {
3297
+ margin-right: auto;
3298
+ max-width: 960px;
3299
+ }
3300
+
3301
+ .obps-pages-citizen-bpa-application-detail-index--style-11 {
3302
+ display: flex;
3303
+ gap: 8px;
3304
+ align-items: center;
3305
+ flex-wrap: nowrap;
3306
+ }
3307
+
3308
+ .obps-pages-citizen-bpa-application-detail-index--style-12 {
3309
+ color: #A52A2A;
3310
+ }
3311
+
3312
+ .obps-pages-citizen-bpa-application-detail-index--style-13 {
3313
+ font-size: 20px;
3314
+ margin-top: 20px;
3315
+ }
3316
+
3317
+ .obps-pages-citizen-bpa-application-detail-index--style-14 {
3318
+ font-size: 20px;
3319
+ margin-top: 20px;
3320
+ }
3321
+
3322
+ .obps-pages-citizen-bpa-application-detail-index--style-15 {
3323
+ color: #a82227;
3324
+ }
3325
+
3326
+ .obps-pages-citizen-bpa-application-detail-index--style-16 {
3327
+ display: flex;
3328
+ gap: 20px;
3329
+ flex-wrap: wrap;
3330
+ justify-content: space-between;
3331
+ }
3332
+
3333
+ .obps-pages-citizen-bpa-application-detail-index--style-17 {
3334
+ margin-top: 19px;
3335
+ background: #FAFAFA;
3336
+ border: 1px solid #D6D5D4;
3337
+ border-radius: 4px;
3338
+ padding: 8px;
3339
+ line-height: 19px;
3340
+ max-width: 960px;
3341
+ min-width: 280px;
3342
+ }
3343
+
3344
+ .obps-pages-citizen-bpa-application-detail-index--style-18 {
3345
+ margin-top: 19px;
3346
+ background: #FAFAFA;
3347
+ border: 1px solid #D6D5D4;
3348
+ border-radius: 4px;
3349
+ padding: 8px;
3350
+ line-height: 19px;
3351
+ max-width: 950px;
3352
+ min-width: 280px;
3353
+ }
3354
+
3355
+ .obps-pages-citizen-bpa-application-detail-index--style-19 {
3356
+ margin-top: 5px;
3357
+ }
3358
+
3359
+ .obps-pages-citizen-bpa-application-detail-index--style-20 {
3360
+ padding: 20px;
3361
+ margin-bottom: 30px;
3362
+ border-radius: 12px;
3363
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
3364
+ border: 1px solid #f0f0f0;
3365
+ background: #fff;
3366
+ }
3367
+
3368
+ .obps-pages-citizen-bpa-application-detail-index--style-21 {
3369
+ font-size: 20px;
3370
+ margin-top: 20px;
3371
+ }
3372
+
3373
+ .obps-pages-citizen-bpa-application-detail-index--style-22 {
3374
+ padding: 20px;
3375
+ margin-bottom: 30px;
3376
+ border-radius: 12px;
3377
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
3378
+ border: 1px solid #f0f0f0;
3379
+ background: #fff;
3380
+ }
3381
+
3382
+ .obps-pages-citizen-bpa-application-detail-index--style-23 {
3383
+ width: 100%;
3384
+ }
3385
+
3386
+ .obps-pages-citizen-bpa-application-detail-index--style-24 {
3387
+ min-width: 310px;
3388
+ }
3389
+
3390
+ .obps-pages-citizen-bpa-application-detail-index--style-25 {
3391
+ width: 100%;
3392
+ }
3393
+
3394
+ .obps-pages-citizen-bpa-application-detail-index--style-26 {
3395
+ width: 100%;
3396
+ }
3397
+
3398
+ .obps-pages-citizen-bpa-application-detail-index--style-27 {
3399
+ min-width: 310px;
3400
+ }
3401
+
3402
+ .obps-pages-citizen-bpa-application-detail-index--style-28 {
3403
+ width: 100%;
3404
+ }
3405
+
3406
+ .obps-pages-citizen-bpa-application-detail-index--style-29 {
3407
+ z-index: 1000;
3408
+ }
3409
+
3410
+ .obps-pages-citizen-clusearch-application-search-atom-desktop--style-1 {
3411
+ margin-top: 20px;
3412
+ }
3413
+
3414
+ .obps-pages-citizen-clusearch-application-search-atom-desktop--style-2 {
3415
+ text-align: center;
3416
+ }
3417
+
3418
+ .obps-pages-citizen-clusearch-application-search-atom-mobile--style-1 {
3419
+ margin-top: 20px;
3420
+ }
3421
+
3422
+ .obps-pages-citizen-clusearch-application-search-atom-mobile--style-2 {
3423
+ text-align: center;
3424
+ }
3425
+
3426
+ .obps-pages-citizen-clusearch-application-search-field-component--style-1 {
3427
+ width: 100%;
3428
+ gap: 20px;
3429
+ }
3430
+
3431
+ .obps-pages-citizen-clusearch-application-search-field-component--style-2 {
3432
+ margin-top: 24px;
3433
+ }
3434
+
3435
+ .obps-pages-citizen-custom-landing-page-index--style-1 {
3436
+ font-size: 11px;
3437
+ color: #626A6E;
3438
+ margin-bottom: 10px;
3439
+ line-height: 1.4;
3440
+ }
3441
+
3442
+ .obps-pages-citizen-custom-landing-page-index--style-2 {
3443
+ text-decoration: none;
3444
+ }
3445
+
3446
+ .obps-pages-citizen-custom-landing-page-index--style-3 {
3447
+ text-decoration: none;
3448
+ }
3449
+
3450
+ .obps-pages-citizen-custom-landing-page-index--style-4 {
3451
+ cursor: default;
3452
+ }
3453
+
3454
+ .obps-pages-citizen-custom-landing-page-index--style-5 {
3455
+ text-decoration: none;
3456
+ }
3457
+
3458
+ .obps-pages-citizen-custom-landing-page-index--style-6 {
3459
+ margin-top: -25px;
3460
+ }
3461
+
3462
+ .obps-pages-citizen-custom-landing-page-index--style-7 {
3463
+ position: relative;
3464
+ text-align: center;
3465
+ }
3466
+
3467
+ .obps-pages-citizen-custom-landing-page-index--style-8 {
3468
+ position: absolute;
3469
+ top: -40px;
3470
+ right: -40px;
3471
+ width: 200px;
3472
+ height: 200px;
3473
+ background: rgba(255,255,255,0.05);
3474
+ border-radius: 50%;
3475
+ pointer-events: none;
3476
+ }
3477
+
3478
+ .obps-pages-citizen-custom-landing-page-index--style-9 {
3479
+ position: absolute;
3480
+ bottom: -60px;
3481
+ left: -30px;
3482
+ width: 250px;
3483
+ height: 250px;
3484
+ background: rgba(255,255,255,0.04);
3485
+ border-radius: 50%;
3486
+ pointer-events: none;
3487
+ }
3488
+
3489
+ .obps-pages-citizen-custom-landing-page-index--style-10 {
3490
+ display: inline-flex;
3491
+ align-items: center;
3492
+ gap: 6px;
3493
+ background: rgba(255,255,255,0.15);
3494
+ border-radius: 20px;
3495
+ padding: 4px 14px;
3496
+ margin-bottom: 14px;
3497
+ border: 1px solid rgba(255,255,255,0.2);
3498
+ }
3499
+
3500
+ .obps-pages-citizen-custom-landing-page-index--style-11 {
3501
+ font-size: 12px;
3502
+ color: rgba(255,255,255,0.9);
3503
+ font-weight: 500;
3504
+ letter-spacing: 0.5px;
3505
+ }
3506
+
3507
+ .obps-pages-citizen-custom-landing-page-index--style-12 {
3508
+ display: flex;
3509
+ flex-wrap: wrap;
3510
+ gap: 8px;
3511
+ justify-content: center;
3512
+ margin-top: 8px;
3513
+ }
3514
+
3515
+ .obps-pages-citizen-custom-landing-page-index--style-13 {
3516
+ font-size: 11px;
3517
+ background: rgba(255,255,255,0.12);
3518
+ color: rgba(255,255,255,0.85);
3519
+ padding: 4px 12px;
3520
+ border-radius: 20px;
3521
+ border: 1px solid rgba(255,255,255,0.18);
3522
+ }
3523
+
3524
+ .obps-pages-citizen-custom-landing-page-index--style-14 {
3525
+ padding: 28px 0 40px;
3526
+ }
3527
+
3528
+ .obps-pages-citizen-custom-landing-page-index--style-15 {
3529
+ display: flex;
3530
+ justify-content: space-between;
3531
+ align-items: center;
3532
+ margin-bottom: 20px;
3533
+ padding-bottom: 14px;
3534
+ border-bottom: 2px solid #003C71;
3535
+ }
3536
+
3537
+ .obps-pages-citizen-custom-landing-page-index--style-16 {
3538
+ font-size: 20px;
3539
+ font-weight: 700;
3540
+ color: #003C71;
3541
+ margin: 0;
3542
+ }
3543
+
3544
+ .obps-pages-citizen-custom-landing-page-index--style-17 {
3545
+ font-size: 12px;
3546
+ color: #626A6E;
3547
+ background: #F3F2F1;
3548
+ padding: 4px 12px;
3549
+ border-radius: 20px;
3550
+ }
3551
+
3552
+ .obps-pages-citizen-custom-landing-page-index--style-18 {
3553
+ background: #FFF8E1;
3554
+ border: 1px solid #FFE082;
3555
+ border-radius: 12px;
3556
+ padding: 16px 20px;
3557
+ margin-bottom: 40px;
3558
+ }
3559
+
3560
+ .obps-pages-citizen-custom-landing-page-index--style-19 {
3561
+ display: flex;
3562
+ align-items: center;
3563
+ justify-content: space-between;
3564
+ cursor: pointer;
3565
+ user-select: none;
3566
+ }
3567
+
3568
+ .obps-pages-citizen-custom-landing-page-index--style-20 {
3569
+ display: flex;
3570
+ align-items: center;
3571
+ gap: 8px;
3572
+ }
3573
+
3574
+ .obps-pages-citizen-custom-landing-page-index--style-21 {
3575
+ font-size: 13px;
3576
+ font-weight: 600;
3577
+ color: #B5451B;
3578
+ }
3579
+
3580
+ .obps-pages-citizen-custom-landing-page-index--style-22 {
3581
+ margin-top: 14px;
3582
+ border-top: 1px solid #FFE082;
3583
+ padding-top: 14px;
3584
+ display: grid;
3585
+ grid-template-columns: 1fr 1fr;
3586
+ gap: 16px;
3587
+ }
3588
+
3589
+ .obps-pages-citizen-custom-landing-page-index--style-23 {
3590
+ font-size: 11px;
3591
+ font-weight: 600;
3592
+ color: #626A6E;
3593
+ margin-bottom: 6px;
3594
+ text-transform: uppercase;
3595
+ letter-spacing: 0.5px;
3596
+ }
3597
+
3598
+ .obps-pages-citizen-custom-landing-page-index--style-24 {
3599
+ font-family: monospace;
3600
+ font-size: 12px;
3601
+ color: #1F1F1F;
3602
+ background: rgba(255,255,255,0.7);
3603
+ padding: 8px 12px;
3604
+ border-radius: 6px;
3605
+ line-height: 1.9;
3606
+ }
3607
+
3608
+ .obps-pages-citizen-custom-landing-page-index--style-25 {
3609
+ font-size: 11px;
3610
+ font-weight: 600;
3611
+ color: #626A6E;
3612
+ margin-bottom: 6px;
3613
+ text-transform: uppercase;
3614
+ letter-spacing: 0.5px;
3615
+ }
3616
+
3617
+ .obps-pages-citizen-custom-landing-page-index--style-26 {
3618
+ font-size: 13px;
3619
+ color: #1F1F1F;
3620
+ display: flex;
3621
+ flex-direction: column;
3622
+ gap: 8px;
3623
+ }
3624
+
3625
+ .obps-pages-citizen-custom-landing-page-index--style-27 {
3626
+ font-family: monospace;
3627
+ background: rgba(255,255,255,0.8);
3628
+ padding: 2px 10px;
3629
+ border-radius: 4px;
3630
+ font-weight: 700;
3631
+ border: 1px solid #FFE082;
3632
+ }
3633
+
3634
+ .obps-pages-citizen-custom-landing-page-index--style-28 {
3635
+ font-weight: 600;
3636
+ }
3637
+
3638
+ .obps-pages-citizen-edcr-edcracknowledgement--style-1 {
3639
+ padding: 0px;
3640
+ }
3641
+
3642
+ .obps-pages-citizen-edcr-edcracknowledgement--style-2 {
3643
+ width: 100%;
3644
+ padding: 10px;
3645
+ }
3646
+
3647
+ .obps-pages-citizen-edcr-edcracknowledgement--style-3 {
3648
+ padding: 10px;
3649
+ padding-bottom: 10px;
3650
+ }
3651
+
3652
+ .obps-pages-citizen-edcr-edcracknowledgement--style-4 {
3653
+ padding: 0px;
3654
+ }
3655
+
3656
+ .obps-pages-citizen-edcr-edcracknowledgement--style-5 {
3657
+ width: 100%;
3658
+ padding: 10px;
3659
+ }
3660
+
3661
+ .obps-pages-citizen-edcr-edcracknowledgement--style-6 {
3662
+ padding: 0px 8px;
3663
+ margin-bottom: 10px;
3664
+ }
3665
+
3666
+ .obps-pages-citizen-edcr-edcracknowledgement--style-7 {
3667
+ margin-left: unset;
3668
+ margin-bottom: 10px;
3669
+ padding: 0px 8px;
3670
+ }
3671
+
3672
+ .obps-pages-citizen-edcr-edcracknowledgement--style-8 {
3673
+ display: flex;
3674
+ gap: 8px;
3675
+ margin-top: 15px;
3676
+ flex-wrap: nowrap;
3677
+ padding-left: 8px;
3678
+ padding-bottom: 15px;
3679
+ }
3680
+
3681
+ .obps-pages-citizen-edcr-edcracknowledgement--style-9 {
3682
+ padding-bottom: 15px;
3683
+ }
3684
+
3685
+ .obps-pages-citizen-edcr-edcracknowledgement--style-10 {
3686
+ padding: 0px;
3687
+ }
3688
+
3689
+ .obps-pages-citizen-edcr-edcracknowledgement--style-11 {
3690
+ width: 100%;
3691
+ padding: 10px;
3692
+ }
3693
+
3694
+ .obps-pages-citizen-edcr-edcracknowledgement--style-12 {
3695
+ padding: 0px 8px;
3696
+ margin-bottom: 10px;
3697
+ }
3698
+
3699
+ .obps-pages-citizen-edcr-edcracknowledgement--style-13 {
3700
+ padding: 0px 8px;
3701
+ margin-bottom: 10px;
3702
+ }
3703
+
3704
+ .obps-pages-citizen-edcr-edcracknowledgement--style-14 {
3705
+ margin-left: unset;
3706
+ margin-bottom: 10px;
3707
+ padding: 0px 8px;
3708
+ }
3709
+
3710
+ .obps-pages-citizen-edcr-edcracknowledgement--style-15 {
3711
+ padding: 10px;
3712
+ padding-bottom: 10px;
3713
+ }
3714
+
3715
+ .obps-pages-citizen-edcr-index--style-1 {
3716
+ background-color: #FFFFFF;
3717
+ }
3718
+
3719
+ .obps-pages-citizen-edcr-index--style-2 {
3720
+ min-height: 45px;
3721
+ height: auto;
3722
+ width: 160px;
3723
+ }
3724
+
3725
+ .obps-pages-citizen-edcr-inbox-filter-form-fields-component--style-1 {
3726
+ font-weight: 400;
3727
+ font-size: 16px;
3728
+ }
3729
+
3730
+ .obps-pages-citizen-edcr-inbox-filter-form-fields-component--style-2 {
3731
+ font-weight: 400;
3732
+ font-size: 16px;
3733
+ }
3734
+
3735
+ .obps-pages-citizen-edcr-inbox-search-form-fields-component--style-1 {
3736
+ margin-left: 24px;
3737
+ }
3738
+
3739
+ .obps-pages-citizen-edcr-inbox-search-form-fields-component--style-2 {
3740
+ text-align: start;
3741
+ }
3742
+
3743
+ .obps-pages-citizen-edcr-inbox-search-form-fields-component--style-3 {
3744
+ width: 100%;
3745
+ }
3746
+
3747
+ .obps-pages-citizen-edcr-inbox-use-inbox-mobile-cards-data--style-1 {
3748
+ background: none;
3749
+ padding: 0px;
3750
+ }
3751
+
3752
+ .obps-pages-citizen-edcr-inbox-use-inbox-mobile-cards-data--style-2 {
3753
+ background: none;
3754
+ padding: 0px;
3755
+ }
3756
+
3757
+ .obps-pages-citizen-edcr-inbox-use-inbox-table-config--style-1 {
3758
+ background: none;
3759
+ padding: unset;
3760
+ }
3761
+
3762
+ .obps-pages-citizen-edcr-inbox-use-inbox-table-config--style-2 {
3763
+ background: none;
3764
+ padding: unset;
3765
+ }
3766
+
3767
+ .obps-pages-citizen-layout-search-application-search-atom-desktop--style-1 {
3768
+ margin-top: 20px;
3769
+ }
3770
+
3771
+ .obps-pages-citizen-layout-search-application-search-atom-desktop--style-2 {
3772
+ text-align: center;
3773
+ }
3774
+
3775
+ .obps-pages-citizen-layout-search-application-search-atom-mobile--style-1 {
3776
+ margin-top: 20px;
3777
+ }
3778
+
3779
+ .obps-pages-citizen-layout-search-application-search-atom-mobile--style-2 {
3780
+ text-align: center;
3781
+ }
3782
+
3783
+ .obps-pages-citizen-layout-search-application-search-field-component--style-1 {
3784
+ width: 100%;
3785
+ gap: 20px;
3786
+ }
3787
+
3788
+ .obps-pages-citizen-layout-search-application-search-field-component--style-2 {
3789
+ display: flex;
3790
+ flex-direction: column;
3791
+ }
3792
+
3793
+ .obps-pages-citizen-layout-search-application-search-field-component--style-3 {
3794
+ margin-top: 24px;
3795
+ }
3796
+
3797
+ .obps-pages-citizen-layout-stepper-layout-step-form-three--style-1 {
3798
+ padding: 20px;
3799
+ text-align: center;
3800
+ }
3801
+
3802
+ .obps-pages-citizen-my-application-index--style-1 {
3803
+ margin-top: 6%;
3804
+ }
3805
+
3806
+ .obps-pages-citizen-new-building-permit-architectconcent--style-1 {
3807
+ white-space: pre-wrap;
3808
+ word-wrap: break-word;
3809
+ text-align: justify;
3810
+ font-family: Roboto, serif;
3811
+ }
3812
+
3813
+ .obps-pages-citizen-new-building-permit-architectconcent--style-2 {
3814
+ display: flex;
3815
+ justify-content: flex-end;
3816
+ gap: 1rem;
3817
+ margin-top: 1rem;
3818
+ }
3819
+
3820
+ .obps-pages-citizen-new-building-permit-architectconcent--style-3 {
3821
+ display: flex;
3822
+ justify-content: flex-end;
3823
+ gap: 1rem;
3824
+ margin-top: 1rem;
3825
+ }
3826
+
3827
+ .obps-pages-citizen-new-building-permit-architectconcent--style-4 {
3828
+ color: red;
3829
+ }
3830
+
3831
+ .obps-pages-citizen-new-building-permit-architectconcent--style-5 {
3832
+ color: green;
3833
+ }
3834
+
3835
+ .obps-pages-citizen-new-building-permit-check-page--style-1 {
3836
+ margin-left: -55px;
3837
+ background: #fff;
3838
+ }
3839
+
3840
+ .obps-pages-citizen-new-building-permit-check-page--style-2 {
3841
+ color: green;
3842
+ }
3843
+
3844
+ .obps-pages-citizen-new-building-permit-check-page--style-3 {
3845
+ float: right;
3846
+ display: inline;
3847
+ margin-top: -80px;
3848
+ }
3849
+
3850
+ .obps-pages-citizen-new-building-permit-check-page--style-4 {
3851
+ float: right;
3852
+ display: inline;
3853
+ }
3854
+
3855
+ .obps-pages-citizen-new-building-permit-check-page--style-5 {
3856
+ margin-top: 30px;
3857
+ padding-bottom: 30px;
3858
+ }
3859
+
3860
+ .obps-pages-citizen-new-building-permit-check-page--style-6 {
3861
+ padding: 20px;
3862
+ margin-bottom: 30px;
3863
+ border-radius: 12px;
3864
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
3865
+ border: 1px solid #f0f0f0;
3866
+ background: #fff;
3867
+ }
3868
+
3869
+ .obps-pages-citizen-new-building-permit-check-page--style-7 {
3870
+ padding: 20px;
3871
+ margin-bottom: 30px;
3872
+ border-radius: 12px;
3873
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
3874
+ border: 1px solid #f0f0f0;
3875
+ background: #fff;
3876
+ }
3877
+
3878
+ .obps-pages-citizen-new-building-permit-check-page--style-8 {
3879
+ font-size: 16px;
3880
+ font-weight: 600;
3881
+ margin-bottom: 12px;
3882
+ color: #333;
3883
+ }
3884
+
3885
+ .obps-pages-citizen-new-building-permit-check-page--style-9 {
3886
+ border: 0.5px solid #eaeaea;
3887
+ margin: 0 0 16px 0;
3888
+ }
3889
+
3890
+ .obps-pages-citizen-new-building-permit-check-page--style-10 {
3891
+ padding: 20px;
3892
+ margin-bottom: 30px;
3893
+ border-radius: 12px;
3894
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
3895
+ border: 1px solid #f0f0f0;
3896
+ background: #fff;
3897
+ }
3898
+
3899
+ .obps-pages-citizen-new-building-permit-check-page--style-11 {
3900
+ font-size: 16px;
3901
+ font-weight: 600;
3902
+ margin-bottom: 12px;
3903
+ color: #333;
3904
+ }
3905
+
3906
+ .obps-pages-citizen-new-building-permit-check-page--style-12 {
3907
+ border: 0.5px solid #eaeaea;
3908
+ margin: 0 0 16px 0;
3909
+ }
3910
+
3911
+ .obps-pages-citizen-new-building-permit-check-page--style-13 {
3912
+ float: right;
3913
+ display: inline;
3914
+ margin-top: -80px;
3915
+ }
3916
+
3917
+ .obps-pages-citizen-new-building-permit-check-page--style-14 {
3918
+ color: white;
3919
+ }
3920
+
3921
+ .obps-pages-citizen-new-building-permit-check-page--style-15 {
3922
+ padding: 20px;
3923
+ margin-bottom: 30px;
3924
+ border-radius: 12px;
3925
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
3926
+ border: 1px solid #f0f0f0;
3927
+ background: #fff;
3928
+ }
3929
+
3930
+ .obps-pages-citizen-new-building-permit-check-page--style-16 {
3931
+ border: 0.5px solid #eaeaea;
3932
+ margin: 0 0 16px 0;
3933
+ }
3934
+
3935
+ .obps-pages-citizen-new-building-permit-check-page--style-17 {
3936
+ font-size: 20px;
3937
+ }
3938
+
3939
+ .obps-pages-citizen-new-building-permit-check-page--style-18 {
3940
+ margin-top: 19px;
3941
+ background: #FAFAFA;
3942
+ border: 1px solid #D6D5D4;
3943
+ border-radius: 4px;
3944
+ padding: 12px;
3945
+ max-width: 960px;
3946
+ min-width: 280px;
3947
+ }
3948
+
3949
+ .obps-pages-citizen-new-building-permit-check-page--style-19 {
3950
+ width: 100%;
3951
+ border-collapse: collapse;
3952
+ font-size: 15px;
3953
+ }
3954
+
3955
+ .obps-pages-citizen-new-building-permit-check-page--style-20 {
3956
+ border-bottom: 1px solid #eaeaea;
3957
+ }
3958
+
3959
+ .obps-pages-citizen-new-building-permit-check-page--style-21 {
3960
+ padding: 8px;
3961
+ font-weight: 600;
3962
+ color: #333;
3963
+ }
3964
+
3965
+ .obps-pages-citizen-new-building-permit-check-page--style-22 {
3966
+ padding: 8px;
3967
+ text-align: right;
3968
+ color: #555;
3969
+ }
3970
+
3971
+ .obps-pages-citizen-new-building-permit-check-page--style-23 {
3972
+ padding: 12px 8px;
3973
+ font-weight: 600;
3974
+ color: #333;
3975
+ }
3976
+
3977
+ .obps-pages-citizen-new-building-permit-check-page--style-24 {
3978
+ padding: 12px 8px;
3979
+ text-align: right;
3980
+ }
3981
+
3982
+ .obps-pages-citizen-new-building-permit-check-page--style-25 {
3983
+ padding: 12px 8px;
3984
+ font-weight: 600;
3985
+ color: #333;
3986
+ }
3987
+
3988
+ .obps-pages-citizen-new-building-permit-check-page--style-26 {
3989
+ padding: 12px 8px;
3990
+ text-align: right;
3991
+ }
3992
+
3993
+ .obps-pages-citizen-new-building-permit-check-page--style-27 {
3994
+ border: 0.5px solid #eaeaea;
3995
+ margin: 0 0 16px 0;
3996
+ }
3997
+
3998
+ .obps-pages-citizen-new-building-permit-check-page--style-28 {
3999
+ font-size: 20px;
4000
+ }
4001
+
4002
+ .obps-pages-citizen-new-building-permit-check-page--style-29 {
4003
+ padding: 20px;
4004
+ margin-bottom: 30px;
4005
+ border-radius: 12px;
4006
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
4007
+ border: 1px solid #f0f0f0;
4008
+ background: #fff;
4009
+ }
4010
+
4011
+ .obps-pages-citizen-new-building-permit-check-page--style-30 {
4012
+ font-size: 20px;
4013
+ }
4014
+
4015
+ .obps-pages-citizen-new-building-permit-check-page--style-31 {
4016
+ font-size: 18px;
4017
+ margin-top: 20px;
4018
+ }
4019
+
4020
+ .obps-pages-citizen-new-building-permit-check-page--style-32 {
4021
+ font-size: 18px;
4022
+ margin-top: 20px;
4023
+ }
4024
+
4025
+ .obps-pages-citizen-new-building-permit-check-page--style-33 {
4026
+ font-size: 18px;
4027
+ margin-top: 20px;
4028
+ }
4029
+
4030
+ .obps-pages-citizen-new-building-permit-check-page--style-34 {
4031
+ border: 0.5px solid #eaeaea;
4032
+ margin: 0 0 16px 0;
4033
+ }
4034
+
4035
+ .obps-pages-citizen-new-building-permit-check-page--style-35 {
4036
+ font-size: 20px;
4037
+ }
4038
+
4039
+ .obps-pages-citizen-new-building-permit-check-page--style-36 {
4040
+ margin-top: 15px;
4041
+ font-size: 18px;
4042
+ }
4043
+
4044
+ .obps-pages-citizen-new-building-permit-check-page--style-37 {
4045
+ overflow: scroll;
4046
+ }
4047
+
4048
+ .obps-pages-citizen-new-building-permit-check-page--style-38 {
4049
+ border: 0.5px solid #eaeaea;
4050
+ margin: 0 0 16px 0;
4051
+ }
4052
+
4053
+ .obps-pages-citizen-new-building-permit-check-page--style-39 {
4054
+ font-size: 20px;
4055
+ }
4056
+
4057
+ .obps-pages-citizen-new-building-permit-check-page--style-40 {
4058
+ border: none;
4059
+ }
4060
+
4061
+ .obps-pages-citizen-new-building-permit-check-page--style-41 {
4062
+ padding: 20px;
4063
+ margin-bottom: 30px;
4064
+ border-radius: 12px;
4065
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
4066
+ border: 1px solid #f0f0f0;
4067
+ background: #fff;
4068
+ }
4069
+
4070
+ .obps-pages-citizen-new-building-permit-check-page--style-42 {
4071
+ border: 0.5px solid #eaeaea;
4072
+ margin: 0 0 16px 0;
4073
+ }
4074
+
4075
+ .obps-pages-citizen-new-building-permit-check-page--style-43 {
4076
+ float: right;
4077
+ display: inline;
4078
+ margin-top: -80px;
4079
+ }
4080
+
4081
+ .obps-pages-citizen-new-building-permit-check-page--style-44 {
4082
+ color: white;
4083
+ }
4084
+
4085
+ .obps-pages-citizen-new-building-permit-check-page--style-45 {
4086
+ padding: 20px;
4087
+ margin-bottom: 30px;
4088
+ border-radius: 12px;
4089
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
4090
+ border: 1px solid #f0f0f0;
4091
+ background: #fff;
4092
+ }
4093
+
4094
+ .obps-pages-citizen-new-building-permit-check-page--style-46 {
4095
+ border: 0.5px solid #eaeaea;
4096
+ margin: 0 0 16px 0;
4097
+ }
4098
+
4099
+ .obps-pages-citizen-new-building-permit-check-page--style-47 {
4100
+ float: right;
4101
+ display: inline;
4102
+ margin-top: -80px;
4103
+ }
4104
+
4105
+ .obps-pages-citizen-new-building-permit-check-page--style-48 {
4106
+ color: white;
4107
+ }
4108
+
4109
+ .obps-pages-citizen-new-building-permit-check-page--style-49 {
4110
+ padding: 20px;
4111
+ margin-bottom: 30px;
4112
+ border-radius: 12px;
4113
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
4114
+ border: 1px solid #f0f0f0;
4115
+ background: #fff;
4116
+ }
4117
+
4118
+ .obps-pages-citizen-new-building-permit-check-page--style-50 {
4119
+ border: 0.5px solid #eaeaea;
4120
+ margin: 0 0 16px 0;
4121
+ }
4122
+
4123
+ .obps-pages-citizen-new-building-permit-check-page--style-51 {
4124
+ padding: 20px;
4125
+ margin-bottom: 30px;
4126
+ border-radius: 12px;
4127
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
4128
+ border: 1px solid #f0f0f0;
4129
+ background: #fff;
4130
+ }
4131
+
4132
+ .obps-pages-citizen-new-building-permit-check-page--style-52 {
4133
+ border: 0.5px solid #eaeaea;
4134
+ margin: 0 0 16px 0;
4135
+ }
4136
+
4137
+ .obps-pages-citizen-new-building-permit-check-page--style-53 {
4138
+ padding: 20px;
4139
+ margin-bottom: 30px;
4140
+ border-radius: 12px;
4141
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
4142
+ border: 1px solid #f0f0f0;
4143
+ background: #fff;
4144
+ }
4145
+
4146
+ .obps-pages-citizen-new-building-permit-check-page--style-54 {
4147
+ border: 0.5px solid #eaeaea;
4148
+ margin: 0 0 16px 0;
4149
+ }
4150
+
4151
+ .obps-pages-citizen-new-building-permit-check-page--style-55 {
4152
+ font-size: 20px;
4153
+ color: #3f4351;
4154
+ }
4155
+
4156
+ .obps-pages-citizen-new-building-permit-check-page--style-56 {
4157
+ border: 0.5px solid #eaeaea;
4158
+ margin: 0 0 16px 0;
4159
+ }
4160
+
4161
+ .obps-pages-citizen-new-building-permit-check-page--style-57 {
4162
+ font-size: 20px;
4163
+ color: #3f4351;
4164
+ }
4165
+
4166
+ .obps-pages-citizen-new-building-permit-check-page--style-58 {
4167
+ border: 0.5px solid #eaeaea;
4168
+ margin: 0 0 16px 0;
4169
+ }
4170
+
4171
+ .obps-pages-citizen-new-building-permit-check-page--style-59 {
4172
+ font-size: 20px;
4173
+ color: #3f4351;
4174
+ }
4175
+
4176
+ .obps-pages-citizen-new-building-permit-check-page--style-60 {
4177
+ border: 0.5px solid #eaeaea;
4178
+ margin: 0 0 16px 0;
4179
+ }
4180
+
4181
+ .obps-pages-citizen-new-building-permit-check-page--style-61 {
4182
+ margin-bottom: 200px;
4183
+ }
4184
+
4185
+ .obps-pages-citizen-new-building-permit-check-page--style-62 {
4186
+ margin-top: 15px;
4187
+ }
4188
+
4189
+ .obps-pages-citizen-new-building-permit-check-page--style-63 {
4190
+ display: inline;
4191
+ }
4192
+
4193
+ .obps-pages-citizen-new-building-permit-check-page--style-64 {
4194
+ color: red;
4195
+ }
4196
+
4197
+ .obps-pages-citizen-new-building-permit-check-page--style-65 {
4198
+ color: green;
4199
+ }
4200
+
4201
+ .obps-pages-citizen-new-building-permit-check-page--style-66 {
4202
+ border: 0.5px solid #eaeaea;
4203
+ margin: 0 0 16px 0;
4204
+ }
4205
+
4206
+ .obps-pages-citizen-new-building-permit-check-page--style-67 {
4207
+ border: 1px solid;
4208
+ background: transparent;
4209
+ color: #2947a3;
4210
+ margin-right: 5px;
4211
+ }
4212
+
4213
+ .obps-pages-citizen-new-building-permit-obpsacknowledgement--style-1 {
4214
+ margin-top: 10px;
4215
+ }
4216
+
4217
+ .obps-pages-citizen-new-building-permit-index--style-1 {
4218
+ display: flex;
4219
+ flex-direction: row;
4220
+ }
4221
+
4222
+ .obps-pages-citizen-new-building-permit-index--style-2 {
4223
+ flex-grow: 1;
4224
+ }
4225
+
4226
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-1 {
4227
+ padding-right: 16px;
4228
+ }
4229
+
4230
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-2 {
4231
+ padding-right: 16px;
4232
+ }
4233
+
4234
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-3 {
4235
+ padding-right: 16px;
4236
+ }
4237
+
4238
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-4 {
4239
+ width: 100px;
4240
+ display: inline;
4241
+ }
4242
+
4243
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-5 {
4244
+ margin-top: -10px;
4245
+ float: right;
4246
+ position: relative;
4247
+ bottom: 32px;
4248
+ }
4249
+
4250
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-6 {
4251
+ padding-right: 16px;
4252
+ }
4253
+
4254
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-7 {
4255
+ border: none;
4256
+ }
4257
+
4258
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-8 {
4259
+ margin-top: 8px;
4260
+ margin-bottom: 20px;
4261
+ text-align: Left;
4262
+ font-size: 16px;
4263
+ line-height: 19px;
4264
+ color: #505A5F;
4265
+ font-weight: 400;
4266
+ }
4267
+
4268
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-9 {
4269
+ margin-top: 8px;
4270
+ margin-bottom: 20px;
4271
+ text-align: Left;
4272
+ font-size: 16px;
4273
+ line-height: 19px;
4274
+ color: #505A5F;
4275
+ font-weight: 400;
4276
+ }
4277
+
4278
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-10 {
4279
+ color: #cccccc;
4280
+ background-color: #cccccc;
4281
+ height: 2px;
4282
+ margin-top: 20px;
4283
+ margin-bottom: 20px;
4284
+ }
4285
+
4286
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-11 {
4287
+ color: #cccccc;
4288
+ background-color: #cccccc;
4289
+ height: 2px;
4290
+ margin-top: 20px;
4291
+ margin-bottom: 20px;
4292
+ }
4293
+
4294
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-12 {
4295
+ margin-top: 15px;
4296
+ }
4297
+
4298
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-13 {
4299
+ overflow-x: scroll;
4300
+ }
4301
+
4302
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-14 {
4303
+ color: #cccccc;
4304
+ background-color: #cccccc;
4305
+ height: 2px;
4306
+ margin-top: 20px;
4307
+ margin-bottom: 20px;
4308
+ }
4309
+
4310
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-15 {
4311
+ border: none;
4312
+ }
4313
+
4314
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-16 {
4315
+ padding-right: 16px;
4316
+ }
4317
+
4318
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-17 {
4319
+ width: 100px;
4320
+ display: inline;
4321
+ }
4322
+
4323
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-18 {
4324
+ margin-top: -10px;
4325
+ float: right;
4326
+ position: relative;
4327
+ bottom: 32px;
4328
+ }
4329
+
4330
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-19 {
4331
+ padding-right: 16px;
4332
+ }
4333
+
4334
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-20 {
4335
+ width: 100px;
4336
+ display: inline;
4337
+ }
4338
+
4339
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-21 {
4340
+ margin-top: -10px;
4341
+ float: right;
4342
+ position: relative;
4343
+ bottom: 32px;
4344
+ }
4345
+
4346
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-22 {
4347
+ margin-bottom: 24px;
4348
+ }
4349
+
4350
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-23 {
4351
+ padding-right: 16px;
4352
+ }
4353
+
4354
+ .obps-pages-citizen-ocbuilding-permit-check-page--style-24 {
4355
+ color: #cccccc;
4356
+ background-color: #cccccc;
4357
+ height: 2px;
4358
+ margin-top: 20px;
4359
+ margin-bottom: 20px;
4360
+ }
4361
+
4362
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-1 {
4363
+ padding: 0px;
4364
+ }
4365
+
4366
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-2 {
4367
+ width: 100%;
4368
+ padding: 10px;
4369
+ }
4370
+
4371
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-3 {
4372
+ padding: 10px;
4373
+ padding-bottom: 10px;
4374
+ }
4375
+
4376
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-4 {
4377
+ padding: 0px;
4378
+ }
4379
+
4380
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-5 {
4381
+ width: 100%;
4382
+ padding: 10px;
4383
+ }
4384
+
4385
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-6 {
4386
+ padding: 0px 8px;
4387
+ margin-bottom: 10px;
4388
+ }
4389
+
4390
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-7 {
4391
+ margin-left: unset;
4392
+ margin-bottom: 10px;
4393
+ padding: 0px 8px;
4394
+ }
4395
+
4396
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-8 {
4397
+ padding: 10px 20px;
4398
+ display: flex;
4399
+ gap: 10px;
4400
+ }
4401
+
4402
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-9 {
4403
+ padding: 0px;
4404
+ }
4405
+
4406
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-10 {
4407
+ width: 100%;
4408
+ padding: 10px;
4409
+ }
4410
+
4411
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-11 {
4412
+ padding: 0px 8px;
4413
+ margin-bottom: 10px;
4414
+ }
4415
+
4416
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-12 {
4417
+ padding: 0px 8px;
4418
+ margin-bottom: 10px;
4419
+ }
4420
+
4421
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-13 {
4422
+ margin-left: unset;
4423
+ margin-bottom: 10px;
4424
+ padding: 0px 8px;
4425
+ }
4426
+
4427
+ .obps-pages-citizen-ocedcr-edcracknowledgement--style-14 {
4428
+ padding: 10px;
4429
+ padding-bottom: 10px;
4430
+ padding-left: 10px;
4431
+ }
4432
+
4433
+ .obps-pages-citizen-ocsend-back-to-citizen-acknowledgement--style-1 {
4434
+ padding: 10px;
4435
+ }
4436
+
4437
+ .obps-pages-citizen-ocsend-back-to-citizen-acknowledgement--style-2 {
4438
+ margin-top: 12px;
4439
+ padding: 10px;
4440
+ }
4441
+
4442
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-1 {
4443
+ padding-right: 16px;
4444
+ }
4445
+
4446
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-2 {
4447
+ padding-right: 16px;
4448
+ }
4449
+
4450
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-3 {
4451
+ padding-right: 16px;
4452
+ }
4453
+
4454
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-4 {
4455
+ padding-right: 16px;
4456
+ }
4457
+
4458
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-5 {
4459
+ border: none;
4460
+ }
4461
+
4462
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-6 {
4463
+ margin-top: 8px;
4464
+ margin-bottom: 20px;
4465
+ text-align: Left;
4466
+ font-size: 16px;
4467
+ line-height: 19px;
4468
+ color: #505A5F;
4469
+ font-weight: 400;
4470
+ }
4471
+
4472
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-7 {
4473
+ margin-top: 8px;
4474
+ margin-bottom: 20px;
4475
+ text-align: Left;
4476
+ font-size: 16px;
4477
+ line-height: 19px;
4478
+ color: #505A5F;
4479
+ font-weight: 400;
4480
+ }
4481
+
4482
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-8 {
4483
+ color: #cccccc;
4484
+ background-color: #cccccc;
4485
+ height: 2px;
4486
+ margin-top: 20px;
4487
+ margin-bottom: 20px;
4488
+ }
4489
+
4490
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-9 {
4491
+ color: #cccccc;
4492
+ background-color: #cccccc;
4493
+ height: 2px;
4494
+ margin-top: 20px;
4495
+ margin-bottom: 20px;
4496
+ }
4497
+
4498
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-10 {
4499
+ margin-top: 15px;
4500
+ }
4501
+
4502
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-11 {
4503
+ overflow: scroll;
4504
+ }
4505
+
4506
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-12 {
4507
+ color: #cccccc;
4508
+ background-color: #cccccc;
4509
+ height: 2px;
4510
+ margin-top: 20px;
4511
+ margin-bottom: 20px;
4512
+ }
4513
+
4514
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-13 {
4515
+ border: none;
4516
+ }
4517
+
4518
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-14 {
4519
+ padding-right: 16px;
4520
+ }
4521
+
4522
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-15 {
4523
+ padding-right: 16px;
4524
+ }
4525
+
4526
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-16 {
4527
+ padding-right: 16px;
4528
+ }
4529
+
4530
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-17 {
4531
+ width: 100px;
4532
+ display: inline;
4533
+ }
4534
+
4535
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-18 {
4536
+ margin-top: -10px;
4537
+ float: right;
4538
+ position: relative;
4539
+ bottom: 32px;
4540
+ }
4541
+
4542
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-19 {
4543
+ padding-right: 16px;
4544
+ }
4545
+
4546
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-20 {
4547
+ margin-bottom: 24px;
4548
+ }
4549
+
4550
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-21 {
4551
+ padding-right: 16px;
4552
+ }
4553
+
4554
+ .obps-pages-citizen-ocsend-back-to-citizen-check-page--style-22 {
4555
+ color: #cccccc;
4556
+ background-color: #cccccc;
4557
+ height: 2px;
4558
+ margin-top: 20px;
4559
+ margin-bottom: 20px;
4560
+ }
4561
+
4562
+ .obps-pages-citizen-self-certification-stepper-self-certification-response--style-1 {
4563
+ padding: 10px;
4564
+ }
4565
+
4566
+ .obps-pages-citizen-self-certification-stepper-self-certification-response--style-2 {
4567
+ display: flex;
4568
+ justify-content: flex-end;
4569
+ align-items: baseline;
4570
+ gap: 20px;
4571
+ }
4572
+
4573
+ .obps-pages-citizen-stakeholder-registration-check-page--style-1 {
4574
+ cursor: pointer;
4575
+ width: fit-content;
4576
+ display: flex;
4577
+ font-family: 'Roboto Condensed', sans-serif;
4578
+ color: rgba(13, 67, 167, var(--text-opacity));
4579
+ font-size: 16px;
4580
+ line-height: 24px;
4581
+ }
4582
+
4583
+ .obps-pages-citizen-stakeholder-registration-check-page--style-2 {
4584
+ display: flex;
4585
+ justify-content: space-between;
4586
+ align-items: center;
4587
+ }
4588
+
4589
+ .obps-pages-citizen-stakeholder-registration-check-page--style-3 {
4590
+ display: flex;
4591
+ flex-direction: column;
4592
+ align-items: center;
4593
+ margin-bottom: 1rem;
4594
+ }
4595
+
4596
+ .obps-pages-citizen-stakeholder-registration-check-page--style-4 {
4597
+ max-width: 100px;
4598
+ max-height: 100px;
4599
+ border: 2px solid #e0e0e0;
4600
+ border-radius: 8px;
4601
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
4602
+ margin-bottom: 10px;
4603
+ }
4604
+
4605
+ .obps-pages-citizen-stakeholder-registration-check-page--style-5 {
4606
+ overflow-x: auto;
4607
+ }
4608
+
4609
+ .obps-pages-citizen-stakeholder-registration-check-page--style-6 {
4610
+ width: 100%;
4611
+ border-collapse: collapse;
4612
+ margin-top: 1rem;
4613
+ }
4614
+
4615
+ .obps-pages-citizen-stakeholder-registration-check-page--style-7 {
4616
+ background-color: #f5f5f5;
4617
+ border-bottom: 2px solid #ddd;
4618
+ }
4619
+
4620
+ .obps-pages-citizen-stakeholder-registration-check-page--style-8 {
4621
+ padding: 0.75rem;
4622
+ text-align: center;
4623
+ font-weight: 600;
4624
+ color: #2e4a66;
4625
+ width: 100px;
4626
+ }
4627
+
4628
+ .obps-pages-citizen-stakeholder-registration-check-page--style-9 {
4629
+ padding: 0.75rem;
4630
+ text-align: left;
4631
+ font-weight: 600;
4632
+ color: #2e4a66;
4633
+ }
4634
+
4635
+ .obps-pages-citizen-stakeholder-registration-check-page--style-10 {
4636
+ padding: 0.75rem;
4637
+ text-align: center;
4638
+ font-weight: 600;
4639
+ color: #2e4a66;
4640
+ width: 150px;
4641
+ }
4642
+
4643
+ .obps-pages-citizen-stakeholder-registration-check-page--style-11 {
4644
+ border-bottom: 1px solid #e0e0e0;
4645
+ }
4646
+
4647
+ .obps-pages-citizen-stakeholder-registration-check-page--style-12 {
4648
+ padding: 0.75rem;
4649
+ text-align: center;
4650
+ color: #333;
4651
+ font-weight: 500;
4652
+ }
4653
+
4654
+ .obps-pages-citizen-stakeholder-registration-check-page--style-13 {
4655
+ padding: 0.75rem;
4656
+ }
4657
+
4658
+ .obps-pages-citizen-stakeholder-registration-check-page--style-14 {
4659
+ pointer-events: none;
4660
+ }
4661
+
4662
+ .obps-pages-citizen-stakeholder-registration-check-page--style-15 {
4663
+ padding: 0.75rem;
4664
+ text-align: center;
4665
+ }
4666
+
4667
+ .obps-pages-citizen-stakeholder-registration-check-page--style-16 {
4668
+ padding: 0.5rem 1rem;
4669
+ background-color: #2e4a66;
4670
+ color: #fff;
4671
+ border: none;
4672
+ border-radius: 4px;
4673
+ cursor: pointer;
4674
+ font-size: 0.875rem;
4675
+ font-weight: 500;
4676
+ }
4677
+
4678
+ .obps-pages-citizen-stakeholder-registration-stakeholder-acknowledgement--style-1 {
4679
+ padding: 10px;
4680
+ }
4681
+
4682
+ .obps-pages-citizen-stakeholder-registration-stakeholder-acknowledgement--style-2 {
4683
+ display: flex;
4684
+ flex-direction: row;
4685
+ gap: 10px;
4686
+ justify-content: space-between;
4687
+ align-items: center;
4688
+ }
4689
+
4690
+ .obps-pages-citizen-stakeholder-registration-stakeholder-acknowledgement--style-3 {
4691
+ border: none;
4692
+ }
4693
+
4694
+ .obps-pages-citizen-stakeholder-registration-index--style-1 {
4695
+ display: flex;
4696
+ flex-direction: row;
4697
+ }
4698
+
4699
+ .obps-pages-citizen-stakeholder-registration-index--style-2 {
4700
+ margin-left: 30px;
4701
+ }
4702
+
4703
+ .obps-pages-citizen-stakeholder-registration-index--style-3 {
4704
+ flex-grow: 1;
4705
+ }
4706
+
4707
+ .obps-pages-citizen-index--style-1 {
4708
+ text-decoration: none;
4709
+ margin-right: 5px;
4710
+ }
4711
+
4712
+ .obps-pages-citizen-index--style-2 {
4713
+ margin-right: 5px;
4714
+ }
4715
+
4716
+ .obps-pages-citizen-index--style-3 {
4717
+ text-decoration: none;
4718
+ margin-right: 5px;
4719
+ }
4720
+
4721
+ .obps-pages-citizen-index--style-4 {
4722
+ margin-right: 5px;
4723
+ }
4724
+
4725
+ .obps-pages-citizen-index--style-5 {
4726
+ text-decoration: none;
4727
+ }
4728
+
4729
+ .obps-pages-citizen-index--style-6 {
4730
+ text-decoration: none;
4731
+ }
4732
+
4733
+ .obps-pages-citizen-index--style-7 {
4734
+ margin-bottom: 16px;
4735
+ display: flex;
4736
+ align-items: center;
4737
+ }
4738
+
4739
+ .obps-pages-employee-application-detail-index--style-1 {
4740
+ margin-bottom: 40px;
4741
+ }
4742
+
4743
+ .obps-pages-employee-application-detail-index--style-2 {
4744
+ z-index: 10;
4745
+ display: flex;
4746
+ flex-direction: row;
4747
+ gap: 10px;
4748
+ justify-content: space-between;
4749
+ align-items: center;
4750
+ }
4751
+
4752
+ .obps-pages-employee-application-detail-index--style-3 {
4753
+ display: flex;
4754
+ flex-direction: column;
4755
+ align-items: center;
4756
+ margin-bottom: 1rem;
4757
+ }
4758
+
4759
+ .obps-pages-employee-application-detail-index--style-4 {
4760
+ max-width: 120px;
4761
+ max-height: 120px;
4762
+ border: 2px solid #e0e0e0;
4763
+ border-radius: 8px;
4764
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
4765
+ flex-shrink: 0;
4766
+ margin-top: 245px;
4767
+ }
4768
+
4769
+ .obps-pages-employee-application-overview-cluapplication-overview--style-1 {
4770
+ overflow-x: scroll;
4771
+ }
4772
+
4773
+ .obps-pages-employee-application-overview-cluapplication-overview--style-2 {
4774
+ margin-top: 8px;
4775
+ }
4776
+
4777
+ .obps-pages-employee-application-overview-cluapplication-overview--style-3 {
4778
+ float: right;
4779
+ display: inline;
4780
+ }
4781
+
4782
+ .obps-pages-employee-application-overview-cluapplication-overview--style-4 {
4783
+ margin-bottom: 30px;
4784
+ background: #FAFAFA;
4785
+ padding: 16px;
4786
+ border-radius: 4px;
4787
+ }
4788
+
4789
+ .obps-pages-employee-application-overview-cluapplication-overview--style-5 {
4790
+ margin-bottom: 30px;
4791
+ background: #FAFAFA;
4792
+ padding: 16px;
4793
+ border-radius: 4px;
4794
+ }
4795
+
4796
+ .obps-pages-employee-application-overview-cluapplication-overview--style-6 {
4797
+ margin-bottom: 30px;
4798
+ background: #FAFAFA;
4799
+ padding: 16px;
4800
+ border-radius: 4px;
4801
+ }
4802
+
4803
+ .obps-pages-employee-application-overview-cluapplication-overview--style-7 {
4804
+ margin-bottom: 30px;
4805
+ background: #FAFAFA;
4806
+ padding: 16px;
4807
+ border-radius: 4px;
4808
+ }
4809
+
4810
+ .obps-pages-employee-application-overview-cluapplication-overview--style-8 {
4811
+ margin-bottom: 30px;
4812
+ background: #FAFAFA;
4813
+ padding: 16px;
4814
+ border-radius: 4px;
4815
+ }
4816
+
4817
+ .obps-pages-employee-application-overview-cluapplication-overview--style-9 {
4818
+ margin-bottom: 16px;
4819
+ margin-top: 32px;
4820
+ }
4821
+
4822
+ .obps-pages-employee-application-overview-cluapplication-overview--style-10 {
4823
+ margin-top: 16px;
4824
+ }
4825
+
4826
+ .obps-pages-employee-application-overview-cluapplication-overview--style-11 {
4827
+ display: flex;
4828
+ justify-content: space-between;
4829
+ align-items: center;
4830
+ }
4831
+
4832
+ .obps-pages-employee-application-overview-cluapplication-overview--style-12 {
4833
+ color: blue;
4834
+ }
4835
+
4836
+ .obps-pages-employee-application-overview-cluapplication-overview--style-13 {
4837
+ width: 100%;
4838
+ height: 100%;
4839
+ object-fit: contain;
4840
+ }
4841
+
4842
+ .obps-pages-employee-application-overview-layout-application-overview--style-1 {
4843
+ overflow-x: scroll;
4844
+ }
4845
+
4846
+ .obps-pages-employee-application-overview-layout-application-overview--style-2 {
4847
+ margin-top: 8px;
4848
+ }
4849
+
4850
+ .obps-pages-employee-application-overview-layout-application-overview--style-3 {
4851
+ display: flex;
4852
+ justify-content: space-between;
4853
+ align-items: center;
4854
+ }
4855
+
4856
+ .obps-pages-employee-application-overview-layout-application-overview--style-4 {
4857
+ display: flex;
4858
+ align-items: center;
4859
+ gap: 16px;
4860
+ margin-left: auto;
4861
+ }
4862
+
4863
+ .obps-pages-employee-application-overview-layout-application-overview--style-5 {
4864
+ color: #A52A2A;
4865
+ }
4866
+
4867
+ .obps-pages-employee-application-overview-layout-application-overview--style-6 {
4868
+ display: flex;
4869
+ gap: 20px;
4870
+ flex-wrap: wrap;
4871
+ justify-content: space-between;
4872
+ }
4873
+
4874
+ .obps-pages-employee-application-overview-layout-application-overview--style-7 {
4875
+ display: flex;
4876
+ gap: 20px;
4877
+ flex-wrap: wrap;
4878
+ justify-content: space-between;
4879
+ }
4880
+
4881
+ .obps-pages-employee-application-overview-layout-application-overview--style-8 {
4882
+ margin-top: 16px;
4883
+ }
4884
+
4885
+ .obps-pages-employee-application-overview-layout-response-employee--style-1 {
4886
+ padding: 10px;
4887
+ }
4888
+
4889
+ .obps-pages-employee-application-overview-layout-response-employee--style-2 {
4890
+ display: flex;
4891
+ justify-content: flex-end;
4892
+ align-items: baseline;
4893
+ }
4894
+
4895
+ .obps-pages-employee-bpaesign-response--style-1 {
4896
+ padding: 10px;
4897
+ }
4898
+
4899
+ .obps-pages-employee-bpaesign-response--style-2 {
4900
+ text-align: center;
4901
+ margin-top: 1rem;
4902
+ }
4903
+
4904
+ .obps-pages-employee-bpasanction-esign-response--style-1 {
4905
+ padding: 10px;
4906
+ }
4907
+
4908
+ .obps-pages-employee-bpasanction-esign-response--style-2 {
4909
+ text-align: center;
4910
+ margin-top: 1rem;
4911
+ }
4912
+
4913
+ .obps-pages-employee-bpa-application-details-index--style-1 {
4914
+ float: right;
4915
+ display: inline;
4916
+ }
4917
+
4918
+ .obps-pages-employee-bpa-application-details-index--style-2 {
4919
+ float: right;
4920
+ display: inline;
4921
+ }
4922
+
4923
+ .obps-pages-employee-bpa-application-details-index--style-3 {
4924
+ float: right;
4925
+ display: inline;
4926
+ }
4927
+
4928
+ .obps-pages-employee-bpa-application-details-index--style-4 {
4929
+ float: right;
4930
+ display: inline;
4931
+ }
4932
+
4933
+ .obps-pages-employee-bpa-application-details-index--style-5 {
4934
+ float: right;
4935
+ display: inline;
4936
+ }
4937
+
4938
+ .obps-pages-employee-bpa-application-details-index--style-6 {
4939
+ float: right;
4940
+ display: inline;
4941
+ }
4942
+
4943
+ .obps-pages-employee-bpa-application-details-index--style-7 {
4944
+ margin-right: auto;
4945
+ max-width: 960px;
4946
+ }
4947
+
4948
+ .obps-pages-employee-bpa-application-details-index--style-8 {
4949
+ color: #A52A2A;
4950
+ }
4951
+
4952
+ .obps-pages-employee-bpa-application-details-index--style-9 {
4953
+ color: #A52A2A;
4954
+ }
4955
+
4956
+ .obps-pages-employee-bpa-application-details-index--style-10 {
4957
+ font-size: 20px;
4958
+ margin-top: 20px;
4959
+ }
4960
+
4961
+ .obps-pages-employee-bpa-application-details-index--style-11 {
4962
+ font-size: 20px;
4963
+ margin-top: 20px;
4964
+ }
4965
+
4966
+ .obps-pages-employee-bpa-application-details-index--style-12 {
4967
+ display: flex;
4968
+ gap: 20px;
4969
+ flex-wrap: wrap;
4970
+ justify-content: space-between;
4971
+ }
4972
+
4973
+ .obps-pages-employee-bpa-application-details-index--style-13 {
4974
+ display: flex;
4975
+ gap: 20px;
4976
+ flex-wrap: wrap;
4977
+ justify-content: space-between;
4978
+ }
4979
+
4980
+ .obps-pages-employee-bpa-application-details-index--style-14 {
4981
+ display: flex;
4982
+ gap: 20px;
4983
+ flex-wrap: wrap;
4984
+ justify-content: space-between;
4985
+ }
4986
+
4987
+ .obps-pages-employee-bpa-application-details-index--style-15 {
4988
+ margin-bottom: 16px;
4989
+ margin-top: 32px;
4990
+ }
4991
+
4992
+ .obps-pages-employee-bpa-application-details-index--style-16 {
4993
+ margin-top: 10px;
4994
+ }
4995
+
4996
+ .obps-pages-employee-bpa-application-details-index--style-17 {
4997
+ margin-top: 19px;
4998
+ background: #FAFAFA;
4999
+ border: 1px solid #D6D5D4;
5000
+ border-radius: 4px;
5001
+ padding: 8px;
5002
+ line-height: 19px;
5003
+ max-width: 960px;
5004
+ min-width: 280px;
5005
+ }
5006
+
5007
+ .obps-pages-employee-bpa-application-details-index--style-18 {
5008
+ margin-top: 19px;
5009
+ background: #FAFAFA;
5010
+ border: 1px solid #D6D5D4;
5011
+ border-radius: 4px;
5012
+ padding: 8px;
5013
+ line-height: 19px;
5014
+ max-width: 950px;
5015
+ min-width: 280px;
5016
+ }
5017
+
5018
+ .obps-pages-employee-bpa-application-details-index--style-19 {
5019
+ margin-top: 5px;
5020
+ }
5021
+
5022
+ .obps-pages-employee-bpa-application-details-index--style-20 {
5023
+ padding: 20px;
5024
+ margin-bottom: 30px;
5025
+ border-radius: 12px;
5026
+ box-shadow: 0 4px 12px rgba(0,0,0,0.08);
5027
+ border: 1px solid #f0f0f0;
5028
+ background: #fff;
5029
+ }
5030
+
5031
+ .obps-pages-employee-bpa-application-details-index--style-21 {
5032
+ margin-bottom: 16px;
5033
+ margin-top: 32px;
5034
+ }
5035
+
5036
+ .obps-pages-employee-bpa-application-details-index--style-22 {
5037
+ margin-bottom: 16px;
5038
+ margin-top: 32px;
5039
+ }
5040
+
5041
+ .obps-pages-employee-bpa-application-details-index--style-23 {
5042
+ overflow: hidden;
5043
+ max-height: 1500px;
5044
+ }
5045
+
5046
+ .obps-pages-employee-bpa-application-details-index--style-24 {
5047
+ margin-top: 10px;
5048
+ }
5049
+
5050
+ .obps-pages-employee-bpa-application-details-index--style-25 {
5051
+ color: blue;
5052
+ }
5053
+
5054
+ .obps-pages-employee-bpa-application-details-index--style-26 {
5055
+ width: 100%;
5056
+ height: 100%;
5057
+ object-fit: contain;
5058
+ }
5059
+
5060
+ .obps-pages-employee-cluesign-response--style-1 {
5061
+ padding: 10px;
5062
+ }
5063
+
5064
+ .obps-pages-employee-cluesign-response--style-2 {
5065
+ text-align: center;
5066
+ margin-top: 1rem;
5067
+ }
5068
+
5069
+ .obps-pages-employee-inbox-citizen-inbox--style-1 {
5070
+ font-size: 18px;
5071
+ font-weight: 600;
5072
+ }
5073
+
5074
+ .obps-pages-employee-inbox-citizen-laoyout-inbox--style-1 {
5075
+ font-size: 18px;
5076
+ font-weight: 600;
5077
+ }
5078
+
5079
+ .obps-pages-employee-inbox-filter-form-fields-component--style-1 {
5080
+ font-size: 18px;
5081
+ font-weight: 600;
5082
+ }
5083
+
5084
+ .obps-pages-employee-inbox-filter-form-fields-component--style-2 {
5085
+ font-size: 18px;
5086
+ font-weight: 600;
5087
+ }
5088
+
5089
+ .obps-pages-employee-inbox-filter-form-fields-component--style-3 {
5090
+ font-size: 18px;
5091
+ font-weight: 600;
5092
+ }
5093
+
5094
+ .obps-pages-employee-inbox-filter-form-fields-component--style-4 {
5095
+ font-size: 18px;
5096
+ font-weight: 600;
5097
+ }
5098
+
5099
+ .obps-pages-employee-inbox-layout-inbox--style-1 {
5100
+ font-size: 18px;
5101
+ font-weight: 600;
5102
+ }
5103
+
5104
+ .obps-pages-employee-inbox-layout-search-form-fields--style-1 {
5105
+ margin-left: 24px;
5106
+ }
5107
+
5108
+ .obps-pages-employee-inbox-layout-search-form-fields--style-2 {
5109
+ width: 100%;
5110
+ }
5111
+
5112
+ .obps-pages-employee-inbox-search-form-fields-component--style-1 {
5113
+ width: auto;
5114
+ margin-left: 24px;
5115
+ }
5116
+
5117
+ .obps-pages-employee-inbox-search-form-fields-component--style-2 {
5118
+ width: 100%;
5119
+ }
5120
+
5121
+ .obps-pages-employee-inbox-index--style-1 {
5122
+ font-size: 18px;
5123
+ font-weight: 600;
5124
+ }
5125
+
5126
+ .obps-pages-employee-layout-esign-response--style-1 {
5127
+ margin-top: 16px;
5128
+ font-size: 16px;
5129
+ }
5130
+
5131
+ .obps-pages-employee-obpsresponse--style-1 {
5132
+ padding: 10px;
5133
+ }
5134
+
5135
+ .obps-pages-employee-obpsresponse--style-2 {
5136
+ padding-bottom: 10px;
5137
+ margin-bottom: 10px;
5138
+ }
5139
+
5140
+ .obps-pages-employee-obpsresponse--style-3 {
5141
+ margin-left: unset;
5142
+ margin-bottom: 10px;
5143
+ padding: 0px 8px;
5144
+ }
5145
+
5146
+ .obps-pages-employee-obpsresponse--style-4 {
5147
+ gap: 5px;
5148
+ }
5149
+
5150
+ .obps-pages-employee-obpsresponse--style-5 {
5151
+ margin-right: 10px;
5152
+ }
5153
+
5154
+ .obps-pages-employee-obpsresponse--style-6 {
5155
+ margin: 10px 10px 0px 0px;
5156
+ }
5157
+
5158
+ .obps-pages-employee-obpsresponse--style-7 {
5159
+ display: flex;
5160
+ justify-content: flex-end;
5161
+ align-items: baseline;
5162
+ }
5163
+
5164
+ .obps-pages-employee-obpsresponse--style-8 {
5165
+ margin: 10px 0px 0px 0px;
5166
+ }
5167
+
5168
+ .obps-pages-employee-obpsresponse--style-9 {
5169
+ color: #a82227;
5170
+ margin: 0px 10px;
5171
+ }
5172
+
5173
+ .obps-pages-employee-obpsresponse--style-10 {
5174
+ margin: 10px 10px 0px 0px;
5175
+ }
5176
+
5177
+ .obps-pages-employee-stakeholder-response--style-1 {
5178
+ padding: 10px;
5179
+ }
5180
+
5181
+ .obps-pages-employee-stakeholder-response--style-2 {
5182
+ padding-bottom: 10px;
5183
+ margin-bottom: 10px;
5184
+ }
5185
+
5186
+ .obps-pages-employee-stakeholder-response--style-3 {
5187
+ display: flex;
5188
+ justify-content: flex-end;
5189
+ align-items: baseline;
5190
+ }
5191
+
5192
+ .obps-pages-employee-clu-inbox-clufilter-form-fields-component--style-1 {
5193
+ font-size: 18px;
5194
+ font-weight: 600;
5195
+ }
5196
+
5197
+ .obps-pages-employee-clu-inbox-cluinbox--style-1 {
5198
+ font-size: 18px;
5199
+ font-weight: 600;
5200
+ }
5201
+
5202
+ .obps-pages-employee-clu-inbox-clusearch-form-fields--style-1 {
5203
+ margin-left: 24px;
5204
+ }
5205
+
5206
+ .obps-pages-employee-clu-inbox-clusearch-form-fields--style-2 {
5207
+ width: 100%;
5208
+ }
5209
+
5210
+ .obps-pages-employee-clu-inbox-citizen-cluinbox--style-1 {
5211
+ font-size: 18px;
5212
+ font-weight: 600;
5213
+ }
5214
+
5215
+ .obps-pages-employee-components-rich-text-box--style-1 {
5216
+ display: flex;
5217
+ gap: 6px;
5218
+ align-items: center;
5219
+ }
5220
+
5221
+ .obps-pages-employee-components-rich-text-box--style-2 {
5222
+ margin-left: auto;
5223
+ font-size: 12px;
5224
+ color: #666;
5225
+ }
5226
+
5227
+ .obps-pages-employee-components-rich-text-box--style-3 {
5228
+ resize: none;
5229
+ overflow: hidden;
5230
+ min-height: 80px;
5231
+ max-height: 1500px;
5232
+ padding: 8px;
5233
+ font-size: 14px;
5234
+ }
5235
+
5236
+ .obps-pages-employee-stakeholder-inbox-filter-form-fields-component--style-1 {
5237
+ font-size: 18px;
5238
+ font-weight: 600;
5239
+ }
5240
+
5241
+ .obps-pages-employee-stakeholder-inbox-filter-form-fields-component--style-2 {
5242
+ font-size: 18px;
5243
+ font-weight: 600;
5244
+ }
5245
+
5246
+ .obps-pages-employee-stakeholder-inbox-search-form-fields-component--style-1 {
5247
+ width: auto;
5248
+ margin-left: 24px;
5249
+ }
5250
+
5251
+ .obps-pages-employee-stakeholder-inbox-search-form-fields-component--style-2 {
5252
+ text-align: start;
5253
+ }
5254
+
5255
+ .obps-pages-employee-stakeholder-inbox-search-form-fields-component--style-3 {
5256
+ width: 100%;
5257
+ }