@truconsent/consent-notice 0.0.2 → 0.0.3
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/dist/MarsConsentModal.css +133 -128
- package/dist/RightCenter.css +88 -94
- package/dist/banner-styles.css +46 -49
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/variables.css +52 -1
- package/package.json +1 -1
package/dist/banner-styles.css
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
left: 0;
|
|
8
8
|
right: 0;
|
|
9
9
|
z-index: 9900;
|
|
10
|
-
background-color:
|
|
10
|
+
background-color: var(--banner-bg);
|
|
11
11
|
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.08);
|
|
12
|
-
border-top: 1px solid
|
|
12
|
+
border-top: 1px solid var(--banner-border);
|
|
13
13
|
font-family: var(--font-type, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
|
|
14
14
|
font-size: var(--font-size, inherit);
|
|
15
15
|
min-height: 300px;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
.trubanner-modal-container {
|
|
26
26
|
position: relative;
|
|
27
27
|
z-index: 60;
|
|
28
|
-
background-color:
|
|
28
|
+
background-color: var(--banner-bg);
|
|
29
29
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
30
30
|
border-radius: 0.75rem;
|
|
31
31
|
font-family: var(--font-type, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
position: sticky;
|
|
56
56
|
top: 0;
|
|
57
57
|
z-index: 1000;
|
|
58
|
-
background-color:
|
|
59
|
-
border-bottom: 1px solid
|
|
58
|
+
background-color: var(--banner-bg);
|
|
59
|
+
border-bottom: 1px solid var(--banner-border);
|
|
60
60
|
border-top-left-radius: inherit;
|
|
61
61
|
border-top-right-radius: inherit;
|
|
62
62
|
flex-shrink: 0;
|
|
@@ -65,12 +65,9 @@
|
|
|
65
65
|
/* Info box under header */
|
|
66
66
|
.trubanner-info-box {
|
|
67
67
|
margin: 0.5rem 0 0.25rem;
|
|
68
|
-
background-color:
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
/* blue-200 */
|
|
72
|
-
color: #1e40af;
|
|
73
|
-
/* blue-800 */
|
|
68
|
+
background-color: var(--banner-info-bg);
|
|
69
|
+
border: 1px solid var(--banner-info-border);
|
|
70
|
+
color: var(--banner-primary-color);
|
|
74
71
|
border-radius: 10px;
|
|
75
72
|
padding: 10px 12px;
|
|
76
73
|
font-size: 0.875rem;
|
|
@@ -91,7 +88,7 @@
|
|
|
91
88
|
justify-content: center;
|
|
92
89
|
border-radius: 6px;
|
|
93
90
|
overflow: hidden;
|
|
94
|
-
background-color:
|
|
91
|
+
background-color: var(--banner-card-bg);
|
|
95
92
|
flex-shrink: 0;
|
|
96
93
|
}
|
|
97
94
|
|
|
@@ -109,7 +106,7 @@
|
|
|
109
106
|
.trubanner-title {
|
|
110
107
|
font-size: 1.1rem;
|
|
111
108
|
font-weight: 600;
|
|
112
|
-
color:
|
|
109
|
+
color: var(--banner-text);
|
|
113
110
|
margin-bottom: 0.15rem;
|
|
114
111
|
}
|
|
115
112
|
|
|
@@ -129,7 +126,7 @@
|
|
|
129
126
|
}
|
|
130
127
|
|
|
131
128
|
.trubanner-purpose-card {
|
|
132
|
-
border: 1px solid
|
|
129
|
+
border: 1px solid var(--banner-border);
|
|
133
130
|
border-radius: 12px;
|
|
134
131
|
padding: 1rem;
|
|
135
132
|
position: relative;
|
|
@@ -137,7 +134,7 @@
|
|
|
137
134
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
138
135
|
display: flex;
|
|
139
136
|
flex-direction: column;
|
|
140
|
-
background-color:
|
|
137
|
+
background-color: var(--banner-card-bg);
|
|
141
138
|
width: 100%;
|
|
142
139
|
flex-shrink: 0;
|
|
143
140
|
}
|
|
@@ -177,15 +174,15 @@
|
|
|
177
174
|
.trubanner-purpose-title {
|
|
178
175
|
font-size: 1rem;
|
|
179
176
|
font-weight: 600;
|
|
180
|
-
color:
|
|
177
|
+
color: var(--banner-text);
|
|
181
178
|
line-height: 1.2;
|
|
182
179
|
}
|
|
183
180
|
|
|
184
181
|
.trubanner-purpose-id {
|
|
185
182
|
font-size: 0.75rem;
|
|
186
|
-
color:
|
|
183
|
+
color: var(--banner-text-muted);
|
|
187
184
|
font-weight: 500;
|
|
188
|
-
background-color:
|
|
185
|
+
background-color: var(--banner-hover-bg);
|
|
189
186
|
padding: 0.125rem 0.375rem;
|
|
190
187
|
border-radius: 12px;
|
|
191
188
|
}
|
|
@@ -193,7 +190,7 @@
|
|
|
193
190
|
.trubanner-purpose-description {
|
|
194
191
|
font-size: 0.875rem;
|
|
195
192
|
line-height: 1.4;
|
|
196
|
-
color:
|
|
193
|
+
color: var(--banner-text-muted);
|
|
197
194
|
margin-bottom: 0.75rem;
|
|
198
195
|
display: -webkit-box;
|
|
199
196
|
-webkit-line-clamp: 3;
|
|
@@ -218,26 +215,26 @@
|
|
|
218
215
|
}
|
|
219
216
|
|
|
220
217
|
.trubanner-badge {
|
|
221
|
-
background-color:
|
|
222
|
-
color:
|
|
218
|
+
background-color: var(--banner-danger-bg);
|
|
219
|
+
color: var(--banner-danger-text);
|
|
223
220
|
padding: 0.15rem 0.5rem;
|
|
224
221
|
border-radius: 9999px;
|
|
225
222
|
font-size: 0.6875rem;
|
|
226
223
|
font-weight: 600;
|
|
227
224
|
white-space: nowrap;
|
|
228
225
|
line-height: 1.2;
|
|
229
|
-
border: 1px solid
|
|
226
|
+
border: 1px solid var(--banner-danger-text);
|
|
230
227
|
}
|
|
231
228
|
|
|
232
229
|
.trubanner-validity-value {
|
|
233
230
|
font-size: 0.6875rem;
|
|
234
|
-
color:
|
|
231
|
+
color: var(--banner-text-muted);
|
|
235
232
|
padding: 0.125rem 0.5rem;
|
|
236
|
-
background-color:
|
|
233
|
+
background-color: var(--banner-hover-bg);
|
|
237
234
|
border-radius: 12px;
|
|
238
235
|
white-space: nowrap;
|
|
239
236
|
line-height: 1.2;
|
|
240
|
-
border: 1px solid
|
|
237
|
+
border: 1px solid var(--banner-border);
|
|
241
238
|
}
|
|
242
239
|
|
|
243
240
|
.trubanner-data-grid {
|
|
@@ -248,18 +245,17 @@
|
|
|
248
245
|
}
|
|
249
246
|
|
|
250
247
|
.trubanner-data-section {
|
|
251
|
-
background-color:
|
|
248
|
+
background-color: var(--banner-info-bg);
|
|
252
249
|
border-radius: 10px;
|
|
253
250
|
padding: 0.75rem;
|
|
254
|
-
border: 1px solid
|
|
255
|
-
/* blue-200 */
|
|
251
|
+
border: 1px solid var(--banner-info-border);
|
|
256
252
|
}
|
|
257
253
|
|
|
258
254
|
.trubanner-section-label {
|
|
259
255
|
font-size: 0.72rem;
|
|
260
256
|
font-weight: 700;
|
|
261
257
|
margin-bottom: 0.5rem;
|
|
262
|
-
color:
|
|
258
|
+
color: var(--banner-text);
|
|
263
259
|
text-transform: uppercase;
|
|
264
260
|
letter-spacing: 0.04em;
|
|
265
261
|
}
|
|
@@ -271,11 +267,12 @@
|
|
|
271
267
|
}
|
|
272
268
|
|
|
273
269
|
.trubanner-data-item {
|
|
274
|
-
background-color:
|
|
270
|
+
background-color: var(--banner-bg);
|
|
271
|
+
color: var(--banner-text);
|
|
275
272
|
border-radius: 9999px;
|
|
276
273
|
padding: 0.25rem 0.5rem;
|
|
277
274
|
font-size: 0.75rem;
|
|
278
|
-
border: 1px solid
|
|
275
|
+
border: 1px solid var(--banner-info-border);
|
|
279
276
|
/* blue-200 */
|
|
280
277
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
|
|
281
278
|
line-height: 1.2;
|
|
@@ -292,11 +289,11 @@
|
|
|
292
289
|
|
|
293
290
|
.trubanner-item-id {
|
|
294
291
|
font-weight: 700;
|
|
295
|
-
color:
|
|
292
|
+
color: var(--banner-primary-color);
|
|
296
293
|
font-size: 0.7rem;
|
|
297
294
|
padding: 0.1rem 0.4rem;
|
|
298
|
-
background:
|
|
299
|
-
border: 1px solid
|
|
295
|
+
background: var(--banner-info-bg);
|
|
296
|
+
border: 1px solid var(--banner-info-border);
|
|
300
297
|
border-radius: 9999px;
|
|
301
298
|
}
|
|
302
299
|
|
|
@@ -311,8 +308,8 @@
|
|
|
311
308
|
gap: 0.75rem;
|
|
312
309
|
margin-top: 0.5rem;
|
|
313
310
|
padding: 0.75rem 1rem;
|
|
314
|
-
border-top: 1px solid
|
|
315
|
-
background-color:
|
|
311
|
+
border-top: 1px solid var(--banner-border);
|
|
312
|
+
background-color: var(--banner-bg);
|
|
316
313
|
}
|
|
317
314
|
|
|
318
315
|
.trubanner-action-buttons {
|
|
@@ -331,14 +328,14 @@
|
|
|
331
328
|
}
|
|
332
329
|
|
|
333
330
|
.trubanner-button-secondary {
|
|
334
|
-
background-color:
|
|
335
|
-
color:
|
|
336
|
-
border-color:
|
|
331
|
+
background-color: var(--banner-hover-bg);
|
|
332
|
+
color: var(--banner-danger-text);
|
|
333
|
+
border-color: var(--banner-border);
|
|
337
334
|
}
|
|
338
335
|
|
|
339
336
|
.trubanner-button-secondary:hover {
|
|
340
|
-
background-color:
|
|
341
|
-
border-color:
|
|
337
|
+
background-color: var(--banner-danger-bg);
|
|
338
|
+
border-color: var(--banner-danger-btn);
|
|
342
339
|
}
|
|
343
340
|
|
|
344
341
|
.trubanner-button-primary {
|
|
@@ -362,8 +359,8 @@
|
|
|
362
359
|
|
|
363
360
|
.trubanner-footer-wrapper {
|
|
364
361
|
flex-shrink: 0;
|
|
365
|
-
background-color:
|
|
366
|
-
border-top: 1px solid
|
|
362
|
+
background-color: var(--banner-bg);
|
|
363
|
+
border-top: 1px solid var(--banner-border);
|
|
367
364
|
}
|
|
368
365
|
|
|
369
366
|
/* Toggle Switch styles (Modern) */
|
|
@@ -384,7 +381,7 @@
|
|
|
384
381
|
.switch .track {
|
|
385
382
|
width: 44px;
|
|
386
383
|
height: 24px;
|
|
387
|
-
background:
|
|
384
|
+
background: var(--banner-border);
|
|
388
385
|
border-radius: 9999px;
|
|
389
386
|
transition: background-color 0.2s;
|
|
390
387
|
display: inline-block;
|
|
@@ -396,14 +393,14 @@
|
|
|
396
393
|
top: 2px;
|
|
397
394
|
width: 20px;
|
|
398
395
|
height: 20px;
|
|
399
|
-
background:
|
|
396
|
+
background: var(--banner-bg);
|
|
400
397
|
border-radius: 9999px;
|
|
401
398
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
402
399
|
transition: transform 0.2s;
|
|
403
400
|
}
|
|
404
401
|
|
|
405
402
|
.switch input:checked+.track {
|
|
406
|
-
background:
|
|
403
|
+
background: var(--banner-success-text);
|
|
407
404
|
}
|
|
408
405
|
|
|
409
406
|
.switch input:checked+.track+.thumb {
|
|
@@ -434,7 +431,7 @@
|
|
|
434
431
|
font-weight: 600 !important;
|
|
435
432
|
line-height: 1.1 !important;
|
|
436
433
|
margin-bottom: 0.1rem !important;
|
|
437
|
-
color:
|
|
434
|
+
color: var(--banner-text) !important;
|
|
438
435
|
}
|
|
439
436
|
|
|
440
437
|
.trubanner-mobile .trubanner-subtitle {
|
|
@@ -461,8 +458,8 @@
|
|
|
461
458
|
gap: 0.375rem !important;
|
|
462
459
|
padding: 0.5rem !important;
|
|
463
460
|
margin-top: 0 !important;
|
|
464
|
-
border-top: 1px solid
|
|
465
|
-
background-color:
|
|
461
|
+
border-top: 1px solid var(--banner-border) !important;
|
|
462
|
+
background-color: var(--banner-bg) !important;
|
|
466
463
|
}
|
|
467
464
|
|
|
468
465
|
.trubanner-mobile .trubanner-button {
|
package/dist/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.mcm-overlay{align-items:center!important;background:rgba(0,0,0,.5);display:flex!important;height:100%!important;justify-content:center!important;left:0!important;position:fixed!important;top:0!important;width:100%!important;z-index:10000!important}.mcm-wrapper{max-width:550px;position:relative;width:90%}.mcm-wrapper,.mcm-wrapper button,.mcm-wrapper input,.mcm-wrapper select,.mcm-wrapper textarea{font-family:inherit;font-size:inherit}.mcm-container{border-radius:16px;box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);flex-direction:column!important;max-height:85vh;overflow:hidden!important;position:relative;width:100%}.mcm-close-btn,.mcm-container{background:#fff;display:flex!important}.mcm-close-btn{align-items:center;border:1px solid #e2e8f0;border-radius:50%;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);color:#64748b;cursor:pointer;font-size:22px;height:32px;justify-content:center;line-height:1;position:absolute;right:-12px;top:-12px;transition:all .2s cubic-bezier(.4,0,.2,1);width:32px;z-index:10005}.mcm-close-btn:hover{background:#f8fafc;border-color:#cbd5e1;color:#0f172a;transform:scale(1.1) rotate(90deg)}.mcm-header{align-items:center;display:flex;margin-bottom:15px}.mcm-logo{height:48px;margin-right:10px;width:48px}.mcm-header-text h1{font-size:1.25rem;margin:0}.mcm-header-text p{color:#555;font-size:.9rem;margin:0}.mcm-separator{background:#eee;height:1px;margin:10px 0}.mcm-body{display:grid;gap:10px;grid-template-columns:1fr}.mcm-card{border:1px solid #ddd;border-radius:4px;padding:10px}.mcm-card-header{align-items:center;display:flex;justify-content:space-between}.mcm-purpose-desc{color:#666;font-size:.9rem}.badge{background:#eee;border-radius:4px;display:inline-block;font-size:.75rem;margin-right:5px;padding:2px 6px}.badge.mandatory{background:#e74c3c;color:#fff}.badge.expiry{background:#3498db;color:#fff}.switch{display:inline-block;height:20px;margin:0 5px;position:relative;width:40px}.switch input{height:0;opacity:0;width:0}.track{background:#ccc;border-radius:20px;bottom:0;cursor:pointer;left:0;right:0;top:0}.thumb,.track{position:absolute}.thumb{background:#fff;border-radius:50%;bottom:2px;content:"";height:16px;left:2px;transition:.2s;width:16px}input:checked+.track{background:#2ecc71}input:checked+.track+.thumb{transform:translateX(20px)}.toggle-label{font-size:.9rem}.accordion-btn{align-items:center;background:none;border:none;cursor:pointer;display:flex;font-size:1rem;justify-content:space-between;padding:8px 0;text-align:left;width:100%}.panel{padding:5px 0 10px}.pill{background:#f1f1f1;border-radius:12px;display:inline-block;font-size:.8rem;margin:2px;padding:4px 8px}.chevron{transition:transform .3s}.chevron.open{transform:rotate(180deg)}.mcm-btn{border:none;border-radius:4px;cursor:pointer;font-size:1rem;padding:8px 16px}.mcm-btn.reject{background:#e74c3c;color:#fff;margin-right:10px}.mcm-btn.consent{background:#2ecc71;color:#fff}.mcm-spinner{animation:mcm-spin 1s linear infinite;border:4px solid rgba(0,0,0,.1);border-radius:50%;border-top-color:#3498db;height:48px;left:50%;position:fixed;top:50%;transform:translate(-50%,-50%);width:48px}@keyframes mcm-spin{to{transform:rotate(1turn)}}.mcm-overlay.floating-card{align-items:flex-end!important;background:transparent!important;justify-content:flex-end!important;padding:24px!important;pointer-events:none!important}.mcm-wrapper.floating-card{margin:0!important;max-width:400px;pointer-events:auto!important;width:100%}.mcm-wrapper.floating-card .mcm-container{box-shadow:0 10px 40px -10px rgba(0,0,0,.2);max-height:90vh}.mcm-wrapper.floating-card .mcm-close-btn{display:none!important}@media (max-width:480px){.mcm-overlay.floating-card{padding:12px!important}.mcm-wrapper.floating-card{max-width:calc(100% - 24px)}}.mcm-overlay.bottom-bar{align-items:flex-end!important;background:transparent!important;justify-content:center!important;padding:0!important;pointer-events:none!important}.mcm-wrapper.bottom-bar{margin:0!important;max-width:100%!important;pointer-events:auto!important;width:100%!important}.mcm-wrapper.bottom-bar .mcm-container{border-radius:0!important;border-top:1px solid #e2e8f0;box-shadow:0 -10px 15px -3px rgba(0,0,0,.1);max-height:50vh}.mcm-wrapper.bottom-bar .mcm-close-btn{display:none!important}@media (max-width:480px){.mcm-wrapper.bottom-bar .mcm-container{max-height:80vh}}.mcm-overlay.center-modal{align-items:center!important;background:rgba(0,0,0,.5)!important;justify-content:center!important}.mcm-wrapper.center-modal{max-width:550px;width:90%}.mcm-overlay.side-panel{background:rgba(0,0,0,.5)!important}.mcm-wrapper.side-panel{height:100vh}.mcm-wrapper.side-panel .mcm-container{border-left:1px solid #e2e8f0;border-radius:0;height:100vh}@media (max-width:480px){.mcm-wrapper.side-panel{max-width:100%}}.mcm-cookie-summary{display:flex;flex-direction:column;gap:.5rem;padding:1rem 1.25rem .75rem}.mcm-cookie-summary-title{color:#111827;font-size:1rem;font-weight:600;margin:0}.mcm-cookie-summary-text{color:#4b5563;font-size:.8125rem;line-height:1.4;margin:0}.mcm-cookie-summary-footer-links{color:#6b7280;display:block;font-size:.725rem;line-height:1.4;margin-top:.25rem;width:100%}.mcm-cookie-summary-footer-links.dynamic{text-align:left}.mcm-cookie-summary-footer-links .mcm-link{color:#6b7280;cursor:pointer;text-decoration:underline}.mcm-cookie-summary-footer-links .mcm-link:hover{color:#374151}.mcm-separator-pipe{color:#d1d5db;display:inline-block;margin:0 .25rem;opacity:.5}.mcm-powered-by{background-color:#f9fafb;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem;border-top:1px solid #f3f4f6;color:#6b7280;font-size:.625rem;margin-bottom:-.75rem;margin-left:-1.25rem;padding:.375rem;text-align:center;width:calc(100% + 2.5rem)}.mcm-brand{color:#4b5563;font-weight:600}.mcm-cookie-summary-actions{display:flex;flex-direction:column;gap:.375rem;margin-top:.25rem}.mcm-summary-btn{border:1px solid transparent;border-radius:.5rem;cursor:pointer;font-weight:500;transition:all .2s ease;width:100%}.mcm-summary-btn,.mcm-summary-btn.text{font-size:.8125rem;padding:.5rem .65rem}.mcm-summary-btn.text{background:transparent;border:1px solid #e5e7eb;color:#3b82f6;margin-top:0}.mcm-cookie-summary hr{border:0;border-top:1px solid #f3f4f6;margin:0;width:100%}.mcm-summary-btn.primary{color:#fff}.mcm-summary-btn.secondary{background-color:#f3f4f6;border-color:#e5e7eb;color:#374151}.mcm-wrapper.floating-card .mcm-cookie-summary{background:#fff;border-radius:1rem}.mcm-wrapper.bottom-bar .mcm-container{background:#fff;border-top:1px solid #e5e7eb;box-shadow:0 -4px 12px rgba(0,0,0,.05);padding-bottom:32px;position:relative}.mcm-wrapper.bottom-bar .mcm-cookie-summary{align-items:center;display:flex!important;flex-direction:row;flex-wrap:wrap;gap:.25rem 3rem;justify-content:space-between;margin:0 auto;max-width:100%;padding:1rem 3rem 0}.mcm-wrapper.bottom-bar .mcm-cookie-summary-content{flex:1 1 auto;min-width:400px;text-align:left}.mcm-wrapper.bottom-bar .mcm-cookie-summary-title{color:#111827;font-size:1.125rem;font-weight:800;line-height:1.2;margin-bottom:.25rem}.mcm-wrapper.bottom-bar .mcm-cookie-summary-text{color:#4b5563;font-size:.875rem;line-height:1.5}.mcm-wrapper.bottom-bar .mcm-cookie-summary-actions{align-items:center;display:flex!important;flex:0 0 auto;flex-direction:row;gap:1rem;justify-content:flex-end;margin-top:0}.mcm-wrapper.bottom-bar .mcm-summary-btn{font-size:.875rem;min-width:140px;padding:.75rem 1.5rem;white-space:nowrap;width:auto}.mcm-wrapper.bottom-bar .mcm-cookie-summary-footer-links{border-top:1px solid #f3f4f6;color:#6b7280;display:block!important;flex:1 1 100%;font-size:.8125rem;line-height:1.6;margin-top:0;padding-top:.375rem;text-align:left}.mcm-wrapper.bottom-bar .mcm-cookie-summary-footer-links .mcm-link{color:#4b5563;text-decoration:underline;text-underline-offset:2px;transition:all .2s ease}.mcm-wrapper.bottom-bar .mcm-summary-btn.secondary{background:#f3f4f6;border-color:#e5e7eb;color:#374151}.mcm-wrapper.bottom-bar .mcm-summary-btn.text{background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;color:#3b82f6}.mcm-wrapper.bottom-bar .mcm-powered-by{align-items:center;background-color:#f9fafb;border-top:1px solid #f3f4f6;bottom:8px;color:#9ca3af;display:flex;font-size:.65rem;gap:4px;height:24px;justify-content:center;left:0;padding:.25rem;position:absolute;right:0;text-align:center;width:100%;z-index:10}.mcm-wrapper.bottom-bar .mcm-cookie-summary hr{display:none!important}@media (min-width:768px){.mcm-wrapper.floating-card{bottom:24px;max-width:380px;right:24px}}.mcm-overlay.side-panel{align-items:stretch!important;justify-content:flex-end!important}.mcm-wrapper.side-panel{animation:mcm-drawer-slide-in .4s cubic-bezier(.16,1,.3,1);height:100%;margin:0;max-height:100vh;max-width:450px;width:100%}.mcm-wrapper.side-panel .mcm-container{border-left:1px solid #e5e7eb!important;border-radius:0!important;height:100%;max-height:100vh}.mcm-wrapper.side-panel .mcm-close-btn{background:#fff!important;border:1px solid #e5e7eb!important;left:-16px!important;top:0!important}@keyframes mcm-drawer-slide-in{0%{transform:translateX(100%)}to{transform:translateX(0)}}@media (max-width:640px){.mcm-wrapper.side-panel{max-width:100%!important}}.mcm-wrapper.modern-modal{max-width:750px!important}.mcm-wrapper.modern-modal .mcm-container{border-radius:12px!important;max-height:90vh!important}.mcm-wrapper.modern-modal .mcm-header{border-bottom:1px solid #f3f4f6!important;margin-bottom:0!important;padding:24px 24px 16px!important}.mcm-wrapper.modern-modal .mcm-header-text h1{color:#1f2937!important;font-size:1.5rem!important;font-weight:700!important}.mcm-wrapper.modern-modal .mcm-body{gap:16px!important;padding:24px!important}.mcm-wrapper.modern-modal .mcm-card{background:#fff!important;border:1px solid #e5e7eb!important;border-radius:10px!important;box-shadow:none!important;padding:20px!important;transition:border-color .2s ease!important}.mcm-wrapper.modern-modal .mcm-card:hover{border-color:#d1d5db!important}.mcm-wrapper.modern-modal .mcm-card h3{color:#111827!important;font-size:1.1rem!important;font-weight:700!important}.mcm-wrapper.modern-modal .mcm-purpose-desc{color:#4b5563!important;font-size:.95rem!important;line-height:1.6!important;margin-top:8px!important}.mcm-wrapper.modern-modal .badge.mandatory{background:#9ca3af!important;border:none!important;border-radius:9999px!important;color:#fff!important;font-size:.75rem!important;font-weight:700!important;padding:4px 16px!important;text-transform:capitalize!important}.mcm-wrapper.modern-modal .mcm-action-buttons{align-items:center!important;background:#fff!important;border-top:1px solid #f3f4f6!important;display:flex!important;justify-content:space-between!important;padding:20px 24px!important}.mcm-wrapper.modern-modal .mcm-summary-btn{border-radius:6px!important;font-size:.95rem!important;font-weight:600!important;padding:10px 24px!important}.mcm-wrapper.modern-modal .mcm-summary-btn.secondary{background:transparent!important;border:1px solid #d1d5db!important;color:#4b5563!important;margin-right:auto!important}.mcm-wrapper.modern-modal .mcm-summary-btn.primary{background:#10b981!important;border:none!important;color:#fff!important}.mcm-wrapper.modern-modal .mcm-summary-btn.save-preferences{background:#ff7675!important;border:none!important;color:#fff!important}.preferences-modal-content{background:#fff;display:flex;flex-direction:column;font-family:inherit;font-size:inherit;height:100%;max-height:85vh}.preferences-header{align-items:center;border-bottom:1px solid #f3f4f6;display:flex;justify-content:space-between;padding:1.5rem 1.5rem 1rem}.preferences-title{color:#111827;font-size:1.5rem;font-weight:700;margin:0}.preferences-close-btn{align-items:center;background:transparent;border:none;border-radius:50%;color:#9ca3af;cursor:pointer;display:flex;justify-content:center;padding:6px;transition:all .2s}.preferences-close-btn:hover{background:#f3f4f6;color:#374151}.mcm-wrapper.preferences-modal>.mcm-close-btn{display:none!important}.preferences-intro{color:#4b5563;font-size:.95rem;line-height:1.6;padding:1.25rem 1.5rem}.preferences-purpose-list{display:flex;flex:1;flex-direction:column;gap:1rem;overflow-y:auto;padding:0 1.5rem 1.5rem}.preferences-purpose-card{background:#fff;border:1px solid #e5e7eb;border-left:4px solid #111827;border-radius:8px;padding:1.25rem;transition:box-shadow .2s ease}.preferences-purpose-card:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.05),0 2px 4px -1px rgba(0,0,0,.03)}.preferences-purpose-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:.75rem}.preferences-purpose-info{align-items:center;display:flex;flex:1;gap:.75rem}.preferences-purpose-name{color:#111827;font-size:1.125rem;font-weight:700;margin:0}.preferences-badge-mandatory{background:#9ca3af;border-radius:9999px;color:#fff;display:inline-block;font-size:.75rem;font-weight:600;padding:.25rem .75rem;text-transform:capitalize}.preferences-purpose-description{color:#4b5563;font-size:.9rem;line-height:1.5;margin-bottom:.75rem}.preferences-details{border-top:1px solid #f3f4f6;margin-top:.5rem;padding-top:.5rem}.preferences-details .mcm-collapsible-btn{color:#dc2626!important;font-size:.8125rem!important;font-weight:600!important;padding:4px 0!important}.preferences-actions{background:#fff;border-top:1px solid #f3f4f6;display:flex;gap:1rem;padding:1.25rem 1.5rem}.preferences-btn{border-radius:6px;cursor:pointer;flex:1;font-size:.875rem;font-weight:600;padding:.625rem 1.25rem;text-align:center;transition:all .2s ease}.preferences-btn-essential{background:transparent;border:1px solid #d1d5db;color:#4b5563}.preferences-btn-essential:hover{background:#f9fafb;border-color:#9ca3af}.preferences-btn-save{background:#ff7675;border:none;color:#fff}.preferences-btn-save:hover{background:#ff5e5d}.preferences-btn-accept{background:#10b981;border:none;color:#fff}.preferences-btn-accept:hover{background:#059669}.mcm-wrapper.preferences-modal{max-width:650px!important;width:90%!important}.mcm-wrapper.preferences-modal .mcm-container{border-radius:12px!important}.preferences-toggle{display:inline-block;flex-shrink:0;height:24px;position:relative;width:44px}.preferences-toggle input{height:0;opacity:0;width:0}.preferences-toggle-slider{background-color:#d1d5db;border-radius:24px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.3s}.preferences-toggle-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:18px;left:3px;position:absolute;transition:.3s;width:18px}.preferences-toggle input:checked+.preferences-toggle-slider{background-color:#10b981}.preferences-toggle input:checked+.preferences-toggle-slider:before{transform:translateX(20px)}@media (max-width:640px){.preferences-actions{flex-direction:column}.preferences-purpose-header{align-items:flex-start;flex-direction:column;gap:.75rem}.preferences-toggle{align-self:flex-start}}.preferences-footer-container{background:#fff;border-top:1px solid #f3f4f6;display:flex;flex-direction:column;gap:.5rem;padding:1rem 1.5rem}.preferences-footer-text{margin-bottom:.5rem}.preferences-footer-container .preferences-actions{border-top:none!important;padding:0!important}.preferences-purpose-card-wrapper{margin-bottom:.75rem}.preferences-purpose-card-wrapper>div{border:1px solid #e5e7eb!important;border-radius:8px!important;padding:1.25rem!important;transition:box-shadow .2s ease!important}.preferences-purpose-card-wrapper>div:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.05),0 2px 4px -1px rgba(0,0,0,.03)!important}.preferences-purpose-card-wrapper .mandatory-badge{background:#9ca3af!important;border:none!important;color:#fff!important;font-size:.725rem!important;padding:.125rem .625rem!important;text-transform:capitalize!important}.preferences-purpose-card-wrapper .mcm-collapsible-btn{color:#dc2626!important;font-size:.8125rem!important;font-weight:600!important;text-decoration:none!important}.preferences-purpose-card-wrapper .mcm-collapsible-btn:hover{text-decoration:underline!important}.preferences-actions{align-items:center!important;justify-content:space-between!important}.preferences-actions-right{display:flex;flex:1;gap:1rem;justify-content:flex-end}.preferences-btn-essential,.preferences-btn-save{flex:0 1 auto!important;min-width:140px}.preferences-btn-save{max-width:180px}.preferences-btn-accept{flex:0 1 auto!important;max-width:150px;min-width:110px}@media (max-width:640px){.preferences-actions{flex-direction:column!important;gap:.75rem!important}.preferences-actions-right{flex-direction:column;width:100%}.preferences-btn-accept,.preferences-btn-essential,.preferences-btn-save{max-width:none!important;width:100%!important}}.preferences-title-wrapper{align-items:center;display:flex;gap:.75rem}.preferences-logo{height:24px;-o-object-fit:contain;object-fit:contain;width:auto}*{box-sizing:border-box}.rc-container{background:#f8fafc;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;margin:0 auto;max-width:1200px;min-height:100vh;padding:20px}.rc-tabs{display:flex;flex-wrap:wrap;gap:4px;justify-content:center;margin-bottom:24px}.rc-tab{background:#fff;border:1px solid #e5e7eb;border-radius:8px;color:#6b7280;cursor:pointer;font-size:14px;font-weight:500;padding:12px 24px;transition:all .2s ease}.rc-tab:hover{background:#f3f4f6;color:#374151}.rc-tab-active{background:#3b82f6;border-color:#3b82f6;color:#fff}.rc-principal-id{align-items:center;background:#dbeafe;border:1px solid #bfdbfe;border-radius:8px;display:flex;gap:8px;margin-bottom:32px;padding:12px 16px}.rc-principal-icon{color:#3b82f6;height:20px;width:20px}.rc-principal-text{color:#1e40af;font-size:14px;font-weight:500}.rc-content{background:#fff;border:1px solid #e5e7eb;border-radius:12px;box-shadow:0 1px 3px rgba(0,0,0,.1);padding:32px}.rc-section-title{color:#111827;font-size:24px;font-weight:700;margin:0 0 8px}.rc-section-subtitle{color:#6b7280;font-size:16px;margin:0 0 24px}.rc-section-header{align-items:flex-start;display:flex;gap:16px;justify-content:space-between;margin-bottom:24px}.rc-btn-primary{align-items:center;background:#3b82f6;border:none;border-radius:8px;color:#fff;cursor:pointer;display:inline-flex;font-size:14px;font-weight:500;gap:8px;padding:12px 20px;transition:all .2s ease}.rc-btn-primary:hover{background:#2563eb}.rc-btn-secondary{background:#fff;border:1px solid #d1d5db;border-radius:8px;color:#374151;cursor:pointer;font-size:14px;font-weight:500;padding:12px 20px;transition:all .2s ease}.rc-btn-secondary:hover{background:#f9fafb;border-color:#9ca3af}.rc-btn-danger{background:#fff;border:1px solid #dc2626;border-radius:8px;color:#dc2626;font-size:14px;padding:12px 20px;transition:all .2s ease}.rc-btn-danger:hover{background:#fef2f2}.rc-btn-icon{height:16px;width:16px}.rc-consent-list{display:flex;flex-direction:column;gap:24px}.rc-consent-item{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:24px;position:relative}.rc-consent-header{margin-bottom:16px}.rc-consent-title-row{align-items:flex-start;display:flex;justify-content:space-around;margin-bottom:12px}.rc-consent-title{color:#111827;flex:1;font-size:18px;font-weight:600;margin:0}.rc-consent-header-right{align-items:center;display:flex;gap:12px}.rc-info-icon{color:#6b7280;cursor:pointer;height:20px;transition:color .2s ease;width:20px}.rc-info-icon:hover{color:#374151}.rc-badge{border-radius:20px;font-size:12px;font-weight:600;letter-spacing:.5px;padding:4px 12px;text-transform:uppercase}.rc-badge-mandatory{background:#fecaca;color:#991b1b}.rc-badge-optional{background:#d1fae5;color:#065f46}.rc-consent-description{color:#6b7280;font-size:14px;line-height:1.5;margin:0 0 16px}.rc-consent-details{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}.rc-detail-item{display:flex;font-size:14px;gap:8px}.rc-detail-label{color:#374151;font-weight:500;min-width:120px}.rc-detail-value{color:#6b7280}.rc-consent-status{display:flex;flex-wrap:wrap;gap:24px;margin-bottom:20px}.rc-status-item{align-items:center;display:flex;font-size:14px;gap:8px}.rc-status-label{color:#374151;font-weight:500}.rc-status-pill{border-radius:12px;font-size:12px;font-weight:500;padding:2px 8px}.rc-status-yes{background:#d1fae5;color:#065f46}.rc-status-no{background:#fef2f2;color:#991b1b}.rc-consent-toggle{position:absolute;right:24px;top:50%}.rc-switch{display:inline-block;height:24px;position:relative;width:50px}.rc-switch input{height:0;opacity:0;width:0}.rc-slider{background-color:#cbd5e0;border-radius:24px;bottom:0;cursor:pointer;left:0;right:0;top:0}.rc-slider,.rc-slider:before{position:absolute;transition:.4s}.rc-slider:before{background-color:#fff;border-radius:50%;bottom:3px;box-shadow:0 1px 3px rgba(0,0,0,.2);content:"";height:18px;left:3px;width:18px}input:checked+.rc-slider{background-color:#3b82f6}input:checked+.rc-slider:before{transform:translateX(26px)}.rc-rights-actions{display:flex;flex-wrap:wrap;gap:16px}.rc-transparency-text{color:#374151;font-size:16px;line-height:1.6;margin:0}.rc-dpo-header{align-items:center;display:flex;gap:12px;margin-bottom:8px}.rc-dpo-icon{color:#3b82f6;height:24px;width:24px}.rc-dpo-content{display:grid;gap:48px;grid-template-columns:1fr 1fr;margin-top:32px}.rc-dpo-left,.rc-dpo-right{display:flex;flex-direction:column;gap:20px}.rc-dpo-item{align-items:flex-start;display:flex;gap:12px}.rc-dpo-item-icon{color:#6b7280;height:20px;margin-top:2px;width:20px}.rc-dpo-item div{display:flex;flex-direction:column;gap:4px}.rc-dpo-label{color:#374151;font-size:14px;font-weight:500}.rc-dpo-value{color:#6b7280;font-size:14px}.rc-dpo-info-item{display:flex;flex-direction:column;gap:4px}.rc-dpo-time-icon{color:#6b7280;height:16px;width:16px}.rc-response-box{background:#eff6ff;border:1px solid #bfdbfe;border-radius:8px;margin-top:8px;padding:16px}.rc-response-title{color:#1e40af;font-size:16px;font-weight:600;margin:0 0 8px}.rc-response-text{color:#1e40af;font-size:14px;line-height:1.5;margin:0}.rc-nominee-details-grid{background:#fff;border:1px solid #e5e7eb;border-radius:8px;display:grid;gap:24px 32px;grid-template-columns:repeat(2,1fr);margin-top:16px;padding:24px}.rc-nominee-item{align-items:flex-start;display:flex;gap:12px}.rc-nominee-fullwidth{grid-column:1/-1}.rc-nominee-icon{color:#6b7280;flex-shrink:0;height:20px;width:20px}.rc-nominee-label{color:#374151;display:block;font-size:.875rem;font-weight:600}.rc-nominee-value{color:#6b7280;display:block;font-size:.875rem;margin-top:2px}.rc-nominee-actions-fullwidth{display:flex;gap:16px;grid-column:1/-1;justify-content:flex-start;margin-top:16px}.rc-btn-danger{background:#dc2626;border:none;border-radius:6px;color:#fff;cursor:pointer;font-weight:500;padding:8px 16px}.rc-btn-danger:hover{background:#b91c1c}.rc-nominee-warning{align-items:flex-start;background:#fef3c7;border:1px solid #fbbf24;border-radius:8px;display:flex;gap:12px;margin-bottom:24px;padding:16px}.rc-warning-icon{font-size:20px;margin-top:2px}.rc-nominee-warning p{color:#92400e;font-size:14px;line-height:1.5;margin:0}.rc-nominee-form{display:flex;flex-direction:column;gap:20px}.rc-form-row{display:grid;gap:20px;grid-template-columns:1fr 1fr}.rc-form-group{display:flex;flex-direction:column;gap:8px}.rc-form-label{color:#374151;font-size:14px;font-weight:500}.rc-form-input,.rc-form-select,.rc-form-textarea{border:1px solid #d1d5db;border-radius:8px;font-size:14px;padding:12px 16px;transition:border-color .2s ease}.rc-form-input:focus,.rc-form-select:focus,.rc-form-textarea:focus{border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1);outline:none}.rc-form-textarea{font-family:inherit;resize:vertical}.rc-form-actions{display:flex;gap:12px;justify-content:flex-start;margin-top:8px}.rc-grievance-form{background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;display:flex;flex-direction:column;gap:20px;margin-bottom:32px;padding:24px}.rc-tickets-section{margin-top:32px}.rc-tickets-title{color:#111827;font-size:18px;font-weight:600;margin:0 0 16px}.rc-empty-state{padding:40px 20px;text-align:center}.rc-ticket-list{display:flex;flex-direction:column;gap:16px}.rc-ticket-item{background:#f8fafc;border:1px solid #e5e7eb;border-radius:8px;padding:20px}.rc-ticket-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:12px}.rc-ticket-subject{color:#111827;font-size:16px;font-weight:600;margin:0}.rc-ticket-status{background:#d1fae5;border-radius:20px;color:#065f46;font-size:12px;font-weight:500;padding:4px 12px;text-transform:uppercase}.rc-ticket-description{color:#6b7280;font-size:14px;line-height:1.5;margin:0}.rc-modal-overlay{align-items:center;background:rgba(0,0,0,.5);display:flex;height:100%;justify-content:center;left:0;padding:24px;position:fixed;top:0;width:100%;z-index:1000}.rc-modal{background:#fff;border-radius:12px;box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);max-height:90vh;max-width:700px;overflow-y:auto;padding:32px;position:relative;width:100%}.rc-modal-small{max-width:400px}.rc-modal-header{align-items:center;border-bottom:1px solid #e5e7eb;display:flex;justify-content:space-between;margin-bottom:16px;padding-bottom:16px}.rc-modal-title{color:#111827;font-size:20px;font-weight:700;margin:0}.rc-modal-close{background:#f3f4f6;border:none;border-radius:6px;color:#6b7280;cursor:pointer;padding:8px;transition:all .2s ease}.rc-modal-close:hover{background:#e5e7eb;color:#374151}.rc-modal-subtitle{color:#6b7280;font-size:14px;margin-bottom:24px}.rc-modal-content{display:flex;flex-direction:column;gap:24px}.rc-modal-section{background:#f8fafc;border:1px solid #e5e7eb;border-radius:8px;padding:20px}.rc-modal-section-title{color:#111827;font-size:16px;font-weight:600;margin:0 0 16px}.rc-modal-field{align-items:flex-start;display:flex;font-size:14px;gap:8px;margin-bottom:12px}.rc-modal-field-label{color:#374151;min-width:140px}.rc-modal-field-value{color:#6b7280;flex:1}.rc-elements-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin-top:16px}.rc-element-card{background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:16px}.rc-element-title{color:#111827;display:block;font-size:14px;font-weight:600;margin-bottom:8px}.rc-element-description{color:#6b7280;font-size:13px;line-height:1.4;margin:0}.rc-modal-status-item{align-items:center;display:flex;font-size:14px;justify-content:space-between;margin-bottom:12px}.rc-modal-status-label{color:#374151;font-weight:500}.rc-modal-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:24px}.rc-modal-success{align-items:center;display:flex;flex-direction:column;justify-content:center;padding:32px;text-align:center}.rc-success-icon{color:#10b981;height:48px;margin-bottom:16px;width:48px}@media (max-width:768px){.rc-container{padding:16px}.rc-content{padding:24px 20px}.rc-section-header{align-items:stretch;flex-direction:column;gap:16px}.rc-tabs{flex-wrap:wrap;justify-content:center}.rc-consent-status{flex-direction:column;gap:8px}.rc-consent-toggle{display:flex;justify-content:flex-end;margin-top:16px;position:static}.rc-rights-actions{flex-direction:column}.rc-dpo-content{gap:24px}.rc-dpo-content,.rc-form-row{grid-template-columns:1fr}.rc-modal{margin:16px;padding:24px}.rc-elements-grid{grid-template-columns:1fr}}@media (max-width:480px){.rc-section-title{font-size:20px}.rc-tab{font-size:13px;padding:10px 16px}.rc-modal{margin:8px;padding:20px}.rc-form-actions{flex-direction:column}}.rc-empty-state{align-items:center;background:#f9fafb;border:1px dashed #e5e7eb;border-radius:6px;color:#6b7280;display:flex;font-style:italic;gap:8px;justify-content:center;margin:16px 0;padding:16px}.rc-empty-state-icon{color:#2563eb;height:20px;width:20px}
|
|
1
|
+
.mcm-overlay{align-items:center!important;background:var(--banner-overlay);display:flex!important;height:100%!important;justify-content:center!important;left:0!important;position:fixed!important;top:0!important;width:100%!important;z-index:10000!important}.mcm-wrapper{max-width:550px;position:relative;width:90%}.mcm-wrapper,.mcm-wrapper button,.mcm-wrapper input,.mcm-wrapper select,.mcm-wrapper textarea{font-family:inherit;font-size:inherit}.mcm-container{border-radius:16px;box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);flex-direction:column!important;max-height:85vh;overflow:hidden!important;position:relative;width:100%}.mcm-close-btn,.mcm-container{background:var(--banner-bg);display:flex!important}.mcm-close-btn{align-items:center;border:1px solid var(--banner-border);border-radius:50%;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);color:var(--banner-text-muted);cursor:pointer;font-size:22px;height:32px;justify-content:center;line-height:1;position:absolute;right:-12px;top:-12px;transition:all .2s cubic-bezier(.4,0,.2,1);width:32px;z-index:10005}.mcm-close-btn:hover{background:var(--banner-card-bg);border-color:var(--banner-text-muted);color:var(--banner-text);transform:scale(1.1) rotate(90deg)}.mcm-header{align-items:center;display:flex;margin-bottom:15px}.mcm-logo{height:48px;margin-right:10px;width:48px}.mcm-header-text h1{color:var(--banner-text);font-size:1.25rem;margin:0}.mcm-header-text p{color:var(--banner-text-muted);font-size:.9rem;margin:0}.mcm-separator{background:var(--banner-border);height:1px;margin:10px 0}.mcm-body{display:grid;gap:10px;grid-template-columns:1fr}.mcm-card{border:1px solid var(--banner-border);border-radius:4px;padding:10px}.mcm-card-header{align-items:center;display:flex;justify-content:space-between}.mcm-purpose-desc{color:var(--banner-text-muted);font-size:.9rem}.badge{background:var(--banner-border);border-radius:4px;color:var(--banner-text);display:inline-block;font-size:.75rem;margin-right:5px;padding:2px 6px}.badge.mandatory{background:var(--banner-danger-bg);color:var(--banner-danger-text)}.badge.expiry{background:var(--banner-info-bg);color:var(--banner-primary-color)}.switch{display:inline-block;height:20px;margin:0 5px;position:relative;width:40px}.switch input{height:0;opacity:0;width:0}.track{background:var(--banner-border);border-radius:20px;bottom:0;cursor:pointer;left:0;right:0;top:0}.thumb,.track{position:absolute}.thumb{background:var(--banner-bg);border-radius:50%;bottom:2px;content:"";height:16px;left:2px;transition:.2s;width:16px}input:checked+.track{background:var(--banner-success-text)}input:checked+.track+.thumb{transform:translateX(20px)}.toggle-label{font-size:.9rem}.accordion-btn{align-items:center;background:none;border:none;color:var(--banner-text);cursor:pointer;display:flex;font-size:1rem;justify-content:space-between;padding:8px 0;text-align:left;width:100%}.panel{padding:5px 0 10px}.pill{background:var(--banner-info-bg);border-radius:12px;color:var(--banner-primary-color);display:inline-block;font-size:.8rem;margin:2px;padding:4px 8px}.chevron{transition:transform .3s}.chevron.open{transform:rotate(180deg)}.mcm-btn{border:none;border-radius:4px;cursor:pointer;font-size:1rem;padding:8px 16px}.mcm-btn.reject{background:var(--banner-danger-btn);color:var(--banner-bg);margin-right:10px}.mcm-btn.consent{background:var(--banner-primary-color);color:var(--banner-bg)}.mcm-spinner{animation:mcm-spin 1s linear infinite;border:4px solid var(--banner-border);border-radius:50%;border-top-color:var(--banner-primary-color);height:48px;left:50%;position:fixed;top:50%;transform:translate(-50%,-50%);width:48px}@keyframes mcm-spin{to{transform:rotate(1turn)}}.mcm-overlay.floating-card{align-items:flex-end!important;background:transparent!important;justify-content:flex-end!important;padding:24px!important;pointer-events:none!important}.mcm-wrapper.floating-card{margin:0!important;max-width:400px;pointer-events:auto!important;width:100%}.mcm-wrapper.floating-card .mcm-container{box-shadow:0 10px 40px -10px rgba(0,0,0,.2);max-height:90vh}.mcm-wrapper.floating-card .mcm-close-btn{display:none!important}@media (max-width:480px){.mcm-overlay.floating-card{padding:12px!important}.mcm-wrapper.floating-card{max-width:calc(100% - 24px)}}.mcm-overlay.bottom-bar{align-items:flex-end!important;background:transparent!important;justify-content:center!important;padding:0!important;pointer-events:none!important}.mcm-wrapper.bottom-bar{margin:0!important;max-width:100%!important;pointer-events:auto!important;width:100%!important}.mcm-wrapper.bottom-bar .mcm-container{border-radius:0!important;box-shadow:0 -10px 15px -3px rgba(0,0,0,.1);max-height:50vh}.mcm-wrapper.bottom-bar .mcm-close-btn{display:none!important}@media (max-width:480px){.mcm-wrapper.bottom-bar .mcm-container{max-height:80vh}}.mcm-overlay.center-modal{align-items:center!important;background:var(--banner-overlay)!important;justify-content:center!important}.mcm-wrapper.center-modal{max-width:550px;width:90%}.mcm-overlay.side-panel{background:var(--banner-overlay)!important}.mcm-wrapper.side-panel{height:100vh}.mcm-wrapper.side-panel .mcm-container{border-left:1px solid var(--banner-border);border-radius:0;height:100vh}@media (max-width:480px){.mcm-wrapper.side-panel{max-width:100%}}.mcm-cookie-summary{display:flex;flex-direction:column;gap:.5rem;padding:1rem 1.25rem .75rem}.mcm-cookie-summary-title{color:var(--banner-text);font-size:1rem;font-weight:600;margin:0}.mcm-cookie-summary-text{color:var(--banner-text-muted);font-size:.8125rem;line-height:1.4;margin:0}.mcm-cookie-summary-footer-links{color:var(--banner-text-muted);display:block;font-size:.725rem;line-height:1.4;margin-top:.25rem;width:100%}.mcm-cookie-summary-footer-links.dynamic{text-align:left}.mcm-cookie-summary-footer-links .mcm-link{color:var(--banner-text-muted);cursor:pointer;text-decoration:underline}.mcm-cookie-summary-footer-links .mcm-link:hover{color:var(--banner-text)}.mcm-separator-pipe{color:#d1d5db;display:inline-block;margin:0 .25rem;opacity:.5}.mcm-powered-by{background-color:var(--banner-card-bg);border-bottom-left-radius:1rem;border-bottom-right-radius:1rem;border-top:1px solid var(--banner-border);color:var(--banner-text-muted);font-size:.625rem;margin-bottom:-.75rem;margin-left:-1.25rem;padding:.375rem;text-align:center;width:calc(100% + 2.5rem)}.mcm-brand{color:var(--banner-text);font-weight:600}.mcm-cookie-summary-actions{display:flex;flex-direction:column;gap:.375rem;margin-top:.25rem}.mcm-summary-btn{border:1px solid transparent;border-radius:.5rem;cursor:pointer;font-weight:500;transition:all .2s ease;width:100%}.mcm-summary-btn,.mcm-summary-btn.text{font-size:.8125rem;padding:.5rem .65rem}.mcm-summary-btn.text{background:transparent;border:1px solid var(--banner-border);color:var(--banner-primary-color);margin-top:0}.mcm-cookie-summary hr{border:0;border-top:1px solid var(--banner-border);margin:0;width:100%}.mcm-summary-btn.primary{color:#fff}.mcm-summary-btn.secondary{background-color:var(--banner-card-bg);border-color:var(--banner-border);color:var(--banner-text)}.mcm-wrapper.floating-card .mcm-cookie-summary{background:var(--banner-bg);border-radius:1rem}.mcm-wrapper.bottom-bar .mcm-container{background:var(--banner-bg);border-top:1px solid var(--banner-border);box-shadow:0 -4px 12px rgba(0,0,0,.05);padding-bottom:32px;position:relative}.mcm-wrapper.bottom-bar .mcm-cookie-summary{align-items:center;display:flex!important;flex-direction:row;flex-wrap:wrap;gap:.25rem 3rem;justify-content:space-between;margin:0 auto;max-width:100%;padding:1rem 3rem 0}.mcm-wrapper.bottom-bar .mcm-cookie-summary-content{flex:1 1 auto;min-width:400px;text-align:left}.mcm-wrapper.bottom-bar .mcm-cookie-summary-title{color:var(--banner-text);font-size:1.125rem;font-weight:800;line-height:1.2;margin-bottom:.25rem}.mcm-wrapper.bottom-bar .mcm-cookie-summary-text{color:var(--banner-text-muted);font-size:.875rem;line-height:1.5}.mcm-wrapper.bottom-bar .mcm-cookie-summary-actions{align-items:center;display:flex!important;flex:0 0 auto;flex-direction:row;gap:1rem;justify-content:flex-end;margin-top:0}.mcm-wrapper.bottom-bar .mcm-summary-btn{font-size:.875rem;min-width:140px;padding:.75rem 1.5rem;white-space:nowrap;width:auto}.mcm-wrapper.bottom-bar .mcm-cookie-summary-footer-links{border-top:1px solid var(--banner-border);color:var(--banner-text-muted);display:block!important;flex:1 1 100%;font-size:.8125rem;line-height:1.6;margin-top:0;padding-top:.375rem;text-align:left}.mcm-wrapper.bottom-bar .mcm-cookie-summary-footer-links .mcm-link{color:var(--banner-text);text-decoration:underline;text-underline-offset:2px;transition:all .2s ease}.mcm-wrapper.bottom-bar .mcm-summary-btn.secondary{background:var(--banner-card-bg);border-color:var(--banner-border);color:var(--banner-text)}.mcm-wrapper.bottom-bar .mcm-summary-btn.text{background:var(--banner-bg);border:1px solid var(--banner-border);border-radius:.5rem;color:var(--banner-primary-color)}.mcm-wrapper.bottom-bar .mcm-powered-by{align-items:center;background-color:var(--banner-card-bg);border-top:1px solid var(--banner-border);bottom:8px;color:var(--banner-text-muted);display:flex;font-size:.65rem;gap:4px;height:24px;justify-content:center;left:0;padding:.25rem;position:absolute;right:0;text-align:center;width:100%;z-index:10}.mcm-wrapper.bottom-bar .mcm-cookie-summary hr{display:none!important}@media (min-width:768px){.mcm-wrapper.floating-card{bottom:24px;max-width:380px;right:24px}}.mcm-overlay.side-panel{align-items:stretch!important;justify-content:flex-end!important}.mcm-wrapper.side-panel{animation:mcm-drawer-slide-in .4s cubic-bezier(.16,1,.3,1);height:100%;margin:0;max-height:100vh;max-width:450px;width:100%}.mcm-wrapper.side-panel .mcm-container{border-left:1px solid var(--banner-border)!important;border-radius:0!important;height:100%;max-height:100vh}.mcm-wrapper.side-panel .mcm-close-btn{background:var(--banner-bg)!important;border:1px solid var(--banner-border)!important;left:-16px!important;top:0!important}@keyframes mcm-drawer-slide-in{0%{transform:translateX(100%)}to{transform:translateX(0)}}@media (max-width:640px){.mcm-wrapper.side-panel{max-width:100%!important}}.mcm-wrapper.modern-modal{max-width:750px!important}.mcm-wrapper.modern-modal .mcm-container{border-radius:12px!important;max-height:90vh!important}.mcm-wrapper.modern-modal .mcm-header{border-bottom:1px solid var(--banner-border)!important;margin-bottom:0!important;padding:24px 24px 16px!important}.mcm-wrapper.modern-modal .mcm-header-text h1{color:var(--banner-text)!important;font-size:1.5rem!important;font-weight:700!important}.mcm-wrapper.modern-modal .mcm-body{gap:16px!important;padding:24px!important}.mcm-wrapper.modern-modal .mcm-card{background:var(--banner-bg)!important;border:1px solid var(--banner-border)!important;border-radius:10px!important;box-shadow:none!important;padding:20px!important;transition:border-color .2s ease!important}.mcm-wrapper.modern-modal .mcm-card:hover{border-color:var(--banner-text-muted)!important}.mcm-wrapper.modern-modal .mcm-card h3{color:var(--banner-text)!important;font-size:1.1rem!important;font-weight:700!important}.mcm-wrapper.modern-modal .mcm-purpose-desc{color:var(--banner-text-muted)!important;font-size:.95rem!important;line-height:1.6!important;margin-top:8px!important}.mcm-wrapper.modern-modal .badge.mandatory{background:var(--banner-danger-bg)!important;border:none!important;border-radius:9999px!important;color:var(--banner-danger-text)!important;font-size:.75rem!important;font-weight:700!important;padding:4px 16px!important;text-transform:capitalize!important}.mcm-wrapper.modern-modal .mcm-action-buttons{align-items:center!important;background:var(--banner-bg)!important;border-top:1px solid var(--banner-border)!important;display:flex!important;justify-content:space-between!important;padding:20px 24px!important}.mcm-wrapper.modern-modal .mcm-summary-btn{border-radius:6px!important;font-size:.95rem!important;font-weight:600!important;padding:10px 24px!important}.mcm-wrapper.modern-modal .mcm-summary-btn.secondary{background:transparent!important;border:1px solid var(--banner-border)!important;color:var(--banner-text)!important;margin-right:auto!important}.mcm-wrapper.modern-modal .mcm-summary-btn.primary{background:var(--banner-primary-color)!important;border:none!important;color:var(--banner-bg)!important}.mcm-wrapper.modern-modal .mcm-summary-btn.save-preferences{background:#ff7675!important;border:none!important;color:#fff!important}.preferences-modal-content{background:var(--banner-bg);display:flex;flex-direction:column;font-family:inherit;font-size:inherit;height:100%;max-height:85vh}.preferences-header{align-items:center;border-bottom:1px solid var(--banner-border);display:flex;justify-content:space-between;padding:1.5rem 1.5rem 1rem}.preferences-title{color:var(--banner-text);font-size:1.5rem;font-weight:700;margin:0}.preferences-close-btn{align-items:center;background:transparent;border:none;border-radius:50%;color:var(--banner-text-muted);cursor:pointer;display:flex;justify-content:center;padding:6px;transition:all .2s}.preferences-close-btn:hover{background:var(--banner-hover-bg);color:var(--banner-text)}.mcm-wrapper.preferences-modal>.mcm-close-btn{display:none!important}.preferences-intro{color:var(--banner-text-muted);font-size:.95rem;line-height:1.6;padding:1.25rem 1.5rem}.preferences-purpose-list{display:flex;flex:1;flex-direction:column;gap:1rem;overflow-y:auto;padding:0 1.5rem 1.5rem}.preferences-purpose-card{background:var(--banner-bg);border:1px solid var(--banner-border);border-left:4px solid var(--banner-text);border-radius:8px;padding:1.25rem;transition:box-shadow .2s ease}.preferences-purpose-card:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.05),0 2px 4px -1px rgba(0,0,0,.03)}.preferences-purpose-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:.75rem}.preferences-purpose-info{align-items:center;display:flex;flex:1;gap:.75rem}.preferences-purpose-name{color:var(--banner-text);font-size:1.125rem;font-weight:700;margin:0}.preferences-badge-mandatory{background:var(--banner-danger-bg);border-radius:9999px;color:var(--banner-danger-text);display:inline-block;font-size:.75rem;font-weight:600;padding:.25rem .75rem;text-transform:capitalize}.preferences-purpose-description{color:var(--banner-text-muted);font-size:.9rem;line-height:1.5;margin-bottom:.75rem}.preferences-details{border-top:1px solid var(--banner-border);margin-top:.5rem;padding-top:.5rem}.preferences-details .mcm-collapsible-btn{color:var(--banner-danger-btn)!important;font-size:.8125rem!important;font-weight:600!important;padding:4px 0!important}.preferences-actions{background:var(--banner-bg);border-top:1px solid var(--banner-border);display:flex;gap:1rem;padding:1.25rem 1.5rem}.preferences-btn{border-radius:6px;cursor:pointer;flex:1;font-size:.875rem;font-weight:600;padding:.625rem 1.25rem;text-align:center;transition:all .2s ease}.preferences-btn-essential{background:transparent;border:1px solid var(--banner-border);color:var(--banner-text-muted)}.preferences-btn-essential:hover{background:var(--banner-hover-bg);border-color:var(--banner-text)}.preferences-btn-save{border:none;color:var(--banner-primary-color)}.preferences-btn-save,.preferences-btn-save:hover{background:var(--banner-info-bg)}.preferences-btn-accept{border:none;color:var(--banner-bg)}.preferences-btn-accept,.preferences-btn-accept:hover{background:var(--banner-primary-color)}.mcm-wrapper.preferences-modal{max-width:650px!important;width:90%!important}.mcm-wrapper.preferences-modal .mcm-container{border-radius:12px!important}.preferences-toggle{display:inline-block;flex-shrink:0;height:24px;position:relative;width:44px}.preferences-toggle input{height:0;opacity:0;width:0}.preferences-toggle-slider{background-color:var(--banner-border);border-radius:24px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.3s}.preferences-toggle-slider:before{background-color:var(--banner-bg);border-radius:50%;bottom:3px;content:"";height:18px;left:3px;position:absolute;transition:.3s;width:18px}.preferences-toggle input:checked+.preferences-toggle-slider{background-color:var(--banner-success-text)}.preferences-toggle input:checked+.preferences-toggle-slider:before{transform:translateX(20px)}@media (max-width:640px){.preferences-actions{flex-direction:column}.preferences-purpose-header{align-items:flex-start;flex-direction:column;gap:.75rem}.preferences-toggle{align-self:flex-start}}.preferences-footer-container{background:var(--banner-bg);border-top:1px solid var(--banner-border);display:flex;flex-direction:column;gap:.5rem;padding:1rem 1.5rem}.preferences-footer-text{margin-bottom:.5rem}.preferences-footer-container .preferences-actions{border-top:none!important;padding:0!important}.preferences-purpose-card-wrapper{margin-bottom:.75rem}.preferences-purpose-card-wrapper>div{border-left:4px solid var(--banner-text)!important;border:1px solid var(--banner-border)!important;border-radius:8px!important;padding:1.25rem!important;transition:box-shadow .2s ease!important}.preferences-purpose-card-wrapper>div:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.05),0 2px 4px -1px rgba(0,0,0,.03)!important}.preferences-purpose-card-wrapper .mandatory-badge{background:var(--banner-danger-bg)!important;border:none!important;color:var(--banner-danger-text)!important;font-size:.725rem!important;padding:.125rem .625rem!important;text-transform:capitalize!important}.preferences-purpose-card-wrapper .mcm-collapsible-btn{color:var(--banner-danger-btn)!important;font-size:.8125rem!important;font-weight:600!important;text-decoration:none!important}.preferences-purpose-card-wrapper .mcm-collapsible-btn:hover{text-decoration:underline!important}.preferences-actions{align-items:center!important;justify-content:space-between!important}.preferences-actions-right{display:flex;flex:1;gap:1rem;justify-content:flex-end}.preferences-btn-essential,.preferences-btn-save{flex:0 1 auto!important;min-width:140px}.preferences-btn-save{max-width:180px}.preferences-btn-accept{flex:0 1 auto!important;max-width:150px;min-width:110px}@media (max-width:640px){.preferences-actions{flex-direction:column!important;gap:.75rem!important}.preferences-actions-right{flex-direction:column;width:100%}.preferences-btn-accept,.preferences-btn-essential,.preferences-btn-save{max-width:none!important;width:100%!important}}.preferences-title-wrapper{align-items:center;display:flex;gap:.75rem}.preferences-logo{height:24px;-o-object-fit:contain;object-fit:contain;width:auto}*{box-sizing:border-box}.rc-container{background:var(--banner-card-bg);font-family:var(--font-type);margin:0 auto;max-width:1200px;min-height:100vh;padding:20px}.rc-tabs{display:flex;flex-wrap:wrap;gap:4px;justify-content:center;margin-bottom:24px}.rc-tab{background:var(--banner-bg);border:none;border:1px solid var(--banner-border);border-radius:8px;color:var(--banner-text-muted);cursor:pointer;font-size:14px;font-weight:500;padding:12px 24px;transition:all .2s ease}.rc-tab:hover{background:var(--banner-hover-bg);color:var(--banner-text)}.rc-tab-active{background:#3b82f6;border-color:#3b82f6;color:#fff}.rc-principal-id{align-items:center;background:var(--banner-info-bg);border:1px solid var(--banner-info-border);border-radius:8px;display:flex;gap:8px;margin-bottom:32px;padding:12px 16px}.rc-principal-icon{color:var(--banner-primary-color);height:20px;width:20px}.rc-principal-text{color:var(--banner-primary-color);font-size:14px;font-weight:500}.rc-content{background:var(--banner-bg);border:1px solid var(--banner-border);border-radius:12px;box-shadow:0 1px 3px rgba(0,0,0,.1);padding:32px}.rc-section-title{color:var(--banner-text);font-size:24px;font-weight:700;margin:0 0 8px}.rc-section-subtitle{color:var(--banner-text-muted);font-size:16px;margin:0 0 24px}.rc-section-header{align-items:flex-start;display:flex;gap:16px;justify-content:space-between;margin-bottom:24px}.rc-btn-primary{align-items:center;background:#3b82f6;border:none;border-radius:8px;color:#fff;cursor:pointer;display:inline-flex;font-size:14px;font-weight:500;gap:8px;padding:12px 20px;transition:all .2s ease}.rc-btn-primary:hover{background:#2563eb}.rc-btn-secondary{background:var(--banner-bg);border:1px solid var(--banner-border);border-radius:8px;color:var(--banner-text);cursor:pointer;font-size:14px;font-weight:500;padding:12px 20px;transition:all .2s ease}.rc-btn-secondary:hover{background:var(--banner-hover-bg);border-color:var(--banner-text-muted)}.rc-btn-danger{background:var(--banner-bg);border:1px solid var(--banner-danger-btn);border-radius:8px;color:var(--banner-danger-btn);font-size:14px;padding:12px 20px;transition:all .2s ease}.rc-btn-danger:hover{background:var(--banner-danger-bg)}.rc-btn-icon{height:16px;width:16px}.rc-consent-list{display:flex;flex-direction:column;gap:24px}.rc-consent-item{background:var(--banner-bg);border:1px solid var(--banner-border);border-radius:12px;padding:24px;position:relative}.rc-consent-header{margin-bottom:16px}.rc-consent-title-row{align-items:flex-start;display:flex;justify-content:space-around;margin-bottom:12px}.rc-consent-title{color:var(--banner-text);flex:1;font-size:18px;font-weight:600;margin:0}.rc-consent-header-right{align-items:center;display:flex;gap:12px}.rc-info-icon{color:var(--banner-text-muted);cursor:pointer;height:20px;transition:color .2s ease;width:20px}.rc-info-icon:hover{color:var(--banner-text)}.rc-badge{border-radius:20px;font-size:12px;font-weight:600;letter-spacing:.5px;padding:4px 12px;text-transform:uppercase}.rc-badge-mandatory{background:var(--banner-danger-bg);color:var(--banner-danger-text)}.rc-badge-optional{background:var(--banner-success-bg);color:var(--banner-success-text)}.rc-consent-description{color:var(--banner-text-muted);font-size:14px;line-height:1.5;margin:0 0 16px}.rc-consent-details{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}.rc-detail-item{display:flex;font-size:14px;gap:8px}.rc-detail-label{color:var(--banner-text);font-weight:500;min-width:120px}.rc-detail-value{color:var(--banner-text-muted)}.rc-consent-status{display:flex;flex-wrap:wrap;gap:24px;margin-bottom:20px}.rc-status-item{align-items:center;display:flex;font-size:14px;gap:8px}.rc-status-label{color:var(--banner-text);font-weight:500}.rc-status-pill{border-radius:12px;font-size:12px;font-weight:500;padding:2px 8px}.rc-status-yes{background:var(--banner-success-bg);color:var(--banner-success-text)}.rc-status-no{background:var(--banner-danger-bg);color:var(--banner-danger-text)}.rc-consent-toggle{position:absolute;right:24px;top:50%}.rc-switch{display:inline-block;height:24px;position:relative;width:50px}.rc-switch input{height:0;opacity:0;width:0}.rc-slider{background-color:#cbd5e0;border-radius:24px;bottom:0;cursor:pointer;left:0;right:0;top:0}.rc-slider,.rc-slider:before{position:absolute;transition:.4s}.rc-slider:before{background-color:#fff;border-radius:50%;bottom:3px;box-shadow:0 1px 3px rgba(0,0,0,.2);content:"";height:18px;left:3px;width:18px}input:checked+.rc-slider{background-color:#3b82f6}input:checked+.rc-slider:before{transform:translateX(26px)}.rc-rights-actions{display:flex;flex-wrap:wrap;gap:16px}.rc-transparency-text{color:var(--banner-text);font-size:16px;line-height:1.6;margin:0}.rc-dpo-header{align-items:center;display:flex;gap:12px;margin-bottom:8px}.rc-dpo-icon{color:var(--banner-primary-color);height:24px;width:24px}.rc-dpo-content{display:grid;gap:48px;grid-template-columns:1fr 1fr;margin-top:32px}.rc-dpo-left,.rc-dpo-right{display:flex;flex-direction:column;gap:20px}.rc-dpo-item{align-items:flex-start;display:flex;gap:12px}.rc-dpo-item-icon{color:var(--banner-text-muted);height:20px;margin-top:2px;width:20px}.rc-dpo-item div{display:flex;flex-direction:column;gap:4px}.rc-dpo-label{color:var(--banner-text);font-size:14px;font-weight:500}.rc-dpo-value{color:var(--banner-text-muted);font-size:14px}.rc-dpo-info-item{display:flex;flex-direction:column;gap:4px}.rc-dpo-time-icon{color:var(--banner-text-muted);height:16px;width:16px}.rc-response-box{background:var(--banner-info-bg);border:1px solid var(--banner-info-border);border-radius:8px;margin-top:8px;padding:16px}.rc-response-title{color:var(--banner-primary-color);font-size:16px;font-weight:600;margin:0 0 8px}.rc-response-text{color:var(--banner-primary-color);font-size:14px;line-height:1.5;margin:0}.rc-nominee-details-grid{background:var(--banner-bg);border:1px solid var(--banner-border);border-radius:8px;display:grid;gap:24px 32px;grid-template-columns:repeat(2,1fr);margin-top:16px;padding:24px}.rc-nominee-item{align-items:flex-start;display:flex;gap:12px}.rc-nominee-fullwidth{grid-column:1/-1}.rc-nominee-icon{color:var(--banner-text-muted);flex-shrink:0;height:20px;width:20px}.rc-nominee-label{color:var(--banner-text);display:block;font-size:.875rem;font-weight:600}.rc-nominee-value{color:var(--banner-text-muted);display:block;font-size:.875rem;margin-top:2px}.rc-nominee-actions-fullwidth{display:flex;gap:16px;grid-column:1/-1;justify-content:flex-start;margin-top:16px}.rc-btn-danger{background:#dc2626;border:none;border-radius:6px;color:#fff;cursor:pointer;font-weight:500;padding:8px 16px}.rc-btn-danger:hover{background:#b91c1c}.rc-nominee-warning{align-items:flex-start;background:var(--banner-warning-bg);border:1px solid var(--banner-warning-border);border-radius:8px;display:flex;gap:12px;margin-bottom:24px;padding:16px}.rc-warning-icon{font-size:20px;margin-top:2px}.rc-nominee-warning p{color:var(--banner-warning-text);font-size:14px;line-height:1.5;margin:0}.rc-nominee-form{display:flex;flex-direction:column;gap:20px}.rc-form-row{display:grid;gap:20px;grid-template-columns:1fr 1fr}.rc-form-group{display:flex;flex-direction:column;gap:8px}.rc-form-label{color:var(--banner-text);font-size:14px;font-weight:500}.rc-form-input,.rc-form-select,.rc-form-textarea{background:var(--banner-bg);border:1px solid var(--banner-border);border-radius:8px;color:var(--banner-text);font-size:14px;padding:12px 16px;transition:border-color .2s ease}.rc-form-input:focus,.rc-form-select:focus,.rc-form-textarea:focus{border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1);outline:none}.rc-form-textarea{font-family:inherit;resize:vertical}.rc-form-actions{display:flex;gap:12px;justify-content:flex-start;margin-top:8px}.rc-grievance-form{background:var(--banner-card-bg);border:1px solid var(--banner-border);border-radius:12px;display:flex;flex-direction:column;gap:20px;margin-bottom:32px;padding:24px}.rc-tickets-section{margin-top:32px}.rc-tickets-title{color:var(--banner-text);font-size:18px;font-weight:600;margin:0 0 16px}.rc-empty-state{color:var(--banner-text-muted);padding:40px 20px;text-align:center}.rc-ticket-list{display:flex;flex-direction:column;gap:16px}.rc-ticket-item{background:var(--banner-card-bg);border:1px solid var(--banner-border);border-radius:8px;padding:20px}.rc-ticket-header{align-items:center;display:flex;justify-content:space-between;margin-bottom:12px}.rc-ticket-subject{color:var(--banner-text);font-size:16px;font-weight:600;margin:0}.rc-ticket-status{background:var(--banner-success-bg);border-radius:20px;color:var(--banner-success-text);font-size:12px;font-weight:500;padding:4px 12px;text-transform:uppercase}.rc-ticket-description{color:var(--banner-text-muted);font-size:14px;line-height:1.5;margin:0}.rc-modal-overlay{align-items:center;background:var(--banner-overlay);display:flex;height:100%;justify-content:center;left:0;padding:24px;position:fixed;top:0;width:100%;z-index:1000}.rc-modal{background:var(--banner-bg);border-radius:12px;box-shadow:0 20px 25px -5px rgba(0,0,0,.5),0 10px 10px -5px rgba(0,0,0,.2);max-height:90vh;max-width:700px;overflow-y:auto;padding:32px;position:relative;width:100%}.rc-modal-small{max-width:400px}.rc-modal-header{align-items:center;border-bottom:1px solid var(--banner-border);display:flex;justify-content:space-between;margin-bottom:16px;padding-bottom:16px}.rc-modal-title{color:var(--banner-text);font-size:20px;font-weight:700;margin:0}.rc-modal-close{background:var(--banner-hover-bg);border:none;border-radius:6px;color:var(--banner-text-muted);cursor:pointer;padding:8px;transition:all .2s ease}.rc-modal-close:hover{background:var(--banner-card-bg);color:var(--banner-text)}.rc-modal-subtitle{color:var(--banner-text-muted);font-size:14px;margin-bottom:24px}.rc-modal-content{display:flex;flex-direction:column;gap:24px}.rc-modal-section{background:var(--banner-card-bg);border:1px solid var(--banner-border);border-radius:8px;padding:20px}.rc-modal-section-title{color:var(--banner-text);font-size:16px;font-weight:600;margin:0 0 16px}.rc-modal-field{align-items:flex-start;display:flex;font-size:14px;gap:8px;margin-bottom:12px}.rc-modal-field-label{color:var(--banner-text);min-width:140px}.rc-modal-field-value{color:var(--banner-text-muted);flex:1}.rc-elements-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin-top:16px}.rc-element-card{background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:16px}.rc-element-title{color:#111827;display:block;font-size:14px;font-weight:600;margin-bottom:8px}.rc-element-description{color:#6b7280;font-size:13px;line-height:1.4;margin:0}.rc-modal-status-item{align-items:center;display:flex;font-size:14px;justify-content:space-between;margin-bottom:12px}.rc-modal-status-label{color:#374151;font-weight:500}.rc-modal-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:24px}.rc-modal-success{padding:32px;text-align:center}.rc-success-icon{color:#10b981;height:48px;margin-bottom:16px;width:48px}@media (max-width:768px){.rc-container{padding:16px}.rc-content{padding:24px 20px}.rc-section-header{align-items:stretch;flex-direction:column;gap:16px}.rc-tabs{flex-wrap:wrap;justify-content:center}.rc-consent-status{flex-direction:column;gap:8px}.rc-consent-toggle{display:flex;justify-content:flex-end;margin-top:16px;position:static}.rc-rights-actions{flex-direction:column}.rc-dpo-content{gap:24px}.rc-dpo-content,.rc-form-row{grid-template-columns:1fr}.rc-modal{margin:16px;padding:24px}.rc-elements-grid{grid-template-columns:1fr}}@media (max-width:480px){.rc-section-title{font-size:20px}.rc-tab{font-size:13px;padding:10px 16px}.rc-modal{margin:8px;padding:20px}.rc-form-actions{flex-direction:column}}.rc-empty-state{align-items:center;background:#f9fafb;border:1px dashed #e5e7eb;border-radius:6px;color:#6b7280;display:flex;font-style:italic;gap:8px;justify-content:center;margin:16px 0;padding:16px}.rc-empty-state-icon{color:#2563eb;height:20px;width:20px}
|
|
2
2
|
/*# sourceMappingURL=index.css.map */
|