#privacy-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	z-index: 9999;
	font-family: sans-serif;
}
#privacy-modal .close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	font-size: 20px;
}
#privacy-modal a {
	color: #1e90ff;
	text-decoration: none;
}
@media (min-width: 768px) {
	#privacy-modal {
		max-width: 600px;
		left: 50%;
		transform: translateX(-50%);
	}
}