
.cell {
    position: absolute;
    top: 0;
    left:0;
    bottom:0; 
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5em;
    color: var(--flex-text-dark);
    font-size: var(--flex-text-sm);
    overflow: hidden;
}

.cell > .content {
    flex-grow: 1;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}

.cell > .content .primary {
    /*color: var(--flex-text-primary-dark);*/
    color: var(--flex-text-primary);
    cursor:pointer;
    font-weight: bold;
    filter: brightness(.5);
}

.cell > .content .primary:hover {
    border-bottom: 2px solid var(--flex-text-primary-dark);
}

.cell > .content.labels {
    justify-content: center;
    text-align: center;
    position: relative;
}

.cell > .content > .checkbox {
    display: flex;
    justify-content: center;
    text-align: center;
}

.cell > .content .checkbox > span {
    font-size: 1.5rem;
    line-height: 1.5em;
}

.cell > .content > .labels > div,
.cell > .content > .labels > span {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: .5em;
}

.cell > .content > .labels > div > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cell .f-loading {
    font-size: .6em;
    margin-right: .25em;
    border-color: #eee;
    border-top-color: var(--flex-text-primary);
}

.cell .f-loading.white {
    border-color: white;
    border-top-color: var(--flex-text-primary);
}
