div#cookie-consent-banner button {
    padding: 0.5em 1em;
    border: 1px solid #70cd4b;
    margin: 6px 8px;
    cursor: pointer;
    transition: all 0.3s;
}

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #6DC286;
    color: #fff;
    text-align: center;
    padding: 1em;
    display: none;
    z-index: 999;
}

#accept-cookies {
    background: #F2AD28;
    color: #000;
    cursor: pointer;
}

#accept-cookies:hover{
    background: #fff;
    color: #F2AD28;
}

#decline-cookies {
    background: #fff;
    color: #F2AD28;
}

#decline-cookies:hover {
    background: #F2AD28;
    color: #fff;
}
