.cookieConsent
{
	background: #e20015;
	border-top: 5px #1d1d1b solid;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	padding: 15px 0;
	position: fixed;
	left: 0;
	bottom: 0;
	overflow: hidden;
	right: 0;
	z-index: 101;
	height: auto;
	max-height: 300px;
	transition: all 300ms ease;
}

.cookieConsent.hidden
{
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	border: 0;
}

.cookieConsent a.dismiss
{
	margin: 9px 0 0 10px;
	float: right;
	cursor: pointer;
	text-align: center;
	color: #fff;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transition: all 0.2s ease;
	text-decoration: none;
	padding: 8px 0;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: bold;
}

.cookieConsent .text
{
    line-height: 1.3;
}

/*
@media screen and (max-width: 767px){
	.cookieConsent .text
	{
		max-width: none;
	}
}*/