#cookie_notice_wrapper {
	background-color: #fefefe;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.45);
	border-radius: 5px;
	border: 1px solid #a38155;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 12px;
	display: none;
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.5);
	transition: all ease 0.8s;
	z-index: 100;
}

#cookie_notice_wrapper.active {
	display: block;
	visibility: visible;
	opacity: 1;
	transform: scale(1.0);
	bottom: 0;
}