.accordion {
    background-color: #375a15;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.1s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 10px;
}

.accordion span {
    color: white;
    text-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

.accordion img {
    width: 30px;
}

.accordion span {
    font-size: 13pt;
}

.active_ /*,
.accordion:hover */ {
    background-color: #5e9725;
}

.active_ > span /*,
.accordion:hover>span */ {
    color: white;
}

.open {
    max-height: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.panel {
    width: 100%;
    background-color: #2d4713;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.1s ease-out;
    display: flex;
    align-items: center;
}

.panel p {
    color: white;
    font-size: 12pt;
}