#cookie_note{
    display: none;
    position: fixed;
    bottom: 10px;
    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: 1000;
}

#cookie_note p{
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.1;
    text-align: left;
    color: black;
}

#cookie_note.show{
    display: block;
}

#cookie_button {
    display: block;
    font-size: 1rem;
    margin-top: 20px;    
    margin: auto;
}

.cookie_accept{
    width: 30%;
}

@media (max-width: 575px){
    #cookie_note{
        bottom: 5px;
    }
    #cookie_note p{
        font-size: 0.6rem;
    }
    #cookie_button {
        font-size: 0.8rem;
    }
    .cookie_accept{
        width: 50%;
    }
}
