﻿
.cc_banner-wrapper {
    z-index: 9001;
    position: relative;
    height: 66px;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-name: growDown;
    animation-name: growDown;
}

.cc_container {
    padding: 15px 15px 15px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #999;
    box-sizing: border-box;
    border: 1px solid #ccc;
    -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;
}

@media screen and (min-width:768px) {
    .cc_container {
        padding: 15px 30px 15px;
    }
}

@media screen and (min-width:768px) {
    .cc_container .cc_btn {
        padding: 8px 15px;
    }
}

.cc_container .cc_btn {
    padding: 8px 10px;
    background-color: #b30838;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 33%;
    margin-left: 10px;
    float: right;
    border: 1px solid #b30838;
    max-width: 120px;
}


.cc_container .cc_btn, .cc_container .cc_btn:visited {
    color: #ffffff;
    background-color: #b30838;
    transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}


    .cc_btn:hover,
    .cc_btn:active {
        background-color: #ffffff!important;
        color: #b30838;
        border: 1px solid #b30838;
        text-decoration: none;
    }

.cc_container .cc_message {
    transition: font-size 200ms;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
    display: block;
}

.cc_container .cc_logo {
    display: none;
}
.cc_message {
    margin-top: 9px !important;
}


   

@-webkit-keyframes slideDown {

    0% {
        margin-top: -66px;
    }

    100% {
        margin-top: 0;
    }
}


@keyframes slideDown {
    0% {
        margin-top: -66px;
    }

    100% {
        margin-top: 0px;
    }
}

@-webkit-keyframes growDown {

    0% {
        height: 0;
    }

    100% {
        height: -66px;
    }
}

@keyframes growDown {

    0% {
        height: 0;
    }

    100% {
        height: -66px;
    }
}
