/* CSS Document */
/* Wrapper */
.detailse-slide-wrapper{
	width: 100%;
	padding-top: 0px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 30px;
}

/* Main slider box */
.detailse-slide-container{
    width:100%;
    max-width:1200px;
    height:450px;
    margin:auto;
    overflow:hidden;
    position:relative;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

/* Wave effect bottom */
.detailse-slide-container::after{
    content:"";
    position:absolute;
    bottom:-40px;
    left:0;
    width:100%;
    height:80px;
    background:white;
    border-radius:50% 50% 0 0;
}

/* Track */
.detailse-slide-track{
    display:flex;
    height:100%;
    transition:transform 0.6s ease;
}

/* Each slide */
.detailse-slide-item{
    min-width:100%;
    height:100%;
}

.detailse-slide-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Arrows */
.detailse-slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.6);
    color:#fff;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    z-index:10;
    transition:.3s;
}

.detailse-slide-arrow:hover{
    background:#000;
}

.detailse-slide-prev{ left:15px; }
.detailse-slide-next{ right:15px; }

/* Responsive */
@media(max-width:768px){

.detailse-slide-container{
    height:260px;
}

.detailse-slide-arrow{
    width:35px;
    height:35px;
    font-size:18px;
}

}

