:root{
    --e-progress-box-one-green:#2ABB9C;
}
.e-progress-box-one {
    background: #F8F9FC;
    padding: 35px;
    border-radius: 10px;
}
.e-progress-box-one .title{

    font-size: 20px;
    font-weight: 700;
}
.e-progress-box-one .progress-box {
    background: white;
    display: flex;
    height: 35px;
    border-radius: 50px;
    border: 1px solid #D7E4EE;
    margin: 35px 0;
    position: relative;
    width: calc(100% - 80px);
    direction: ltr;

}
.e-progress-box-one .progress-box .progress {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}
.e-progress-box-one .progress-box .progress .progress-bar {
    background: var(--e-progress-box-one-green);
    position: absolute;
    height: 100%;
    width: 0%;
    z-index: 0;
}
.e-progress-box-one .progress-box .progress .labels {
    display: flex;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
.e-progress-box-one .progress-box .progress .labels .label{
    width: 100%;
    text-align: center;
    font-weight: 700;
}
.e-progress-box-one .progress-box .progress .labels .label {
    width: 100%;
    text-align: center;
    font-weight: 700;
    border-right: 1px solid #E4E4E4;
    font-size: 15px;
}
.e-progress-box-one .progress-box .progress .labels .labe:last-child{
    border-right: none;
}
.e-progress-box-one .progress-box .value-symbol {
    position: absolute;
    right: -80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--e-progress-box-one-green);
    left: unset ;
}
.e-progress-box-one .progress-box .value-symbol .symbols {
    font-size: 14px;
    font-weight: 600;
    bottom: -5px !important;
    margin-left: 2px;
    position: relative;
    color: var(--e-progress-box-one-green);
}

/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-progress-box-one .progress-box {
        width: 100%;
        left: 0 !important;
        margin-top: 50px;
    }
    .e-progress-box-one .progress-box .value-symbol {
        position: absolute;
        right: unset;
        top: -30px;
        left: 0px;
        font-size: 14px;
        background: white;
        width: unset;
        padding: 2px 5px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        border: 1px solid #D7E4EE;

    }
    .e-progress-box-one .progress-box .value-symbol .symbols {
        font-size: 10px;
        bottom: -1px !important;
    }
    .e-progress-box-one .progress-box {
        height: 25px;
    }
    .e-progress-box-one .progress-box .progress .labels .label {
        font-size: 12px;
    }

    .e-progress-box-one {
        padding: 15px;
    }
}

[dir="rtl"] .e-progress-box-one .progress-box {
    left: -80px;
}
