/*
 * Table
 */
.dataTable {
	margin: 0 auto;
	clear: both;
	width: 100% !important;
} 

/*
* Table wrapper
*/
.dataTables_wrapper {
	position: relative;
	min-height: 302px;
	clear: both;
	_height: 302px;
	zoom: 1; /* Feeling sorry for IE */
	overflow: hidden;
}

/*
 * Processing
 */
.dataTables_processing {
    display: none;
}

/*
 * Page length menu
 */
.dataTables_length label {
	font-weight: normal;
    margin: 0;
}
.dataTables_length select {
	width: 75px;
    height: 31px;
    display: inline-block;
}

.dataTables_length, .dataTables_filter {
    margin: 3px 3px 8px 3px;
}

/*
 * Filter
 */
.dataTables_filter {
    text-align: right;
}
.dataTables_filter label {
    margin: 0;
}
.dataTables_filter input {
    width: 180px;
    height: 31px;
    display: inline-block;
}
tfoot .filter_column input.text_filter {
	width: 85%;
}

/*
 * Table information
 */
.dataTables_info, .dataTables_paginate {
    margin: 8px 3px 0 3px;
}

/*
 * Pagination
 */
.dataTables_paginate {
    white-space: nowrap;
    text-align: right;
}

.dataTables_paginate ul.pagination {
    white-space: nowrap;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .dataTables_filter, .dataTables_paginate {
        text-align: left;
    }
}

/*
 * Sorting
 */
.dataTable thead th {
    border-bottom: none;
    vertical-align: middle;
    cursor: default;
}
.dataTable thead th.sorting {
    cursor: pointer;
}
.dataTable thead th.sorting_disabled { 
    cursor: not-allowed;
}
.dataTable thead th:after {
    content: "";
    float: right;
    margin-top: 7px;
    border-width: 0 4px 4px;
    border-style: solid;
    border-color: #fff transparent;
    visibility: hidden;
}
.dataTable thead th:hover:after {
    border-color: #fff transparent;
    visibility: visible;
}
.dataTable thead th.sorting_disabled:hover:after {
    visibility: hidden;
}
.dataTable thead th.sorting_desc, .dataTable thead th.sorting_asc {
    background-color: #6D7D8B;
    background: -webkit-gradient(linear, left top, left bottom, from(#8495A3), to(#6D7D8B));
    background: -moz-linear-gradient(top, #8495A3, #6D7D8B);
}
.dataTable thead th.sorting_asc:after, .dataTable thead th.sorting_asc:hover:after{
    visibility: visible;
    filter: alpha(opacity=60);
    opacity: 0.6;
}
.dataTable thead th.sorting_desc:after {
    border-bottom: none;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    visibility: visible;
    box-shadow: none;
    filter: alpha(opacity=60);
    opacity: 0.6;
}