﻿.ccarousel {
    position: relative;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.64);
    margin-top: 26px;
    width: 700px;
}

.ccarousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ccarousel-open:checked + .ccarousel-item {
    position: static;
    opacity: 100;
}

.ccarousel-item {
    height: 200px;
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
}

    .ccarousel-item p {
        display: block;
        height: auto;
        max-width: 100%;
    }

.ccarousel-control {
    background: rgba(0, 0, 0, 0.28);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 40px;
    height: 40px;
    line-height: 35px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    cursor: pointer;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    width: 40px;
    z-index: 10;
}

    .ccarousel-control.prev {
        left: 2%;
    }

    .ccarousel-control.next {
        right: 2%;
    }

    .ccarousel-control:hover {
        background: rgba(0, 0, 0, 0.8);
        color: #aaaaaa;
    }

.ccarousel-indicators {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

    .ccarousel-indicators li {
        display: inline-block;
        margin: 0 5px;
    }

.ccarousel-bullet {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 35px;
}

    .ccarousel-bullet:hover {
        color: #aaaaaa;
    }
