html{
	font-family: Arial,Helvetica Neue,Helvetica,sans-serif; 
	padding:0px;
	margin:0px;
	height:100%;
	min-width:410px;
	width:100%;
}

body{
	padding:0px;
	margin:0px;
}

div.ui-datepicker, .ui-datepicker td{
	font-size:12px;
}

#table_nowrap{
	text-overflow:ellipsis; 
	overflow: hidden;
	white-space:nowrap;
	max-width:0;
}

#wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#wrapper #content-wrapper {
	background-color: #f8f9fc;
	width: 100%;
	overflow-x: hidden;
}

#wrapper #content-wrapper #content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

/* shadow */
.shadow {
  -webkit-box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}

/* background color */
.bg-white {
	background-color: #fff !important;
}

.bg-gradient-primary {
	background-color: #4e73df;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #4e73df), to(#224abe));
	background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
	background-size: cover;
}

/* search box */
.inputBoxSearch{
	position: relative;
	box-sizing: border-box;
	width:90%;
}
.inputBoxSearch .inputTextSearch{
	position: absolute;
	left:1rem;
    font-size: 14px;
    line-height: 30px;
    transition: .5s;
    opacity: .5;
}
.inputBoxSearch .input-search{
	position: relative;
	width: 100%;
	height: 30px;
	background: transparent;
	border: none;
    outline: none;
    font-size: 14px;
    border-bottom: 1px solid #797D7F;

}

.inputBoxSearch input:focus { 
	border-bottom: 2px solid #2E86C1;
}

.focusSearch .inputTextSearch{
	transform: translateY(-18px);
	font-size: 10px;
	opacity: 1;
	color: #797D7F;
}

/* button */
.button-submit {
	border:0px; 
	border-radius:3px;
	
	background: #3498db;
	background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
	background-image: -moz-linear-gradient(top, #3498db, #2980b9);
	background-image: -ms-linear-gradient(top, #3498db, #2980b9);
	background-image: -o-linear-gradient(top, #3498db, #2980b9);
	background-image: linear-gradient(to bottom, #3498db, #2980b9);
	
	color: #FFFFFF;
	font-size: 13px;
	width:254px;
	height:30px;
		
	cursor:pointer;
}

.button-submit:hover {
	background: #3cb0fd;
	background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
	background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
	text-decoration: none;
}

.button-reset {
	border:1px solid #BDBDBD; 
	border-radius:2px;
	
	background-color:#FFFFFF;
	color: #585858;
	font-size: 13px;
	font-weight:bold;
	width:160px;
	height:30px;
	
	cursor:pointer;
}

.button-reset:hover {
	background-color:#E6E6E6;
}

.bg-login-image {
	background: url("../images/login_background.jpg");
	/* background-position: center; */
	background-position: 85%;
	background-size: cover;
}

.bg-reset-password-image {
	background: url("../images/login_background.jpg");
	background-position: center;
	background-size: cover;
}

.form-group {
  margin-bottom: 1rem;
}

.login_button {
	border:0px; 
	border-radius:3px;
	
	background: #3498db;
	background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
	background-image: -moz-linear-gradient(top, #3498db, #2980b9);
	background-image: -ms-linear-gradient(top, #3498db, #2980b9);
	background-image: -o-linear-gradient(top, #3498db, #2980b9);
	background-image: linear-gradient(to bottom, #3498db, #2980b9);
	
	color: #ffffff;
	font-size: 13px;
	font-weight:bold;
	width:100%;
	padding:10px;
	
	cursor:pointer;
}

.login_button:hover {
	background: #3cb0fd;
	background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
	background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
	background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
	text-decoration: none;
}

