.acordeon input, label {
    display: flex;
    justify-content: center;
}

.acordeon input {
  display: none;  
}


.acordeon_titulo {
    width: 100%;
    font-weight: 100;
    color: #69A021;
    text-decoration: overline underline;
    text-decoration-color: #69A021;
    cursor: pointer;
    padding: 10px 0px;
}



.acordeon_img{
    display: none;
}



.acordeon  input:checked ~ .acordeon_img img{
    width: 100px;
    margin: 20px;

}

.acordeon input:checked ~ .acordeon_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}