@keyframes slideIn {
    from {
        bottom: -100px;
    }
    to {
        bottom: 0;
    }
}

.cc {
    font-family: 'Open Sans Condensed', sans-serif;
}

.cc .banner {
    position: fixed;
    left: 0px;
    width: 100%;
    background: #303032;
    color: #fff;
    padding: 15px;
    text-align: left;
    margin: 0;
    bottom: 0;
    animation-name: slideIn;
    animation-duration: 0.2s;
    font-size: 15px;
    display: none;
    z-index: 997;
}

.cc .btn {
    border: 1px dotted #969696;
    display: inline-block;
    color: #969696;
    background: #fff;
    text-decoration: none;
    padding: 5px 15px;
}

.cc .banner p {
    width: 100%;
    margin: 0 0 15px 0;
    display: block;
    vertical-align: middle;
    padding-right: 0px;
}

.cc .banner aside {
    display: inline-block;
    text-align: right;
    vertical-align: middle;
}

.cc a.decline {
    background: none;
    color: #000;
    border: none;
}

.cc a.decline:hover, .cc a.close:hover {
    color: #fff;
}

.cc a.close {
    border-radius: 15px;
    padding: 4px 7px;
    color: #000;
    font-weight: normal;
}

.cc a.manage {
    color: #969696;
}

.cc a.manage:hover {
    color: #fff;
}

.cc .popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0px;
    width: 100%;
    background: #fff;
    z-index: 999;
    display: none;
}

.cc section {
    display: none;
    padding: 0px 15px;
    line-height: normal;
    font-size: 14px;
    float: left;
    width: 100%;
    border-left: 1px solid #e6ead1;
    margin-left: -1px;
}

.cc section p {
    margin-bottom: 0;
}

.cc section:first-of-type {
    display: block;
}

.cc .popup h2 {
    text-align: left;
    font-size: 18px;
    padding: 15px 15px 15px;
    background: #FFF;
    font-weight: normal;
    color: #000;
    margin: 0;
    background: linear-gradient(to bottom, #f4f4f4, #fff);
}

.cc label, .cc h3 {
    color: #c9d92e;
    font-size: 14px;
    font-weight: bold;
    display: block;
    position: relative;
    margin-bottom: 15px;
    max-width: 100%;
}

.cc h3 {
    color: #c9d92e;
}

.cc input[type='checkbox'] {
    position: absolute;
    right: 0;
    top: 5px;
    margin: 0;
    float: none;
}

.cc input[type=checkbox]:after, .cc input[type=checkbox]:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -45px;
    width: 60px;
    height: 30px;
    border: 1px solid #e6ead1;
    border-radius: 30px;
    background: #fff;
    transition: border .2s, background .2s;
    cursor: pointer;
}

.cc input[type=checkbox]:checked:after {
    border: 1px solid #c9d92e;
    transform: translateX(100%);
}

.cc input[type=checkbox]:after {
    width: 30px;
    height: 30px;
    background: #fff;
    transition: border .2s, transform .2s;
    z-index: 1;
}

.cc input[type=checkbox]:checked:before {
    border: 1px solid #c9d92e;
    background: #c9d92e;
}

.cc input[type=checkbox]:disabled:before {
    border: 1px solid #969696;
    background: #969696;
}

.cc input[type=checkbox]:disabled:after {
    border: 1px solid #969696;
}

.cc label.required {
    color: #969696;
}

.cc .popup a.close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #000;
}

.cc .popup ul {
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    list-style: none;
}

.cc .popup ul li {
    margin-bottom: 0;
    display: inline;
}

.cc .popup ul li a.active {
    background: #fff;
    color: #000;
}

.cc .popup ul a {
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    line-height: normal;
    padding: 10px 10px 10px 40px;
    display: block;
    color: #969696;
    position: relative;
    border-right: 1px solid #e6ead1;
}

.cc .popup ul i {
    position: absolute;
    left: 10px;
    top: 8px;
    font-weight: normal;
    border: 1px solid #969696;
    border-radius: 15px;
    padding: 5px;
    width: 22px;
    text-align: center;
    font-size: 10px;

}

.cc .popup ul a:hover {
    color: #3e3e3e;
}

.cc .popup footer {
    background: #FFF;
    padding: 15px;
    text-align: right;
}

.cc a.save {
    background: #c9d92e;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    text-decoration: none;
    font-size: 14px;
    border: 1px dotted #969696;
}

.ccPopupOverlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 998;
    display: none;
}

@media all and (min-width: 768px) {
    .cc .banner p {
        width: calc(100% - 300px);
        margin: 0;
        display: inline-block;
        vertical-align: middle;
        padding-right: 30px;
    }

    .cc .popup {
        top: 50%;
        left: 50%;
        bottom: auto;
        margin: -220px 0 0 -350px;
        width: 700px;
        background: #fff;
        z-index: 999;
        display: none;
    }

    .cc .popup ul {
        margin: 0;
        padding: 0 0 0 15PX;
        float: left;
        width: 31%;
        list-style: none;
    }

    .cc .popup ul li {
        display: block;
    }

    .cc .popup h2 {
        padding: 15px 15px 45px;
    }

    .cc section {
        width: 69%;
    }

    .cc .popup ul a {
        padding: 15px 10px 15px 40px;
    }

    .cc .popup ul i {
        top: 15px;
    }

    .cc .popup footer {
        padding: 45px 15px 15px 15px;
    }

    .cc label, .cc h3 {
        font-size: 15px;
    }
}

@media all and (min-width: 1024px) {

    .cc .popup {
        width: 750px;
        margin: -220px 0 0 -375px;
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
    }

}

@media all and (min-width: 1280px) {

}