html .MVM-button {
    font-size: inherit;
    font-family: inherit;
}

/* Ceci est l’état ouvert */
html .module-view-more {
    display: block;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: visibility 0s ease, max-height 1s ease, opacity 0s ease;
    -o-transition: visibility 0s ease, max-height 1s ease, opacity 0s ease;
    -moz-transition: visibility 0s ease, max-height 1s ease, opacity 0s ease;
    transition: visibility 0s ease, max-height 1s ease, opacity 0s ease;
    max-height: 2000px;
    /* nombre magique pour max-height = assez de hauteur */
    visibility: visible;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}


/* Ceci est l’état fermé */
html .module-view-more[aria-hidden=true] {
    display: block;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    -webkit-transition-delay: 1s, 0s, 1s;
    -moz-transition-delay: 1s, 0s, 1s;
    -o-transition-delay: 1s, 0s, 1s;
    transition-delay: 1s, 0s, 1s;
}