.wrapper {
	margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 30px;
}

.panel {
	margin-bottom: 2px;
}

.dataTables_empty {
	text-align: left;
}

.my-error-class {
	color: #ff0000; /* red */
}

/*.my-valid-class {
	color: #00cc00;
}*/
.form-group {
	margin-bottom: 5px;
}

table {
	width: 100%;
}

td {
	text-align: left;
	white-space: nowrap;
}

th{
	text-align: center;
}
.wrap-text{
	word-wrap: break-word;
	white-space: pre-wrap;
}
td, th {
	padding: 2px 5px !important;
	vertical-align: middle !important;
}

td.numeric, th.numeric {
	text-align: right;
}

h2, h3 {
	margin-top: 1em;
}

input[type="text"], input[type="number"], input[type="password"], select
	{
	height: 25px !important;
	padding: 2px 12px;
}

select {
	padding: 2px 12px !important;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
	-moz-appearance:textfield;
}

label {
	margin-bottom: 0px;
}

.group-title {
	margin: 0px !important;
	color: #fff !important;
	background-color: #337ab7 !important;
	padding: 0px 15px;
}

.require-star {
	color: #ff0000 !important;
}

.require-star1 {
	color: #ff0000;
	margin-left: 4px;
}

/* @media only screen and (max-width: 1024px) {
	#responsive-table table, 
	#responsive-table thead, 
	#responsive-table tbody, 
	#responsive-table tr, 
	#responsive-table td, 
	#responsive-table th {
 		display: block;	
	}
	
 	#responsive-table tbody {
		height: 200px;
		display: inline-block;
		width: 100%;
		overflow-y:	scroll;
	}
	
	tbody td, thead th {
		width: 20%;
	  	float: left;
	}
} */

.loading {
	background-image: url(../image/loading.gif);
}

@media only screen and (max-width: 800px) {
	/* Force table to not be like tables anymore */
	#responsive-table table, #responsive-table thead, #responsive-table tbody,
		#responsive-table th, #responsive-table td, #responsive-table tr {
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	#responsive-table thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#responsive-table tr {
		border: 1px solid #ccc;
	}
	#responsive-table td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
		white-space: normal;
		text-align: left;
	}
	#responsive-table td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
	}

	/*
	Label the data
	*/
	#responsive-table td:before {
		content: attr(data-title);
	}
}