#cookieChoiceInfo {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    width: 100%;
    margin: 0;
    left: 0;
    top: auto;
    bottom: 0;
    padding: 30px 4px;
    z-index: 1000;
    text-align: center;
    color: #ccc;
    font-size: 1em;
    border-top: 1px solid #222;
}

#cookieChoiceInfo a {
    color: #fff;

}

.cookiebanner {
    margin-bottom: 90px;
}
@-webkit-keyframes cookiebannerslideInUp {
    0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
}
100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}@keyframes cookiebannerslideInUp {
    0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
}
100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}.cookiebanner-slideInUp {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: cookiebannerslideInUp;
    animation-name: cookiebannerslideInUp;
}