.cookiealert {
	position: relative;
	/*bottom: 0px;
	left: 0;*/
	width: 100%;
	/*margin: 0 !important;*/
	z-index: 999;
	opacity: 0;
	border-radius: 0;
	/*background: rgba(255,255,255,0.9);*/
	transform: translateY(100%);
	transition: all 500ms ease-out;
	color: #ecf0f1;
	font-size: 0.7rem;
	/*margin-top: 30px;*/
	/*border-top: 1px solid currentcolor;*/
}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    color: #fff;
    text-decoration: underline;
}
.cookiealert a:hover {
    color: #cd1619;
    text-decoration: underline;
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
	color:#fff;
	border: #fff 1px solid;
}
.cookie {
  color: #64696d;
  background-color: #000;
  font-size: 0.7rem;
  padding: 0;
}
.acceptcookies { font-size: 0.7rem!important; }