.tableHolder{
  float:right;
  width:100%;
  position: relative;
}
.tableHolder .filtersHolder{
  float:right;
  width: 70%;
  display: flex;
  position: relative;
  z-index: 10;
}
.tableHolder .filtersHolder .filterField{
  flex-grow: 1;
  width: fit-content;
  margin: 0 1%;
  max-height: 100px;  
}
.tableHolder .filtersHolder .filterField .filterFieldTitle{
  float:right;
  width:100%;
}
.tableHolder .filtersHolder .filterField .filterFieldOps{
  float: right;
  width: CALC(100% - 10px);
  padding: 0 5px;
  height: 23px;
  overflow: hidden;
  background: #fff;
}
.tableHolder .filtersHolder .filterField .filterFieldOps.open{
  overflow:visible;
  height:fit-content;
}
.tableHolder .filtersHolder .filterField .filterOpsFilter{
  float:right;
  width:100%;
}
.tableHolder .filtersHolder .filterField .filterOpsFilter input{
  float:right;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #83939e;
  background:url(images/chevron_down.png) no-repeat 10px 4px; 
  margin:0;
  padding:0;
}
.tableHolder .filtersHolder .filterField .filterOpsFilter input:focus{
  outline:none;
  background:url(images/chevron_up.png) no-repeat 10px 4px; 
}
.sortable{
  cursor:pointer;
}
.sortable::after{
  font-family:'FontAwesome';
  content:"\f078";
  margin: 0 5px 0 0;
  display:none;
}
.sortable:hover::after,
.sortable.desc::after,
.sortable.asc::after{
  /* display:inline-block; */
}
.sortable.asc::after{
  content:"\f077";
}
.tableHolder .filtersHolder .filterField .filterOp{
  float:right;
  width:100%;
  cursor:pointer;
}
.tableHolder .filtersUpdate{
  float: right;
  position: relative;
  width: 99%;
  margin: 10px 1% 0 0;
  min-height: 40px;
  height: fit-content;
}
.tableHolder .filtersUpdate .activeFilter{
  float: right;
  padding: 2px 5px;
  font-size: 14px;
  background-color: var(--header_colors-background-color);
  color: var(--header_colors-color);
  width: fit-content;
  border-radius: 10px;
  margin: 0 0 5px 10px;
  cursor:pointer;
}
.tableHolder .tablesLimit{
  position: absolute;
  left: 0;
  top:10px;
  width: 12%;
  display:none;
}
.tableHolder .tablesLimit .tablesLimitFieldHolder{
  float:right;
  width:50%;
}
.tableHolder .tablesLimit .tablesLimitFieldHolder select{
  float:right;
  margin:0;
  padding:2px 5px;
  width:CALC(100% - 10px);
}
.tableHolder .tablesLimit .tablesLimitInfo{
  float:right;
  width:50%;
  text-align:left;
}
.tableHolder .leadsTable{
  float: right;
  width: 100%;
  z-index: 9;
  position: relative;
}
.tableHolder .leadsTable .tableResults{
  float:right;
  width:100%;
}
.tableHolder .leadsTable .tableHeaders,
.tableHolder .leadsTable .tableResults .resultRow{
  float: right;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom:7px;
  text-decoration: none;
}
.tableHolder .leadsTable .tableHeaders .cell,
.tableHolder .leadsTable .tableResults .resultRow .cell{
  text-align:center;
  height: 69px;
  line-height: 69px;
  background: #fff;
  color: #081d39;
  font-weight: 600;
  padding: 0 11px;
  position:relative;
  overflow:hidden;
}
.tableHolder .leadsTable .tableHeaders:first-child .cell,
.tableHolder .leadsTable .tableResults .resultRow:first-child .cell{
  background-color:#081d39;
  color:#fff;
  height: auto;
  line-height: 2;
}
.resFieldValueHolder{
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  margin:auto;
}
.tablePagesHolder{
  float:right;
  width:100%;
  display:block;
}
.tablePagesHolder .pageBtn{
  float:right;
  width:25px;
  height:30px;
  line-height:30px;
  text-align:center;
  color:black;
  background:white;
  border:1px dashed black;
  margin:0 0 5px 10px;
  cursor:pointer;
}
.tablePagesHolder .pageBtn.active,
.tablePagesHolder .pageBtn:hover{
  background:var(--primary_colors-color);
  color:var(--primary_colors-background-color);
}