.texte-conteneur {
    position: absolute;
    top: calc(60px + var(--lecteur-height));
    left: 50%;
    min-width: 645px;
    width: 45%;
    height: calc(100% - 120px - var(--lecteur-height));
    transform: translateX(-50%);
    background-color: #FFFAFA;
    z-index: 1;
    box-shadow: 0 3px 68px var(--ombre-accueil);
    padding: 0 40px;
    font-family: "Cormorant Garamond", serif;
    color: #585653;
    font-weight: 600;
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.texte-conteneur::-webkit-scrollbar {
    display: none;
}

.texte-conteneur h2,
.texte-conteneur h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: var(--noir);
}

.spacer {
    width: 100%;
    height: 24px;
    transition: .6s;
}

.paroles {
    width: 45%;
    padding: 10px;
    color: var(--noir);
    margin-bottom: 20px;
    transition: .8s ease;
}

.paroles p {
    margin: 0;
    font-size: .9em;
    font-weight: normal;
    text-align: left;
}

.ligne-centrale {
    width: 2px;
    background: #585653;
    opacity: .5;
    margin: 1em 5px 35px 5px;
}

#texte-original {
    border: 2px var(--couleur-dominante) solid;
    border-radius: 12px;
    background-color: #F5F2EC;
    color: #585653;
}

#texte-detourne,
#texte-original-alt {
    border: 2px transparent solid;
    border-radius: 12px;
}

#trans-comparee-titre {
    display: none;
}

@media only screen and (max-width: 700px), (max-height: 500px) {
    .tete {
        z-index: 2;
    }

    .texte-conteneur {
        top: 60px;
        width: calc(100% - 30px);
        margin: 0;
        height: calc(100vh - 60px);
        padding: 0 15px;
        font-size: 1.1em;
        font-weight: 400;
        overflow-x: hidden;
        -ms-overflow-x: hidden;
        min-width: 0;
    }

    #trans-comparee-titre {
        display: block;
    }

    .trans-scroll-cont {
        scroll-behavior: smooth;
        width: 100%;
        overflow-x: scroll;
        margin-left: -15px;
        padding: 0 15px;
    }

    .transcritpion-comparee-conteneur {
        width: 190%;
        transition: .6s;
        overflow-x: scroll;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .transcritpion-comparee-conteneur::-webkit-scrollbar {
        display: none;
    }

    #texte-detourne {
        border-color: #666666;
    }

    #texte-original,
    #texte-detourne,
    #texte-original-alt{
        border-width: 3px;
    }

    .ligne-centrale {
        background-color: transparent;
    }

    .paroles {
        width: 100%;
    }

    .fond-gauche,
    .fond-droit {
        display: none;
    }

    .spacer {
        height: calc((var(--rangee-mobile-height) * 3) + 15px);
    }

}