﻿

.carousel-inner .active.left {
    left: -33%;
}

.carousel-inner .active.right {
    left: 33%;
}

.carousel-inner .next {
    left: 33%
}

.carousel-inner .prev {
    left: -33%
}

.carousel-control.left {
    background-image: none;
}

.carousel-control.right {
    background-image: none;
}

.carousel-inner .item {
    background: white;
}

.my-own-corousel-wrapper {
    position: relative;
    height: 100%;
}

/* Next & previous buttons */
.own-prev, .own-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 13px;
    color: white;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    color: black;
}

/* Position the "next button" to the right */
.own-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .own-prev:hover, .own-next:hover {
        background-color: rgba(0,0,0,0.8);
        color: white;
    }
