slider .elementTableauBord {
    background-color: white;
    width: 1000px;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

#slider {
    width: 100%;
    height: 380px;
    margin: 0;
    padding: 0;
    display: flex;
}

#slider contenu-slider {
    max-width: 100%;
    height: 380px;
    position: absolute;
    left: 0;
    display: none;
}

.sliderFlecheDroite {
    position: absolute;
    right: 15px;
    width: 42px;
    height: 42px;
    top: 169px;
    background-image: url("../../images/commun/sliderFlecheDroite.png");
    background-size: contain;
    opacity: 32%;
}

.sliderFlecheGauche {
    position: absolute;
    left: 15px;
    width: 42px;
    height: 42px;
    top: 169px;
    background-image: url("../../images/commun/sliderFlecheGauche.png");
    background-size: contain;
    opacity: 32%;
}

.sliderFlecheDroite:hover {
    opacity: 50%;
}

.sliderFlecheGauche:hover {
    opacity: 50%;
}

#dotGroup {
    position: absolute;
    margin: 0;
    padding: 0;
    height: 16px;
    bottom: 15px;
}

.dot {
    height: 16px;
    width: 16px;
    background-color: #8b8a8a;
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px 0 7px;
    opacity: 32%;
}

.dot:hover {
    opacity: 50%;
}

.dot.actif {
    opacity: 50%;
    pointer-events: none;
}

.enTransition {
    pointer-events: none;
}