/*table dots*/
.points{
    margin-bottom: 10px;
}
.category_label{
    display: inline-block;
}
.dot{
    width:10px;
    height: 10px;
    border-radius: 4px;
    border:none;
    display: inline-block;
}
.dot.big{
    width: 15px;
    height: 15px;
}

.dot.big.back_red{
    background: #D92B2B;
    color: #fff;
}
.dot.big.back_yellow{
    background: #F7A600;
    color: #fff;
}
.dot.big.back_green{
    background: #3D9749;
    color: #fff;
}
.dot + span{
    margin-right: 20px;
}

/*general table structure*/
.table:not(.font_blue){
    color:#9C9C9C;
}
.table .table_header{
    font-weight: bold;
}
.table .row{
    line-height: 35px;
}
.table .row div{
    text-align: center;
}
.table .row div:first-of-type{
    text-align: left;
}


/*table striped*/
.table.striped > .row:nth-child(odd):not(.table_header){
    background:#F4F4F4;
}

.table.striped .col_points{
    text-align: right;
}

/*lists*/
ol{
    padding-inline-start: 17px;
}
