.tableData {
	width: 100%;
	font-size: 0.75em; /*12*/
	line-height: 1.25em; /*15*/
	border-collapse: collapse;
	border-spacing: 0;
}

.tableData th, .tableData td {
	/* margin: 0;
	padding: 10px;10
	vertical-align: top;
	border: 1px solid #a9b5c7;
	font-size:13px; */
	border: 1px solid #a9b5c7;
	font-size: 13px;
	margin: 0;
	overflow: hidden;
	padding: 10px;
	text-overflow: ellipsis;
	vertical-align: top;
	/* white-space: nowrap; */
}

.tableData th {
	text-align: left;
	background: #0070bb;
	color: #fff;
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	padding: 10px 10px 15px;
}

.tableData th.sortable {
	background-image: url("../images/down-arrow1.png");
	background-position: center 91%;
	background-repeat: no-repeat;
}

.tableData th.sorted.order1 {
	background-image: url("../images/down-arrow-sort.png");
	background-position: center 91%;
	background-repeat: no-repeat;
}

.tableData th.sorted.order2 {
	background-image: url("../images/up-arrow-sort.png");
	background-position: center 91%;
	background-repeat: no-repeat;
}

.tableData th.sortable a {
	color: #dcf0ff;
}

.tableData th.sorted a {
	color: #fff;
}

.tableData tr {
	background: #f6fafd;
}

.tableData tr.active {
	background-color: #fff;
}

/* Table Data Styling for Station List Page */
.stationListWrap .tableData td, #alarmTableData .tableData td {
	max-width: 200px;
	min-width: 48px;
	vertical-align: middle;
	word-break: break-all;
}

.stationListWrap .tableData td.last-report-time {
	white-space: nowrap;
}

.stationListWrap .tableData td.select-station {
	min-width: 20px;
}

/* Styling for Sensor List Page and Add station > Configuration*/

#sensorListForm .tableData  td , #sensorInfo .tableData td {
	vertical-align: middle;
	word-break: break-all;
}

#sensorListForm .tableData , #sensorInfo .tableData {
	line-height: 1.8em
}

@media only screen and (max-width: 40em) { /*640*/
	#tableData {
		display: block;
		position: relative;
		width: 100%;
	}
	#tableData thead {
		display: block;
		float: left;
	}
	/*#tableData tbody {
		display: block;
		width: auto;
		position: relative;
		overflow-x: auto;
		white-space: nowrap;
	}*/
	#tableData thead tr {
		display: block;
	}
	#tableData th {
		display: block;
	}
	#tableData tbody tr {
		display: table-cell;
		vertical-align: top;
	}
	#tableData td {
		display: block;
	}
	/* sort out borders */
	.tableData th {
		border-bottom: 0;
	}
	.tableData td {
		border-left: 0;
		border-right: 0;
		border-bottom: 0;
	}
	.tableData tbody tr {
		border-right: 1px solid #babcbf;
	}
	.stationListWrap .tableData th {
		height: 13px;
	}
	.stationListWrap .tableData thead {
		width: 100%;
	}
	.stationListWrap .tableData tbody {
		display: flex;
		flex-flow: column;
		width: 100%;
	}
	.stationListWrap .tableData td {
		text-align: center;
		max-width: 100%;
	}
	.stationListWrap .tableData tr {
		margin-bottom: 15px;
	}
}