
.cc-window {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 1.3em;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.5em;
    z-index: 9999;
    color: rgb(0, 0, 0);
    background-color: #eaeaea;
    border-top: solid 1px #cacaca;
}

.cc-message {
    text-align: left;
    margin:0;
}

.cc-btn {
    float: right;
    color: black;
    font-size: 1.5em
}

/*Overwrite style*/
button.cc-accept span:hover,
button.cc-reject span:hover {
    background: black;
}

/*button state when no state is none (accept)*/
button.cc-accept span,
button.cc-accept span span {
    background: black;
}

/*button state when no state is none (reject)*/
button.cc-reject span,
button.cc-reject span span {
    background: black;
}

/*button state when state is off (accept)*/
button.cc-accept.cc-off span,
button.cc-accept.cc-off span span {
    background: grey;
}

/*button state when state is on (accept)*/
button.cc-accept.cc-on span,
button.cc-accept.cc-on span span {
    background: rgba(251, 101, 40, 1);
}

/*button state when state is off (reject)*/
button.cc-reject.cc-off span,
button.cc-reject.cc-off span span {
    background: grey;
}

/*button state when state is off (reject)*/
button.cc-reject.cc-on span,
button.cc-reject.cc-on span span {
    background: rgba(251, 101, 40, 1);
}

.cc-link {
    color: black;
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 414px) {
    .cc-btn {
        float: none;
        display: block;
        margin-bottom: 1em;
    }
}