.slider-C-container, .slider-C-modal-container {
    width: 100%;
    position: relative;
}

.slider-C, .slider-C-modal {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.slider-C {
    margin-bottom: 45px;
}

.slider-C-modal {
    margin-bottom: 25px;
}

.slide-C {
    height: 100%;
}

.slide-C, .slide-C-modal {
    display: none;
    
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.slide-C {
    width: 55%;
}

.slide-C-modal {
    width: 49%;
}

.slide-C.active, .slide-C-modal.active {
    display: block;
    text-align: center;
}

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

.slide-C-modal img {
    width: 95%;
    object-fit: cover;
}

.slide-C img.productPageImg:hover {
    cursor: zoom-in;
}

.thumbnails-slider-C {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.thumbnail-slider-C {
    width: 15%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s;
    margin: 0 25px;
}

.thumbnail-slider-C.active,
.thumbnail-slider-C:hover {
    opacity: 0.6;
}

/* Flèches */
.prev-slider-C, .next-slider-C, .prev-slider-C-modal, .next-slider-C-modal {
    cursor: pointer;
    position: absolute;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    user-select: none;
    transition: 0.6s ease;
}

.prev-slider-C, .next-slider-C {
    top: 30%;
}

.next-slider-C, .next-slider-C-modal {
    right: 10%;
    border-radius: 3px 0 0 3px;
}

.prev-slider-C, .prev-slider-C-modal {
    left: 10%;
    border-radius: 3px 0 0 3px;
}

/* Barre de navigation - modale */
.navbar-slider-C-modal {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.navigation-point-C-modal {
    height: 10px;
    width: 20%;
    background-color: #BBBBBB;
}

.navigation-point-C-modal.active {
    background-color: #b9a18d;
}

/* RESPONSIVE */ 
@media (max-width : 600px) {
    .slide-C {
        width: 90%;
    } 
    
    .slide-C-modal {
        width: 100%;
    }

    .next-slider-C, .next-slider-C-modal, .prev-slider-C, .prev-slider-C-modal  {
        display: none;
    }

    .thumbnail-slider-C {
        width: 24%;
    }
}