.privacy-consent-popup { display: none; /* Hidden by default */ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 9999; align-items: center; justify-content: center; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .privacy-consent-popup.active { opacity: 1; visibility: visible; } .privacy-consent-popup-content { background-color: #ffffff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); width: 90%; max-width: 500px; padding: 30px; position: relative; transform: translateY(20px); transition: transform 0.3s ease; color: #333; } .privacy-consent-popup.active .privacy-consent-popup-content { transform: translateY(0); } .privacy-consent-popup h3 { font-size: 1.6em; color: #1a1a1a; margin-top: 0; margin-bottom: 15px; text-align: center; } .privacy-consent-popup p { font-size: 0.95em; line-height: 1.6; margin-bottom: 20px; color: #555; } .privacy-consent-popup-actions, .privacy-consent-popup-settings-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; } .privacy-consent-popup button { padding: 12px 25px; border: none; border-radius: 8px; font-size: 1em; cursor: pointer; transition: background-color 0.2s ease, transform 0.1s ease; flex-grow: 1; max-width: 180px; } .privacy-consent-popup button.accept-all { background-color: #007bff; color: #ffffff; } .privacy-consent-popup button.accept-all:hover { background-color: #0056b3; transform: translateY(-1px); } .privacy-consent-popup button.reject-all { background-color: #e0e0e0; color: #333; } .privacy-consent-popup button.reject-all:hover { background-color: #d0d0d0; transform: translateY(-1px); } .privacy-consent-popup button.manage-preferences, .privacy-consent-popup button.back-button { background-color: #f0f0f0; color: #333; } .privacy-consent-popup button.manage-preferences:hover, .privacy-consent-popup button.back-button:hover { background-color: #e0e0e0; transform: translateY(-1px); } .privacy-consent-popup button.save-settings { background-color: #28a745; color: #ffffff; } .privacy-consent-popup button.save-settings:hover { background-color: #218838; transform: translateY(-1px); } .privacy-consent-popup-settings { display: none; /* Hidden initially */ } .privacy-consent-popup-category { background-color: #f9f9f9; border: 1px solid #eee; border-radius: 8px; padding: 15px; margin-bottom: 15px; } .privacy-consent-popup-category:last-child { margin-bottom: 0; } .privacy-consent-popup-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .privacy-consent-popup-category h4 { margin: 0; font-size: 1.1em; color: #333; } .privacy-consent-popup-category p { font-size: 0.85em; margin-bottom: 0; color: #666; } .privacy-consent-popup-category .toggle-switch { position: relative; display: inline-block; width: 45px; height: 25px; } .privacy-consent-popup-category .toggle-switch input { opacity: 0; width: 0; height: 0; } .privacy-consent-popup-category .toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.3s; border-radius: 25px; } .privacy-consent-popup-category .toggle-slider:before { position: absolute; content: ''; height: 19px; width: 19px; left: 3px; bottom: 3px; background-color: white; transition: 0.3s; border-radius: 50%; } .privacy-consent-popup-category input:checked + .toggle-slider { background-color: #007bff; } .privacy-consent-popup-category input:focus + .toggle-slider { box-shadow: 0 0 1px #007bff; } .privacy-consent-popup-category input:checked + .toggle-slider:before { transform: translateX(20px); } .privacy-consent-popup-category input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; } .privacy-consent-popup-category input:disabled + .toggle-slider:before { background-color: #f0f0f0; } .privacy-consent-popup-link { display: block; text-align: center; margin-top: 25px; font-size: 0.9em; } .privacy-consent-popup-link a { color: #007bff; text-decoration: none; } .privacy-consent-popup-link a:hover { text-decoration: underline; } @media (max-width: 768px) { .privacy-consent-popup-content { width: 95%; padding: 25px; } .privacy-consent-popup h3 { font-size: 1.4em; } .privacy-consent-popup p { font-size: 0.9em; } .privacy-consent-popup button { width: 100%; max-width: none; } .privacy-consent-popup-actions, .privacy-consent-popup-settings-actions { flex-direction: column; } } @media (max-width: 480px) { .privacy-consent-popup-content { padding: 20px; } .privacy-consent-popup h3 { font-size: 1.3em; } .privacy-consent-popup p { font-size: 0.85em; } .privacy-consent-popup-category h4 { font-size: 1em; } .privacy-consent-popup-category p { font-size: 0.8em; } .privacy-consent-popup-category .toggle-switch { width: 40px; height: 22px; } .privacy-consent-popup-category .toggle-slider:before { height: 16px; width: 16px; left: 3px; bottom: 3px; } .privacy-consent-popup-category input:checked + .toggle-slider:before { transform: translateX(18px); } }