#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    z-index: 9999;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#cookie_note a{
	color: #000000;
	text-decoration:underline ;
}
#cookie_note button{
	text-transform: uppercase;
    border-radius: 5px;
    background: #ffffff;
    border-color: #000000;
    color: #000000;
}
#cookie_note button:hover{
	text-transform: uppercase;
    border-radius: 5px;
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}
#cookie_note p{
    margin: 0;
    font-size: 1rem;
    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: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        
    }
    #cookie_note p { 
    font-size: 1rem; 
    margin-bottom: 15px;
}
    .cookie_accept{
    width:50%;
    padding: 15px;

}
}