.cookie-alert {
	position: fixed;
	z-index: 999;
	left: 30px;
	right: 30px;
	bottom: 30px;
    display: flex;
    align-items: center;
    padding: 20px;
	background: #fff;
	color: #000;
	border: 2px solid #D9344A;
}

.cookie-alert__text-title {
	font-weight: bold;
}

.cookie-alert__text p {
	margin: 0 0 20px 0;
	width: 80%;
}

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

a.cookie-alert-close {
    background: #D9344A;
    color: #fff;
    padding: 10px 20px;
    width: 240px;
    display: block;
    text-align: center;
	border-radius: 30px;
}

@media (max-width: 640px) {
	.cookie-alert {
		flex-direction: column;
		z-index: 9999;
	}
	.cookie-alert__text p {
		margin: 0;
		width: 100%;
	}
}


@media only screen and (max-width: 500px) {
	
	.cookie-alert {
		left: 20px;
		right: 20px;
		bottom: 20px;
		width: auto;
		padding: 20px 30px 30px 30px;
	}
}