#cookie_note {
    display: none;
    position: fixed;
    z-index: 100;
    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);
}

#cookie_note p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    color: black;
}

.cookie_accept {
    border: 1px solid #1065ad;
    background: #1065ad;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    padding: 10px 0px;
    border-radius: 6px;
    width: 30%;
    text-align: center;
}

.cookie_accept:hover {
    background: #187dd2;
    border: 1px solid #187dd2;
    cursor: pointer;
}

#cookie_note.show {
    display: flex;
}