#cookie-notice {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    background-color: rgba(0,0,0,0.45);
    box-shadow: 0 0 0.25rem rgb(0 0 0 / 5%);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 42px;
    font-size: x-large;
    text-align: center;
    color: white;
    animation: fadeIn 1.5s;
}
@keyframes fadeIn {
    0% { height: 0px; }
    100% { height: 210px; }
}
.cookie-notice-more {
    margin: 0 0.25rem;
    text-decoration: none;
    color: black;
}
.cookie-notice-close {
    padding: 0 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.125rem;
    line-height: 20px;
    text-decoration: none;
    color: #888;
}
@media only screen and (min-width: 768px) {
    #cookie-notice {
        bottom: 1rem;
        border-radius: 0.25rem;
    }
    .cookie-notice-close {
        float: right;
    }
}