#facet {
    position: sticky;
    top: 20%;
    align-self: start;
    width: 18rem;
    background-color: white;
    padding: 1rem;
    display: grid;
    gap: 1rem;

    details {
        summary {
            padding: 2px 6px;
            cursor: zoom-in;
            list-style-type: revert;

            &::marker { color: var(--color-1); }
        }

        &[open] summary { cursor: zoom-out; }
    }

    h3 {
        width: 100%;
        color: black;
        text-align: left;
        margin: 0;
    }

    hr { width: 100%; }

    .radio {
        display: flex;
        accent-color: var(--color-1);

        .radio-list { display: grid; }
    }

    input:disabled {
        background-color: ghostwhite;
        color: lightgray;
    }

    > button { justify-self: center; }
}
