#cookie-box {
	position: fixed;
	bottom: 0;
	left: 13px;
	width: calc(100% - 26px);
	max-width: 90%;
	background-color: #f9f9f9;
	color: #333;
	padding: 15px;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#cookie-box p {
	margin: 0;
	text-align: center;
}
#cookie-box button {
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #007BFF;
	color: #fff;
	border: none;
	cursor: pointer;
}
@media(min-width: 768px) {
	#cookie-box {
		flex-direction: row;
		justify-content: space-between;
	}
	#cookie-box p {
		flex: 1;
		text-align: left;
		margin-right: 15px;
	}
	#cookie-box button {
		margin-top: 0;
	}
}