@charset 'UTF-8';

.cookie-confirmation {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: fixed;
	bottom: 0;
	left: 50%;
	z-index: 1000;
	width: 100%;
	max-width: 1200px;
	padding: 3rem 1rem;
	transform: translateX(-50%);
	transition: .5s;
	box-sizing: border-box;
}
.cookie-confirmation:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	width: 100vw;
	transform: translateX(-50%);
	background-color: white;
	box-shadow: 0 0 1.875rem rgba(0,0,0,.2);
}
.cookie-confirmation:not(.show) {
	transform: translate(-50%,100%);
	pointer-events: none;
}
.cookie-confirmation * {
	position: relative;
	z-index: 1;
	line-height: 1.7;
}
.cookie-confirmation-text {
	flex: 1;
}
.cookie-confirmation-text a {
	color: #005EBB;
	text-decoration: underline;
}
.cookie-confirmation-text a:hover {
	color: #f1c402;
}
.cookie-confirmation-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 127px;
	height: 40px;
	margin-left: 40px;
	margin-right: 20px;
	border-radius: 50rem;
	background-color: black;
	color: white;
	transition: all .3s ease 0s;
	border: 1px solid currentColor;
}

.cookie-confirmation-button:hover {
	background-color: white;
	color: black;
}

.cookie-confirmation-close {
	font-size: 1.5rem;
	font-weight: bold;
}

@media( max-width:767.98px ) {
	.cookie-confirmation-text {
		flex: auto;
		width: 100%;
		margin-bottom: 1.25rem;
		font-size: .8rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.cookie-confirmation-button {
		margin-left: auto;
		margin-right: auto;
	}
	.cookie-confirmation-close {
		position: absolute;
		bottom: 2rem;
		right: 2rem;
	}
}