.cookie-consent {
	position: fixed;
	bottom: 0;
	text-align: center;
	padding: 1rem;
	text-align: center;
	width: 100%;
	transform: translateY(100%);
	z-index: 1000;
	transition: transform .4s;
}

.cookie-consent.cookies-confirm {
	transform: translateY(0);
}

.cookie-consent a {
	color: inherit;
}

.cookie-consent__text {
	max-width: 640px;
	margin: auto;
}

.cookie-consent__text__confirm {
	background: #787878;
	padding: .25rem;
	display: inline-block;
	border-radius: 3px;
	margin-top: 5px;
}

.cookie-consent__text__confirm:hover {
	cursor: pointer;
}