.badges{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.badges .badge{
    font-size: 16px;
    border-radius: 50px;
    align-self: center;
    margin-right: 20px;
}
.d-flex{
    display: flex!important;
    flex-direction: row;
    justify-content: center;
}
.btn-disabled{
    opacity: 0.7;
}
.btn-success{
    background-color:#337ab7!important;
    color: white!important;
    opacity: 1;
}
.score_board{
    height: 194px;
    margin: 0 auto;
    float: none;
    background: #f7f7f7;
    border-radius: 5px;
    box-shadow: 0px 2px 12px #e2e2e2;
    padding: 20px;
}
.score_badges{
    display: flex;
    justify-content: space-around;
}
.score_badges hr{
    margin-top: 0px!important;
}
.score_badges .lbl_box{
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
}
.total_box{
    display: flex;
    justify-content: space-between;
}
.total_box h3, .total_box h4{
    margin:0px;
    align-items: center;
    align-self: center;
    font-weight: bold;
    width: 35px;

}
.total_box:before {
    content: "";
    position: absolute;
    width: 65%;
    margin: 0 auto;
    top: 35%;
    left: 0;
    right: 0;
    height: 1px;
    background: #c4c4c4;
    z-index: -2;
}
.total_box .total_badge{
    font-size: 22px;
    font-weight: bold;
}
.score_badges .lbl_box:nth-child(1){
    border-right:1px solid #eee;
}
.lbl_box .passed_lbl_score {
    font-size: 40px;
    color: #5bda5b;
}
.lbl_box .failed_lbl_score {
    font-size: 40px;
    color: #f44336;
}

.lbl_box .passed_lbl_name {
    font-size: 20px;
    font-weight: bold;
    color:#3a3a3a;
}
.lbl_box .failed_lbl_name {
    font-size: 20px;
    font-weight: bold;
    color:#3a3a3a;
}

.UserTestResults thead tr th:nth-child(1n+3n){
    text-align: center!important;
}

.UserTestResults tr:hover{
    background-color: #e2e2e2;
}