#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; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } #privacy-consent-popup.show { opacity: 1; visibility: visible; } .consent-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); } .consent-box { background: linear-gradient(135deg, #f0f8ff, #e6f7ff); border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 5px rgba(173, 216, 230, 0.5); max-width: 90%; width: 550px; padding: 30px; position: relative; z-index: 10000; color: #333; max-height: 90vh; overflow-y: auto; transform: translateY(20px); transition: transform 0.3s ease; } #privacy-consent-popup.show .consent-box { transform: translateY(0); } .consent-title { font-size: 1.8em; color: #2c3e50; margin-bottom: 15px; text-align: center; font-weight: 600; } .consent-description { font-size: 0.95em; line-height: 1.6; margin-bottom: 25px; color: #555; text-align: center; } .consent-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 25px; } .consent-button { padding: 12px 25px; border: none; border-radius: 8px; cursor: pointer; font-size: 1em; font-weight: 500; transition: all 0.2s ease; min-width: 140px; text-align: center; } .accept-all-btn { background-color: #4CAF50; color: white; box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3); } .accept-all-btn:hover { background-color: #45a049; box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4); } .reject-all-btn { background-color: #f44336; color: white; box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3); } .reject-all-btn:hover { background-color: #da190b; box-shadow: 0 6px 15px rgba(244, 67, 54, 0.4); } .manage-btn, .back-btn { background-color: #2196F3; color: white; box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3); } .manage-btn:hover, .back-btn:hover { background-color: #0b7dda; box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4); } .save-preferences-btn { background-color: #673AB7; color: white; box-shadow: 0 4px 10px rgba(103, 58, 183, 0.3); } .save-preferences-btn:hover { background-color: #5e35b1; box-shadow: 0 6px 15px rgba(103, 58, 183, 0.4); } .consent-policy-link { text-align: center; margin-top: 20px; font-size: 0.85em; } .policy-link { color: #2196F3; text-decoration: none; transition: color 0.2s ease; } .policy-link:hover { color: #0b7dda; text-decoration: underline; } .cookie-categories { margin-top: 20px; border-top: 1px solid #e0e0e0; padding-top: 20px; } .category-item { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed #f0f0f0; } .category-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; } .category-name { font-weight: 600; color: #2c3e50; font-size: 1.1em; } .category-description { font-size: 0.85em; color: #666; line-height: 1.5; } .switch { position: relative; display: inline-block; width: 45px; height: 25px; } .switch input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; } .slider:before { position: absolute; content: ""; height: 17px; width: 17px; left: 4px; bottom: 4px; background-color: white; transition: .4s; } input:checked + .slider { background-color: #4CAF50; } input:focus + .slider { box-shadow: 0 0 1px #4CAF50; } input:checked + .slider:before { transform: translateX(20px); } .slider.round { border-radius: 25px; } .slider.round:before { border-radius: 50%; } input:disabled + .slider { background-color: #a0a0a0; cursor: not-allowed; } input:disabled + .slider:before { background-color: #e0e0e0; } @media (max-width: 768px) { .consent-box { width: 95%; padding: 20px; } .consent-title { font-size: 1.5em; } .consent-description { font-size: 0.9em; } .consent-button { padding: 10px 20px; font-size: 0.9em; min-width: unset; flex-grow: 1; } .consent-actions { flex-direction: column; gap: 10px; } .category-name { font-size: 1em; } .category-description { font-size: 0.8em; } } @media (max-width: 480px) { .consent-box { padding: 15px; border-radius: 8px; } .consent-title { font-size: 1.3em; } .consent-description { font-size: 0.85em; } .consent-button { font-size: 0.85em; padding: 8px 15px; } }