/*
    source: https://jsfiddle.net/bootstrapious/3xnomecr
*/

.progcirc {
    width: 200px;
    height: 200px;
    background: none;
    position: relative;
}

.progcirc::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 20px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.progcirc>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progcirc .progcirc-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 20px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progcirc .progcirc-left {
    left: 0;
}

.progcirc .progcirc-left .progcirc-bar {
    left: 100%;
    border-top-right-radius: 105px;
    border-bottom-right-radius: 105px;
    border-left: 0;
    transform-origin: center left;
}

.progcirc .progcirc-right {
    right: 0;
}

.progcirc .progcirc-right .progcirc-bar {
    left: -100%;
    border-top-left-radius: 105px;
    border-bottom-left-radius: 105px;
    border-right: 0;
    transform-origin: center right;
}

.progcirc .progcirc-value {
    position: absolute;
    top: 0;
    left: 0;
}