#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 600px;
	background: linear-gradient(to right, #4facfe, #00f2fe);
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	box-sizing: border-box;
	position: relative;
}
#cookie-banner .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
}
@media(max-width: 480px) {
	#cookie-banner {
		width: 90%;
		padding: 15px;
	}
}
@media(min-width: 481px) and (max-width: 768px) {
	#cookie-banner {
		width: 95%;
	}
}