.cookiealert {
    position: fixed;
	font-family:Helvetica, Arial, sans-serif;
	font-size:12px;
	font-weight: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
	background-color:#323232;
	height:auto;
	margin:0;
	padding:6px;
	text-align:center;
}
.cookiealert.show {
    opacity: 1;
	background-color:#323232;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.cookiealert a {
    text-decoration: none;
}
.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
.btn.acceptcookies {
	position:absolute;
	color: #fff;
	border:none;
	font-size:24px;
	right:40px;
	bottom:-4px;
	background: transparent;
}

@media only screen and (orientation : portrait) {
	.cookiealert {
	font-size:18px;	
	padding:5px;
	height:40px;
	line-height: 45px;
}
.btn.acceptcookies {
	font-size:24px;
	right:18px;
	bottom:11px;
}
.cookiealert.show {
    transform: translateY(1%);
}

}