#cookie-space {
	display:none;
	height: 51px;
}
#cookie-consent {
	width: 50%;
	position: fixed;
	left: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 0 20px -7px #000;
	display: none;
	padding: 20px 0;
	color: #a2887a;
	font-weight: 100;
	font-size: 20px;
	vertical-align: middle;
	bottom: 0;
}
#cookie-consent #accept {
	float: right;
	color: #a2887a;
	cursor: pointer;
	transition: all .3s ease;
}
#cookie-consent #accept:hover {
	opacity: .6;
}
#cookie-inner {
	display: block;

}

@media screen and (max-width: 480px) {
	#cookie-consent {
		width: 100%;
		position: fixed;
		left: 0;
		z-index: 999;
		background: #a2887a;
		box-shadow: 0 0 20px -7px #000;
		display: none;
		padding: 10px 0;
		color: white;
		font-weight: 100;
		font-size: 16px;
		vertical-align: middle;
		bottom: 0;
	}
	#cookie-consent #accept {
		float: right;
		color: white;
		cursor: pointer;
		transition: all .3s ease;
	}
}