.privacy-consent-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.privacy-consent-overlay.show {
	opacity: 1;
	visibility: visible;
}
.privacy-consent-content {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 90%;
	max-width: 500px;
	padding: 25px;
	box-sizing: border-box;
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: #333;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}
.privacy-consent-overlay.show .privacy-consent-content {
	transform: translateY(0);
}
.privacy-consent-header {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #2c3e50;
}
.privacy-consent-description {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #555;
}
.privacy-consent-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}
.privacy-consent-button {
	padding: 10px 18px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.1s ease;
}
.privacy-consent-button.primary {
	background-color: #007bff;
	color: #ffffff;
}
.privacy-consent-button.primary:hover {
	background-color: #0056b3;
	transform: translateY(-1px);
}
.privacy-consent-button.secondary {
	background-color: #e9ecef;
	color: #333;
}
.privacy-consent-button.secondary:hover {
	background-color: #d6d9dc;
	transform: translateY(-1px);
}
.privacy-consent-settings-panel {
	display: none;
}
.privacy-consent-settings-panel.active {
	display: block;
}
.privacy-consent-settings-header {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #2c3e50;
}
.privacy-consent-settings-description {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
	color: #666;
}
.privacy-consent-category {
	margin-bottom: 20px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}
.privacy-consent-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.privacy-consent-category-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}
.privacy-consent-toggle {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 25px;
}
.privacy-consent-toggle 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: 0.4s;
	border-radius: 25px;
}
.privacy-consent-slider:before {
	position: absolute;
	content: "";
	height: 19px;
	width: 19px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
input:checked + .privacy-consent-slider {
	background-color: #007bff;
}
input:focus + .privacy-consent-slider {
	box-shadow: 0 0 1px #007bff;
}
input:checked + .privacy-consent-slider:before {
	transform: translateX(20px);
}
.privacy-consent-category-description {
	font-size: 13px;
	color: #777;
	line-height: 1.5;
}
.privacy-consent-always-active {
	font-size: 13px;
	font-weight: 500;
	color: #007bff;
}
.privacy-consent-settings-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.privacy-consent-content {
		width: 95%;
		padding: 20px;
	}
	.privacy-consent-header {
		font-size: 20px;
	}
	.privacy-consent-description {
		font-size: 14px;
	}
	.privacy-consent-button {
		width: 100%;
		text-align: center;
	}
	.privacy-consent-buttons {
		flex-direction: column;
	}
	.privacy-consent-settings-actions {
		flex-direction: column-reverse;
		gap: 10px;
	}
}