#cookie-bar {
    background: #eee;
    height: auto;
    color: #000;
    text-align: center;
    padding: 10px;
    line-height: 150%;
    z-index: 500;
}

#cookie-bar.fixed {
    position: fixed;
    bottom: 20%;
    top: 20%;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar p {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.75;
    text-align: center;
}

#cookie-bar p:before {
    font: var(--fa-font-light);
    content: '\f564';
    font-weight: 100;
    font-size: 4rem;
    line-height: 6rem;
    display: block;
}

#cookie-bar a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 0 6px;
    margin-left: 8px;
}

#cookie-bar .cb-enable,
#cookie-bar .cb-policy,
#cookie-bar .cb-disable {
    border: 1px solid transparent;
    padding: 2px 8px;
}

#cookie-bar .cb-enable:hover,
#cookie-bar .cb-policy:hover,
#cookie-bar .cb-disable:hover,
#cookie-bar .cb-enable:focus,
#cookie-bar .cb-policy:focus,
#cookie-bar .cb-disable:focus,
#cookie-bar .cb-enable:active,
#cookie-bar .cb-policy:active,
#cookie-bar .cb-disable:active {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

#cookie-bar .cb-disable {
    display: none;
}