.employee{
    width: calc(33.3332% - 13.3332px);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    background: #f7f8fc;
    cursor: pointer;
}

.employeePhoto{
    border-radius: 8px;
    width: 100px;
    height: 100px;  
    margin-right: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.employeePhotoNull{
    flex-shrink: 0;
    background: #b1ec52;
    color: #5e9802;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 22px;

}

.employeeDeadline{
    font-size: 14px;
    border-radius: 4px;
    padding: 6px 10px 7px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.overdue{
    color: #ff4d4f;
}

.employeeDeadline:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ff4d4f;
    border-radius: 50%;
    margin-right: 8px;
}

.almostOverdue{
    color: #faad14;
}

.almostOverdue:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #faad14;
    border-radius: 50%;
    margin-right: 8px;
}

.inOrder{
    color: #52c41a;
}

.inOrder:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #52c41a;
    border-radius: 50%;
    margin-right: 8px;
}

.employeeInfo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.employeePercent{
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}