#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);
    background:#fff;
    z-index:999;
}

#cookie_note p {
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
}

#cookie_note p a {
    color:#1565D8;
}

#cookie_note button {
    margin-left:10px;
    background: #1565d8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-family: Manrope, sans-serif;
    white-space:nowrap;
    padding:6px 12px;
}

@media (min-width: 1000px){
    #cookie_note.show {
        display: flex;
    }
}

@media (max-width: 999px){
    #cookie_note.show {
        display: block;
        text-align: left;
        width:90%;
    }
    
    #cookie_note button {
        margin-top:10px;
        margin-left:0;
    }
}