.privacy-consent-popup { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; z-index: 1000; transition: opacity 0.3s ease-in-out; opacity: 0; visibility: hidden; } .privacy-consent-popup.active { opacity: 1; visibility: visible; } .privacy-consent-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); } .privacy-consent-content { background-color: #ffffff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); width: 90%; max-width: 600px; position: relative; z-index: 1001; display: flex; flex-direction: column; overflow: hidden; max-height: 90vh; } .privacy-consent-header { padding: 20px 25px; border-bottom: 1px solid #eeeeee; background-color: #f9f9f9; } .privacy-consent-header h2 { margin: 0; font-size: 1.8em; color: #333333; font-weight: 600; } .privacy-consent-body { padding: 20px 25px; flex-grow: 1; overflow-y: auto; color: #555555; line-height: 1.6; } .privacy-consent-body p { margin-bottom: 20px; font-size: 0.95em; } .privacy-consent-category { margin-bottom: 15px; padding: 15px; background-color: #f5f5f5; border-radius: 8px; } .privacy-consent-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .privacy-consent-category-header h3 { margin: 0; font-size: 1.1em; color: #333333; font-weight: 500; } .privacy-consent-category p { font-size: 0.85em; color: #777777; margin-bottom: 0; } .privacy-consent-switch { position: relative; display: inline-block; width: 45px; height: 25px; } .privacy-consent-switch 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: .4s; border-radius: 25px; } .privacy-consent-slider:before { position: absolute; content: ""; height: 17px; width: 17px; left: 4px; bottom: 4px; background-color: white; transition: .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(20px); } input:disabled + .privacy-consent-slider { background-color: #a0a0a0; cursor: not-allowed; } input:disabled + .privacy-consent-slider:before { background-color: #e0e0e0; } .privacy-consent-footer { padding: 20px 25px; border-top: 1px solid #eeeeee; background-color: #f9f9f9; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; } .privacy-policy-link { color: #007bff; text-decoration: none; font-size: 0.9em; } .privacy-policy-link:hover { text-decoration: underline; } .privacy-consent-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; } .privacy-consent-button { padding: 10px 20px; border: none; border-radius: 6px; cursor: pointer; font-size: 0.9em; font-weight: 500; transition: background-color 0.2s ease, transform 0.1s ease; white-space: nowrap; } .privacy-consent-button.primary { background-color: #007bff; color: white; } .privacy-consent-button.primary:hover { background-color: #0056b3; transform: translateY(-1px); } .privacy-consent-button.secondary { background-color: #e0e0e0; color: #333333; } .privacy-consent-button.secondary:hover { background-color: #cccccc; transform: translateY(-1px); } @media (max-width: 768px) { .privacy-consent-content { width: 95%; margin: 20px; } .privacy-consent-header h2 { font-size: 1.5em; } .privacy-consent-body, .privacy-consent-footer { padding: 15px 20px; } .privacy-consent-buttons { flex-direction: column; width: 100%; } .privacy-consent-button { width: 100%; text-align: center; } .privacy-consent-footer { flex-direction: column; align-items: flex-start; } .privacy-consent-buttons { justify-content: flex-start; } } @media (max-width: 480px) { .privacy-consent-header h2 { font-size: 1.3em; } .privacy-consent-body p { font-size: 0.9em; } .privacy-consent-category-header h3 { font-size: 1em; } .privacy-consent-category p { font-size: 0.8em; } }