.ISISliderDiv{
    height: 400px;
    width: 600px;
    position: relative;
}
.ISISliderDiv .DIV{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s;
}
.ISISliderDiv img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.ISISliderDiv div.Actif{
    opacity: 1;
}


.ISISliderDiv .BTPrecedant{
    position: absolute;
    left: 0;
    height: 100%;
    width: 10%;
    cursor: pointer;
}
.ISISliderDiv .BTSuivant{
    position: absolute;
    right: 0;
    height: 100%;
    width: 10%;
    cursor: pointer;
}
.ISISliderDiv .Precedant, .ISISliderDiv .Suivant{
    position: absolute;
    top: 50%;
    width: 35%;
    min-width: 50px;
    transform: translateY(-50%) scaleX(0.8);
    fill: #fff;
}
.ISISliderDiv .Precedant{
    left: 5px;
    height: 100%;
    transform: translateY(-50%) scaleX(0.7) rotate(180deg);
}
.ISISliderDiv .Suivant{
    right: 5px;
    height: 100%;
}

.ISISliderDiv .ListePuces{
    position: absolute;
    bottom: 2%;
    width: 100%;
    text-align: center;
}
.ISISliderDiv .Puce{
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    border: 2px solid #4e403a;
    cursor: pointer;
    background-color: #eeeeee00;
    transition: background-color 0.5s;
}
.ISISliderDiv .Puce.Actif{
    background-color: #eeeeee;
}

/*.ISISliderDiv .icon-caret-right-fill:before {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 0;
}
.ISISliderDiv .icon-caret-left-fill:before {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
}*/