/**
 * SELECTOR
 */
.dataTable-info,
.dataTable-selectWrapper,
.dataTable-search,
.dataTable-pagination {
	float: left;
}

.dataTable-pagination {
	width: 50%;
}

.dataTable-selectWrapper {
	width: 50%;
}

.dataTable-top.searchable .dataTable-selectWrapper,
.dataTable-top.searchable .dataTable-pagination {
	width: 40%;
}

.dataTable-search {
	text-align: center;
	width: 20%;
}

.dataTable-selector, .dataTable-input {
	margin: 0 10px;
	padding: 6px 8px;
	width: 80px;
}

.dataTable-input {
	width: 100%;
}


.dataTable-info,
.dataTable-search,
.dataTable-selectWrapper {
	margin: 20px 0;
}

.dataTable-bottom .dataTable-pagination {
	width: 50%;
}

.dataTable-info {
	width: 50%;
}

/**
 * TABLES
 */
.dataTable-table {
	margin-bottom: 20px;
	max-width: 100%;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.dataTable-table > tbody > tr > td, .dataTable-table > tbody > tr > th,
.dataTable-table > tfoot > tr > td, .dataTable-table > tfoot > tr > th,
.dataTable-table > thead > tr > td, .dataTable-table > thead > tr > th {
	border-top: 1px solid #999;
	line-height: 1.42857;
	padding: 8px;
	vertical-align: top;
}
.dataTable-table > thead > tr > th {
	border-bottom: 2px solid #999;
	vertical-align: bottom;
}
.dataTable-table > caption + thead > tr:first-child > td,
.dataTable-table > caption + thead > tr:first-child > th,
.dataTable-table > colgroup + thead > tr:first-child > td,
.dataTable-table > colgroup + thead > tr:first-child > th,
.dataTable-table > thead:first-child > tr:first-child > td,
.dataTable-table > thead:first-child > tr:first-child > th {
	border-top: 0 none;
}


/**
 * SORTERS
 */
.dataTable-sorter {
	display: inline-block;
	height: 100%;
	position: relative;
	width: 100%;
}

.dataTable-sorter::before,
.dataTable-sorter::after {
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	right: 6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}

.dataTable-sorter::before {
	border-top: 6px solid #000;
	bottom: 3px;
}

.dataTable-sorter::after {
	border-bottom: 6px solid #000;
	border-top: 6px solid transparent;
	top: -3px;
}

.asc .dataTable-sorter::after,
.desc .dataTable-sorter::before {
	opacity: 0.1;
}

/**
 * PAGINATORS
 */
.dataTable-pagination {
	border-radius: 4px;
	display: inline-block;
	margin: 20px 0;
	padding-left: 0;
	text-align: right;
}

.dataTable-pagination > li {
	display: inline-block;
}

.dataTable-pagination > li > a {
	background-color: rgba(0, 0, 0, 0.1);
	border: 1px solid transparent;
	color: #333;
	float: left;
	line-height: 1.42857;
	margin-left: 2px;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
}

.dataTable-pagination > li > a:focus,
.dataTable-pagination > li > a:hover {
	background-color: rgba(0, 0, 0, 0.15);
}

.dataTable-pagination > .active > a,
.dataTable-pagination > .active > a:focus,
.dataTable-pagination > .active > a:hover {
	background-color:  #00a8ff;
	border-color:  #00a8ff;
	color: #fff;
	cursor: default;
	z-index: 2;
}

.dataTable-pagination > .disabled > a,
.dataTable-pagination > .disabled > a:focus,
.dataTable-pagination > .disabled > a:hover {
	cursor: not-allowed;
}

.dataTables-empty {
	text-align: center;
}

.dataTable-bottom::after {
	clear: both;
	content: " ";
	display: table;
}