/* Privacy Policy Popup Styles */

/* Hide progress scroll when privacy popup is active */
.progress-wrap.hidden {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	overflow: hidden;
}

.privacy-popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.privacy-popup-content {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	max-height: 90vh;
	width: 100%;
	z-index: 9999;
	overflow-y: auto;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-popup-overlay.active .privacy-popup-content {
	transform: translateY(0);
}

.privacy-popup-close {
	position: sticky;
	top: 10px;
	right: 10px;
	float: right;
	background-color: #333;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px;
}

.privacy-popup-close:hover {
	background-color: #555;
	transform: rotate(90deg);
}

.privacy-popup-body {
	padding: 20px 30px 40px;
	clear: both;
}

.privacy-title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #333;
	text-align: center;
	padding-top: 20px;
}

.privacy-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: left;
	line-height: 1.8;
	color: #444;
}

.privacy-content p {
	margin-bottom: 20px;
	font-size: 15px;
}

.privacy-content ul {
	margin-left: 20px;
	margin-bottom: 20px;
}

.privacy-content li {
	margin-bottom: 10px;
	font-size: 15px;
}

.privacy-content strong {
	color: #222;
	font-weight: 600;
}

.privacy-policy-btn {
	margin-top: 15px;
	margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.privacy-popup-content {
		max-height: 95vh;
		border-radius: 15px 15px 0 0;
	}

	.privacy-popup-body {
		padding: 15px 20px 30px;
	}

	.privacy-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.privacy-content p,
	.privacy-content li {
		font-size: 14px;
	}

	.privacy-popup-close {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.privacy-popup-body {
		padding: 10px 15px 25px;
	}

	.privacy-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.privacy-content p,
	.privacy-content li {
		font-size: 13px;
		line-height: 1.6;
	}
}

