.accordion-container {
    border: solid;
    border-width: .25px;
    border-radius: 8px;
    border-color: var(--active-color);
    margin-bottom: 12px;
}

.accordion {
    cursor: pointer;
    padding: 12px;
    width: 100%;
    margin: auto;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.accordion:after {
    content: 'More info (+ recordings) \25BC \00A0';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\25B2\00A0";
}

.panel {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}