.privacy-consent-popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 10000; justify-content: center; align-items: center; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .privacy-consent-popup-content { background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9)); border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); padding: 30px; max-width: 500px; width: 90%; text-align: center; position: relative; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.3); overflow: hidden; transform: scale(0.95); opacity: 0; animation: fadeInScale 0.3s ease-out forwards; } @keyframes fadeInScale { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } } .privacy-consent-popup h2 { color: #333; margin-top: 0; margin-bottom: 15px; font-size: 1.6em; } .privacy-consent-popup p { color: #555; line-height: 1.6; margin-bottom: 25px; font-size: 0.95em; } .privacy-consent-popup-actions button { background-color: #007bff; color: white; border: none; border-radius: 8px; padding: 12px 20px; margin: 5px; cursor: pointer; font-size: 0.9em; transition: background-color 0.3s ease, transform 0.2s ease; min-width: 140px; } .privacy-consent-popup-actions button:hover { background-color: #0056b3; transform: translateY(-2px); } .privacy-consent-popup-actions button:nth-child(2) { background-color: #6c757d; } .privacy-consent-popup-actions button:nth-child(2):hover { background-color: #5a6268; } .privacy-consent-popup-actions button:nth-child(3) { background-color: #28a745; } .privacy-consent-popup-actions button:nth-child(3):hover { background-color: #218838; } .privacy-consent-popup-settings { display: none; text-align: left; margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, 0.1); transform: translateY(10px); opacity: 0; animation: slideInUp 0.3s ease-out forwards; } .privacy-consent-popup-settings.active { display: block; transform: translateY(0); opacity: 1; } @keyframes slideInUp { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .privacy-consent-popup-settings h3 { color: #333; font-size: 1.4em; margin-bottom: 15px; } .privacy-consent-popup-settings p.description { font-size: 0.85em; color: #666; margin-bottom: 20px; } .cookie-option { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px dashed rgba(0, 0, 0, 0.08); } .cookie-option:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .cookie-option label { display: flex; align-items: center; cursor: pointer; font-weight: bold; color: #444; margin-bottom: 5px; } .cookie-option input[type="checkbox"] { margin-right: 10px; transform: scale(1.2); accent-color: #007bff; } .cookie-option p { font-size: 0.8em; color: #777; margin-left: 30px; margin-top: 5px; } .privacy-consent-popup-settings .button-group { margin-top: 25px; text-align: center; } .privacy-consent-popup-settings .button-group button { background-color: #007bff; color: white; border: none; border-radius: 8px; padding: 12px 25px; cursor: pointer; font-size: 0.9em; transition: background-color 0.3s ease, transform 0.2s ease; } .privacy-consent-popup-settings .button-group button:hover { background-color: #0056b3; transform: translateY(-2px); } .close-settings-btn { position: absolute; top: 15px; right: 15px; background: none; border: none; font-size: 1.5em; color: #999; cursor: pointer; transition: color 0.3s ease; } .close-settings-btn:hover { color: #333; } @media (max-width: 768px) { .privacy-consent-popup-content { padding: 20px; max-width: 95%; } .privacy-consent-popup h2 { font-size: 1.4em; } .privacy-consent-popup p { font-size: 0.9em; } .privacy-consent-popup-actions button { font-size: 0.85em; padding: 10px 15px; min-width: unset; } .privacy-consent-popup-settings h3 { font-size: 1.2em; } .cookie-option label { font-size: 0.9em; } .cookie-option p { font-size: 0.75em; margin-left: 25px; } } @media (max-width: 480px) { .privacy-consent-popup-actions button { display: block; width: calc(100% - 10px); margin: 5px auto; } .privacy-consent-popup-settings .button-group button { width: calc(100% - 10px); } }