:root {
    --e-table-with-progress-two-blue: #399EE8;
    --e-table-with-progress-two-blue-light: #93C2E5;
}

.e-table-with-progress-two {
    max-width: 1000px;
    width: 100%;
    /*background: #f6f6f6;*/
    display: flex;
    justify-content: space-between;
}

.e-table-with-progress-two .main-bar {
    width: 69%;
}

.e-table-with-progress-two .side-bar {
    width: 30%;
}

.e-table-with-progress-two .side-bar .r.t {
    background: transparent;
    border-color: transparent;

}

.e-table-with-progress-two .side-bar .r {
    background: #F8F9FC;
    border: 1px solid #D7E4EE;
    margin-bottom: 4px;
    padding: 5px;
    font-weight: 600;
}

.main-bar .r.header {
    display: flex;
    justify-content: space-between;
    text-align: center;
    background: #F8F9FC;
    border: 1px solid #D7E4EE;
}

.main-bar .r.header * {
    width: 100%;
    font-weight: 600;
}

.e-table-with-progress-two .r {
    height: 84px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.e-table-with-progress-two .r-main {
    border: 1px solid #D7E4EE;
    height: calc(100% - 60px);
    position: relative;
}

.e-table-with-progress-two .r-main::before {
    content: '';
    height: 100%;
    width: 2px;
    border-right: 2px dashed #94B2C9;
    position: absolute;
    right: calc(50% - 1px)
}

.e-table-with-progress-two .r.header {
    height: 50px;
    margin-bottom: 5px;
}

.e-table-with-progress-two .main-bar .r-main .r {
    border-bottom: 2px dashed #D7E4EE;
    height: 87px;
    position: relative;
}
.e-table-with-progress-two .main-bar .r-main .r:last-child{
    border-bottom:none;
}

.e-table-with-progress-two .main-bar .r-main .r .progress-main {
    height: 10px;
    background: linear-gradient(to right, var(--e-table-with-progress-two-blue), var(--e-table-with-progress-two-blue-light));
    width: 96%;
    left: 2%;
    position: relative;
    border-radius: 100px;
}

.e-table-with-progress-two .main-bar .r-main .r .progress-value {
    position: absolute;
    top: 4px;
    width: 80px;
    height: 24px;
    border: 2px solid #d7e4ee;
    border-radius: 5px;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 14px;
}

.e-table-with-progress-two .main-bar .r-main .r .progress-angle {
    position: absolute;
}

.e-table-with-progress-two .main-bar .r-main .r .progress-angle::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid orange;
    position: absolute;
    top: -13px;
}

/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-table-with-progress-two * {
        font-size: 14px !important;
        text-align: center;
        line-height: 1.5;
    }

    .e-table-with-progress-two .main-bar .r-main .r {
        height: 67px;
    }

    .e-table-with-progress-two .main-bar .r-main .r .progress-main {
        bottom: -10px;
    }

    .e-table-with-progress-two .main-bar .r-main .r .progress-angle::before {
        top: -4px;
    }
    .e-table-with-progress-two .r {
        height: 64px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        font-size: 20px;
    }
}


/* RTL */
[dir="rtl"] .e-table-with-progress-two .main-bar .r-main .r .progress-main {
    right: 2%;
    left: unset;
}
