* 
#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    color: white;
}
#cookie_notification p {
    margin: 0;
    font-size: 0.85rem;
    text-align: left;
}
@media (min-width: 576px) {
    #cookie_notification.show {
        display: flex;
    }
}
@media (max-width: 575px) {
    #cookie_notification.show {
        display: block;
        text-align: left;
    }
}
