/* 
The carousel with several items stylesheet
*/

.dlt_carousel_cat_ct {
    max-width: 1200px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* For JS effects */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.dlt_carousel_cat_ct h2 {
	font-size: 2.5rem;
}
.slider-outer-shell {
    position: relative;
    width: 95%;
}
.slider-wrapper {
    overflow: hidden;
    margin: 0 60px;
}
.dlt_carousel_cat_ct .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    width: 100%;
    position: relative;
}
.dlt_carousel_cat_ct .show-slider-navigation .slider {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.slider__item {
    max-width: calc(33.3333333333% - 10px - 0px + 10px/3);
    min-width: calc(33.3333333333% - 10px - 0px + 10px/3);
    background-color: black;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    border: 2px solid var(--main-orange);
}
.slider__item span {
    position: absolute;
    bottom: 10%;
    width: 100%;
    background-color: black;
    font-size: 1.8rem;
    padding: .5rem;
}
.slider__item img {
	aspect-ratio: 1 / 1.5;
    -o-object-fit: cover;
       object-fit: cover;
}
.slider__item:first-child {
    margin-left: 0;
}
.slider__item:last-child {
    margin-right: 0;
}
.slider__nav-button {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 60px;
}
.slider__nav-button.btn_previous {
    left: 0;
}
.slider__nav-button.btn_next {
    right: 0;
}
.slider__nav-button i {
	font-size: 2rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.slider__nav-button i > * {
    color: black;
}
.slider__nav-button:hover i {
    color: var(--main-orange);
}
/* RESPONSIVE */
@media only screen and (max-width: 950px) {
    .dlt_carousel_cat_ct {
        max-width: 88%;
    }
	.dlt_carousel_cat_ct h2 {
		font-size: 2rem;
	}
    .slider-wrapper {
        position: relative;
    }
    .slider__item {
        max-width: calc(50% - 10px - 0px + 10px/2);
        min-width: calc(50% - 10px - 0px + 10px/2);
    }
	.slider__item span {
		font-size: 1.5rem;
	}
}
@media only screen and (max-width: 750px) {
    .dlt_carousel_cat_ct {
        max-width: 60%;
    }
    .slider-outer-shell {
        margin: 0 auto;
    }
    .slider__item {
        max-width: calc(100% - 10px - 0px + 10px/1);
        min-width: calc(100% - 10px - 0px + 10px/1);
    }
}
@media only screen and (max-width: 650px) {
	.dlt_carousel_cat_ct h2 {
		font-size: 1.8rem;
	}
}
@media only screen and (max-width: 600px) {
    .dlt_carousel_cat_ct {
        max-width: 78%;
    }
	.slider__item span {
		font-size: 1.2rem;
	}
}
@media only screen and (max-width: 550px) {
    .dlt_carousel_cat_ct {
        max-width: 85%;
    }
}
@media only screen and (max-width: 500px) {
	.slider-wrapper {
		margin: 0 45px;
	}
}
@media only screen and (max-width: 400px) {
	.dlt_carousel_cat_ct {
        max-width: 95%;
    }
}