:root{
    --e-table-with-progress-one-green:#2ABB9C;
}
.e-table-with-progress-one table,.e-table-with-progress-one table th,.e-table-with-progress-one table td {
    border: 1px solid #D7E4EE;
    border-collapse: collapse;
}
.e-table-with-progress-one {
    border: 1px solid #D7E4EE;
    border-radius: 10px !important;
    overflow: hidden;
}
.e-table-with-progress-one table {
    width: 100%;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

}
.e-table-with-progress-one table thead {
    background: #F8F9FC;
}
.e-table-with-progress-one table thead tr th {
    font-size: 16px;
    padding: 5px 10px 5px 10px ;
    font-weight: 500;
    text-align: center;
}
.e-table-with-progress-one table thead tr th:first-child {
    text-align: left ;
}
.e-table-with-progress-one table tbody td {
    font-size: 18px;
    padding: 5px 10px 5px 10px;
    font-weight: 300;
    text-align: center;
    height: 30px;
}
.e-table-with-progress-one table tbody tr td:first-child{
    text-align: left;
}
.e-table-with-progress-one table tbody tr td:last-child{
    width: 60%;
    position: relative;
}
.e-table-with-progress-one table tbody tr td:last-child .progress-bar {
    height: 13px;
    position: absolute;
    left: 0;
    background: #2ABB9C;
    top: calc(50% - 6.5px);
    overflow: unset;
}
.e-table-with-progress-one table tbody tr td:last-child .progress-bar:before{
    content: attr(data-value);
    font-size: 10px;
    background: white;
    padding: 5px;
    border-radius: 5px;
    border:1px solid #E4E4E4;
    position: absolute;
    right: 0;
    top: -5px;
}
.e-table-with-progress-one .table .ranges {
    display: flex;
    justify-content: space-between;
}
.e-table-with-progress-one .ranges {
    display: flex;
    justify-content: space-between;
}
/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-table-with-progress-one table thead tr th{
        padding: 10px 5px;
        font-size: 14px;
    }

    .e-table-with-progress-one table thead tr th:last-child{
        display: none;
    }
    .e-table-with-progress-one table tbody tr td{
        padding: 10px 5px;
        font-size: 14px;
    }
    .e-table-with-progress-one table tbody tr td:last-child{
        display: none;
    }
}



/* RTL */
[dir="rtl"] .e-table-with-progress-one table thead tr th:first-child {
    text-align: right;
}
[dir="rtl"] .e-table-with-progress-one table tbody tr td:first-child{
    text-align: right;
}
[dir="rtl"] .e-table-with-progress-one table tbody tr td:last-child .progress-bar {
    left: unset;
    right: 0;
}
[dir="rtl"] .e-table-with-progress-one table tbody tr td:last-child .progress-bar:before{
    right: unset;
    left: 0;
    top: -7px;
}
