﻿#cookie-bar {
    background: rgba(0, 0, 0, 0.75);
    height: auto;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
    padding: 15px 0 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

    #cookie-bar.fixed {
        position: fixed;
        top: 0;
        left: 15%;
        right: 15%;
        width: 70%;
    }

        #cookie-bar.fixed.bottom {
            bottom: 0;
            top: auto;
        }

    #cookie-bar p {
        margin: 0;
        padding: 0;
        font-size: 15px;
    }

    #cookie-bar a {
        color: #ffffff;
        display: inline-block;
        border-radius: 3px;
        text-decoration: none;
        padding: 2px 6px;
        margin-left: 4px;
    }

    #cookie-bar .cb-enable {
        background: #af0000;
    }

        #cookie-bar .cb-enable:hover {
            background: #f41213;
        }

    #cookie-bar .cb-disable {
        background: #990000;
    }

        #cookie-bar .cb-disable:hover {
            background: #bb0000;
        }

    #cookie-bar .cb-policy {
        /*background: #999999;*/
        text-decoration: underline;
    }

        #cookie-bar .cb-policy:hover {
            /*background: #777777;*/
            color: rgba(255, 255, 255, 0.65);
        }

@media only screen and (max-width: 768px) {
    #cookie-bar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    #cookie-bar {
        background: #223;
        height: auto;
        line-height: normal;
        color: #eeeeee;
        text-align: center;
        padding: 5px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
        #cookie-bar p {
            margin: 0;
            padding: 0;
            font-size: 13px;
        }
}
