#js-accordion [aria-hidden="false"] {
    display: none;
}

#js-accordion [type="button"]:before {
      line-height: 0;
	padding-right: .25em;
}

#js-accordion [type="button"]:hover {
    cursor: pointer;
}

/*#js-accordion [type="button"]:hover:before {
    content: "*";
}*/

 #js-accordion  [type="button"][aria-expanded="false"]:before {
        content: "+"; 
    }
#js-accordion  [type="button"][aria-expanded="true"]:before {
        content: "\2212"; /* - */
    }
/*[type="button"][aria-expanded="false"]:hover:before,
[type="button"][aria-expanded="false"]:focus:before {
    content: "+";
}

[type="button"][aria-expanded="true"]:hover:before,
[type="button"][aria-expanded="true"]:focus:before {
    content: "-";
}

@media (pointer: coarse) {
    [type="button"][aria-expanded="false"]:before {
        content: "+";
    }
    [type="button"][aria-expanded="true"]:before {
        content: "-";
    }
}*/
