  .accordion__button {
    color: #990000;
    cursor: pointer;
    width: 100%;
    border: none;
    border-bottom: 1px solid #828282;
    text-align: left;
    outline: none;
    background: transparent
        url("https://www.stonybrookchildrens.org/sites/default/files/accordion-plus.png")
        no-repeat left center;
    background-size: 30px;
    padding: 1rem 0 1rem 3rem;
    font-size: 1.3em;
}

.accordion__button.active {
    background: transparent
        url("https://www.stonybrookchildrens.org/sites/default/files/accordion-minus.png")
        no-repeat left center;
    background-size: 30px;
}

.accordion__panel {
    padding: 1rem 0 0 3rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
