.table {
    width: 100%;
    max-width: 100%;
	min-width:750px;
    margin-bottom: 0;
    border-spacing: 0;
    border-collapse: collapse;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
	border: 1px solid #f4f4f4;
}
.table::after, .table::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {

    border-top: 1px solid #f4f4f4;

}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {

    padding: 4px 8px;
    line-height: 1.4;
    vertical-align: middle;

}

.table > tbody > tr:first-child > th{
    border: 1px solid #ffffff;
}

th {
    text-align: left;
	border-right: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
}
th:last-child {
    text-align: right;
}
td, th {
    padding: 0;

}

.no-padding {
    padding: 0 !important;
}
.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}
.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
* {
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-tap-highlight-color: transparent;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #ddd;
	}
}