:root {
    --e-progress-box-two-green: #2EBB9D;
}

.e-progress-box-two {
    border: 1px solid #E4E4E4;
    border-radius: 5px;
}

.e-progress-box-two .header {
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    background: #F5F5F5;
    font-weight: 600;
}

.e-progress-box-two .content {
    display: flex;
    padding: 15px 25px 25px;
}

.e-progress-box-two .content .images {
    min-width: 112px;
    width: 112px;
    height: 112px;
    background: #D9D9D9;
    border-radius: 5px;
    position: relative;
    margin: 0 10px 0 0;

}

.e-progress-box-two .content .images .values {
    display: flex;
    background: white;
    width: 45px;
    text-align: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #e4e4e4;
    height: 26px;
    align-items: center;
    right: 50%;
    position: absolute;
    transform: translate(50%);
    bottom: -20px;
    color: var(--e-progress-box-two-green);
}

.e-progress-box-two .content .images .values .symbol {
    font-size: 9px;
    margin-left: 3px;
    position: relative;
    bottom: -2px;
}

.e-progress-box-two .content .details {
    width: 100%;
}

.e-progress-box-two .content .details .progress-box {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
}

.e-progress-box-two .content .details .progress-box .grids {
    display: flex;
    position: absolute;
    justify-content: center;
    width: 100%;
}

.e-progress-box-two .content .details .progress-box .grids .grid {
    height: 50px;
    width: 100%;
    border-right: 1px solid #E4E4E4;
}

.e-progress-box-two .content .details .progress-box .grids .grid:first-child {
    border-left: 1px solid #E4E4E4;
}

.e-progress-box-two .content .details .progress-box .labels {
    display: flex;
    position: absolute;
    bottom: -8px;
    justify-content: space-between;
    width: 100%;
}

.e-progress-box-two .content .details .progress-box .labels .label {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #555;
}


.e-progress-box-two .content .details .progress-box .progress {
    height: 19px;
    background: var(--e-progress-box-two-green);
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 95%;
}

/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-progress-box-two .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .e-progress-box-two .content .images {
        margin-bottom: 20px;
    }
    .e-progress-box-two .content .details .progress-box .labels .label {
        font-size: 13px;
    }
}


/* RTL */
[dir="rtl"] .e-progress-box-two .content .images {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .e-progress-box-two .content .details .progress-box .grids .grid:last-child {
    border-left: 1px solid #E4E4E4;
}
