/**
 * TablePress Default CSS
 *
 * Attention: Do not modify this file directly, but use the "Custom CSS" textarea
 * on the "Plugin Options" screen of TablePress.
 *
 * @package TablePress
 * @subpackage Frontend CSS
 * @author Tobias Bäthge, Allan Jardine
 * @since 1.0.0
 */

/* Table description */
.tablepress-table-description {
	clear: both;
	display: block;
}

.tablepress {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin-bottom: 1em;
	border: none;
}

.tablepress th,
.tablepress td {
	padding: 8px;
	border: none;
	background: none;
	text-align: left;
	float: none!important;
}
.tablepress tbody td {
	vertical-align: top;
}

/* Horizontal borders */
.tablepress tbody td,
.tablepress tfoot th {
	border-top: 1px solid #dddddd;
}
.tablepress tbody tr:first-child td {
	border-top: 0;
}
.tablepress thead th {
	border-bottom: 1px solid #dddddd;
}

/* Row background colors */
.tablepress thead th,
.tablepress tfoot th {
	background-color: #e7efe7;
	font-weight: bold;
	vertical-align: middle;
}
.tablepress .odd td {
	background-color: #ededed;
}
.tablepress .even td {
	background-color: #ffffff;
}
.tablepress .row-hover tr:hover td {
	background-color: #f3f3f3;
}

/* Reset image layout in tables */
.tablepress img {
	margin: 0;
	padding: 0;
	border: none;
	max-width: none;
}

/* Table wrapper */
.dataTables_wrapper {
	clear: both;
	margin-bottom: 1em;
}
.dataTables_wrapper .tablepress {
	clear: both;
	margin: 0!important;
}

/* Length Change menu */
.dataTables_length {
	float: left;
	white-space: nowrap;
}

/* Filter/Search */
.dataTables_filter {
	float: right;
	white-space: nowrap;
}
.dataTables_wrapper .dataTables_filter input {
	margin-left: 0.5em;
}

/* Table information */
.dataTables_info {
	clear: both;
	float: left;
	margin: 4px 0 0;
}

/* Pagination */
/*omis*/
/* Processing indicator */
.dataTables_processing {
	display: none; /* always hidden, we don't use it */
}

/* Scrolling */
/*omis*/

/* Sorting */
.tablepress .sorting,
.tablepress .sorting_asc,
.tablepress .sorting_desc {
	position: relative;
	padding-right: 20px; /* more right padding for sort arrows */
	cursor: pointer;
	outline: none;
}
.tablepress .sorting:after,
.tablepress .sorting_asc:after,
.tablepress .sorting_desc:after {
	font-family: TablePress;
	font-weight: normal;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 6px;
	margin: auto;
	height: 14px;
	line-height: 1;
}
.tablepress .sorting:after {
	content: "\f0dc";
}
.tablepress .sorting_asc:after {
	content: "\f0d8";
	padding: 0 0 2px;
}
.tablepress .sorting_desc:after {
	content: "\f0d7";
}
.tablepress .sorting:hover,
.tablepress .sorting_asc,
.tablepress .sorting_desc {
	background-color: #e7efe7;
}
/* Hide the sorting arrows in the extra table that is added for scrolling */
.dataTables_scrollBody .tablepress thead th:after {
	content: "";
}

/* Self clearing */
.dataTables_wrapper:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.dataTables_wrapper label input,
.dataTables_wrapper label select {
	display: inline;
	margin: 2px;
	width: auto;
}

.tablepress-table-name {
    font-size: 1.125em;
    counter-reset: none;
    counter-increment: table;
    counter-set: auto;
}
.tablepress-table-name:before {
    content: "Table " counter(table) ". ";
    border-left: 1.125em solid #ededed;
    padding-left: 6px;
}

