.jcarousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    position: relative;
    max-width: 1140px;
    width: 100%;
    min-height: 290px;
    padding: 14px 20px;
    background: #F9F9F9;
    border-radius: 14px;
    margin: auto;
    overflow: hidden;
}

/** Carousel **/

.jcarousel {
    position: relative;
    max-width: 920px;
    width: 100%;
    height: 100%;
    padding: 10px 10px;
    margin: 0 auto !important;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    position: relative;
    width: 300px;
    float: left;
}

.jcarousel img {
    max-height: 100px;
}

.jcarousel .loading {
    text-align: center;
    line-height: 90px; /* Fake vertical aligning */
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: calc(50% - 22px);
    width: 44px;
    height: 44px;
    text-align: center;
    color: transparent;
    cursor: pointer;
}

.jcarousel-control-prev {
    left: 15px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='45' viewBox='0 0 44 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect y='44.5' width='44' height='44' rx='22' transform='rotate(-90 0 44.5)' fill='%23005D28'/%3e%3cpath d='M24 27.5L19 22.5L24 17.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.jcarousel-control-next {
    right: 15px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='44' height='45' viewBox='0 0 44 45' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='44' height='44' rx='22' transform='matrix(0 -1 -1 0 44 44.5)' fill='%23005D28'/%3e%3cpath d='M20 27.5L25 22.5L20 17.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

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

.jcarousel_img {
    position: absolute;
    background-position: 18px 34px;
    background-repeat: no-repeat;
    background-size: 663px 117px;
    width: 693px;
    height: 149px;
    margin-top: -42px;
    margin-left: -53px;
}

/* IE10 Consumer Preview */



@media(max-width: 767px) {
    .jcarousel {
        padding: 0;
    }
    .jcarousel-control-prev {
        left: 5px;
    }
    .jcarousel-control-next {
        right: 5px;
    }
}