.chart--medium {
    color: #e1ca58;
}
.chart--good {
    color: #6aba8a;
}
.chart--poor {
    color: #f26c4f;
}
.chart {
    text-align: center;
    margin-top: 10px;
}
.doughnut-chart {
    margin: 0 auto;
}
.doughnut-chart {
    width: 260px;
    height: 260px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.doughnut-chart--small {
    width: 66px;
    height: 66px;
}
.doughnut-chart__spinner {
    width: 100%;
    height: 100%;
    display: block;
}
.doughnut-chart__spinner svg {
    width: 100%;
    height: 100%;
}
svg:not(:root) {
    overflow: hidden;
}
.progress-ring {
    -webkit-transform: rotate(136deg);
    -moz-transform: rotate(136deg);
    -ms-transform: rotate(136deg);
    -o-transform: rotate(136deg);
    transform: rotate(136deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.doughnut-chart__inner {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.doughnut-chart--dark .doughnut-chart__count {
    color: #383838;
}
.doughnut-chart__count:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.doughnut-chart__count {
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: #CACACA;
    position: relative;
    width: 54%;
}
.doughnut-chart__number {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    font-size: 0px;
    white-space: nowrap;
}
.doughnut-chart--small .doughnut-chart__number-inner {
    font-size: 12px;
}
.doughnut-chart__number-inner {
    display: inline-block;
    font-weight: 700;
    font-size: 50px;
}

.doughnut-chart--small .doughnut-chart__number:after {
    font-size: 12px;
}
.doughnut-chart__number:after {
    content: "%";
    display: inline-block;
    font-weight: 700;
    font-size: 50px;
}


.doughnut-chart__arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-transition: 1s transform;
    -moz-transition: 1s transform;
    transition: 1s transform;
}
.doughnut-chart--small .doughnut-chart__arrow:before {
    height: 0;
    width: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4.5px solid #CACACA;
}

.doughnut-chart__arrow:before {
    content: "";
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    top: 99%;
    right: 0px;
    left: 0px;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #CACACA;
}

.progress-ring__outline {
    stroke: #B9B9B9;
    opacity: .3;
}
.progress-ring__circle--animate {
    -webkit-transition: 1s stroke-dashoffset;
    -moz-transition: 1s stroke-dashoffset;
    transition: 1s stroke-dashoffset;
}
.progress-ring__circle {
    stroke: currentColor;
}
