#cookie-consent-modal {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 90%;
	max-width: 400px;
	background: linear-gradient(45deg, #ff7e5f, #feb47b);
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 8px;
	z-index: 9999;
}
#cookie-consent-modal a {
	color: #fff;
	text-decoration: underline;
}
@media(min-width: 768px) {
	#cookie-consent-modal {
		width: 400px;
	}
}