
/* Cookie bar */

#cookie-bar {
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #000000;
    height: auto;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    z-index: 9999;
    font-size: 14px;
}

#cookie-bar.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

#cookie-bar p {
    margin: 0;
    padding: 0 30px;
    display: inline-block;
}

#cookie-bar a {
    color: #ffffff;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    padding: 0 6px;
    margin-left: 8px;
}

#cookie-bar .cb-enable {
    background: #888888;
}

#cookie-bar .cb-enable:hover {
    background: #999999;
}

#cookie-bar .cb-disable {
    background: #494949;
}

#cookie-bar .cb-disable:hover {
    background: #666666;
}

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

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

#cookie-bar .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}


/* Responsive
 * ----------------------------------------------------------------------------- */

@media screen and (max-width: 580px) {
    #cookie-bar.fixed {
        width: 100%;
        padding: 10px 0;
    }
    #cookie-bar.fixed a {
        margin-bottom: 5px;
    }
}