:root {
    --e-progress-bar-gradient-green: #2ABB9F;
    --e-progress-bar-gradient-blue: #1AB6E6;
    --e-progress-bar-gradient-orange: #FF8917;
}

.e-progress-bar-gradient {
    background: #F8F9FC;
    padding: 15px 15px 35px;
    border-radius: 10px;
    position: relative;
    direction: rtl;
}
.e-progress-bar-gradient > .labels{
    font-size: 18px;
    margin-bottom: 5px;
}
.e-progress-bar-gradient .labels {
    display: flex;
    min-width: 100% !important;
    justify-content: space-between;
}

.e-progress-bar-gradient .progress {
    height: 30px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg , var(--e-progress-bar-gradient-green) , var(--e-progress-bar-gradient-blue) , var(--e-progress-bar-gradient-green));
    border-radius: 40px;
}
.e-progress-bar-gradient .progress  .labels .label{
width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
}
.e-progress-bar-gradient .progress .value {
    position: absolute;
    width: 26px;
    height: 25px;
    bottom: 10px;
}
.e-progress-bar-gradient .progress .value::before{
    content: url("data:image/svg+xml,%3Csvg width='26' height='23' viewBox='0 0 26 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 0L25.9904 22.5L0.00961876 22.5L13 0Z' fill='%23FF8917'/%3E%3C/svg%3E%0A");;
    position: absolute;
}
/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-progress-bar-gradient > .labels {
        font-size: 11px;
    }
    .e-progress-bar-gradient .progress .labels .label {
        width: 100%;
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 9px;
    }
}


/* RTL */
.e-progress-bar-gradient , .e-progress-bar-gradient *{
    direction: rtl;
}