.cookiealert {
	font-family: sans-serif;
    position: fixed;
    bottom: -1px;
	padding: 8px 0;
	line-height: 20px;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #000;
    background-color: #FFF;
	border-top: 1px solid #DDD;
	text-align: center;
	font-size: 13px;
}

.cookiealert strong {
	font-size: 16px;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: none;
	font-weight: bold;
	color: #000;
}

.cookiealert .acceptcookies {
	margin-top: -25px;
	margin-right: 10px;
	float: right;
	font-family: Source Sans Pro;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width:991px) {
	.cookiealert strong {
		font-size: 14px;
	}
	
	.cookiealert a {
		font-size: 12px;
	}
	
	.cookiealert {
		font-size: 12px;
	}

	.cookiealert .acceptcookies {
		width: 50%;
		margin: 5px auto;
		float: none;
		display: block;
	}
}