#cookie_alert {
	position: fixed;
	z-index: 999;
	left: 20px;
	bottom: 20px;
	width: 200px;
	height: 200px;
	border-radius: 6px;
	overflow: auto;
	background-color: #fff;
	box-shadow: 0px 4px 16px 4px rgba(0,0,0,0.2);
	opacity: 0;
}
#cookie_alert .box {
	padding: 30px;
}
#cookie_alert a {
	font-size: 13px;
	font-weight: 600;
	color: #3f8bd7;
}
#cookie_alert a:hover {
	font-size: 13px;
	font-weight: 600;
	color: #2f69a3;
}
/* The Accept Button */
#cookie_alert .close.button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 34px;
	background-color: #3f8bd7;
	text-align: center;
	color: #fff;
	transition: background-color .2s linear;
}
#cookie_alert .close.button:hover {
	background-color: #2ca047;
}
