.privacy-consent-popup-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.privacy-consent-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 90%;
	max-width: 450px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	transform: translateY(20px) scale(0.95);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	max-height: 85vh;
	overflow-y: auto;
}
.privacy-consent-popup.is-visible {
	display: block;
	opacity: 1;
	transform: translateY(0) scale(1);
}
.privacy-consent-popup-backdrop.is-visible {
	display: block;
	opacity: 1;
}
.privacy-consent-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.privacy-consent-header h3 {
	margin: 0;
	font-size: 1.3em;
	color: #2c3e50;
}
.privacy-consent-close-btn {
	background: none;
	border: none;
	font-size: 1.5em;
	color: #aaa;
	cursor: pointer;
	line-height: 1;
	padding: 0 5px;
}
.privacy-consent-close-btn:hover {
	color: #555;
}
.privacy-consent-content, .privacy-consent-settings {
	padding: 20px;
}
.privacy-consent-content p {
	font-size: 0.95em;
	line-height: 1.6;
	margin-bottom: 20px;
}
.privacy-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}
.privacy-consent-actions button {
	flex: 1;
	padding: 12px 18px;
	border: none;
	border-radius: 8px;
	font-size: 0.9em;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	min-width: 120px;
}
.privacy-consent-actions button:active {
	transform: translateY(1px);
}
.privacy-consent-accept {
	background-color: #4CAF50;
	color: white;
}
.privacy-consent-accept:hover {
	background-color: #45a049;
}
.privacy-consent-reject {
	background-color: #f44336;
	color: white;
}
.privacy-consent-reject:hover {
	background-color: #da190b;
}
.privacy-consent-manage {
	background-color: #007bff;
	color: white;
}
.privacy-consent-manage:hover {
	background-color: #0056b3;
}
.privacy-consent-settings {
	display: none;
}
.privacy-consent-settings h4 {
	margin-top: 25px;
	margin-bottom: 10px;
	font-size: 1.1em;
	color: #2c3e50;
}
.privacy-consent-toggle-group {
	margin-bottom: 15px;
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #eee;
}
.privacy-consent-toggle-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.privacy-consent-toggle-header label {
	font-weight: bold;
	color: #333;
	cursor: pointer;
	flex-grow: 1;
}
.privacy-consent-toggle-header .privacy-consent-switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 24px;
}
.privacy-consent-toggle-header .privacy-consent-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.privacy-consent-toggle-header .privacy-consent-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 24px;
}
.privacy-consent-toggle-header .privacy-consent-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
.privacy-consent-toggle-header input:checked + .privacy-consent-slider {
	background-color: #2196F3;
}
.privacy-consent-toggle-header input:focus + .privacy-consent-slider {
	box-shadow: 0 0 1px #2196F3;
}
.privacy-consent-toggle-header input:checked + .privacy-consent-slider:before {
	transform: translateX(16px);
}
.privacy-consent-toggle-group p {
	font-size: 0.85em;
	color: #555;
	line-height: 1.5;
	margin-top: 10px;
}
.privacy-consent-settings-actions {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-top: 20px;
}
.privacy-consent-settings-actions button {
	flex: 1;
	padding: 12px 18px;
	border: none;
	border-radius: 8px;
	font-size: 0.9em;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.privacy-consent-save {
	background-color: #28a745;
	color: white;
}
.privacy-consent-save:hover {
	background-color: #218838;
}
.privacy-consent-back {
	background-color: #6c757d;
	color: white;
}
.privacy-consent-back:hover {
	background-color: #5a6268;
}

@media (max-width: 768px) {
	.privacy-consent-popup {
		width: 95%;
		right: 2.5%;
		bottom: 20px;
		max-width: none;
	}
	.privacy-consent-actions button {
		flex: 1 1 100%;
	}
	.privacy-consent-settings-actions {
		flex-direction: column;
	}
}
@media (max-width: 480px) {
	.privacy-consent-popup {
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		border-radius: 12px 12px 0 0;
	}
	.privacy-consent-header {
		padding: 15px;
	}
	.privacy-consent-header h3 {
		font-size: 1.1em;
	}
	.privacy-consent-content, .privacy-consent-settings {
		padding: 15px;
	}
	.privacy-consent-actions button {
		font-size: 0.85em;
		padding: 10px 15px;
	}
	.privacy-consent-settings-actions button {
		font-size: 0.85em;
		padding: 10px 15px;
	}
}
