#cookie-dialog {
    position: fixed;
    width: 500px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -250px;
    z-index: 11;
}

#cookie-content {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    padding: 25px;
    line-height: 150%;
}

#cookie-backdrop {
    opacity: .75;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background-color: #000;
}

#cookie-policy-accept {
    text-align: center;
    display: block;
    padding: 10px;
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    border-radius: .3rem;
}

#cookie-policy-settings {
    position: fixed;
    background-color: #000;
    width: 165px;
    opacity: .75;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    padding: 10px;
    color: #fff;
    text-align: center;
}

#cookie-policy-revoke-consent {
    text-align: center;
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

#cookie-policy-user-id {
    font-size: 10px;
}