.cookiealert {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 9000;
    opacity: 0;
    border-radius: 0;
    background: #222;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
}
.cookiealert a {
    color: #fc0;
    text-decoration: underline;
}
.cookiealert a:hover, .cookiealert a:focus, .cookiealert a:active {
    color: #fff;
}
.cookiealert .acceptcookies {
    display: block;
    text-align: center;
    margin-top: 1em;
}
.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 200ms;
}
