.cc_banner-wrapper {
    z-index: 9001;
    position: relative;
}

.cc_container {
    padding: 6px 6px 6px 12px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #52a70d;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    box-sizing: border-box;
    -webkit-animation-duration : 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-name: slideDown;
    animation-name: slideDown
}

.cc_container .cc_logo {
    display: none;
}

.cc_container ::-moz-selection {
    background: #ff5e99;
    color: #fff;
    text-shadow: none
}

.cc_container .cc_btn {
    display: block;
    padding: 4px 20px;
    float: right;
    margin-left: 10px;
    max-width: 120px;
    color: #000;
    text-decoration: none;
    background-color: #f1d600;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    line-height: 1em;
    transition: background 200ms ease-in-out, color 200ms ease-in-out;
    -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out;
    border-radius: 5px;
    -webkit-border-radius: 5px
}

.cc_container .cc_btn:hover, .cc_container .cc_btn:active {
    background-color: #fff;
    color: #000
}

.cc_container .cc_more_info {
    text-decoration: underline;
    color: #fff;
    transition: 200ms color;
}

.cc_container .cc_more_info:hover, .cc_container .cc_more_info:active {
    color: #b2f7ff;
}

.cc_container .cc_message {
    display: inline;
    color: #fff;
    font-size: 13px;
    margin: 0;
    padding: 0;
    line-height: 1.5em
}

@media screen and (max-width: 767px) {
    .cc_container .cc_btn {
        padding: 12px 20px;
    }
}

@-webkit-keyframes slideDown {
    0% { top: -100% }
    100% { top: 0 }
}

@keyframes slideDown {
    0% { top: -100% }
    100% { top: 0 }
}

@media print {
    .cc_banner-wrapper, .cc_container {
        display: none
    }
}