#privacy-consent-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; z-index: 9999; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; transition: opacity 0.3s ease-in-out; opacity: 0; pointer-events: none; } #privacy-consent-popup.show { opacity: 1; pointer-events: auto; } .privacy-consent-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); } .privacy-consent-box { background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%); border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); padding: 30px; max-width: 500px; width: 90%; position: relative; z-index: 10000; color: #333; animation: fadeInScale 0.4s ease-out forwards; } @keyframes fadeInScale { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } } .privacy-consent-title { font-size: 1.8em; color: #2c3e50; margin-bottom: 15px; text-align: center; } .privacy-consent-description { font-size: 1em; line-height: 1.6; margin-bottom: 25px; color: #555; text-align: center; } .privacy-consent-actions { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; } .privacy-consent-actions button { padding: 14px 25px; border: none; border-radius: 8px; font-size: 1.1em; cursor: pointer; transition: all 0.3s ease; font-weight: 600; text-align: center; } .privacy-consent-accept-all { background: linear-gradient(45deg, #4CAF50, #66BB6A); color: white; box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4); } .privacy-consent-accept-all:hover { background: linear-gradient(45deg, #66BB6A, #4CAF50); box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6); transform: translateY(-2px); } .privacy-consent-settings-btn, .privacy-consent-back-btn { background: linear-gradient(45deg, #007BFF, #0056b3); color: white; box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); } .privacy-consent-settings-btn:hover, .privacy-consent-back-btn:hover { background: linear-gradient(45deg, #0056b3, #007BFF); box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5); transform: translateY(-2px); } .privacy-consent-save-preferences { background: linear-gradient(45deg, #FFC107, #FFA000); color: #333; box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4); } .privacy-consent-save-preferences:hover { background: linear-gradient(45deg, #FFA000, #FFC107); box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6); transform: translateY(-2px); } .privacy-consent-policy-link { display: block; text-align: center; color: #007BFF; text-decoration: none; font-size: 0.9em; margin-top: 15px; transition: color 0.3s ease; } .privacy-consent-policy-link:hover { color: #0056b3; text-decoration: underline; } .privacy-consent-category { margin-bottom: 20px; padding: 15px; background-color: #f9f9f9; border-radius: 8px; border: 1px solid #e0e0e0; } .privacy-consent-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .privacy-consent-category-header h3 { font-size: 1.1em; color: #333; margin: 0; } .privacy-consent-category p { font-size: 0.9em; color: #666; line-height: 1.5; } .privacy-consent-always-active { font-size: 0.85em; color: #4CAF50; font-weight: 600; } .privacy-consent-toggle { position: relative; display: inline-block; width: 40px; height: 24px; } .privacy-consent-toggle input { opacity: 0; width: 0; height: 0; } .privacy-consent-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.4s; border-radius: 24px; } .privacy-consent-slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: 0.4s; border-radius: 50%; } input:checked + .privacy-consent-slider { background-color: #4CAF50; } input:focus + .privacy-consent-slider { box-shadow: 0 0 1px #4CAF50; } input:checked + .privacy-consent-slider:before { transform: translateX(16px); } .privacy-consent-actions-settings { display: flex; flex-direction: column; gap: 10px; margin-top: 25px; } @media (min-width: 600px) { .privacy-consent-actions { flex-direction: row; justify-content: center; } .privacy-consent-actions button { flex: 1; max-width: 200px; } .privacy-consent-actions-settings { flex-direction: row; justify-content: space-between; } .privacy-consent-actions-settings button { flex: 1; max-width: 48%; } } @media (max-width: 480px) { .privacy-consent-box { padding: 20px; margin: 10px; } .privacy-consent-title { font-size: 1.5em; } .privacy-consent-description { font-size: 0.9em; } .privacy-consent-actions button { padding: 12px 20px; font-size: 1em; } .privacy-consent-category-header h3 { font-size: 1em; } .privacy-consent-category p { font-size: 0.85em; } }