#cookies_banner {
    display: none;

    position: fixed;
    left: 0;
    right: 0;
    /* border-top: 1px solid var( --golden-color ); */
    bottom: 0;
    padding: 10px;
    background-color: white;

    z-index: 2000;
}
#cookies_banner.visible {

}
#cookies_banner_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
#cookies_banner_left {
    flex-grow: 1;
    text-align: justify;
}
#cookies_banner_left > :nth-child(1) {
    color: var( --golden-color );
    font-size: 0.9rem;
    margin-bottom: 15px;
}
#cookies_banner_left > :nth-child(2) {
    color: #777;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
#cookies_banner_left > :nth-child(3) {
    font-size: 0.75rem;
    color: var( --golden-color );
}
#cookies_banner_left > :nth-child(3) a {
    color: var( --golden-color );
}
#cookies_banner_right {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
#cookies_banner_accept {
    cursor: pointer;
    padding: 8px 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #000;
    background-color: #000;
    color: white;
    outline: none;
}
#cookies_banner_accept:hover {
    color: black;
    background-color: white;
}

@media only screen and (max-width: 600px) {
    #cookies_banner_inner { flex-wrap: wrap; }
    #cookies_banner_accept { margin-top: 20px; }
    #cookies_banner_left > :nth-child(3) { max-width: 90%; margin: 0 auto; display:flex; justify-content: space-between; }
}
