/* This file has been created to fix an issue where CSS isn't loaded on conference pages */
/* committee */
.committee_element button[aria-expanded="false"]::after {
    content: '+ Read More';
}
.committee_element button[aria-expanded="true"]::after {
    content: '- Read Less';
}
.committee_element div.bio.collapse:not(.show) {
    display: block;
    height: 100px;
    overflow: hidden;
}
.committee_element div.bio.collapse:not(.show)::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    height: 30px;
    bottom: 0px;
    background: linear-gradient(0, var(--lightestGrey) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.committee_element div.bio.collapsing {
    height: 100px;
}
