.accordion {
    cursor: pointer;
    width: 100%;
    height: 9rem;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    align-items: center;
    padding: 0 0;
    white-space: unset;
    line-height: 3rem;
}

.active, .accordion:hover {
    background: #ccc;
    padding-left: 1.7rem;
}

.accordion:active{
    padding-left: 1.7rem;
}

.accordion.active{
    padding-left: 1.7rem;
}

.accordion:not(.active).accordion:not(:hover){
    background: transparent;
}

.accordion:after {
    content: '\002B';
    color: #bf1829;
    font-weight: bold;
    /*float: right;*/
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}