#cookie_notification{
    display: none;
    box-sizing: border-box;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background:rgba(0, 0, 0, 0.90);
    z-index: 1000;
    color: white;
}

#cookie_notification p{
    margin: 0;
    font-size: 1.7rem;
    text-align: left;
}

#cookie_notification button{
    margin-bottom: 0;
}

#cookie_notification .cookie_accept{
    margin: 0;
}

@media (min-width: 576px){
    #cookie_notification.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_notification.show{
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    #cookie_notification p{
        text-align: center;
        font-size: 1.1rem;
    }
}
