/* ADD $ AND % TO COLUMNS */

table.dataTable tbody tr td:nth-child(9)::after{
    content: " %   ";
}
table.dataTable tbody tr td:nth-child(10)::after{
    content: " %   ";
}
table.dataTable tbody tr td:nth-child(13)::after{
    content: " %   ";
}

/* To Bold or change font for any CHILD columns un comment below */

/* table.dataTable tbody tr td:nth-child(5){    
    font-weight: bold;                
} */

/* ALIGNS DATA IN COLUMNS */

table.dataTable tbody tr td:nth-child(1){
   min-width: 220px;
}
table.dataTable tbody tr td:nth-child(2){
    text-align: right;
    min-width: 55px;
 }
 table.dataTable tbody tr td:nth-child(3){
    text-align: center;
    font-weight: 500;
 }
 table.dataTable tbody tr td:nth-child(4){
    text-align: center;
 }
 table.dataTable tbody tr td:nth-child(5){
    text-align: center;
 }
table.dataTable tbody tr td:nth-child(6){
   text-align: center;
}
table.dataTable tbody tr td:nth-child(7){
   text-align: center;
}
table.dataTable tbody tr td:nth-child(8){
    text-align: right;
 }
table.dataTable tbody tr td:nth-child(8){
    text-align: right;
    min-width: 100px;
 }
 table.dataTable tbody tr td:nth-child(9){
    text-align: right;
 }
 table.dataTable tbody tr td:nth-child(10){
    text-align: right;
 }
 table.dataTable tbody tr td:nth-child(11){
    text-align: center;
 }
 table.dataTable tbody tr td:nth-child(12){
    text-align: center;
 }
 table.dataTable tbody tr td:nth-child(13){
   text-align: right;
}