#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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; } #privacy-consent-popup .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); } #privacy-consent-popup .modal-content { background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%); border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); padding: 30px; max-width: 600px; width: 90%; position: relative; z-index: 10000; color: #333; animation: fadeInScale 0.3s ease-out forwards; box-sizing: border-box; } @keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } #privacy-consent-popup h2 { font-size: 24px; color: #2c3e50; margin-top: 0; margin-bottom: 15px; text-align: center; } #privacy-consent-popup p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; text-align: center; } #privacy-consent-popup .button-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 25px; } #privacy-consent-popup button { padding: 12px 25px; border: none; border-radius: 8px; cursor: pointer; font-size: 16px; font-weight: 600; transition: all 0.3s ease; min-width: 150px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } #privacy-consent-popup .accept-all-btn { background-color: #4CAF50; color: white; } #privacy-consent-popup .accept-all-btn:hover { background-color: #45a049; transform: translateY(-2px); } #privacy-consent-popup .reject-all-btn { background-color: #f44336; color: white; } #privacy-consent-popup .reject-all-btn:hover { background-color: #da190b; transform: translateY(-2px); } #privacy-consent-popup .customize-btn, #privacy-consent-popup .back-btn { background-color: #007bff; color: white; } #privacy-consent-popup .customize-btn:hover, #privacy-consent-popup .back-btn:hover { background-color: #0056b3; transform: translateY(-2px); } #privacy-consent-popup .save-preferences-btn { background-color: #28a745; color: white; } #privacy-consent-popup .save-preferences-btn:hover { background-color: #218838; transform: translateY(-2px); } #privacy-consent-popup .privacy-link { text-align: center; margin-top: 20px; font-size: 14px; } #privacy-consent-popup .privacy-link a { color: #007bff; text-decoration: none; font-weight: 500; } #privacy-consent-popup .privacy-link a:hover { text-decoration: underline; } #privacy-consent-popup .settings-panel h2 { margin-bottom: 25px; } #privacy-consent-popup .cookie-category { background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 10px; padding: 15px 20px; margin-bottom: 15px; display: flex; flex-wrap: wrap; align-items: center; gap: 15px; } #privacy-consent-popup .cookie-category h3 { font-size: 18px; color: #34495e; margin: 0; flex-grow: 1; } #privacy-consent-popup .cookie-category p { font-size: 13px; color: #555; margin: 0; text-align: left; flex-basis: 100%; } .switch { position: relative; display: inline-block; width: 48px; height: 26px; min-width: 48px; } .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: 0.4s; } .slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: 0.4s; } input:checked + .slider { background-color: #2196F3; } input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input:checked + .slider:before { transform: translateX(22px); } .slider.round { border-radius: 26px; } .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) { #privacy-consent-popup .modal-content { padding: 20px; width: 95%; } #privacy-consent-popup h2 { font-size: 20px; } #privacy-consent-popup p { font-size: 14px; } #privacy-consent-popup button { padding: 10px 20px; font-size: 14px; min-width: unset; flex-grow: 1; } #privacy-consent-popup .button-group { flex-direction: column; gap: 10px; } #privacy-consent-popup .cookie-category { flex-direction: column; align-items: flex-start; gap: 10px; } #privacy-consent-popup .cookie-category h3 { font-size: 16px; } #privacy-consent-popup .cookie-category p { font-size: 12px; } } @media (max-width: 480px) { #privacy-consent-popup .modal-content { border-radius: 8px; } #privacy-consent-popup h2 { font-size: 18px; } #privacy-consent-popup p { font-size: 13px; } #privacy-consent-popup button { font-size: 13px; padding: 8px 15px; } }