#cookie-hint {
	z-index: 99999;
	display: block;
	position: fixed;
	bottom: 0px;
	width: 100%;
	box-sizing: border-box;
	padding: 13px 20px;
	background-color: #efefef;
	background: linear-gradient(to bottom, #efefef, #fafafa);
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	box-shadow: 0 -3px 23px rgba(0,0,0,0.15);
	transform: translateY(100%);
	transition: all 0.35s ease-out;
	opacity: 0;
	will-change: transform, opacity;
}
#cookie-hint.active {
	transform: translateY(0%);
	opacity: 1;
}
#cookie-hint .cookie-copy {
	width: 100%;
	display: block;
	color: #000000;
	text-align: center;
	font-size: 12px;
}
#cookie-hint .cookie-copy a {
	color: #000000;
	text-decoration: underline;
}
#cookie-hint .cookie-accept-close {
	cursor: pointer;
	width: 65px;
	color: #010101;
	text-align: center;
	line-height: 32px;
	background: #fefdfd;
	font-size: 15px;
	display: block;
	margin: 11px auto 0;
	border: 2px solid #bea67c;
	text-decoration: none;
	border-radius: 15px;
}

@media only screen and (min-width : 980px) {
	#cookie-hint {
		text-align: center;
		padding: 16px 10px;
	}
	#cookie-hint .cookie-copy {
		font-size: 14px;
		display: inline-block;
		width: auto;
	}
	#cookie-hint .cookie-accept-close {
		font-size: 16px;
		line-height: 35px;
		width: 90px;
		display: inline-block;
		margin: 0;
		margin-left: 20px;
		transition: opacity 0.25s ease-out;
	}
	#cookie-hint .cookie-copy a:hover {
		text-decoration: none;
	}
	#cookie-hint .cookie-accept-close:hover {
		opacity: 0.7;
	}
}