#cookie_notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2147000001;
    color: white;
    font-size: smaller;
}
#cookie_notification a {
    color: lightblue;
}
@media (max-width: 575px) {
    #cookie_notification {
        display: block;
    }
}