:root{
    --e-chart-z-one-green-light:#a1e5b8;
    --e-chart-z-one-green:#2ABB9C;
    --e-chart-z-one-orange:#FF6B00;
}
.e-chart-z-one{
    max-width: 800px;
    position: relative;
    overflow: hidden;
}
.e-chart-z-one .e-chart-z-main{
    position: relative;
}
.e-chart-z-one .back img{
    z-index: 1;
    position: relative;
    width: 100%;
}
.e-chart-z-one .back .progress-v {
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% - 30px);
    background: var(--e-chart-z-one-green-light);
    z-index: 0;
}
.e-chart-z-one .back .progress-v::after {
    content: '';
    height: 100%;
    width: 2px;
    border-right: 3px dashed orange;
    position: absolute;
    right: -3px;
}
.e-chart-z-one .front {
    position: absolute;
    left: 0;
    top: 0;
    height: 70%;
    width: 100%;
    z-index: 1;
}
.e-chart-z-one .front .value {
    position: absolute;
    z-index: 2;
    color: white;
    background: var(--e-chart-z-one-orange);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 35px;
}
.e-chart-z-one .details {
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}
.e-chart-z-one .details p{
    font-size:16px !important;
}
.e-chart-z-one .details .values {
    display: flex;
    min-width: 120px;
    text-align: justify;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--e-chart-z-one-green);
    position: relative;
}
.e-chart-z-one .details .values .symbol {
    font-size: 16px;
    margin-left: 5px;
    position: relative;
    bottom: -4px;
}


/* Responsive Style */
@media only screen and (max-width: 768px) {
    .e-chart-z-one .e-chart-z-main {
        width: 100% !important;
    }
    .e-chart-z-one .details .values {
        font-size: 20px;
    }
    .e-chart-z-one .details .values .symbol {
        font-size: 12px;
        margin-left: 3px;
        bottom: -2px;
        font-weight: 600;
    }
    .e-chart-z-one .details .values {
        min-width: 75px;
    }
    .e-chart-z-one .details {
        padding: 5px 0;
        margin-top: 10px;
    }
    .e-chart-z-one .details p {
        font-size: 14px !important;
        padding: 0 15px;
        line-height: 28px !important;
    }
}
