#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; } .consent-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); } .consent-box { background: linear-gradient(135deg, #f0f8ff, #e0f2f7); border-radius: 15px 50px 30px 5px / 50px 15px 5px 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); padding: 25px; max-width: 500px; width: 90%; position: relative; z-index: 10000; color: #333; animation: fadeIn 0.5s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .consent-box h2 { font-size: 1.8em; margin-top: 0; color: #0056b3; text-align: center; } .consent-box h3 { font-size: 1.4em; margin-top: 0; color: #0056b3; } .consent-box p { font-size: 0.95em; line-height: 1.6; margin-bottom: 20px; } .consent-box a { color: #007bff; text-decoration: none; } .consent-box a:hover { text-decoration: underline; } .consent-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; } .consent-btn { padding: 10px 20px; border: none; border-radius: 25px; cursor: pointer; font-size: 1em; transition: all 0.3s ease; min-width: 150px; } .primary-btn { background-color: #007bff; color: white; } .primary-btn:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); } .secondary-btn { background-color: #e9ecef; color: #333; border: 1px solid #ced4da; } .secondary-btn:hover { background-color: #d6d8db; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } #consent-settings { padding-top: 10px; } .settings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #cce5ff; padding-bottom: 10px; } .close-btn { background: none; border: none; font-size: 1.2em; cursor: pointer; color: #6c757d; padding: 5px 10px; border-radius: 5px; transition: color 0.3s ease, background-color 0.3s ease; } .close-btn:hover { color: #333; background-color: #e9ecef; } .cookie-category { margin-bottom: 15px; padding: 10px; background-color: #f8fcff; border-left: 3px solid #007bff; border-radius: 5px; } .cookie-category label { display: flex; align-items: center; font-weight: bold; margin-bottom: 5px; cursor: pointer; } .cookie-category input[type="checkbox"] { margin-right: 10px; transform: scale(1.2); } .cookie-category input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.7; } .cookie-category p { font-size: 0.85em; color: #555; margin-top: 5px; margin-bottom: 0; padding-left: 28px; } @media (max-width: 768px) { .consent-box { max-width: 95%; margin: 20px; padding: 20px; } .consent-box h2 { font-size: 1.5em; } .consent-box p { font-size: 0.9em; } .consent-btn { width: 100%; min-width: unset; } .consent-actions { flex-direction: column; } } @media (max-width: 480px) { .consent-box { border-radius: 10px; padding: 15px; } .consent-box h2 { font-size: 1.3em; } .consent-box p { font-size: 0.85em; } .settings-header h3 { font-size: 1.2em; } .close-btn { font-size: 1em; padding: 3px 8px; } .cookie-category p { padding-left: 25px; } }