.carousel {
    margin-bottom: 0;
}

.carrousel-row {
    display: flex;
    justify-content: center;
    margin: auto;
}

.carousel-control {
    left: -36px;
    height: 40px;
    width: 40px;
    background: none repeat scroll 0 0 #222222;
    border: 4px solid #FFFFFF;
    border-radius: 23px 23px 23px 23px;
    top: 50%;
    opacity: 1;
    margin-top:0;
}

.carousel-control.right {
    right: -36px;
}
.carousel-control, .carousel-control:hover {
    background-image: none !important;
    background: #2e8db4;
    color: white !important;
}


/* The indicators */

.carousel-indicators {
    right: 50%;
    top: auto;
    bottom: -10px;
    margin-right: -19px;
}


/* The colour of the indicators */

.carousel-indicators li {
    background: #cecece;
}

.carousel-indicators .active {
    background: #428bca;
}

.limits {
    border-left: 2px dotted;
    border-right: 2px dotted;
    border-color: #44596c;
}

.carousel-inner {
    margin: auto;
    /*max-width: 260px;*/
}

.carousel-inner .carousel-item {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: flex;
    /*opacity: 0;*/
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 0;
    transition: all 0.6s ease-in-out;
}
.carousel-inner .carousel-item.active {
    /*opacity: 1 !important;*/
    height: auto !important;

}

@media (max-width: 768px) {
    .carousel-inner {
        max-width: unset !important;
    }
}

