.cookie-alert {
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	z-index: 140;
	background: #646464;
	color: white;
	padding: 20px 0;
	transition: all ease 0.3s;
	transition-delay: 0.1s;
}

.cookie-alert.hidden {
	opacity: 0;
	transform: translateY(100%);
}

.cookie-alert.hidden .cookie-wrapper {
	transform: translateY(100%);
}

.cookie-alert .cookie-wrapper {
	max-width: 800px;
	margin: 0 auto;
	transition: transform ease 0.4s;
	overflow: hidden;
}

.cookie-alert a {
	color: white;
}

.cookie-alert .mentions {
	float: left;
	font-weight: 300;
	line-height: 125%;
}

.cookie-alert .btn {
	float: right;
	background: white;
	padding: 16px 22px 13px 22px;
	border-radius: 2px;
	color: #E75113;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
}