canvas[data-provider="chart"] {
    max-width: 100%!important;
}

.progress-container {
    position :relative;
}

.progress-container .progress-half-circle {
    position: relative;
    margin: 25px auto;
    text-align: center;
    width: 180px;
}

.progress-container .barOverflow { /* Wraps the rotating .bar */
    position: relative;
    overflow: hidden; /* Comment this line to understand the trick */
    width: 180px; height: 90px; /* Half circle (overflow) */
    margin-bottom: -14px; /* bring the numbers up */
}

.progress-container .bar {
    position: absolute;
    top: 0; left: 0;
    width: 180px; height: 180px; /* full circle! */
    border-radius: 50%;
    box-sizing: border-box;
    border: 10px solid #eee;
}

.progress-container span.percent {
    display: block;
    font-size: 22px;
    font-weight: bold;
    line-height: 10px;
    position: relative;
    top: -15px;
}

.progress-container span.label {
    position: relative;
    top: -10px;
}
