/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    width: 10000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
}

.jcarousel-control-buttons {
    position: absolute;
    left: 50%;
    right: 50%;
    top: 44%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
}

.jcarousel .slider .slide {
	width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 7rem;
}

.jcarousel .slider .slide:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.jcarousel-pagination {
    position: absolute;
    bottom: 0.75rem;
    text-align: center;
    width: 100%;
    padding: 0;
}

.jcarousel-pagination a {
    margin: 0 0.25rem;
    opacity: 0.65;
}

.jcarousel-pagination a.active, .jcarousel-pagination a.active:hover {
    opacity: 1;
    color: #007cba;
}

.jcarousel-control-prev, .jcarousel-control-next {
    opacity: 0.65;
    position: absolute;
    z-index: 99;
    left: 2.5%;
}

.jcarousel-control-next {
    right: 2.5%;
    left: auto;
}

.jcarousel-control-prev:hover, .jcarousel-control-next:hover, .jcarousel-pagination a:hover {
    opacity: 1;
    color: #007cba;
}
