/* avis */

.avis {
    width: 60%;
}

.flex {
    display: flex;
    flex-direction: row;
}

.coordonnees {
    flex-grow: 1;
    font-size: 18px;
    line-height: 20px;
    text-align: left;
}

.plan {
    text-align: right;
}

.titre {
    font-size: 30px;
    color: var(--titleColor);
    font-weight: bold;
}

.list_style li img {
    width: 20px;
    height: 20px;
}

.list_style li img {
    width: 20px;
    height: 20px;
}


/* caroussel photos */

div#slider .photos_all {
    overflow: hidden;
}

div#slider figure {
    position: relative;
    width: calc(100% * var(--nbPhoto));
    margin: 0;
    padding: 0;
    font-size: 0;
    text-align: left;
    animation: 15s slidy infinite;
}

div#slider figure img {
    width: calc( 100% / var(--nbPhoto));
    height: auto;
    float: left;
}

@keyframes slidy {
    0% {
        left: 0%;
    }
    20% {
        left: 0%;
    }
    25% {
        left: -100%;
    }
    45% {
        left: -100%;
    }
    50% {
        left: -200%;
    }
    70% {
        left: -200%;
    }
    75% {
        left: -300%;
    }
    95% {
        left: -300%;
    }
    100% {
        left: -400%;
    }
}