.cc-flexcontainer {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    text-shadow: none;
    font-size: 12px;

    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;

    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    background-color: #FFFFCC;
}
.cc-message {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex: 2 auto;
    -ms-flex: 2 auto;
    flex: 2 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;

    margin: 3px;
    margin-left: 5%;
}
.cc-info {
    color: rgb(0, 128, 128);
    text-decoration: underline;
}
.cc-info:hover {
    color: rgb(0, 100, 128);
}
.cc-btn {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;

    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;

    border-radius: 3px;
    background-color: #FED85D;
    color: #000;

    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-top: 6px;
    margin: 3px;
    margin-right: 5%;
    height: 100%;

    text-align: center;
}
.cc-btn:hover {
    color: #fff;
    background-color: #CBA52A;
    text-decoration: none;
}
@media screen and (max-width: 400px) {
    .cc-flexcontainer {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media print {
    .cc-window.cc-banner {
        display: none;
    }
}