details {
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 25px;
    position: relative;
    margin-bottom: 10px;
}

details img {
    width: 40px !important;
    margin-right: 15px;
}

details summary .titre {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    position: relative;
    left: 50px;
    width: 90%;
    display: flex;
}

details summary .lire,
details .content .lire-moins {
    font-size: 12px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 4;
}

details summary .lire svg,
details .content .lire-moins svg {
    margin-left: 10px;
}

details:after {
    content: '';
    background: #ddd;
    position: absolute;
    top: 25px;
    bottom: 25px;
    width: 2px;
    left: 45px;
    z-index: 1;
}

details summary{
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 2;
}

details summary{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

details[open] .lire {
    display: none;
}

details .content {
    padding-right: 60px;
    padding-left: 60px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

details .content img {
    width: 250px !important;
}

details .content .lire-moins {
    position: absolute;
    right: 0;
    cursor: pointer;
}

details .content .lire-moins svg {
    transform: rotate(-90deg);
}