
#cookie-bar {
    background: #9c9c9c ;
    height: auto;
    
    text-align: center;
    padding: 10px 10px;
}

#cookie-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;z-index: 99999;
}

#cookie-bar.fixed.bottom {
    bottom: 0;
    top: auto;
}

#cookie-bar p {
    margin: 0;
    padding: 0;
    font-size:13px;
    color: #575757;
    text-shadow: 0 1px 0 #bababa;
}

#cookie-bar a {
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    padding: 0 6px;
    margin-left: 8px;
}

#cookie-bar .cb-enable {
    display: inline-block;
    color: #adadad;
    text-decoration: none;
    background: #828282;
    padding: 6px 16px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-text-shadow: 0 -1px 0 rgba(0,0,0,0.35);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.35);
    -o-transition: background 0.5s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -moz-transition: background 0.25s ease-in;
    transition: background 0.5s ease-in;
    margin: 0px 10px;
    /*background: #007700;*/
}

#cookie-bar .cb-enable:hover {
    /*background: #009900;*/
    background: #696969;
    -o-transition: background 0.5s ease-in;
    -webkit-transition: background 0.25s ease-in;
    -moz-transition: background 0.25s ease-in;
    transition: background 0.5s ease-in;
}

#cookie-bar .cb-disable {
    background: #990000;
}

#cookie-bar .cb-disable:hover {
    background: #bb0000;
}

#cookie-bar .cb-policy {
    /*background: #0033bb;*/
    font-size:13px;
    color: #575757;
    text-shadow: 0 1px 0 #bababa;
}

#cookie-bar .cb-policy:hover {
    /*background: #0055dd;*/
    text-decoration:underline;
}

@media screen and (max-width: 768px) {
    #cookie-bar .cb-policy,
    #cookie-bar .cb-enable  {
        display: block;
        margin: 1em 0;
    }
}