﻿
.it-tasks-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.it-tasks-no-values {
    padding: 15px;
    color: var(--bg_color_gray);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.it-tasks-tile {
    width: 200px;
    height: 60px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: var(--tile_bg);
    color: var(--tile);
}
.it-tasks-tile .link{
    cursor: pointer;
}

    .it-tasks-tile a {
        line-height: 60px;
        display: flex;
        flex-direction: row;
        cursor: pointer;
    }

    .it-tasks-tile .counter {
        font-size: 30px;
        min-width: 50px;
        text-align: right;
        margin-right: 10px;
    }


    .it-tasks-tile .text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

     