#cookie_note{
    display: none;
    bottom: 0;
    flex-direction: column;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    z-index: 1200;
}

@media (min-width: 1024px) {
    #cookie_note {
        flex-direction: row;
    }
    #cookie_note.show{
        display: flex;
    }

}

@media (max-width: 1023px) {
    .#cookie_note.show {
        bottom: 0;
        left: 0;
        position: fixed;
        z-index: 1;
    }
    #cookie_note.show{
        display: flex;
    }
}