ag-design 1.0.26 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/webbuilder.css ADDED
@@ -0,0 +1,1991 @@
1
+ .content-settings { position: fixed; top: 0; right: 0; width: 320px; height: 100vh; background-color: #1e1e1e; color: #e0e0e0; padding: 0; box-sizing: border-box; overflow-y: auto; overflow-x: hidden; z-index: 1000; box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3); font-family: 'Inter', system-ui, -apple-system, sans-serif; }
2
+ .content-settings::-webkit-scrollbar { width: 6px; }
3
+ .content-settings::-webkit-scrollbar-thumb { background: #555; border-radius: 10px; }
4
+ .content-settings .content-settings-bar { display: flex; justify-content: space-between; align-items: center; padding: 16px; background-color: #1e1e1e; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1001; }
5
+ .content-settings .content-settings-bar p { margin: 0; color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
6
+ .content-settings .content-settings-bar button { padding: 4px; border: none; background-color: transparent; color: #777; border-radius: 4px; cursor: pointer; transition: color 0.2s; font-size: 18px; }
7
+ .content-settings .content-settings-bar button:hover { color: #fff; }
8
+ .content-settings-action { position: sticky; bottom: 0; background: #333; padding: 8px; display: flex; justify-content: flex-end; border-top: 1px solid rgba(0, 0, 0, 0.04); }
9
+ .box-input-with-unit { display: flex; align-items: center; gap: 4px; }
10
+ .box-input-with-unit input { flex: 1; min-width: 0; padding: 4px; }
11
+ .box-input-with-unit select { width: 45px; flex-shrink: 0; font-size: 12px; padding: 2px; }
12
+ .settings-group-header { width: 100%; display: flex; justify-content: space-between; align-items: center; background: #252525; padding: 12px 16px; margin: 0; cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #999; border-top: 1px solid #333; border-bottom: 1px solid #333; transition: all 0.2s ease; user-select: none; box-sizing: border-box; }
13
+ .settings-group-header:hover { background: #2d2d2d; color: #fff; }
14
+ .settings-group.open .settings-group-header { color: #fff; border-bottom-color: transparent; }
15
+ .group-toggle-icon { font-size: 14px; color: #777; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: rotate(-90deg); }
16
+ .settings-group.open .group-toggle-icon { transform: rotate(0deg); color: #fff; }
17
+ .settings-group-content { padding: 16px 0; background: rgba(0, 0, 0, 0.05); }
18
+ .settings-group {
19
+ margin-bottom: 0;
20
+ }
21
+ .settings-field {
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 16px;
25
+ margin-bottom: 16px;
26
+ margin-top: 16px;
27
+ }
28
+ .settings-field>label {
29
+ flex: 0 0 120px;
30
+ font-size: 13px;
31
+ color: #aaa;
32
+ text-align: left;
33
+ padding-right: 12px;
34
+ box-sizing: border-box;
35
+ text-overflow: unset;
36
+ white-space: normal;
37
+ }
38
+
39
+ .group-advanced .settings-field,
40
+ .settings-field.vertical {
41
+ flex-direction: column !important;
42
+ align-items: stretch;
43
+ gap: 8px;
44
+ }
45
+
46
+ .group-advanced .settings-field>label,
47
+ .settings-field.vertical>label {
48
+ flex: 0 0 auto;
49
+ width: 100%;
50
+ padding-right: 0;
51
+ color: #eee;
52
+ text-align: left;
53
+ }
54
+
55
+ .settings-field input[type="text"],
56
+ .settings-field input[type="number"],
57
+ .settings-field select,
58
+ .settings-field textarea {
59
+ flex: 1;
60
+ width: 100%;
61
+ padding: 5px 10px;
62
+ border: 1px solid #444;
63
+ background-color: #2a2a2a;
64
+ color: #fff;
65
+ border-radius: 4px;
66
+ box-sizing: border-box;
67
+ font-size: 13px;
68
+ transition: border-color 0.2s, box-shadow 0.2s;
69
+ }
70
+
71
+ .settings-field input:focus,
72
+ .settings-field select:focus,
73
+ .settings-field textarea:focus {
74
+ border-color: #555;
75
+ outline: none;
76
+ background-color: #333;
77
+ }
78
+
79
+ .settings-field textarea {
80
+ min-height: 70px;
81
+ resize: vertical;
82
+ font-family: inherit;
83
+ }
84
+
85
+ .settings-field input[type="color"] {
86
+ flex: 0 0 40px;
87
+ height: 30px;
88
+ padding: 0;
89
+ border: none;
90
+ background: transparent;
91
+ cursor: pointer;
92
+ }
93
+
94
+ .settings-field input[type="range"] {
95
+ flex: 1;
96
+ margin-top: 8px;
97
+ cursor: pointer;
98
+ }
99
+
100
+
101
+
102
+ /* Box and XYZ Field Grids */
103
+
104
+
105
+
106
+
107
+ .content-settings .box-field-grid {
108
+ display: grid;
109
+ grid-template-areas:
110
+ ". top ."
111
+ "left center right"
112
+ ". bottom .";
113
+ gap: 8px;
114
+ justify-content: center;
115
+ align-items: center;
116
+ }
117
+
118
+ .content-settings .box-input-item {
119
+ display: flex;
120
+ align-items: center;
121
+ background: #2a2a2a;
122
+ border: 1px solid #555;
123
+ border-radius: 4px;
124
+ padding: 2px 4px;
125
+ }
126
+
127
+ .content-settings .box-label-short {
128
+ font-size: 10px;
129
+ color: #888;
130
+ margin-right: 4px;
131
+ font-weight: bold;
132
+ user-select: none;
133
+ }
134
+
135
+ .content-settings .box-input-item input { border: none !important; padding: 2px 0 !important; background: transparent !important; width: 100%; text-align: center; font-size: 12px !important; outline: none; }
136
+ .content-settings .box-input-item input::-webkit-inner-spin-button,
137
+ .content-settings .box-input-item input::-webkit-outer-spin-button { .unit-field-wrapper, .box-field-wrapper { display: grid; align-items: center; gap: 8px; /* grid-template-columns: repeat(2, 1fr); */ } }
138
+
139
+ /* unit selecter */
140
+
141
+ .content-settings .unit-selector-mini {
142
+ background: #333;
143
+ color: #999;
144
+ border: none;
145
+ border-left: 1px solid #444;
146
+ height: 100%;
147
+ padding: 0 4px;
148
+ font-size: 11px;
149
+ cursor: pointer;
150
+ outline: none;
151
+ transition: all 0.2s;
152
+ }
153
+ .content-settings .unit-selector-mini input {
154
+ background: #333;
155
+ color: #999;
156
+ border: none;
157
+ border-left: 1px solid #444;
158
+ height: 100%;
159
+ padding: 10px 4px;
160
+ font-size: 11px;
161
+ cursor: pointer;
162
+ outline: none;
163
+ transition: all 0.2s;
164
+ }
165
+ .content-settings .unit-selector-mini:hover {
166
+ background: #3a3a3a;
167
+ color: #fff;
168
+ }
169
+
170
+
171
+ /* Theme selector */
172
+
173
+
174
+ .content-settings .theme-field {
175
+ display: flex;
176
+ flex-flow: row wrap;
177
+ padding: 8px 0;
178
+ justify-content: center;
179
+ }
180
+
181
+ .content-settings .theme-field label {
182
+ flex: none;
183
+ display: block;
184
+ padding: 0;
185
+ width: 100%;
186
+ margin-bottom: 8px;
187
+ font-size: 14px;
188
+ width: 16px;
189
+ height: 16px;
190
+ margin: 4px;
191
+ border-radius: 50%;
192
+ box-sizing: initial;
193
+ position: relative;
194
+ }
195
+
196
+ .content-settings .theme-field label::before {
197
+ content: "";
198
+ position: absolute;
199
+ left: -2px;
200
+ top: -2px;
201
+ width: 100%;
202
+ height: 100%;
203
+ background: none;
204
+ border-radius: 50%;
205
+ border: 2px dotted rgba(255, 255, 255, 0);
206
+ z-index: -1;
207
+ }
208
+
209
+ .content-settings .theme-field label.active::before {
210
+ border: 2px dotted rgba(255, 255, 255, 1);
211
+ }
212
+
213
+ .content-settings .theme-field label:hover::before {
214
+ border: 2px dotted rgba(255, 255, 255, 0.64);
215
+ }
216
+
217
+ .content-settings .theme-field label.custom::after {
218
+ content: "";
219
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 -0.5 17 17' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='si-glyph si-glyph-color-picker' fill='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3E1150%3C/title%3E%3Cdefs%3E%3C/defs%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1.000000, 0.000000)' fill='%23ffffff'%3E%3Cpath d='M15.308,4.434 C16.22,3.523 16.118,1.939 15.079,0.9 C14.038,-0.139 12.455,-0.242 11.545,0.67 L10.364,1.853 L14.128,5.617 L15.308,4.434 L15.308,4.434 Z' class='si-glyph-fill'%3E%3C/path%3E%3Cpath d='M5.468,14.276 L11.615,8.128 L12.387,8.9 L13.971,7.314 L8.662,2.005 L7.077,3.589 L7.85,4.362 L1.702,10.508 L0.02,15.201 L0.774,15.955 L5.468,14.276 L5.468,14.276 Z M8.916,5.428 L10.551,7.064 L4.289,13.324 L1.695,14.284 L2.654,11.688 L8.916,5.428 L8.916,5.428 Z' class='si-glyph-fill'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
220
+ background-size: 10px;
221
+ background-repeat: no-repeat;
222
+ background-position: 3px 2px;
223
+ position: absolute;
224
+ left: 0;
225
+ top: 0;
226
+ width: 100%;
227
+ height: 100%;
228
+ z-index: 999;
229
+ pointer-events: none;
230
+ }
231
+
232
+ .content-settings .theme-field label input {
233
+ border-radius: 50%;
234
+ width: 100%;
235
+ height: 100%;
236
+ border: none;
237
+ outline: none;
238
+ box-shadow: none;
239
+ transform: translate(0px, 0px);
240
+ }
241
+
242
+ .content-settings .theme-field label input[type="color"]::-webkit-color-swatch-wrapper {
243
+ padding: 0;
244
+ }
245
+
246
+ .content-settings .theme-field label input[type="color"]::-webkit-color-swatch {
247
+ border: none;
248
+ }
249
+
250
+ .content-settings .theme-field label input[type="color"]::-moz-color-swatch {
251
+ border: none;
252
+ }
253
+
254
+
255
+ .content-settings .theme-field-nocolor{ width:'16px'; height: '16px'; border-radius: "50%"; border: "1px solid #999"; position: "relative"; cursor: "pointer"; display: "inline-flex"; align-items: "center"; justify-content: "center"; }
256
+
257
+ /* TemplateStyleSelector */
258
+
259
+
260
+ .content-settings .templatestyle-field-wrapper {
261
+ display: inline-flex;
262
+ align-items: center;
263
+ border: 1px solid #555;
264
+ border-radius: 4px;
265
+ background: #1e1e1e;
266
+ overflow: hidden;
267
+ height: auto;
268
+ width: 12rem;
269
+ justify-content: center;
270
+ }
271
+
272
+ .content-settings .templatestyle-field-wrapper button {
273
+ background: #222;
274
+ color: #fff;
275
+ cursor: pointer;
276
+ height: 100%;
277
+ padding: 0 8px;
278
+ border: none;
279
+ border-radius: 0;
280
+ }
281
+ .content-settings .templatestyle-field-wrapper img {
282
+ width: 100%;
283
+ height: 100%;
284
+ object-fit: contain; /* or contain */
285
+ display: block;
286
+ }
287
+
288
+ .content-settings .templatestyle-preview-wrapper {
289
+ display: flex;
290
+ align-items: center;
291
+ justify-content: center;
292
+ }
293
+
294
+ .content-settings .templatestyle-preview-wrapper img {
295
+ /* max-width: 90%;
296
+ max-height: 90%; */
297
+ object-fit: contain;
298
+ }
299
+
300
+ .content-settings .templatestyle-hover-overlay {
301
+ position: absolute;
302
+ inset: 0;
303
+ background: rgba(0, 0, 0, 0.6);
304
+ color: #fff;
305
+ font-size: 10px;
306
+ display: flex;
307
+ align-items: center;
308
+ justify-content: center;
309
+ opacity: 0;
310
+ transition: 0.2s;
311
+ }
312
+
313
+ .content-settings .templatestyle-preview-wrapper:hover .templatestyle-hover-overlay {
314
+ opacity: 1;
315
+ }
316
+
317
+ .content-settings .templatestyle-modal-overlay {
318
+ position: fixed;
319
+ inset: 0;
320
+ background: rgba(0, 0, 0, 0.6);
321
+ display: flex;
322
+ justify-content: center;
323
+ align-items: center;
324
+ z-index: 1000;
325
+ }
326
+
327
+ .content-settings .templatestyle-modal {
328
+ width: 500px;
329
+ background: #1e1e1e;
330
+ color: #fff;
331
+ border-radius: 6px;
332
+ overflow: hidden;
333
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
334
+ }
335
+
336
+ .content-settings .templatestyle-modal-header {
337
+ display: flex;
338
+ justify-content: space-between;
339
+ align-items: center;
340
+ padding: 10px 16px;
341
+ border-bottom: 1px solid #333;
342
+ }
343
+
344
+ .content-settings .templatestyle-modal-header button {
345
+ background: transparent;
346
+ border: none;
347
+ color: #777;
348
+ cursor: pointer;
349
+ font-size: 16px;
350
+ }
351
+
352
+ .content-settings .templatestyle-modal-header button:hover {
353
+ color: #fff;
354
+ }
355
+
356
+ .content-settings .templatestyle-field-wrapper .gallery-field-wrapper {
357
+ display: flex;
358
+ flex-wrap: wrap;
359
+ gap: 10px;
360
+ padding: 10px;
361
+ }
362
+
363
+ .content-settings .templatestyle-field-wrapper .gallery-field-option {
364
+ border: 1px solid rgba(255, 255, 255, 0.16);
365
+ border-radius: 4px;
366
+ cursor: pointer;
367
+ transition: 0.2s;
368
+ display: flex;
369
+ align-items: center;
370
+ justify-content: center;
371
+ background: rgba(0, 0, 0, 0.16);
372
+ box-sizing: border-box;
373
+ width: calc(50% - 4px);
374
+ min-height: 108px;
375
+ padding: 16px;
376
+ overflow: hidden;
377
+ flex: none;
378
+ font-size: 1.1rem;
379
+ }
380
+
381
+ .content-settings .templatestyle-field-wrapper .gallery-field-option:hover {
382
+ border: 2px dotted rgba(255, 255, 255, 0.74);
383
+ }
384
+
385
+ .content-settings .templatestyle-field-wrapper .gallery-field-option.active {
386
+ border: 2px dotted rgba(255, 255, 255, 1);
387
+ }
388
+
389
+ .content-settings .templatestyle-field-wrapper .gallery-field-option img {
390
+ width: 80px;
391
+ height: 50px;
392
+ object-fit: cover;
393
+ display: block;
394
+ }
395
+
396
+
397
+ /* tempalteList */
398
+
399
+
400
+ .content-settings .templateList-wrapper {
401
+ display: flex;
402
+ flex-direction: column;
403
+ padding: 8px 0px;
404
+ gap: 8px;
405
+ width: 100%;
406
+ }
407
+
408
+ .content-settings .templatelist-item {
409
+ border: 1px solid rgba(255, 255, 255, 0.16);
410
+ border-radius: 4px;
411
+ padding: 4px 8px;
412
+ font-size: 14px;
413
+ cursor: pointer;
414
+ display: flex;
415
+ justify-content: space-between;
416
+ align-items: center;
417
+ }
418
+
419
+ .content-settings .templatelist-item:hover {
420
+ border: 1px dotted #646cff;
421
+ }
422
+
423
+ .content-settings .templatelist-item.selected {
424
+ border: 2px solid #646cff;
425
+ }
426
+ .content-settings .templateList-btn{
427
+ background-color: none;
428
+ border: none;
429
+ padding: 0;
430
+ margin: 0;
431
+ }
432
+
433
+
434
+ /* social-media-links */
435
+
436
+ .content-settings .social-media-links-field-wrapper {
437
+ display: flex;
438
+ flex-direction: column;
439
+ gap: 12px;
440
+ }
441
+
442
+ .content-settings .smlf-row {
443
+ display: flex;
444
+ flex-direction: column;
445
+ gap: 4px;
446
+ position: relative;
447
+ }
448
+
449
+ .content-settings .smlf-input-row {
450
+ display: flex;
451
+ gap: 10px;
452
+ align-items: center;
453
+ }
454
+
455
+ .content-settings .smlf-icon-dropdown {
456
+ position: relative;
457
+ }
458
+
459
+ .content-settings .smlf-icon-button {
460
+ width: 40px;
461
+ height: 40px;
462
+ background: #2a2a2a;
463
+ border: 1px solid #444;
464
+ border-radius: 4px;
465
+ display: flex;
466
+ align-items: center;
467
+ justify-content: center;
468
+ cursor: pointer;
469
+ }
470
+
471
+ .content-settings .smlf-icon-button i {
472
+ color: #fff;
473
+ font-size: 18px;
474
+ }
475
+
476
+ .content-settings .smlf-icon-panel {
477
+ position: absolute;
478
+ top: 45px;
479
+ width: 260px;
480
+ background: #2a2a2a;
481
+ border: 1px solid #444;
482
+ border-radius: 4px;
483
+ padding: 10px;
484
+ z-index: 1000;
485
+ }
486
+
487
+ .content-settings .smlf-icon-grid {
488
+ display: grid;
489
+ grid-template-columns: repeat(5, 1fr);
490
+ gap: 6px;
491
+ max-height: 200px;
492
+ overflow-y: auto;
493
+ }
494
+
495
+ .content-settings .smlf-icon-option {
496
+ height: 40px;
497
+ display: flex;
498
+ align-items: center;
499
+ justify-content: center;
500
+ border: 1px solid #444;
501
+ border-radius: 4px;
502
+ cursor: pointer;
503
+ background: #2a2a2a;
504
+ }
505
+
506
+ .content-settings .smlf-icon-option i {
507
+ color: #fff;
508
+ font-size: 18px;
509
+ }
510
+
511
+ .content-settings .smlf-icon-option--selected {
512
+ border: 2px solid #444;
513
+ background: #fff;
514
+ }
515
+
516
+ .content-settings .smlf-icon-option--selected i {
517
+ color: #2a2a2a;
518
+ }
519
+
520
+ .content-settings .smlf-url-input {
521
+ flex: 1;
522
+ padding: 8px 10px;
523
+ border: 1px solid #444;
524
+ border-radius: 4px;
525
+ }
526
+
527
+ .content-settings .smlf-url-input--error {
528
+ border: 1px solid red;
529
+ }
530
+
531
+ .content-settings .smlf-error-text {
532
+ color: red;
533
+ font-size: 12px;
534
+ margin-left: 50px;
535
+ }
536
+
537
+
538
+
539
+ /* select from preview */
540
+
541
+
542
+
543
+ .content-settings .preview-grid {
544
+ display: grid;
545
+ grid-template-columns: repeat(2, 1fr);
546
+ gap: 12px;
547
+ }
548
+
549
+ .content-settings .preview-item {
550
+ cursor: pointer;
551
+ border-radius: 6px;
552
+ text-align: center;
553
+ transition: 0.2s;
554
+ background: transparent;
555
+ border: none;
556
+ height: 64px;
557
+ display: flex;
558
+ align-items: center;
559
+ justify-content: center;
560
+ overflow: hidden;
561
+ }
562
+
563
+
564
+
565
+ .content-settings .preview-box {
566
+ margin-bottom: 0;
567
+ display: flex;
568
+ align-items: center;
569
+ justify-content: center;
570
+ }
571
+
572
+ .content-settings .preview-box a {
573
+ transform: scale(1);
574
+ white-space: nowrap;
575
+ pointer-events: none;
576
+ }
577
+
578
+ .content-settings .preview-label {
579
+ font-size: 12px;
580
+ }
581
+
582
+
583
+
584
+ .content-settings .preview-dropdown-container {
585
+ position: relative;
586
+ width: 100%;
587
+ }
588
+
589
+ .content-settings .preview-dropdown-toggle {
590
+ display: flex;
591
+ align-items: center;
592
+ gap: 10px;
593
+ background-color: #2a2a2a;
594
+ border: 1px solid #555;
595
+ border-radius: 4px;
596
+ padding: 6px 10px;
597
+ cursor: pointer;
598
+ transition: 0.2s;
599
+ user-select: none;
600
+ }
601
+
602
+ .content-settings .preview-dropdown-toggle:hover {
603
+ border-color: #777;
604
+ background-color: #353535;
605
+ }
606
+
607
+
608
+
609
+ .content-settings.selected-preview-box {
610
+ /* width: max-content;
611
+ height: max-content; */
612
+ width: 100%;
613
+ min-height: 50px;
614
+ border: none;
615
+ border-radius: 4px;
616
+ overflow: hidden;
617
+ display: flex;
618
+ align-items: center;
619
+ justify-content: center;
620
+ background: transparent;
621
+ flex-shrink: 0;
622
+ }
623
+
624
+ .content-settings .selected-preview-box a {
625
+ transform: scale(1);
626
+ white-space: nowrap;
627
+ pointer-events: none;
628
+ }
629
+
630
+
631
+ .content-settings .selected-label {
632
+ flex: 1;
633
+ font-size: 13px;
634
+ color: #eee;
635
+ }
636
+
637
+ .content-settings .dropdown-icon {
638
+ font-style: normal;
639
+ font-size: 12px;
640
+ color: #888;
641
+ transition: transform 0.2s;
642
+ }
643
+
644
+ .content-settings .dropdown-icon.open {
645
+ transform: rotate(180deg);
646
+ }
647
+
648
+ .content-settings .preview-dropdown-content {
649
+ position: absolute;
650
+ top: calc(100% + 4px);
651
+ left: 0;
652
+ width: 100%;
653
+ background-color: #333;
654
+ border: 1px solid #555;
655
+ border-radius: 6px;
656
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
657
+ z-index: 1000;
658
+ max-height: 400px;
659
+ overflow-y: auto;
660
+ padding: 12px;
661
+ box-sizing: border-box;
662
+ }
663
+
664
+ .content-settings .preview-dropdown-content .preview-grid {
665
+ grid-template-columns: repeat(2, 1fr);
666
+ margin: 0;
667
+ }
668
+
669
+ /* css for selectfield */
670
+
671
+ .content-settings .select-field {
672
+ display: inline-flex;
673
+ align-items: center;
674
+ border: 1px solid #444;
675
+ border-radius: 4px;
676
+ background: #252525;
677
+ overflow: hidden;
678
+ height: 30px;
679
+ }
680
+
681
+ .content-settings .select-divider {
682
+ width: 1px;
683
+ height: 100%;
684
+ background: #444;
685
+ flex-shrink: 0;
686
+ }
687
+
688
+ .content-settings .select-dropdown {
689
+ border: none;
690
+ background: #252525;
691
+ color: #fff;
692
+ font-size: 13px;
693
+ padding: 0 20px 0 10px;
694
+ outline: none;
695
+ cursor: pointer;
696
+ height: 100%;
697
+ appearance: none;
698
+ -webkit-appearance: none;
699
+ background-repeat: no-repeat;
700
+ background-position: right 6px center;
701
+ min-width: 60px;
702
+ }
703
+
704
+ .content-settings .select-input {
705
+ border: none;
706
+ background: transparent;
707
+ color: #fff;
708
+ font-size: 13px;
709
+ padding: 0 10px;
710
+ outline: none;
711
+ text-align: center;
712
+ height: 100%;
713
+ -moz-appearance: textfield;
714
+ -webkit-appearance: none;
715
+ min-width: 52px;
716
+ }
717
+
718
+
719
+ /* seekbar field */
720
+
721
+
722
+ .content-settings .seekbar-field-wrapper {
723
+ display: flex;
724
+ flex-direction: column;
725
+ gap: 8px;
726
+ width: 100%;
727
+ }
728
+
729
+ .content-settings .seekbar-track-wrapper {
730
+ width: 100%;
731
+ display: flex;
732
+ flex-direction: column;
733
+ gap: 6px;
734
+ }
735
+
736
+ .content-settings .seekbar-range-input {
737
+ width: 100%;
738
+ cursor: pointer;
739
+ accent-color: #007bff;
740
+ }
741
+
742
+ .content-settings .seekbar-ticks {
743
+ display: flex;
744
+ justify-content: space-between;
745
+ padding: 0 2px;
746
+ }
747
+
748
+ .content-settings .seekbar-tick {
749
+ display: flex;
750
+ flex-direction: column;
751
+ align-items: center;
752
+ gap: 2px;
753
+ }
754
+
755
+ .content-settings.seekbar-tick-mark {
756
+ width: 1px;
757
+ height: 3px;
758
+ background: #444;
759
+ }
760
+
761
+ .content-settings .seekbar-tick-mark--major {
762
+ height: 6px;
763
+ background: #666;
764
+ }
765
+
766
+ .content-settings .seekbar-tick-label {
767
+ font-size: 9px;
768
+ color: #777;
769
+ font-weight: 600;
770
+ }
771
+
772
+ .content-settings .seekbar-input-row {
773
+ display: flex;
774
+ justify-content: center;
775
+ }
776
+
777
+ .content-settings .seekbar-number-box {
778
+ display: inline-flex;
779
+ align-items: center;
780
+ border: 1px solid #444;
781
+ border-radius: 4px;
782
+ background: #2a2a2a;
783
+ overflow: hidden;
784
+ height: 30px;
785
+ }
786
+
787
+ .content-settings .seekbar-number-input {
788
+ border: none;
789
+ background: transparent;
790
+ color: #fff;
791
+ font-size: 12px;
792
+ width: 60px;
793
+ outline: none;
794
+ text-align: center;
795
+ -moz-appearance: textfield;
796
+ }
797
+
798
+ .content-settings .seekbar-unit-label {
799
+ font-size: 11px;
800
+ color: #777;
801
+ padding-right: 10px;
802
+ user-select: none;
803
+ }
804
+
805
+
806
+ /* selection selector */
807
+ .content-settings .section-selector-field-wrapper {
808
+ position: relative;
809
+ }
810
+
811
+ .content-settings .section-selector-select {
812
+ border: 1px solid #444;
813
+ border-radius: 4px;
814
+ background: #252525;
815
+ color: #fff;
816
+ font-size: 13px;
817
+ padding: 0 10px;
818
+ outline: none;
819
+ cursor: pointer;
820
+ height: 30px;
821
+ width: 100%;
822
+ appearance: none;
823
+ -webkit-appearance: none;
824
+ }
825
+
826
+ .content-settings .section-selector-loading {
827
+ color: #999;
828
+ font-size: 12px;
829
+ margin-top: 4px;
830
+ display: block;
831
+ }
832
+
833
+
834
+ /* ── EntityCard ── */
835
+
836
+ .content-settings .entity-card {
837
+ border: 1px solid #444;
838
+ border-radius: 8px;
839
+ margin-bottom: 12px;
840
+ overflow: visible;
841
+ background: #222;
842
+ }
843
+
844
+ .content-settings.entity-card--dragging {
845
+ opacity: 0.5;
846
+ }
847
+
848
+ .content-settings .entity-card-header {
849
+ padding: 14px 16px;
850
+ background: #2a2a2a;
851
+ display: flex;
852
+ justify-content: space-between;
853
+ align-items: center;
854
+ cursor: pointer;
855
+ }
856
+
857
+ .content-settings .entity-card-header--open {
858
+ background: #333;
859
+ }
860
+
861
+ .content-settings .entity-card-header-left {
862
+ display: flex;
863
+ align-items: center;
864
+ gap: 12px;
865
+ flex: 1;
866
+ }
867
+
868
+ .content-settings .entity-card-drag-handle {
869
+ cursor: grab;
870
+ color: #888;
871
+ font-size: 20px;
872
+ }
873
+
874
+ .content-settings .entity-card-label {
875
+ flex: 1;
876
+ color: #fff;
877
+ font-weight: 600;
878
+ text-align: left;
879
+ }
880
+
881
+ .content-settings .entity-card-toggle-icon {
882
+ color: #999;
883
+ }
884
+
885
+ .content-settings .entity-card-body {
886
+ padding: 20px;
887
+ background: #222;
888
+ }
889
+
890
+ .content-settings .entity-card-change-row {
891
+ text-align: right;
892
+ margin-bottom: 8px;
893
+ }
894
+
895
+ .content-settings .entity-card-change-link {
896
+ font-size: 12px;
897
+ color: #888;
898
+ cursor: pointer;
899
+ text-decoration: underline;
900
+ }
901
+
902
+ .content-settings .entity-card-search-wrapper {
903
+ position: relative;
904
+ margin-bottom: 16px;
905
+ }
906
+
907
+ .content-settings .entity-card-search-input {
908
+ width: 100%;
909
+ padding: 10px 12px;
910
+ background: #111;
911
+ border: 1px solid #555;
912
+ border-radius: 6px;
913
+ color: #fff;
914
+ outline: none;
915
+ }
916
+
917
+ .content-settings .entity-card-dropdown {
918
+ position: absolute;
919
+ top: calc(100% + 4px);
920
+ left: 0;
921
+ right: 0;
922
+ background: #1e1e1e;
923
+ border: 1px solid #555;
924
+ border-radius: 6px;
925
+ z-index: 9999;
926
+ max-height: 300px;
927
+ overflow-y: auto;
928
+ }
929
+
930
+ .content-settings .entity-card-dropdown-item {
931
+ display: flex;
932
+ gap: 10px;
933
+ padding: 10px;
934
+ cursor: pointer;
935
+ border-bottom: 1px solid #333;
936
+ }
937
+
938
+ .content-settings .entity-card-dropdown-item-content {
939
+ flex: 1;
940
+ }
941
+
942
+ .content-settings .entity-card-loading {
943
+ color: #999;
944
+ margin-bottom: 14px;
945
+ }
946
+
947
+ .content-settings .entity-card-details {
948
+ border-radius: 6px;
949
+ overflow: hidden;
950
+ border: 1px solid #444;
951
+ background: #111;
952
+ }
953
+
954
+ .content-settings .entity-card-remove-row {
955
+ display: flex;
956
+ justify-content: flex-end;
957
+ margin-top: 20px;
958
+ }
959
+
960
+ .content-settings .entity-card-remove-button {
961
+ padding: 8px 14px;
962
+ background: rgba(239, 68, 68, 0.15);
963
+ color: #f87171;
964
+ border: 1px solid rgba(239, 68, 68, 0.3);
965
+ border-radius: 6px;
966
+ cursor: pointer;
967
+ }
968
+
969
+ /* ── EntityManager ── */
970
+
971
+ .content-settings .entity-manager-empty {
972
+ color: #666;
973
+ text-align: center;
974
+ padding: 20px 0;
975
+ }
976
+
977
+ .content-settings .entity-manager-add-button {
978
+ width: 100%;
979
+ padding: 12px;
980
+ background: #333;
981
+ color: #fff;
982
+ border: 1px solid #444;
983
+ border-radius: 8px;
984
+ cursor: pointer;
985
+ margin-top: 10px;
986
+ }
987
+
988
+ /* ── result item (dropdown row) ── property manager */
989
+
990
+ .content-settings .property-result-address {
991
+ color: #fff;
992
+ font-size: 13px;
993
+ text-align: left;
994
+ }
995
+
996
+ .content-settings .property-result-meta {
997
+ color: #aaa;
998
+ font-size: 11px;
999
+ margin-top: 4px;
1000
+ text-align: left;
1001
+ }
1002
+
1003
+ .content-settings .property-result-mls {
1004
+ margin-left: 10px;
1005
+ }
1006
+
1007
+ /* ── details card ── */
1008
+
1009
+ .content-settings .property-details-photo {
1010
+ width: 100%;
1011
+ height: 180px;
1012
+ object-fit: cover;
1013
+ }
1014
+
1015
+ .content-settings .property-details-body {
1016
+ padding: 12px 14px;
1017
+ }
1018
+
1019
+ .content-settings .property-details-address {
1020
+ color: #fff;
1021
+ font-size: 14px;
1022
+ font-weight: 600;
1023
+ }
1024
+
1025
+ .content-settings .property-details-mls {
1026
+ color: #888;
1027
+ font-size: 11px;
1028
+ }
1029
+
1030
+ .content-settings .property-details-price {
1031
+ color: #fff;
1032
+ font-size: 22px;
1033
+ font-weight: 700;
1034
+ }
1035
+
1036
+ .content-settings .property-details-stats {
1037
+ display: flex;
1038
+ gap: 14px;
1039
+ color: #ccc;
1040
+ }
1041
+
1042
+
1043
+ /* numberfield */
1044
+
1045
+ .unit-field-wrapper { display: flex; align-items: center; flex: 1; border: 1px solid #444; border-radius: 4px; background: #252525; overflow: hidden; height: 30px; }
1046
+ .unit-field-wrapper input { flex: 1; border: none !important; background: transparent !important; height: 100%; }
1047
+
1048
+
1049
+ /* nearby scools search */
1050
+
1051
+
1052
+ .nss-wrapper {
1053
+ position: relative;
1054
+ width: 100%;
1055
+ }
1056
+
1057
+ .nss-input {
1058
+ width: 100%;
1059
+ padding: 10px;
1060
+ border: 1px solid #444;
1061
+ border-radius: 4px;
1062
+ }
1063
+
1064
+ .nss-dropdown {
1065
+ position: absolute;
1066
+ top: 45px;
1067
+ left: 0;
1068
+ right: 0;
1069
+ background: #2a2a2a;
1070
+ border: 1px solid #444;
1071
+ border-radius: 4px;
1072
+ max-height: 220px;
1073
+ overflow-y: auto;
1074
+ z-index: 1000;
1075
+ }
1076
+
1077
+ .nss-loading {
1078
+ padding: 10px;
1079
+ color: #aaa;
1080
+ }
1081
+
1082
+ .nss-result-item {
1083
+ padding: 10px;
1084
+ cursor: pointer;
1085
+ border-bottom: 1px solid #333;
1086
+ color: #fff;
1087
+ background: transparent;
1088
+ }
1089
+
1090
+ .nss-result-item:hover {
1091
+ background: #333;
1092
+ }
1093
+
1094
+
1095
+ /* LinkEditorField */
1096
+
1097
+ .link-editor {
1098
+ position: unset;
1099
+ background: #181818;
1100
+ padding: 10px;
1101
+ border-radius: 4px;
1102
+ }
1103
+
1104
+ .link-input {
1105
+ width: 100%;
1106
+ padding: 0.5rem;
1107
+ color: white;
1108
+ background: #1e293b;
1109
+ }
1110
+
1111
+ .popup-loading {
1112
+ color: #999;
1113
+ font-size: 12px;
1114
+ margin-top: 4px;
1115
+ }
1116
+
1117
+ /* icon field */
1118
+
1119
+
1120
+ .icons-field {
1121
+ --icf-bg: #1a1a1a;
1122
+ --icf-bg-hover: #2a2a2a;
1123
+ --icf-bg-selected: #333333;
1124
+ --icf-border: #3a3a3a;
1125
+ --icf-border-focus: #555555;
1126
+ --icf-text: #ffffff;
1127
+ --icf-text-muted: #888888;
1128
+ --icf-text-dim: #555555;
1129
+ --icf-accent: #ffffff;
1130
+ --icf-input-bg: #111111;
1131
+ --icf-clear-bg: #2a2a2a;
1132
+ --icf-clear-hover: #333333;
1133
+
1134
+ position: relative;
1135
+ width: 100%;
1136
+ font-family: var(--s-f);
1137
+ }
1138
+
1139
+ /* ── toggle button ── */
1140
+
1141
+ .icf-toggle {
1142
+ display: flex;
1143
+ align-items: center;
1144
+ justify-content: space-between;
1145
+ width: 100%;
1146
+ padding: 8px 12px;
1147
+ background: var(--icf-bg);
1148
+ border: 1px solid var(--icf-border);
1149
+ border-radius: 8px;
1150
+ cursor: pointer;
1151
+ font-size: 13px;
1152
+ color: var(--icf-text);
1153
+ box-shadow: none;
1154
+ transition: all 0.2s ease;
1155
+ outline: none;
1156
+ box-sizing: border-box;
1157
+ }
1158
+
1159
+ .icf-toggle--open {
1160
+ border-color: var(--icf-border-focus);
1161
+ box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
1162
+ }
1163
+
1164
+ .icf-toggle-left {
1165
+ display: flex;
1166
+ align-items: center;
1167
+ gap: 10px;
1168
+ }
1169
+
1170
+ .icf-toggle-icon-box {
1171
+ width: 22px;
1172
+ height: 22px;
1173
+ display: flex;
1174
+ align-items: center;
1175
+ justify-content: center;
1176
+ background: transparent;
1177
+ border-radius: 5px;
1178
+ color: var(--icf-text);
1179
+ }
1180
+
1181
+ .icf-toggle-icon-box--selected {
1182
+ background: var(--icf-bg-selected);
1183
+ }
1184
+
1185
+ .icf-toggle-icon-box i {
1186
+ font-size: 15px;
1187
+ }
1188
+
1189
+ .icf-toggle-icon-placeholder {
1190
+ opacity: 0.3;
1191
+ font-size: 15px;
1192
+ }
1193
+
1194
+ .icf-toggle-loading {
1195
+ opacity: 0.3;
1196
+ font-size: 10px;
1197
+ }
1198
+
1199
+ .icf-toggle-label {
1200
+ font-weight: 400;
1201
+ color: var(--icf-text-muted);
1202
+ }
1203
+
1204
+ .icf-toggle-label--selected {
1205
+ font-weight: 500;
1206
+ color: var(--icf-text);
1207
+ }
1208
+
1209
+ .icf-toggle-chevron {
1210
+ transform: rotate(0deg);
1211
+ transition: transform 0.2s;
1212
+ font-size: 9px;
1213
+ color: var(--icf-text-muted);
1214
+ }
1215
+
1216
+ .icf-toggle-chevron--open {
1217
+ transform: rotate(180deg);
1218
+ }
1219
+
1220
+ /* ── dropdown panel ── */
1221
+
1222
+ .icf-dropdown {
1223
+ position: absolute;
1224
+ top: calc(100% + 6px);
1225
+ left: 0;
1226
+ right: 0;
1227
+ z-index: 1000;
1228
+ background: var(--icf-bg);
1229
+ border: 1px solid var(--icf-border);
1230
+ border-radius: 10px;
1231
+ box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
1232
+ padding: 10px;
1233
+ display: flex;
1234
+ flex-direction: column;
1235
+ gap: 8px;
1236
+ }
1237
+
1238
+ /* ── search ── */
1239
+
1240
+ .icf-search-wrapper {
1241
+ position: relative;
1242
+ }
1243
+
1244
+ .icf-search-input {
1245
+ width: 100%;
1246
+ padding: 7px 30px 7px 10px;
1247
+ background: var(--icf-input-bg);
1248
+ border: 1px solid var(--icf-border);
1249
+ border-radius: 6px;
1250
+ font-size: 12px;
1251
+ color: var(--icf-text);
1252
+ outline: none;
1253
+ box-sizing: border-box;
1254
+ }
1255
+
1256
+ .icf-search-icon {
1257
+ position: absolute;
1258
+ right: 9px;
1259
+ top: 50%;
1260
+ transform: translateY(-50%);
1261
+ color: var(--icf-text-muted);
1262
+ font-size: 11px;
1263
+ }
1264
+
1265
+ /* ── grid ── */
1266
+
1267
+ .icf-grid {
1268
+ display: grid;
1269
+ grid-template-columns: repeat(5, 1fr);
1270
+ gap: 4px;
1271
+ max-height: 220px;
1272
+ overflow-y: auto;
1273
+ padding-right: 2px;
1274
+ scrollbar-width: thin;
1275
+ scrollbar-color: var(--icf-border) transparent;
1276
+ }
1277
+
1278
+ .icf-grid-full-row {
1279
+ grid-column: span 5;
1280
+ text-align: center;
1281
+ padding: 20px;
1282
+ color: var(--icf-text-muted);
1283
+ font-size: 12px;
1284
+ }
1285
+
1286
+ .icf-clear-option {
1287
+ grid-column: span 5;
1288
+ text-align: center;
1289
+ padding: 7px;
1290
+ cursor: pointer;
1291
+ background: var(--icf-clear-bg);
1292
+ color: var(--icf-text-muted);
1293
+ border-radius: 5px;
1294
+ font-size: 11px;
1295
+ font-weight: 600;
1296
+ margin-bottom: 2px;
1297
+ transition: all 0.2s;
1298
+ letter-spacing: 0.5px;
1299
+ text-transform: uppercase;
1300
+ }
1301
+
1302
+ .icf-clear-option:hover {
1303
+ background: var(--icf-clear-hover);
1304
+ }
1305
+
1306
+ .icf-icon-swatch {
1307
+ aspect-ratio: 1 / 1;
1308
+ display: flex;
1309
+ align-items: center;
1310
+ justify-content: center;
1311
+ cursor: pointer;
1312
+ border: 1px solid var(--icf-border);
1313
+ border-radius: 6px;
1314
+ background: transparent;
1315
+ font-size: 16px;
1316
+ color: var(--icf-accent);
1317
+ transition: all 0.15s ease;
1318
+ }
1319
+
1320
+ .icf-icon-swatch:hover {
1321
+ background: var(--icf-bg-hover);
1322
+ color: var(--icf-text);
1323
+ border-color: var(--icf-border-focus);
1324
+ }
1325
+
1326
+ .icf-icon-swatch--selected {
1327
+ border-color: var(--icf-accent);
1328
+ background: var(--icf-bg-selected);
1329
+ color: var(--icf-accent);
1330
+ }
1331
+
1332
+ .icf-icon-swatch--selected:hover {
1333
+ background: var(--icf-bg-selected);
1334
+ color: var(--icf-accent);
1335
+ border-color: var(--icf-accent);
1336
+ }
1337
+
1338
+
1339
+ /* icon picker field */
1340
+
1341
+
1342
+ .ipf-wrapper {
1343
+ position: relative;
1344
+ width: fit-content;
1345
+ }
1346
+
1347
+ .ipf-trigger {
1348
+ width: 40px;
1349
+ height: 40px;
1350
+ border: 1px solid #444;
1351
+ border-radius: 6px;
1352
+ background: #2a2a2a;
1353
+ cursor: pointer;
1354
+ display: flex;
1355
+ align-items: center;
1356
+ justify-content: center;
1357
+ }
1358
+
1359
+ .ipf-trigger-icon {
1360
+ color: #fff;
1361
+ font-size: 22px;
1362
+ }
1363
+
1364
+ .ipf-popup {
1365
+ position: absolute;
1366
+ top: 60px;
1367
+ left: 0;
1368
+ width: fit-content;
1369
+ background: #1f1f1f;
1370
+ border: 1px solid #444;
1371
+ border-radius: 8px;
1372
+ padding: 8px;
1373
+ z-index: 9999;
1374
+ display: flex;
1375
+ justify-content: center;
1376
+ }
1377
+
1378
+ .ipf-grid {
1379
+ display: flex;
1380
+ flex-wrap: wrap;
1381
+ gap: 8px;
1382
+ width: 140px;
1383
+ max-height: 250px;
1384
+ overflow-y: auto;
1385
+ }
1386
+
1387
+ .ipf-swatch {
1388
+ height: 40px;
1389
+ width: 40px;
1390
+ border: 1px solid #444;
1391
+ border-radius: 6px;
1392
+ cursor: pointer;
1393
+ display: flex;
1394
+ align-items: center;
1395
+ justify-content: center;
1396
+ background: #2a2a2a;
1397
+ }
1398
+
1399
+ .ipf-swatch--selected {
1400
+ border: 2px solid white;
1401
+ background: #444;
1402
+ }
1403
+
1404
+ .ipf-swatch-icon {
1405
+ color: #fff;
1406
+ font-size: 29px;
1407
+ }
1408
+
1409
+
1410
+ /* icon-group field */
1411
+
1412
+
1413
+ .icon-group-field {
1414
+ display: inline-flex;
1415
+ background-color: #181818;
1416
+ padding: 3px;
1417
+ border-radius: 8px;
1418
+ border: 1px solid #333;
1419
+ gap: 3px;
1420
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
1421
+ user-select: none;
1422
+ }
1423
+
1424
+ .icon-group-option {
1425
+ width: 36px;
1426
+ height: 32px;
1427
+ display: flex;
1428
+ align-items: center;
1429
+ justify-content: center;
1430
+ cursor: pointer;
1431
+ background-color: transparent;
1432
+ color: #888888;
1433
+ border-radius: 5px;
1434
+ box-shadow: none;
1435
+ border: 1px solid transparent;
1436
+ transition: all 0.15s ease-in-out;
1437
+ }
1438
+
1439
+ .icon-group-option:hover {
1440
+ background-color: #242424;
1441
+ color: #cccccc;
1442
+ }
1443
+
1444
+ .icon-group-option--active {
1445
+ background-color: #363636;
1446
+ color: #ffffff;
1447
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.08);
1448
+ border: 1px solid #4a4a4a;
1449
+ }
1450
+
1451
+ .icon-group-option--active:hover {
1452
+ background-color: #363636;
1453
+ color: #ffffff;
1454
+ }
1455
+
1456
+ .icon-group-option i {
1457
+ font-size: 15px;
1458
+ }
1459
+
1460
+
1461
+
1462
+ /* GooglePlacesSearchBar */
1463
+
1464
+ .gpsb-wrapper {
1465
+ position: relative;
1466
+ width: 100%;
1467
+ }
1468
+
1469
+ .gpsb-input {
1470
+ width: 100%;
1471
+ padding: 10px;
1472
+ border: 1px solid #444;
1473
+ border-radius: 4px;
1474
+ }
1475
+
1476
+ .gpsb-dropdown {
1477
+ position: absolute;
1478
+ top: 45px;
1479
+ left: 0;
1480
+ right: 0;
1481
+ background: #2a2a2a;
1482
+ border: 1px solid #444;
1483
+ border-radius: 4px;
1484
+ max-height: 220px;
1485
+ overflow-y: auto;
1486
+ z-index: 1000;
1487
+ }
1488
+
1489
+ .gpsb-loading {
1490
+ padding: 10px;
1491
+ color: #aaa;
1492
+ }
1493
+
1494
+ .gpsb-result-item {
1495
+ padding: 10px;
1496
+ cursor: pointer;
1497
+ border-bottom: 1px solid #333;
1498
+ color: #fff;
1499
+ background: transparent;
1500
+ }
1501
+
1502
+ .gpsb-result-item:hover {
1503
+ background: #333;
1504
+ }
1505
+
1506
+
1507
+
1508
+
1509
+ /* gallery field */
1510
+
1511
+ .content-settings .gallery-field-filter {
1512
+ flex: none;
1513
+ flex-grow: 1;
1514
+ justify-items: flex-end;
1515
+ }
1516
+
1517
+ .content-settings .gallery-field-wrapper {
1518
+ flex: none;
1519
+ display: flex;
1520
+ flex-flow: row wrap;
1521
+ gap: 8px;
1522
+ padding: 8px 0;
1523
+ justify-content: space-between;
1524
+ flex: none;
1525
+ width: 100%;
1526
+ }
1527
+
1528
+ .content-settings .gallery-field-filter select {
1529
+ width: auto !important;
1530
+ display: block;
1531
+ flex: none !important;
1532
+ cursor: pointer;
1533
+ }
1534
+
1535
+ .content-settings .gallery-field-wrapper .gallery-field-option {
1536
+ border: 1px solid rgba(255, 255, 255, 0.16);
1537
+ border-radius: 4px;
1538
+ cursor: pointer;
1539
+ transition: 0.2s;
1540
+ display: flex;
1541
+ align-items: center;
1542
+ justify-content: center;
1543
+ background: rgba(0, 0, 0, 0.16);
1544
+ box-sizing: border-box;
1545
+ width: calc(50% - 4px);
1546
+ min-height: 108px;
1547
+ padding: 16px;
1548
+ overflow: hidden;
1549
+ flex: none;
1550
+ font-size: 1.1rem;
1551
+ text-align: center;
1552
+ }
1553
+
1554
+ .settings-field>label:has(>.gallery-field-wrapper) {
1555
+ flex: none;
1556
+ }
1557
+
1558
+ .settings-field:has(> .templateList-wrapper),
1559
+ .settings-field:has(>.gallery-field-wrapper) {
1560
+ flex-flow: row wrap;
1561
+ align-items: stretch;
1562
+ }
1563
+
1564
+ .content-settings .gallery-field-wrapper .gallery-field-option:hover {
1565
+ border: 2px dotted #646cff;
1566
+ }
1567
+
1568
+ .content-settings .gallery-field-wrapper .gallery-field-option.active {
1569
+ border: 2px solid #646cff;
1570
+ }
1571
+
1572
+ /* gallery field */
1573
+
1574
+ .content-settings .gallery-field-filter {
1575
+ flex: none;
1576
+ flex-grow: 1;
1577
+ justify-items: flex-end;
1578
+ }
1579
+
1580
+ .content-settings .gallery-field-wrapper {
1581
+ flex: none;
1582
+ display: flex;
1583
+ flex-flow: row wrap;
1584
+ gap: 8px;
1585
+ padding: 8px 0;
1586
+ justify-content: space-between;
1587
+ flex: none;
1588
+ width: 100%;
1589
+ }
1590
+
1591
+ .content-settings .gallery-field-filter select {
1592
+ width: auto !important;
1593
+ display: block;
1594
+ flex: none !important;
1595
+ cursor: pointer;
1596
+ }
1597
+
1598
+
1599
+
1600
+ /* DynamicField */
1601
+
1602
+
1603
+ .dynamic-list {
1604
+ font-family: inherit;
1605
+ }
1606
+
1607
+ .dlf-item {
1608
+ border: 1px solid #444;
1609
+ border-radius: 8px;
1610
+ margin-bottom: 12px;
1611
+ overflow: hidden;
1612
+ background: #222;
1613
+ box-shadow: none;
1614
+ transition: opacity 0.2s, transform 0.2s;
1615
+ opacity: 1;
1616
+ transform: none;
1617
+ }
1618
+
1619
+ .dlf-item--open {
1620
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
1621
+ }
1622
+
1623
+ .dlf-item--dragging {
1624
+ opacity: 0.5;
1625
+ transform: scale(0.98);
1626
+ }
1627
+
1628
+ .dlf-header {
1629
+ padding: 14px 16px;
1630
+ background: #2a2a2a;
1631
+ display: flex;
1632
+ justify-content: space-between;
1633
+ align-items: center;
1634
+ border-bottom: none;
1635
+ transition: background 0.2s;
1636
+ }
1637
+
1638
+ .dlf-header--open {
1639
+ background: #333;
1640
+ border-bottom: 1px solid #444;
1641
+ }
1642
+
1643
+ .dlf-header-left {
1644
+ display: flex;
1645
+ align-items: center;
1646
+ gap: 12px;
1647
+ flex: 1;
1648
+ }
1649
+
1650
+ .dlf-drag-handle {
1651
+ cursor: grab;
1652
+ color: #888;
1653
+ font-size: 20px;
1654
+ line-height: 1;
1655
+ user-select: none;
1656
+ padding: 2px 6px;
1657
+ }
1658
+
1659
+ .dlf-title-row {
1660
+ flex: 1;
1661
+ cursor: pointer;
1662
+ display: flex;
1663
+ align-items: center;
1664
+ gap: 10px;
1665
+ }
1666
+
1667
+ .dlf-title {
1668
+ font-size: 14px;
1669
+ font-weight: 600;
1670
+ color: #fff;
1671
+ }
1672
+
1673
+ .dlf-toggle-arrow {
1674
+ color: #999;
1675
+ font-size: 12px;
1676
+ transform: rotate(0deg);
1677
+ transition: transform 0.2s;
1678
+ cursor: pointer;
1679
+ padding: 8px;
1680
+ }
1681
+
1682
+ .dlf-toggle-arrow--open {
1683
+ transform: rotate(180deg);
1684
+ }
1685
+
1686
+ .dlf-body {
1687
+ background: #222;
1688
+ }
1689
+
1690
+ .dlf-subfield-row {
1691
+ margin-bottom: 16px;
1692
+ }
1693
+
1694
+ .dlf-footer {
1695
+ display: flex;
1696
+ justify-content: flex-end;
1697
+ margin-top: 20px;
1698
+ padding-top: 15px;
1699
+ border-top: 1px solid #444;
1700
+ }
1701
+
1702
+ .dlf-remove-button {
1703
+ padding: 8px 16px;
1704
+ background: rgba(239, 68, 68, 0.15);
1705
+ color: #f87171;
1706
+ border: 1px solid rgba(239, 68, 68, 0.3);
1707
+ border-radius: 6px;
1708
+ cursor: pointer;
1709
+ font-size: 12px;
1710
+ font-weight: 700;
1711
+ display: flex;
1712
+ align-items: center;
1713
+ gap: 8px;
1714
+ transition: all 0.2s;
1715
+ margin: 10px;
1716
+ }
1717
+
1718
+ .dlf-remove-button:hover {
1719
+ background: rgba(239, 68, 68, 0.25);
1720
+ }
1721
+
1722
+ .dlf-add-button {
1723
+ width: 100%;
1724
+ padding: 12px;
1725
+ background: #333;
1726
+ color: #fff;
1727
+ border: 1px solid #444;
1728
+ border-radius: 8px;
1729
+ cursor: pointer;
1730
+ font-size: 13px;
1731
+ font-weight: 700;
1732
+ margin-top: 10px;
1733
+ transition: all 0.2s;
1734
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
1735
+ }
1736
+
1737
+ .dlf-add-button:hover {
1738
+ background: #444;
1739
+ border-color: #666;
1740
+ }
1741
+
1742
+
1743
+ /* Demographic */
1744
+
1745
+
1746
+ .dsb-wrapper {
1747
+ position: relative;
1748
+ width: 100%;
1749
+ }
1750
+
1751
+ .dsb-input {
1752
+ width: 100%;
1753
+ padding: 10px;
1754
+ border: 1px solid #444;
1755
+ border-radius: 4px;
1756
+ outline: none;
1757
+ }
1758
+
1759
+ .dsb-dropdown {
1760
+ position: absolute;
1761
+ top: 45px;
1762
+ left: 0;
1763
+ right: 0;
1764
+ background: #2a2a2a;
1765
+ border: 1px solid #444;
1766
+ border-radius: 4px;
1767
+ max-height: 220px;
1768
+ overflow-y: auto;
1769
+ z-index: 1000;
1770
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
1771
+ }
1772
+
1773
+ .dsb-loading {
1774
+ padding: 10px;
1775
+ color: #aaa;
1776
+ }
1777
+
1778
+ .dsb-result-item {
1779
+ padding: 10px;
1780
+ cursor: pointer;
1781
+ border-bottom: 1px solid #333;
1782
+ color: #fff;
1783
+ background: transparent;
1784
+ transition: background 0.2s;
1785
+ }
1786
+
1787
+ .dsb-result-item:hover {
1788
+ background: #333;
1789
+ }
1790
+
1791
+
1792
+ /* checkfield */
1793
+
1794
+
1795
+
1796
+ .content-settings .check-field{
1797
+ display: inline-flex;
1798
+ align-items: center;
1799
+ justify-content: center;
1800
+ width: 16px;
1801
+ height: 16px;
1802
+ border: 1px solid #555;
1803
+ border-radius: 4px;
1804
+ background: #2a2a2a;
1805
+ border-radius: 20px;
1806
+ width: 36px;
1807
+ height: 22px;
1808
+ flex: none;
1809
+ position: relative;
1810
+ cursor: pointer;
1811
+ transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
1812
+ }
1813
+ .content-settings .check-field:before {
1814
+ content: '';
1815
+ position: absolute;
1816
+ width: 14px;
1817
+ height: 14px;
1818
+ border-radius: 50%;
1819
+ background: #646cff;
1820
+ left: 3px;
1821
+ top: 3px;
1822
+ transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
1823
+ box-shadow: 0px 0px 2px rgba(255,255,255,0.76);
1824
+ }
1825
+ .content-settings .check-field:has(>input:checked):before{
1826
+ background: #fff;
1827
+ left: calc(100% - 16px);
1828
+ }
1829
+ .content-settings .check-field:has(>input:checked){
1830
+ background: #646cff;
1831
+ }
1832
+ .check-field input {
1833
+ display: none;
1834
+ }
1835
+
1836
+
1837
+ /* Agent manager */
1838
+
1839
+
1840
+ /* ── result item (dropdown row) ── */
1841
+
1842
+ .agent-result-name {
1843
+ color: #fff;
1844
+ font-size: 13px;
1845
+ font-weight: 600;
1846
+ }
1847
+
1848
+ .agent-result-speciality {
1849
+ color: #888;
1850
+ font-size: 11px;
1851
+ margin-top: 4px;
1852
+ }
1853
+
1854
+ /* ── details card ── */
1855
+
1856
+ .agent-details {
1857
+ padding: 30px;
1858
+ }
1859
+
1860
+ .agent-details-inner {
1861
+ display: flex;
1862
+ flex-direction: column;
1863
+ align-items: flex-start;
1864
+ }
1865
+
1866
+ .agent-details-photo {
1867
+ width: 100px;
1868
+ height: 100px;
1869
+ border-radius: 50%;
1870
+ object-fit: cover;
1871
+ margin-bottom: 24px;
1872
+ }
1873
+
1874
+ .agent-details-name {
1875
+ color: #fff;
1876
+ font-size: 14px;
1877
+ font-weight: 700;
1878
+ margin-bottom: 16px;
1879
+ }
1880
+
1881
+ .agent-details-speciality {
1882
+ color: #ccc;
1883
+ font-size: 13px;
1884
+ margin-bottom: 8px;
1885
+ }
1886
+
1887
+ .agent-details-location {
1888
+ color: #ccc;
1889
+ font-size: 13px;
1890
+ margin-bottom: 24px;
1891
+ }
1892
+
1893
+
1894
+ /* image field */
1895
+
1896
+
1897
+
1898
+ /* Img and Vid Field Grids */
1899
+
1900
+ .wb-image-field-container { border: 1px solid #444; border-radius: 4px; }
1901
+ .wb-vid-field-container { border: 1px solid #444; border-radius: 4px; }
1902
+
1903
+ .wb-preview-container { position: relative; height: 110px; background: #2a2a2a; overflow: hidden; border-radius: 4px; }
1904
+
1905
+ .wb-preview-image { width: 100%; height: 100%; object-fit: contain; display: block; }
1906
+ .wb-preview-vid { width: 100%; height: 100%; object-fit: contain; display: block; }
1907
+
1908
+ .wb-preview-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: flex-end; }
1909
+
1910
+ .wb-delete-btn { background: rgba(239, 68, 68, 0.15); color: rgb(248, 113, 113); border: 1px solid rgba(239, 68, 68, 0.3); border-radius: 4px; padding: 6px; cursor: pointer; }
1911
+
1912
+ .wb-modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 999999; display: flex; justify-content: center; align-items: center; }
1913
+ .wb-modal-container { width: 500px; max-width: 92vw; background: #1e1e1e; color: #fff; border-radius: 6px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45); }
1914
+
1915
+ .wb-modal-header { border-bottom: 1px solid #444; height: 66px; min-height: 64px; }
1916
+
1917
+ .wb-modal-title {
1918
+ font-size: 24px;
1919
+ color: #fff;
1920
+ }
1921
+
1922
+ .wb-disclaimer { color: #ff4d47; font-size: 13px; line-height: 26px; }
1923
+
1924
+ .wb-upload-dropzone { border: 2px dashed #555; border-radius: 6px; min-height: 130px; padding: 24px 20px; background: #1d1d1d; gap: 22px; }
1925
+
1926
+ .wb-upload-title { font-size: 18px; line-height: 28px; font-weight: 500; margin-bottom: 18px; }
1927
+
1928
+ .wb-browse-label { color: #4da6ff; font-size: 16px; position: relative; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; flex-shrink: 0; }
1929
+
1930
+ .wb-url-box { width: 100%; border: 1px solid #666; border-radius: 6px; overflow: hidden; background: #1f1f1f; }
1931
+
1932
+ .wb-library-size { color: #aaa; margin-bottom: 12px; margin-top: -6px; }
1933
+
1934
+ .wb-image-size-badge { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.65); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 10px; backdrop-filter: blur(4px); white-space: nowrap; pointer-events: none; }
1935
+ .wb-vid-size-badge { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, 0.65); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 10px; backdrop-filter: blur(4px); white-space: nowrap; pointer-events: none; }
1936
+
1937
+ .wb-preview-label { font-size: 14px; color: #aaa; }
1938
+
1939
+ .wb-selected-preview { max-width: 100%; max-height: 120px; object-fit: contain; border-radius: 4px; }
1940
+
1941
+ .wb-progress-text { font-size: 12px; color: #aaa; }
1942
+
1943
+ .wb-preview-popup {
1944
+ background: #000;
1945
+ }
1946
+ .wb-header-left {
1947
+ gap: 20px;
1948
+ }
1949
+ .wb-close-btn {
1950
+ color: #fff;
1951
+ font-size: 20px;
1952
+ }
1953
+ .wb-modal-body {
1954
+ padding-top: 18px;
1955
+ padding-bottom: 18px;
1956
+ }
1957
+ .wb-back-link { color: #4da6ff; font-size: 14px; gap: 6px; }
1958
+ .wb-back-icon {
1959
+ font-size: 13px;
1960
+ }
1961
+ .wb-category-select { background: #1f1f1f; color: #fff; border: 1px solid #444; border-radius: 6px; padding: 6px 10px; cursor: pointer; min-width: 140px; max-width: 170px; }
1962
+
1963
+ .wb-trash-icon {
1964
+ font-size: 16px;
1965
+ margin-top: -6px;
1966
+ }
1967
+ .wb-upload-actions { gap: 14px; flex-wrap: nowrap; white-space: nowrap; }
1968
+
1969
+ .wb-file-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
1970
+
1971
+ .wb-hidden {
1972
+ display: none;
1973
+ }
1974
+
1975
+ .wb-separator {
1976
+ color: #aaa;
1977
+ font-size: 16px;
1978
+ }
1979
+ .wb-library-link { color: #4da6ff; font-size: 16px; white-space: nowrap; flex-shrink: 0; }
1980
+ .wb-or-text { color: #aaa; }
1981
+ .wb-url-error { color: red; font-size: 12px; }
1982
+ .wb-select-footer { text-align: center; margin-top: 15px; margin-bottom: 10px; padding: 0 15px; }
1983
+ .wb-popup-image { max-width: 80vw; max-height: 80vh; }
1984
+
1985
+ .wb-popup-vid { max-width: 80vw; max-height: 80vh; }
1986
+
1987
+ .wb-url-icon {
1988
+ color: #fff;
1989
+ font-size: 15px;
1990
+ }
1991
+