/*
 Progress Bars BEGIN
 https://webdevtrick.com/circular-progress-bar-css/
 */

.circleBar {
    text-align: center;
    overflow: auto;
}

.circleBar .round {
    position: relative;
    float:left;
    text-align: center;
}

table.circleBar .round {
    width: 100%;
    margin: auto;
}

table.circleBar tbody td {
    overflow: auto;
}

.circleBar .round strong a {
    color: #212121;
}

.circleBar .round strong a:hover {
    text-decoration: none;
}

table.circleBar thead th {
    font-size: 0.85rem;
}

.circleBar .round strong {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    font-size: 30px;
    color: #212121;
    font-weight: 100;
}

.circleBar span {
    display: block;
    color: #999;
    font-size: 16px;
    margin-top: 10px;
}

.circleBar span i {
    color: #ff5c5c;
    font-size: 22px;
    margin-right: 6px;
}

.circleBar .round > canvas {
    transform: rotate(90deg)
}

/*
section button:hover {
    background-color: #ff5c5c;
}
*/

/*
 Progress Bars END
 https://webdevtrick.com/circular-progress-bar-css/
 */