#cookie-bar {
    background: #111111;
    color: #dddddd;
    height: auto;
    line-height: 1.3em;
    text-align: left;
    padding: 0em 1.5em;
}

#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
}

#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar p {
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-direction: row;
    flex-direction: row;
}
#cookie-bar .cb-message {
    padding: 1em 0;
    -ms-flex: 1;
    flex: 1;
}
#cookie-bar .cb-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}
#cookie-bar a {
    color: #dddddd;
    display: inline-block;
    text-decoration: none;
}

#cookie-bar a:hover {
    color: #ffffff;
}

#cookie-bar .cb-button {
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: #777777;
    border-radius: 3px;
    cursor: pointer;
    padding: 0.35em 1.75em;
    margin-left: 1.5em;
}
#cookie-bar .cb-enable {
    border-color: #009900;
}
#cookie-bar .cb-enable:hover {
    background: #009900;
}

#cookie-bar .cb-disable {
    border-color: transparent;
}

#cookie-bar .cb-disable:hover {
    border-color: #777777;
}

#cookie-bar .cb-policy {
    background: #0033bb;
}

#cookie-bar .cb-policy:hover {
    background: #0055dd;
}

@media screen and (max-width: 720px) {
    #cookie-bar {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1200;
        padding: 0 20px;
    }
}
@media screen and (max-width: 620px) {
    #cookie-bar {
        flex: none;
    }
    #cookie-bar p {
        display: block;
    }
    #cookie-bar .cb-message,
    #cookie-bar .cb-buttons {
        display: block;
        text-align: center;
    }
    #cookie-bar .cb-buttons {
        padding-bottom: 1em;
    }
}
