#privacy-consent-popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; z-index: 10000; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } #privacy-consent-popup-overlay.show { opacity: 1; visibility: visible; } .privacy-consent-popup-box { background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); width: 90%; max-width: 600px; padding: 25px; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; position: relative; transform: translateY(20px); transition: transform 0.3s ease; } #privacy-consent-popup-overlay.show .privacy-consent-popup-box { transform: translateY(0); } .privacy-consent-popup-box h2 { font-size: 1.8em; color: #2c3e50; margin-top: 0; margin-bottom: 15px; text-align: center; } .privacy-consent-popup-box p { font-size: 1em; line-height: 1.6; margin-bottom: 20px; text-align: center; } .privacy-consent-popup-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; } .privacy-consent-popup-btn { background-color: #007bff; color: #fff; border: none; padding: 12px 20px; border-radius: 8px; cursor: pointer; font-size: 1em; font-weight: 600; transition: background-color 0.2s ease, transform 0.1s ease; width: 100%; } .privacy-consent-popup-btn:hover { background-color: #0056b3; transform: translateY(-1px); } .privacy-consent-popup-btn.reject-all { background-color: #6c757d; } .privacy-consent-popup-btn.reject-all:hover { background-color: #5a6268; } .privacy-consent-popup-btn.manage-prefs { background-color: #28a745; } .privacy-consent-popup-btn.manage-prefs:hover { background-color: #218838; } .privacy-consent-popup-settings { display: none; text-align: left; } .privacy-consent-popup-header { display: flex; align-items: center; margin-bottom: 20px; } .privacy-consent-popup-header h2 { flex-grow: 1; text-align: center; margin: 0; font-size: 1.6em; } .privacy-consent-popup-back-btn { background: none; border: none; color: #007bff; font-size: 1em; cursor: pointer; padding: 5px 10px; border-radius: 5px; transition: background-color 0.2s ease; } .privacy-consent-popup-back-btn:hover { background-color: #e9ecef; } .privacy-consent-popup-category { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; } .privacy-consent-popup-category:last-of-type { border-bottom: none; } .privacy-consent-popup-category h3 { font-size: 1.3em; color: #34495e; margin-top: 0; margin-bottom: 10px; } .privacy-consent-popup-category p { font-size: 0.9em; color: #666; margin-bottom: 15px; text-align: left; } .privacy-consent-popup-toggle-wrapper { display: flex; justify-content: space-between; align-items: center; } .privacy-consent-popup-toggle-label { font-weight: 600; color: #555; } .privacy-consent-popup-switch { position: relative; display: inline-block; width: 50px; height: 28px; } .privacy-consent-popup-switch input { opacity: 0; width: 0; height: 0; } .privacy-consent-popup-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; } .privacy-consent-popup-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .4s; } input:checked + .privacy-consent-popup-slider { background-color: #28a745; } input:focus + .privacy-consent-popup-slider { box-shadow: 0 0 1px #28a745; } input:checked + .privacy-consent-popup-slider:before { transform: translateX(22px); } input:disabled + .privacy-consent-popup-slider { opacity: 0.6; cursor: not-allowed; } input:disabled + .privacy-consent-popup-slider:before { background-color: #f1f1f1; } .privacy-consent-popup-slider.round { border-radius: 28px; } .privacy-consent-popup-slider.round:before { border-radius: 50%; } .privacy-consent-popup-actions-settings { margin-top: 20px; } .privacy-consent-popup-actions-settings .privacy-consent-popup-btn { background-color: #007bff; } .privacy-consent-popup-actions-settings .privacy-consent-popup-btn:hover { background-color: #0056b3; } .privacy-consent-popup-policy-link { display: block; text-align: center; margin-top: 20px; color: #007bff; text-decoration: none; font-size: 0.9em; } .privacy-consent-popup-policy-link:hover { text-decoration: underline; } @media (min-width: 768px) { .privacy-consent-popup-actions { flex-direction: row; justify-content: space-between; } .privacy-consent-popup-btn { width: auto; flex-grow: 1; } .privacy-consent-popup-btn:not(:last-child) { margin-right: 10px; } .privacy-consent-popup-header { justify-content: flex-start; } .privacy-consent-popup-header h2 { text-align: left; margin-left: 15px; } } @media (max-width: 480px) { .privacy-consent-popup-box { padding: 15px; border-radius: 8px; } .privacy-consent-popup-box h2 { font-size: 1.5em; } .privacy-consent-popup-box p { font-size: 0.9em; } .privacy-consent-popup-btn { padding: 10px 15px; font-size: 0.9em; } .privacy-consent-popup-category h3 { font-size: 1.1em; } .privacy-consent-popup-category p { font-size: 0.85em; } }