#cookie-bar {
    background: #111;
    height: auto;
    line-height: 24px;
    color: #eee;
    text-align: center;
    padding: 3px 0;

    &.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1200
    }

    &.fixed.bottom {
        bottom: 0;
        top: auto;
    }

     p {
         margin: 0;
         padding: 0;
     }

     a {
         color: #fff;
         display: inline-block;
         border-radius: 3px;
         text-decoration: none;
         padding: 0 6px;
         margin-left: 8px;
     }

    .cb-enable {
        background: #007700;
        cursor: pointer;
    }

    .cb-enable:hover {
        background: #009900;
    }

    .cb-disable {
        background: #990000;
        cursor: pointer;
    }

    .cb-disable:hover {
        background: #bb0000;
    }

    .cb-policy {
        background: #0033bb;
        cursor: pointer;
    }

    .cb-policy:hover {
        background: #0055dd;
    }
}
