﻿#ficheContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    grid-gap: 3rem;
    padding: 3rem 10%;
}

#CoverColumn {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 1.5rem;
    flex-shrink: 0;
    width: 27rem;
}

#coverContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#cover {
    width: 100%;
    border-style: solid;
    border-color: var(--baseLightGray);
    border-width: 1px;
    aspect-ratio: 3.5/5;
    box-sizing: border-box;
}

.filigraneEpuise {
    font-size: 7rem;
}

#CoverNavigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: flex-start;
    height: 10rem;
    grid-gap: 1rem;
    margin-top: 0.5rem;
}

    #CoverNavigation img {
        height: 100%;
        cursor: pointer;
        border-style: solid;
        border-width: 2px;
        border-color: transparent;
        box-sizing: border-box;
    }

        #CoverNavigation img:hover, .CoverSmallSelected {
            border-color: var(--bleuClair) !important;
        }

#FicheEAchat {
    background-color: var(--bleuClair);
    border-color: var(--bleuClair);
    border-style: solid;
    border-width: 1px;
    padding: 0.3rem 1rem;
    color: white;
    font-size: 0.8rem;
    border-radius: 0.3rem;
    font-size: 1.2rem;
}

    #FicheEAchat:hover {
        background-color: transparent;
        color: var(--bleuClair);
    }

#ficheDetails {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 1rem;
}

    #ficheDetails h3 {
        margin-bottom: 0;
    }

#FicheMentionsLibres {
    font-size: 1.2rem;
}

#FicheComplement {
    display: none;
}

.FicheAvecComplement {
    display: block !important;
}

.InnerLink {
    font-style: italic;
    text-decoration: underline;
}

#FicheTM {
}

#FicheTMTitle {
    font-weight: bold;
}

.LigneTM {
    font-size: 0.9rem;
}

.LigneTMTitre {
    font-style: italic;
}

#FichePDFS {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 2rem;
}

    #FichePDFS img {
        height: 3.5rem;
    }

@media (orientation:portrait) {
    #ficheContainer {
        flex-direction: column;
    }

    #CoverColumn {
        width: 100%;
    }
}
