/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #ffffff;
    color: #433F3C;
    cursor: pointer;
    padding: 10px 10px 10px 35px;
    width: 100%;
    text-align: left;
    text-indent: -30px;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ecebeb;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 15px 0px 0px 35px;
    display: none;
    background-color: white;

}

.accordion:before {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #433F3C;
    float: left;
    margin-right: 30px;
}

.accordion.active:before {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
