﻿#cookie-bar {
    background: rgba(0, 0, 0, 0.90);
    height: auto;
    line-height: 24px;
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    border-top-left-radius: 30px;
    /*border-top-right-radius: 10px;*/
}

    #cookie-bar.fixed {
        position: fixed;
        top: 0;
        left: 65%;
        right: 0;
        width: 35%;
    }

        #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;
    }

    #cookie-bar .cb-enable {
        background: #ad8f42;
        margin: 10px 5px;
        border: solid 1px #fff;
    }

        #cookie-bar .cb-enable:hover {
            background: rgb(55, 26, 55);
            color: rgba(255, 255, 255, 1);
        }

    #cookie-bar .cb-disable {
        background: #990000;
    }

        #cookie-bar .cb-disable:hover {
            background: #bb0000;
        }

    #cookie-bar .cb-policy {
        background: #ad8f42;
        margin: 10px 5px;
        border: solid 1px #fff;
        /*text-decoration: underline;*/
    }

        #cookie-bar .cb-policy:hover {
            background: rgb(55, 26, 55);
            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: #d8d8d8;
        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;
        }
}

@media print {
    #cookie-bar * {
        display: none !important;
    }
}