
.countStatus {
    display: flex;
    align-items: center;
    margin: 0 0 0 40px;
    position: relative;
}

.countStatusInline {
    font-size: 1em;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
}

.countStatus span {
    font-size: 0.85em;
    padding: 5px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 4px solid rgba(255,255,255,0.6);
    background-color: rgba(0,0,0,0.03);
}
.darkmode .countStatus span {
    border-right: 4px solid #000a;
    background-color: rgba(255,255,255,0.08);
}

.countStatusInline span {
    border: none;
    background-color: rgba(255,255,255,0.15);
}
.darkmode .countStatusInline span {
    border-right: 4px solid rgba(57, 57, 57, 0.11);
    background-color: rgba(0,0,0,0.15);
}

.countStatus.countStatusInline span {
    width: 3em;
    padding: 2px !important;
}

.countStatus span:first-of-type {
    padding-left: 15px;
    border-radius: 1em 0 0 1em;
}

.countStatus span:last-of-type {
    border-right: none;
    padding-right: 15px;
    border-radius: 0 1em 1em 0;
}

.countStatus i {
    font-size: 0.60em;
    margin: 0 5px 1px 0;
    border: none !important;
}

.countStatus .tooltip {
    display: none;
    position: absolute;
    top: -30px;
    font-size: 1.3em;
}

.countStatus > span:hover .tooltip {
    display: block;
}

.countStatusInline i {
    font-size: 0.6em;
    margin: 0 2px;
}


.countStatus i.todo {color: #ececec;}
.countStatus i.beingdone {color: #b60fdb;}
.countStatus i.done {color: #0eb9bf;}
.countStatus i.closed {color: #5f5f5f;}





@media (max-width: 899px) {
    .countStatus {
        margin: 5px;
        width: 100%;
    }
}