.cookie-banner {
    background: #F89A3E;
    color: #FFF;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0px -2px 5px 0px rgba(0,0,0,0.75);
    opacity: 1;
    transition: opacity .25s;
}
.cookie-banner.closed {
    opacity: 0;
}
.cookie-banner .cookie-button {
    padding: 10px 20px;
    cursor: pointer;
    background: #FFF;
    color: #F89A3E;
    float: right;
}
.cookie-content a {
    color: #FFF !important;
    text-decoration: underline;
}