#contenu{
    box-sizing: border-box;
    display: flex;
    gap: 1vw;
    padding: 10vh 0 0 0 !important;
    width: 100%;
}

section:not(#contenu, #menu-lateral){
    position: relative;
    width: 75%;
}
article{
    width: 100% !important;
}

#menu-lateral{
    position: sticky;
    box-sizing: border-box;
    top: 10vh;
    padding: 5vh 3vw;
    background-color: var(--bleu-2);
    color: var(--bleu-4);
    width: 20%;
    height: 90vh;
    overflow-x: hidden ;
    text-overflow: ellipsis;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bleu-5) var(--bleu-1);
}

#menu-lateral::-webkit-scrollbar {
    width: 12px;
}
#menu-lateral::-webkit-scrollbar-track {
    background: var(--bleu-1);
    border-radius: 100vw;
}
#menu-lateral::-webkit-scrollbar-thumb {
    background: var(--bleu-5);
    border-radius: 100vw;
}
#menu-lateral::-webkit-scrollbar-button {
    display: none;
}

#menu-lateral nav{
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
}

#menu-lateral a{
    color: var(--bleu-5);
    text-decoration: none;
}
.consultation {
    font-weight: bold;
}
#menu-lateral span{
   padding: 3vh 0;
    cursor: default;
}

.dl-conteneur{
    text-align: center;
    padding-top: 2vh;
    padding-bottom: 5vh;
}
.dl{
    position: relative;
    background-color: var(--bleu-2);
    color: var(--bleu-5);
    padding: 3vh 3vw;
    border-radius: 100vw;
    cursor: pointer;
    text-decoration: none;
    transition: all .5s ease-out;
    font-size: 1.2vw;
}
.dl:hover{
    background-color: var(--bleu-3);
}
.dl span{
    margin-left: 1vw;
}

article i{
    color: var(--bleu-5);
}
article p {
    text-align: justify;
}
p a{
    color: var(--bleu-5);
}

ol>li {
    font-weight: bold;
}
ol>li>ul>li{
    font-weight: normal;
    font-style: italic;
}

.attention:before{
    content: "⚠️ Attention : ";
    font-weight: bold;
}
.note:before{
    content: "📝 Note : ";
    font-weight: bold;
}
