﻿#cookie-bar {
    background: rgba(105, 105, 105, 0.80);
    height: auto;
    line-height: 24px;
    color: #fff;
    text-align: center;
    padding: 5px;
    /*border-top-left-radius: 50px;*/
    /*border-top-right-radius: 10px;*/
}

    #cookie-bar.fixed {
        position: fixed;
        top: 0;
        /*left: 65%;*/
        right: 0;
        /*width: 35%;*/
        width: 100%;
    }

        #cookie-bar.fixed.bottom {
            bottom: 0;
            top: auto;
        }

    #cookie-bar p {
        margin: 0;
        padding: 0;
        font-size: 14px;
        color: #fff;
    }

    #cookie-bar a {
        color: #ffffff;
        display: inline-block;
        /*border-radius: 3px;*/
        text-decoration: none;
        padding: 2px 10px;
        margin-left: 4px;
        font-size: 14px;
    }

    #cookie-bar .cb-enable {
        background: #bf9f5c;
        margin: 10px 5px;
    }

        #cookie-bar .cb-enable:hover {
            background: #008dad;
        }

    #cookie-bar .cb-disable {
        background: #990000;
    }

        #cookie-bar .cb-disable:hover {
            background: #bb0000;
        }

    #cookie-bar .cb-policy {
        background: #bf9f5c;
        /*text-decoration: underline;*/
    }

        #cookie-bar .cb-policy:hover {
            background: #008dad;
            color: rgba(255, 255, 255, 1);
        }

@media only screen and (max-width: 768px) {
    #cookie-bar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    #cookie-bar {
        background: rgba(44, 53, 68, 0.75);
        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: 14px;
        }
}


