#cc, #cc * {
    box-sizing: border-box
}

#cc {
    position: fixed;
    z-index: 999999;
    left: 0;
    min-width: 100%;
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0;
    line-height: 19px;
    text-align: center
}

.cc-container {
    display: block;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    z-index: 2
}

#cc.cc-hidden .cc-container {
    display: none
}

.cc-position-top {
    top: 0
}

.cc-position-bottom {
    bottom: 0
}

.cc-closer {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 15px;
    height: 15px;
    opacity: .5;
    padding: 10px;
    outline: none
}

.cc-closer:hover {
    opacity: 1
}

.cc-closer:before, .cc-closer:after {
    position: absolute;
    content: " ";
    height: 15px;
    width: 2px;
    top: 3px;
    background-color: #fff
}

.cc-closer:before {
    transform: rotate(45deg)
}

.cc-closer:after {
    transform: rotate(-45deg)
}

.cc-button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: .25px;
    line-height: 20px;
    margin: 0;
    margin: 0 0 0 10px;
    padding: 0;
    text-align: center;
    text-transform: none;
    display: inline-block;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    border: none;
    border-radius: 3px
}

.cc-button:hover {
    box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .05);
    text-decoration: none
}

.cc-link-style-link {
    color: #fff
}

.cc-link-style-button {
    text-decoration: none;
    padding: 8px 12px;
    line-height: 1;
    color: #fff;
    background: #7f7f7f
}

.cc-text, .cc-buttons {
    display: inline-block;
    padding: 5px 0
}

#cc.cc-animated {
    animation-duration: .6s !important;
    animation-fill-mode: both
}

#cc.cc-animated.cc-effect-none {
    animation-duration: .001s !important
}

#cc.cc-visible.cc-effect-none {
    animation-name: fadeIn
}

#cc.cc-effect-none {
    animation-name: fadeOut
}

#cc.cc-visible.cc-effect-fade {
    animation-name: fadeIn
}

#cc.cc-effect-fade {
    animation-name: fadeOut
}

#cc.cc-visible.cc-effect-slide {
    animation-name: slideInUp
}

#cc.cc-effect-slide {
    animation-name: slideOutDown
}

#cc.cc-visible.cc-position-top.cc-effect-slide {
    animation-name: slideInDown
}

#cc.cc-position-top.cc-effect-slide {
    animation-name: slideOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

@media all and (max-width: 900px) {
    .cc-text, .cc-buttons {
        display: block
    }

    .cc-button {
        margin: 0 5px 5px 5px
    }
}

@media all and (max-width: 480px) {
    .cc-container {
        padding: 15px 25px
    }
}
