:root {
    --e-table-div-with-progress-orange: #FFB645;
    --e-table-div-with-progress-red: #FA4886;
    --e-table-div-with-progress-purple: #BC5CDA;
    --e-table-div-with-progress-blue: #0391CE;
    --e-table-div-with-progress-greenblue: #03CEB6;
    --e-table-div-with-progress-green: #70E713;
    --e-table-div-with-progress-green-esanj: #2EBB9D;
    --e-table-div-with-progress-gray: #e4e4e4;
}

.e-table-div-with-progress {
    border: 1px solid var(--e-table-div-with-progress-gray);
    border-radius: 10px;
    overflow: hidden;
}

.e-table-div-with-progress .header {
    background: #F8F9FC;
    font-size: 20px;
}

.e-table-div-with-progress .r {
    display: flex;
    border-bottom: 1px solid  var(--e-table-div-with-progress-gray);
    min-height: 50px;
}

.e-table-div-with-progress .r .item {
    border-right: 1px solid  var(--e-table-div-with-progress-gray);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-table-div-with-progress .r .item:nth-child(1) {
    width: 15%;
    font-size: 18px;
    font-weight: 600;
}

.e-table-div-with-progress .r .item:nth-child(2) {
    width: 7%;
    font-size: 18px;
    font-weight: 600;
}

.e-table-div-with-progress .r .item:nth-child(3) {
    width: 70%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.e-table-div-with-progress .r .item:nth-child(3) .grids, .e-table-div-with-progress .r .item:nth-child(3) .numbers {
    display: flex;
    width: 100%;
    position: relative;
    bottom: -4px;

}

.e-table-div-with-progress .r .item:nth-child(3) .grids .grid, .e-table-div-with-progress .r .item:nth-child(3) .numbers .number {
    width: 100%;
    display: inline-block;
    text-align: center;
}
.e-table-div-with-progress .r .item:nth-child(3) .grids .grid{

    height: 50px;
    position: relative;
}
.e-table-div-with-progress .r .item:nth-child(3) .grids .grid:before{
    content: '';
    width: 1px;
    height: 50px;
    background:  var(--e-table-div-with-progress-gray);
    position: absolute;
    left: 0;
}
.e-table-div-with-progress .r .item:nth-child(3) .progress {
    background: gray;
    position: absolute;
    height: 20px;
    left: 0;
    width: 40%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1;
}
.e-table-div-with-progress .r .item:nth-child(3) .progress::before{
    content: attr(data-label);
    position: absolute;
    color: white;
    right: 10px;
    font-size: 13px;
    font-weight: 500;
    top:1px
}

.e-table-div-with-progress .r .item:nth-child(3) .progress.orange {
    background: var(--e-table-div-with-progress-orange);
}
.e-table-div-with-progress .r .item:nth-child(3) .progress.red {
    background: var(--e-table-div-with-progress-red);
}
.e-table-div-with-progress .r .item:nth-child(3) .progress.purple {
    background: var(--e-table-div-with-progress-purple);
}
.e-table-div-with-progress .r .item:nth-child(3) .progress.blue {
    background: var(--e-table-div-with-progress-blue);
}
.e-table-div-with-progress .r .item:nth-child(3) .progress.greenblue {
    background: var(--e-table-div-with-progress-greenblue);
}
.e-table-div-with-progress .r .item:nth-child(3) .progress.green {
    background: var(--e-table-div-with-progress-green);
}
.e-table-div-with-progress .r .item:nth-child(3) .progress.green-esanj {
    background: var(--e-table-div-with-progress-green-esanj);
}

.e-table-div-with-progress .r .item:nth-child(4) {
    width: 8%;
    font-size: 18px;
    font-weight: 600;
}
.e-table-div-with-progress .r .item.t15:nth-child(4) {
    width: 15%;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-table-div-with-progress .r .item:nth-child(1) {
        width: 25%;
        font-size: 14px !important;
        font-weight: 600;
    }

    .e-table-div-with-progress .r .item:nth-child(2) {
        width: 10%;
        font-size: 14px !important;
        font-weight: 600;
    }

    .e-table-div-with-progress .r .item:nth-child(3) {
        width: 50%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .e-table-div-with-progress .r .item:nth-child(4) {
        width: 25% !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    .e-table-div-with-progress .r .item:nth-child(3) .grids .grid::before {
        display: none;
    }
    .e-table-div-with-progress .r.header .item:nth-child(3) {

        font-size: 14px !important;
    }
}


/* RTL */
[dir="rtl"] .e-table-div-with-progress .r .item:nth-child(3) .progress::before {
    left: 10px;
    right: unset;
}
[dir="rtl"] .e-table-div-with-progress .r .item:nth-child(3) .progress {
    left: unset;
    right: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
