#cookie_note{
    display: none;
    position: fixed;
    z-index: 1000;
    bottom: 15px;
    left: 20px;
    max-width: 60%;
    /* 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{
	color:#c4242c;
}
#cookie_note p{
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
    margin-bottom: 10px;
}

.cookie_accept{
    width:20%;
}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 900px){
    #cookie_note.show{
        display: block;
        text-align: left;
        max-width: calc(100% - 40px);
        bottom: 80px;
    }
    .cookie_accept{
        width:30%;
    }
}