#privacy-modal {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	margin: 0 14px;
	background: linear-gradient(45deg, #6a11cb, #2575fc);
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	z-index: 9999;
	border-radius: 8px;
}
#privacy-modal p {
	margin: 0;
	font-size: 14px;
}
#privacy-modal a {
	color: #ff0;
	text-decoration: underline;
}
#privacy-modal .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
}
@media(min-width: 768px) {
	#privacy-modal {
		padding: 25px;
		font-size: 16px;
	}
}
@media(min-width: 1024px) {
	#privacy-modal {
		padding: 30px;
		font-size: 18px;
	}
}