.cookie-alert {
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	padding: 24px 30px 24px 30px;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
}



.cookie-alert__text p {
	

	font-family: 'Mulish';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	/* or 150% */

	color: #000000;
	margin: 0;


}

.cookie-alert__text p a {
	color: #000;
	 text-decoration: underline;
}

a.cookie-alert-close {
    background: #C8FF2C;
    color: #000;
    padding: 18px 60px;
    width: 347px;
    display: block;
    text-align: center;
	text-decoration: none;
	border-radius: 15px;
	font-family: 'Mulish';
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
}


@media only screen and (max-width: 768px) {
	
	.cookie-alert {
		flex-direction: column;
	}
	
	.cookie-alert__text p {
		margin-bottom: 15px;
	}
	
	.cookie-alert__button {
		width: 100%;
	}
	a.cookie-alert-close {
		width: 100%;
	}
}