
.tlcsf {
    width: 100%;
    color: #fff;
    font-family: inherit;
}

.tlcsf__label {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.tlcsf__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.tlcsf__pill {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.tlcsf__pill:hover {
    background: #111;
}

.tlcsf__pill:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.tlcsf__pill.is-active {
    border-color: rgba(255,255,255,.38);
    background: #101010;
}

.tlcsf__pill:active {
    transform: translateY(1px);
}

.tlcsf__dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
}

.tlcsf__dot--all {
    background: linear-gradient(90deg, #2bc63f 0 33%, #f3d21b 33% 66%, #c83026 66% 100%);
}

.tlcsf__dot--full {
    background: #2bc63f;
}

.tlcsf__dot--no-report {
    background: #c83026;
}

.tlcsf__count {
    margin-top: 11px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.tlcsf__empty {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(0,0,0,.32);
    font-size: 13px;
    font-weight: 700;
}

.tlcsf-item-hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .tlcsf__controls {
        align-items: stretch;
    }

    .tlcsf__pill {
        justify-content: flex-start;
    }
}
