.cookie-alert{
	z-index:100001;
	position:fixed;
	border:1px solid #202020;
	display:none;
	flex-direction:column;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	width:559px;
	box-sizing:border-box;
	padding:20px;
	left:20px;
	bottom:20px;
	background:rgba(0,0,0,0.5);
	border-radius:12px;
	backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari */
	box-shadow:
		0 -11px 7px rgba(0, 0, 0, 0.03),
		0 -5px 5px rgba(0, 0, 0, 0.04),
		0 -1px 3px rgba(0, 0, 0, 0.05);
}
.cookie-alert.show{
	display:flex;
}
.cookie-alert p{
	font-size:16px;
	line-height:18px;
	color:#fff;
	margin:0;
}
.cookie-alert p strong{
	font-weight:bold;
	display:block;
	margin-bottom:3px;
}
.cookie-alert p a{
	color:inherit;
}
.cookie-alert__btn{
	color:#202020;
	background:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:600;
	border:none;
	height:48px;
	font-size:16px;
	min-width:100%;
	cursor:pointer;
	transition:0.2s;
	border-radius:6px;
	text-transform:uppercase;
	font-family: "SuisseIntl";
}
.cookie-alert__btn:hover{
	background:#202020;
	color:#fff;
}

.consent-block{
    display:flex;
    position:relative;
    gap:10px;
    cursor:pointer;
}
.consent-block input{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}
.consent-block input + div{
    width:16px;
    min-width:16px;
    height:16px;
    background:#fff;
    border:1px solid #202020;
    display:flex;
    align-items:center;
    justify-content:center;
}
.consent-block input + div:after{
    content:url('../images/checkmark.svg');
    opacity:0;
}

.consent-block input:checked + div:after{
    opacity:1;
}

.content-columns__text__description{
    width:auto;
}

@media (max-width: 992px) {
	.cookie-alert{
		width:calc(100% - 30px);
		left:15px;
	}
}
@media (max-width: 768px) {
	.cookie-alert{
		flex-direction:column;
		gap:20px;
	}
	.cookie-alert__btn{
		width:260px;
	}
	.cookie-alert p{
    	font-size:12px;
    	line-height:16px;
    }
}
