.ce-banner{
    position: fixed;
    bottom: 0;
    background-color: #bdbdbd;
    padding: 1rem;
    color: #232323;
    font-size: 1em;
    z-index: 10;
}

@media (min-width: 768px) {
    .ce-banner {
        right: 20px;
        bottom: 20px;
        max-width: 400px;
        border-radius: 5px;
    }
}

.ce-p {
    margin-bottom: 0;
}

.ce-policy {
    font-size: 0.8rem;
}

.ce-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.ce-accept, .ce-dismiss, .ce-disable{
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: .6em 1.5em;
    display: inline-block;
    margin: 0 .5em;
    font-size: 1rem;
    border-radius: 5px;
}

.ce-disable{
    background-color: #aaa;
}

.ce-accept:hover,
.ce-dismiss:hover,
.ce-disable:hover{
    background-color: #666;
    color: white;
}

.ce-accept{
    background-color: #003C6A;
    color: #fff;
}

.ce-dismiss{
    position: absolute;
    font-size: .8em;
    right: 1em;
    top: 1em;
    background-color: #ccc;
    color: #333;
}