#cookie_note{
    display: none;
	flex-direction: column;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 1000px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
	z-index: 999;
}

#cookie_note p {
    margin: 0px 0px 10px 0px;
    font-size: 13px;
    text-align: left;
    color: black;
}

#cookie_note button {
    width: 130px;
	cursor: pointer;
}
@media (max-width: 1200px){
    #cookie_note.show{
        width: 90%;
    }
}
@media (min-width: 480px){
    #cookie_note.show{
        display: flex;
    }
}
