table.list-table {
  border-collapse: collapse;
  border-spacing: 0;
}

table.list-table th {
  vertical-align: bottom;
  font-weight: bold;
  background-color: #1697d3;
  color: #FFF;
  
}
/
table.list-table th, table.list-table td {
  text-align: left;
  padding: 10px;
}

table.list-table th > span {
	padding: 5px 0;
	display: inline-block;
	color: #FFF;
}


table.list-table th:not([data-sortable="false"]) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  cursor: pointer;
}

table.list-table th:after {
  /*content: "";*/
  visibility: hidden;
  display: inline-block;
  vertical-align: inherit;
  height: 0;
  width: 0;
  border-width: 5px;
  border-style: solid;
  border-color: none;
  margin-right: 1px;
  margin-left: 10px;
  float: right;
}

table.list-table th[data-sorted="true"]:after {
  visibility: visible;
}

table.list-table th[data-sorted-direction="descending"]:after {
  border-top-color: inherit;
  margin-top: 8px;
}

table.list-table th[data-sorted-direction="ascending"]:after {
  border-bottom-color: inherit;
  margin-top: 3px;
}


table.list-table {
  font-size: 14px;
  line-height: 20px;
  background: rgba(0,150,255,0.13)
}

table.list-table thead th {
  border-bottom: 0px solid #e0e0e0;
}

table.list-table tbody td {
 border-bottom: 1px solid rgba(3,162,218,0.3);
}

/*table.list-table tbody td {
	-webkit-border-image: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(50%, rgba(3,162,218,1)), color-stop(100%, rgba(255,255,255,0)));
	-webkit-border-image: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(3,162,218,1) 50%, rgba(255,255,255,0) 100%);
	-moz-border-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(3,162,218,1) 50%, rgba(255,255,255,0) 100%);
	-o-border-image: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(3,162,218,1) 50%, rgba(255,255,255,0) 100%);
	border-image: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(3,162,218,1) 50%, rgba(255,255,255,0) 100%);
	border-image: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(3,162,218,1) 50%, rgba(255,255,255,0) 100%);
}*/

table.list-table th[data-sorted="true"] {
  color: #3a87ad;
  background: none;
  border-bottom-color: #bce8f1;
}

table.list-table th[data-sorted="true"][data-sorted-direction="descending"]:after {
  border-top-color: #3a87ad;
}

table.list-table th[data-sorted="true"][data-sorted-direction="ascending"]:after {
  border-bottom-color: #3a87ad;
}

table.list-table-striped tbody > tr:nth-child(odd) > td {
  background-color: none;
}

table.list-table tr.item-view {
	/*border: 5px solid #39c0ff;*/
	border: none;
	padding: 0;
}