.cookie-box {
	position: fixed;
	bottom: 0;
	left: 17px;
	width: calc(100% - 34px);
	background-color: #f9f9f9;
	color: #333;
	padding: 15px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
	z-index: 1000;
}
.cookie-cross {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
}
@media (min-width: 768px) {
	.cookie-box {
		width: 90%;
		left: 5%;
	}
}