table.screeners.table th.sortable {
    cursor: pointer;
    position:relative;
    padding:0 10px;
}

table.screeners.table th.sorted.sorted-up::after,
table.screeners.table th.sorted.sorted-down::after,
table.screeners.table th.sortable:hover::after {
    content: "\f0dd";
    font-family: FontAwesome;
    position: absolute;
    width: 1.28571429em;
    text-align: center;
}

table.screeners.table th.sorted.sorted-up::after {
    content: "\f0de";
    top:8px;
}

table.screeners.table th.filter i.fa {
    display: inline-block;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    padding: 2px;
    position: relative;
    left: -2px;
}

table.screeners.table th.filter:hover i.fa, table.screeners.table th.filtered i.fa {
    display: inline-block;
    background-color: #77d4f7;
    color:white;
}

table.screeners.table th.filter i.fa .filter-list {
    display: none;
    position: absolute;
    left:0;
    z-index: 3;
    border: solid 1px #cacaca;
    background-color: white;
    border-radius: 3px;
    box-shadow: 3px 3px #D2D2DA;
    top:24px;
    padding:10px;
    color:black;
    max-height:200px;
    overflow-y:scroll;
}

table.screeners.table th.filter i.fa.showing .filter-list {
    display: inline-block;
}

table.screeners.table th.filter i.fa .filter-list .filter-item {
    display: block;
    white-space: nowrap;
    padding:10px;
    text-align:left;
}

table.screeners.table th.fixed-width, table.screeners.table td.fixed-width {
    max-width: 140px;
}

table.screeners.table td.fixed-width {
    text-overflow:ellipsis;
    overflow: hidden;
}

table.screeners.table th.filter i.fa .filter-list .filter-item:hover {
    background-color: #eeeeee;
}

table.screeners.table tbody td {
    white-space:nowrap;
}

div.xscroll {
    overflow-x: scroll;
    width: 100%;
}

