#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);
	z-index: 99999; text-align: center; 
}

#cookie_note p{
    margin: 0;
    font-size: 14px;
    text-align: left;
    color: rgb(0, 0, 0);
	line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

#cookie_note>p>a{
    color: rgb(239, 143, 18);
}

.cookie_accept{
    width:30%;
    background-color:black !important;
    border: none !important;
    color: white;
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.show {
    display: block !important;
}

@media (max-width: 800px){
    #cookie_note.show{
    width: 90%;
z-index: 99999;
 text-align: center; 
    }

	.cookie_accept{
    width: 40%;
}
}