.charteWave{
    color: black;
}
.charteWave summary{
    font-size: 24px;
    color: black;
    cursor: pointer;
}
.charteWave div{
    font-size: 16px;
    color: black;
}
.charteWave h3{
    font-size: 20px;
}
.charteWave h4{
    font-size: 18px;
}
.charteWave table td ul li{
    text-align: left;
}

ul li {
    list-style: initial;
}

table ul li {
    list-style: none;
}
@media screen and (max-width:767px) {
    .charteWave summary{
        font-size: 20px;
    }
    .charteWave div{
        font-size: 14px;
    }
    .charteWave h3{
        font-size: 18px;
    }
    .charteWave h4{
        font-size: 16px;
    }
}
.histoContainer{
    width: 100%;
    
}
.histoContainer table{
    width: 100%;
}
.histoContainer td,th{
    padding: 15px;
}
.charteWave summary{
    padding: 10px 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: baseline;
}
.charteWave summary img {
    width: 10px;
    margin-right: 10px;
    top: 5px;
}
.charteWave details summary>img{
    transform:rotate(0deg);
    transition:transform ease-in-out .1s
}
.charteWave details[open] summary>img{
    transform: rotate(90deg);
    transition: transform ease-in-out .1s;
}