#cookiebarBox {
    position: fixed;
    bottom: 0;
    left: 5px;
    right: 5px;
// display: none;
    z-index: 200;
    .container {

        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        background-color: #f1f1f1;
        color: #333;
        text-align: center;
        padding: 0;
        overflow: hidden;
        border:1px solid #999;
        font-size:10px;
        max-width: 1000px;
        margin: 0 auto 10px;
        a{
            color: #333;
            border-bottom: 1px dotted white;
        }
        h3{
            margin:5px 0 1px 0;
            font-size:16px;
        }
        p:first-child{
            margin-top:8px;
        }
        p{
            margin:0;
        }

        @media (min-width: 1600px) {
            width:1000px;
        }


    }
}

.cookieok {
    border-radius: 3px;
    background-color: #ececec;
    color: #186782 !important;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    max-width: 200px;
    margin: 10px auto;
    border: 1px solid #b2b2b2;
    padding: 5px 30px;
}

.cookiecancel {
    border-radius: 3px;
    background-color: #ececec;
    color: #333 !important;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
    max-width: 200px;
    margin: 10px auto;
    border: 1px solid #b2b2b2;
    padding: 5px 30px;
    margin-left: 15px;
}