.table-progress-bar-gradient {
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px 0;
}
.table-progress-bar-gradient *{
    font-size: 16px;
}
.table-progress-bar-gradient .header{
background:#F5F5F5;
}
.table-progress-bar-gradient .header , .table-progress-bar-gradient .content .r {
    display: flex;
    border-bottom: 1px solid #d7d7d7;
}
.table-progress-bar-gradient .content .r:last-child{
    border-bottom: none;
}
.table-progress-bar-gradient .header .title , .table-progress-bar-gradient .content .r .title{
    width: 20%;
    border-left: 1px solid #d7d7d7;
    padding: 6px 20px 6px 0;
        display: flex;
    align-items: center;
}
.table-progress-bar-gradient .header .score , .table-progress-bar-gradient .content .r .score{
    width: 10%;
    border-left: 1px solid #d7d7d7;
    text-align: center;
        display: flex;
    align-items: center;
    justify-content: center;
}
.table-progress-bar-gradient .header .status , .table-progress-bar-gradient .content .r .status{
    width: 10%;
    border-left: 1px solid #d7d7d7;
    text-align: center;
        display: flex;
    align-items: center;
    justify-content: center;
}
.table-progress-bar-gradient .header .content , .table-progress-bar-gradient .content .r .content{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-progress-bar-gradient .content .r .content .progress-box {
    width: 100%;
    height: 13px !important;
    background: linear-gradient(to left,#17C5D0,#17D02A,#FFF613,#FF8717,#FF0F57);
    position: relative;
}
.table-progress-bar-gradient .content .r .content .progress-box .progress {
    height: 15px;
    border-radius: 0;
    left: 0;
    position: absolute;
    background: white;
    top: -1px;
}

@media only screen and (max-width: 768px) {
    .table-progress-bar-gradient * {
        font-size: 14px !important;
    }
    .table-progress-bar-gradient .header .title, .table-progress-bar-gradient .content .r .title {
        width: 20%;
    }
    .table-progress-bar-gradient .header .score, .table-progress-bar-gradient .content .r .score {
        width: 15%;
    }
    .table-progress-bar-gradient .header .status, .table-progress-bar-gradient .content .r .status {
        width: 15%;
    }
    .table-progress-bar-gradient .header .content, .table-progress-bar-gradient .content .r .content {
        width: 50%;
    }
}
