#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;
    font-size: 14px;
	text-decoration:underline ;
}
#cookie_note button{
	text-transform: uppercase; 
    background: #ffffff;
    border-color: #da7d38;
    color: #da7d38;
    white-space: nowrap;
    border: solid;
}
#cookie_note button:hover{
	text-transform: uppercase;
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}
#cookie_note p{
    margin: 0;
    font-size: 18px;
    text-align: left;
    color: black;
    line-height: 1.2;
}
#cookie_note p > a{ 
    font-size: 18px; 
}

.cookie_accept{
    width:20%;
}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
        align-items: center;
        z-index: 99999;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        
    }
    #cookie_note p { 
    font-size: 14px; 
    margin-bottom: 15px;
}
#cookie_note p > a{ 
    font-size: 14px; 
}
    .cookie_accept{
    width:50%;
    padding: 5px;

}
}