.jcarousel-wrapper { 
    position: relative;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: calc(100% - 0px);
}

.jcarousel ul {
    width: calc(100% + 20000px);
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-right: 15px;
    position: relative;
    width: calc((100% - 20000px) / 1);
    width: 180px;
}

/** Carousel Controls **/

.jcarousel-prev,
.jcarousel-next {
    position: absolute;
    top: 0;
    width: 31px;
    height: 135px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.jcarousel-prev {
    background: url('prev.png') center center no-repeat;
    left: 0;
}

.jcarousel-next {
    background: url('next.png') center center no-repeat;
    right: 0;
}

.jcarousel-prev.inactive,
.jcarousel-next.inactive {
    opacity: .25;
    cursor: default;
}


/** Carousel Pagination **/

.jcarousel-pagination {
    bottom: 80px;
    position: absolute;
    z-index: 19;
}

.jcarousel-pagination a {
    background: #fff;
    border: 1px solid #7b852c;
    border-radius: 15px;
    display: inline-block;
    font-size: 11px;
    height: 15px;
    line-height: 1em;
    margin-right: 5px;
    text-align: center;
    text-decoration: none;
    text-indent: -9999px;
    width: 15px;
}

.jcarousel-pagination a.active, .jcarousel-pagination a:hover {
    background: #7b852c;
    color: #fff;
    opacity: 1;
}