#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
    margin: 0;
    font-size: 12px;
	line-height: 16px;
    text-align: left;
    color: black;
}

.cookie_accept{
    width:20%;
}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}


/* ADD */
#cookie_note{
    border-radius: 10px;
}

#cookie_note .btn{
    white-space: nowrap;
    padding: 0px 20px;
}


@media (max-width: 576px){

    #cookie_note{
        width: 90%;
        box-sizing: border-box;
        z-index: 99;
    }

    #cookie_note p{
        margin-bottom: 5px;
    }

    #cookie_note .btn{
        width: auto;
    }

}