/* Si le point est dans la class draggable, la class selectioneur a pour paramètre stroke: orange sinon transparent */
.draggable .selectionneur {
    stroke: orange;
}
/* Taille de police des formules Katex dans les figures */
.figure .katex {
    font-size: 1em;
}
/* Fullscreen */
.figure:fullscreen {
    background-color: white;
    width: 100vw !important;
}
.figure:fullscreen > svg {
    width: auto;
    height: auto;
}

.figure > svg {
    display:block;
    margin:auto;
    width: 70%;
    height:auto;
    max-width:100%;
    max-height:100%;
}

@media screen and (max-width: 600px) {
    .figure > svg {
        display:block;
        margin:auto;
        width:100%;
        height:auto;
        max-width:100%;
        max-height:100%;
    }
    ul.flashcard-list .figure > svg {
        width:70%;
    }
}