   /* Main styling of the cookie warning bar */
#cookie-bar {
    padding: 10px;
    display: block;
    top: 0;
    bottom: auto;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, .8);
    color: white;
}

#cookie-bar a {
    color: #fff;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    padding: 8px 13px;
    margin-left: 0px;
    font-weight:400;
}

#cookie-bar p {
    margin: 0;
    padding-bottom: 4px;
    max-width: 100%;
    text-align: center;
	font-size:12px;
	color:#ccc;
}

#cookie-bar .cb-buttons {
    margin: 0;
    text-align: center;
    max-width: 100%;
}

@media (min-width: 768px) {
    #cookie-bar p {
        margin-left: 60px;
        padding: 4px 10px 0;
        max-width: 100%;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        -ms-text-overflow:ellipsis;
        float: left;
		
    }
    
    #cookie-bar .cb-buttons {
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        -ms-text-overflow:ellipsis;
        text-align: right;
    }
}

/* Additional positions for the cookie bar*/
#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

/* Buttons */
#cookie-bar .cb-enable {
    background: #007700;
	margin-right:65px;
}
#cookie-bar .cb-enable:hover {
    background: #009900;
}

#cookie-bar .cb-disable {
    background: #990000;
}
#cookie-bar .cb-disable:hover {
    background: #bb0000;
}

#cookie-bar .cb-policy {
    background: #0033bb;
}
#cookie-bar .cb-policy:hover {
    background: #0055dd;
}