.progress {
    width: 120px;
    height: 120px;
    background: none;
    position: relative;
}
.progress::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 10px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 1px;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress .progress-value {
    position: absolute;
    top: 0;
    left: 0;
}

.progress.progress-small {
    width: 2.75rem;
    height: 2.75rem;
    background: none;
    position: relative;
}

.progress .progress-value p.process-value-title {
    color:  #64758F;
    text-align: center;
    font-family: Roboto;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.progress .progress-value p.process-value-main {
    text-align: center;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.border-blue {
    border-color: #0060A6 ;
    color:  #0060A6 !important;
}

.border-orange {
    border-color: #FF7E2F ;
    color: #FF7E2F !important;
}

.border-green {
    border-color: #00B159 ;
    color: #00B159 !important;
}

@media screen and (max-width: 576px) {
    .progress {
        width: 90px;
        height: 90px;
        margin-top: 0;
    }

    .progress .progress-value p.process-value-title {
        font-size: 8px;
    }
    .progress .progress-value p.process-value-main {
        font-size: 10px;
    }

    .progress::after {
        border: 8px solid #eee;
    }

    .progress .progress-bar {
        border-width: 8px;
    }



}


