.tableView.sortTable {
    margin-bottom: 0px;
}

.sortTableTitle  {
    position: relative;
    color: white;
    min-width: 120px;
}

.sortTableTitle:hover  {
    cursor: pointer;    
}

/* .sortUserTitle:after {
    content: "\f883";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 15px;
    top: 3px;
    color:  #b0b0b0;
} */

.sortTableTitle.active {
    font-weight: 800;
    /* color: rgb(255, 255, 255); */
    /* text-decoration: underline; */
}

.sortTableTitle .sorttitle {
    text-decoration: underline;
}

.sortTableTitle.up:after {
    content: "\f161";  /* '▲' */
    font-family: "Font Awesome 5 Pro";
    position: relative;
    left: 5px;
    top: 0px;
    color: white;
    font-size: 14px;
}

.sortTableTitle.down:after {
    content: "\f884";  /* '▼' */ 
    font-family: "Font Awesome 5 Pro";
    position: relative;
    left: 5px;
    top: 0px;
    color: white;
    font-size: 14px;
}

.sortTablePaginationSpacing {
    clear: both;
    width: 100%;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, .1); 
    margin-bottom: 15px;
}

.tableView.sortTable tbody tr:last-child td {
    border-bottom: 0px;
}

.sortTablePagination {
    text-align: left; 
    width: auto;
    display: table-row;
    float: left;
}

.sortTablePagination a {
    color: lightgrey;
    padding: 4px 10px;
    text-decoration: none;
    transition: background-color .2s;  
    display: inline-block;
    font-size: 16px;
    vertical-align: top;
    border-radius: 5px;
    border: 1px solid lightgrey;
    margin-left: 10px;
}

.sortTablePagination a.active {
    background-color: rgba(var(--mainColor), 1);
    color: white;
}
  
.sortTablePagination a:hover:not(.active) {
    background-color: rgba(var(--mainColor), .8);
}

#sortTablePrevPage, #sortTableNextPage {
    border: 0;
    padding: 5px 5px;
    background-color: transparent;
}

#sortTablePrevPage:hover, #sortTableNextPage:hover {
    font-weight: 900;
    color: white;
}

#sortTablePrevPage.disable, #sortTableNextPage.disable {
    color: rgba(211, 211, 211, .6);
    /* visibility: hidden; */
    /* display: none; */
}

#sortTableNoRecords {
    text-align: center; 
    width: 100%;
    margin-top: 10px;
}

.sortTableSelect {
    overflow: hidden;
    height: 28px;
    background: transparent;
    position: relative;
    border-radius: 3px;
    background-size: 14px auto;
    background-position: right 10px center;
    background-repeat: no-repeat;
    display: inline-block;
    box-sizing: border-box;
    background-image: url(/images/select_arrow_down_white.png);
    border: 1px solid lightgray;
    margin-top: 2px;
    margin-left: 20px;
}

.sortTableSelect select {
    background: transparent;
    border: none;
    font-size: 14px;
    height: 26px;
    width: 70px;
    padding-left: 12px;
    box-sizing: border-box;
    color: lightgray;
}

.sortTablePopup {
    float: right;
    /* width: 220px; */
    margin-top: 3px;
    margin-right: 10px;
}

.sortTablePopupRight {
    float: right;
    /* width: 220px; */
    margin-top: 3px;
    margin-right: 30px;
}


.sortTableViewContainer {
    width: 100%; 
    overflow-x: auto; 
    background: white; 
    border: 0;
    padding: 0;
    margin: 0;
    margin-bottom: 10px; 
}

#tableFilterTextId {
    text-transform: uppercase !important;
}

#tableSearchTextId {
    text-transform: uppercase !important;
}