.jcarousel-wrapper {
    margin: 0 auto;
    position: relative;
}
/** Carousel **/
.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcarousel li {
    width: 200px;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
.jcarousel img {
    display: block;
    max-width: 100%;
    height: auto !important;
}
/** Carousel Controls **/
.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 28%;
/*    margin-top: -18px;*/
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    /*Transition*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font: 24px/27px Arial, sans-serif;
    z-index: 999;
    /*border-radius*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;

}
/*---Change Background for control-nav---*/
.jcarousel-control-prev{
/*    background: #CBCCC2 url('../images/arrow-products-left.png') no-repeat center;*/
}
.jcarousel-control-next{
    /*background: #CBCCC2 url('../images/arrow-products-right.png') no-repeat center;*/
}
.jcarousel-control-prev:hover,
.jcarousel-control-prev:focus{
   /* background: #fff url('../images/arrow-products-left.png') no-repeat center;*/
}
.jcarousel-control-next:hover,
.jcarousel-control-next:focus{
   /* background: #fff url('../images/arrow-products-right.png') no-repeat center;*/
}
/*.jcarousel-control-prev:hover,
.jcarousel-control-next:hover,
.jcarousel-control-prev:focus,
.jcarousel-control-next:focus{
    background-color: #A10F2B
}*/
.jcarousel:hover .jcarousel-control-prev,
.jcarousel:focus .jcarousel-control-prev{
    left: 20px;
}
.jcarousel:hover .jcarousel-control-next,
.jcarousel:focus .jcarousel-control-next{
    right: 20px;
}
.jcarousel-control-prev {
    left: -50px;
}
.jcarousel-control-next {
    right: -50px;
}
/** Carousel Pagination **/
.jcarousel-pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}
.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #fff;
    color: #4E443C;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;


    -webkit-box-shadow: 0 0 2px #4E443C;
    -moz-box-shadow: 0 0 2px #4E443C;
    box-shadow: 0 0 2px #4E443C;
    }
    .jcarousel-pagination a.active {
    background: #4E443C;
    color: #fff;
    opacity: 1;

    -webkit-box-shadow: 0 0 2px #F0EFE7;
    -moz-box-shadow: 0 0 2px #F0EFE7;
    box-shadow: 0 0 2px #F0EFE7;
}
@media (max-width: 767px){
    .jcarousel-control-prev {
        left: 20px;
    }
    .jcarousel-control-next {
        right: 20px;
    }
}