.privacy-consent-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	z-index: 1000;
	transition: opacity 0.3s ease;
}
.privacy-consent-modal {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 500px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 1001;
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #333333;
	overflow: hidden;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.privacy-consent-box {
	padding: 25px;
}
.privacy-consent-header {
	font-size: 1.6em;
	font-weight: 600;
	margin-bottom: 15px;
	color: #2c3e50;
	text-align: center;
}
.privacy-consent-description {
	font-size: 0.95em;
	line-height: 1.5;
	margin-bottom: 25px;
	color: #555555;
	text-align: center;
}
.privacy-consent-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.privacy-consent-buttons button {
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	font-weight: 500;
	width: 100%;
}
.privacy-consent-buttons .cookie-accept-all {
	background-color: #4CAF50;
	color: #ffffff;
}
.privacy-consent-buttons .cookie-accept-all:hover {
	background-color: #43A047;
	transform: translateY(-1px);
}
.privacy-consent-buttons .cookie-manage-btn {
	background-color: #f0f0f0;
	color: #333333;
	border: 1px solid #dddddd;
}
.privacy-consent-buttons .cookie-manage-btn:hover {
	background-color: #e0e0e0;
	transform: translateY(-1px);
}
.privacy-consent-settings {
	display: none;
	padding-top: 10px;
}
.privacy-consent-category {
	margin-bottom: 20px;
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #eeeeee;
}
.privacy-consent-category h3 {
	font-size: 1.1em;
	margin-top: 0;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #2c3e50;
}
.privacy-consent-category p {
	font-size: 0.85em;
	line-height: 1.4;
	color: #666666;
}
.privacy-consent-toggle-wrapper {
	position: relative;
	display: inline-block;
	width: 45px;
	height: 25px;
}
.privacy-consent-toggle-wrapper input {
	opacity: 0;
	width: 0;
	height: 0;
}
.privacy-consent-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 25px;
}
.privacy-consent-toggle-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-toggle-slider {
	background-color: #4CAF50;
}
input:focus + .privacy-consent-toggle-slider {
	box-shadow: 0 0 1px #4CAF50;
}
input:checked + .privacy-consent-toggle-slider:before {
	transform: translateX(20px);
}
input:disabled + .privacy-consent-toggle-slider {
	opacity: 0.6;
	cursor: not-allowed;
}
.privacy-consent-settings .privacy-consent-buttons {
	margin-top: 25px;
}
.privacy-consent-settings .cookie-save-btn {
	background-color: #2196F3;
	color: #ffffff;
}
.privacy-consent-settings .cookie-save-btn:hover {
	background-color: #1976D2;
	transform: translateY(-1px);
}
.privacy-consent-settings .cookie-back-btn {
	background-color: #cccccc;
	color: #333333;
}
.privacy-consent-settings .cookie-back-btn:hover {
	background-color: #bbbbbb;
	transform: translateY(-1px);
}
.privacy-consent-link {
	display: block;
	text-align: center;
	margin-top: 20px;
	font-size: 0.9em;
	color: #2196F3;
	text-decoration: none;
}
.privacy-consent-link:hover {
	text-decoration: underline;
}
@media (min-width: 481px) {
	.privacy-consent-buttons {
		flex-direction: row;
		justify-content: space-between;
	}
	.privacy-consent-buttons button {
		width: calc(50% - 6px);
	}
	.privacy-consent-settings .privacy-consent-buttons button {
		width: calc(50% - 6px);
	}
}
@media (min-width: 769px) {
	.privacy-consent-modal {
		bottom: 30px;
		max-width: 600px;
	}
	.privacy-consent-header {
		font-size: 1.8em;
	}
	.privacy-consent-description {
		font-size: 1em;
	}
	.privacy-consent-buttons button {
		padding: 14px 25px;
		font-size: 1.05em;
	}
	.privacy-consent-category h3 {
		font-size: 1.2em;
	}
	.privacy-consent-category p {
		font-size: 0.9em;
	}
}
