#cc-list-wrapper {
    font-family: 'Open Sans';
    margin-top: 4em;
}

#cc-list-wrapper h1,
#cc-list-wrapper h2,
#cc-list-wrapper h3,
#cc-list-wrapper h4 {
    font-family: 'Raleway';
    font-weight: 300;
    letter-spacing: .06em;
}

#cc-list-wrapper h1,
#usecase-filters h2 {
    color: var(--ccl-color);
    display: flex;
    align-items: center;
}

#cc-list-wrapper h1 img {
    height: 2.5em;
    width: 2.5em;
    fill: var(--ccl-color);
    margin-right: .5em;
}

#cc-list-wrapper h2 {
    margin-bottom: 1em;
}

#filter-bar {
    position: relative;
    margin: 1em 0 2em 0;
}

#cc-filters {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    padding: 2em;
    background: #fff;
    border: 1px solid var(--ccl-color);
    clip-path: inset(0 0 100% 100%);
    box-shadow: -10px 10px 10px 5px rgb(0 0 0 / 10%);
    transition: all 400ms ease-in-out;
}

@media only screen and (orientation: landscape) {
    #cc-filters {
        width: 45vw;
    }
}

#cc-filters.open {
    clip-path: inset(0 0 -50px -50px);
}

#close-filter-button {
    display: block;
    cursor: pointer;
    font-size: 2.5em;
    line-height: .7em;
    margin-top: -.2em;
    font-weight: 100;
    color: var(--ccl-color);
}

#cc-filters h2 img {
    height: 1.5em;
    width: 1.5em;
    margin-right: .5em;
    margin-left: -.2em;
}

.large-button {
    border: 1px solid var(--ccl-color);
    font-size: 1.5em;
    font-family: 'Open Sans';
    font-weight: 100;
    margin-bottom: 2em;
    padding: 0.3em 0.8em;
    color: var(--ccl-color);
    background: transparent;
    font-variant: small-caps;
    display: inline-block;
    transition: all 200ms ease-in-out;
}

.large-button:hover {
    background-color: var(--ccl-color);
    color: #fff;
}

.filter-button-wrapper {
    margin-bottom: 1em;
}

.filter-wrapper button {
    border: 0 none;
    color: var(--ccl-color);
    background-color: transparent;
    font-variant: small-caps;
    font-size: 1.2em;
    text-decoration: underline;
    padding: 0;
}

.filter-wrapper .filter-container {
    display: none;
}

.filter-wrapper.open .filter-container {
    display: block;
}

.filter-wrapper .filter-toggle {
    cursor: pointer;
}

.filter-wrapper.open .plus.icon::after {
    transform: rotate(0);
}

.filter-content {
    font-size: 1.2em;
    margin-bottom: 2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14em, 1fr));
    align-items: start;
}

.filter-content.loose {
    gap: .5em .5em;
}

.filter-group-header {
    grid-column: 1/-1;
    margin-bottom: -.5em;
    margin-top: 1em;
    font-family: 'Raleway';
    font-weight: 200;
    letter-spacing: .06em;
}

.filter-group-start {
    grid-column-start: 1;
}

.filter-content input[type="checkbox"] {
    margin-right: .5em;
}

.filter-content img {
    width: 2em;
    height: 2em;
    margin: 0 .5em 0 0;
}

.filter-content label {
    display: inline;
}

#intro {
    font-size: larger;
    margin-bottom: 4em;
}

#intro ul {
    font-size: initial;
}

#tabulator-table.tabulator {
    border: 0 none;
    background-color: transparent;
    font-size: 1.2em;
}

#tabulator-table.tabulator .tabulator-header {
    background-color: transparent;
    border: 0 none;
}

#tabulator-table.tabulator .tabulator-header .tabulator-col {
    border-bottom: 4px double var(--ccl-color);
    border-right: 0 none;
    background: transparent;
}

#tabulator-table.tabulator .tabulator-header .tabulator-col-content {
    padding: .5em 0;
}

#tabulator-table.tabulator .tabulator-header .tabulator-col-sorter {
    right: .5em;
}

#tabulator-table.tabulator .tabulator-row {
    background-color: transparent;
}

#tabulator-table.tabulator .tabulator-cell {
    border-right: 0 none;
    border-top: 1px solid var(--ccl-color);
    padding: .5em .5em .5em 0;
}

#tabulator-table.tabulator .tabulator-row .tabulator-responsive-collapse {
    border: 0 none;
    padding: 0 .5em 2em 0;
}

#filter-summary {
    margin-right: 1em;
}

#filter-summary table tr td {
    vertical-align: top;
}

#filter-summary table tr td:first-of-type {
    padding-right: 10px;
}


#tabulator-table.tabulator .tabulator-row .tabulator-responsive-collapse table {
    font-size: smaller;
}

#filter-summary table tr td strong,
#tabulator-table.tabulator .tabulator-row .tabulator-responsive-collapse td>strong {
    font-weight: 300;
}

#tabulator-table.tabulator .usecase-title a,
#tabulator-table.tabulator .tabulator-responsive-collapse table a {
    color: var(--ccl-color);
}