html,body,p,h1,h2,h3,h4,h5,h6
{
  padding: 0px;
  margin: 0px;
  /*font-family: 'Times New Roman',sans-serif;*/
  font-family: Arial;
  font-size: 18px;
}

body
{		
	width:100%;
	height: 100%;
	padding: 0px;
	margin:0px;
	color: #333;
	background-color: #F1F4F9;
}

body.login-body {
	background: url(../images/maxres.jpg) center center fixed;
	background-size: cover;
}

a
{
	color: #000;
	text-decoration: none;
}

/*a:hover
{
	text-decoration: underline;
}*/

.separator
{
	height: 10px;
	display: block;
}

/*Scrollbar Style*/
/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  /*box-shadow: inset 0 0 5px grey;*/
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #999; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888; 
}

#content_container
{
	/*margin-top:130px;*/
	z-index: 1;
}

.content
{
	margin-left:0;
	width:calc(100% - 10px);
	height:calc(100% - 10px);
	padding:10px 22px 10px 5px;
	overflow-y: scroll;

}

/*Login*/
#login_container {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 320px;
	height: 320px;
	margin: auto;
	padding: 20px;
}

.logo-bg {
	width:100%;
	height: 100%;
	background: url(../images/logo.png) center;
	background-size: cover;
	box-shadow: 10px 10px 230px 200px #fff;
	background-color: rgba(255,255,255,0.95);
}

.loginForm {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -35%);
	margin: auto;
	text-align: center;
}

.loginForm input[type="text"], .loginForm input[type="password"] {
	background-color: rgba(0,0,0,0.6) !important;
	color: #fff !important;
	font-weight: bold;
}

.loginForm input[type="text"]::placeholder, .loginForm input[type="password"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #fff;
	opacity: 0.8; /* Firefox */
	font-weight: bold;
}

.loginForm input[type="text"]:hover, .loginForm input[type="password"]:hover {
	background-color: rgba(0,0,0,0.5) !important;
}

.loginForm input[type="submit"] {
	font-size: 16px !important;
	color: #fff !important;
	background-color: rgba(0,0,0,0.7);
	border:1px solid #999 !important;
	border-radius: 5px !important;
	cursor: pointer;
	font-weight: bold;
}

.loginForm input[type="submit"]:hover {
	background-color: rgba(0,0,0,0.8) !important;
}

.loginForm .error {
	font-weight: bold;
	background-color: #fff;
}

.logintitle {
	width: 270px;
	height: 25px;
	line-height: 25px;
	float: right;
	font-size: 24px;
	text-align: right;
}

.loginlogo {
	width: 25px;
	height: 25px;
	float: left;
}

input[type="text"],input[type="password"],input[type="number"],input[type="file"],input[type="email"],textarea,input[type="date"],select, input[list]
{
	width: calc(100% - 12px);
	border-radius: 5px !important;
	border:1px solid #999 !important;
	padding: 5px;
	height: 25px;
	font-size: 16px !important;
	color: #333 !important;
	background-color: rgba(255,255,255,0.5) !important;
}input[type="text"]:hover,input[type="password"]:hover,input[type="number"]:hover,input[type="file"]:hover,input[type="email"]:hover,textarea:hover,input[type="date"]:hover,select:hover, input[list]:hover
{
	background-color: rgba(204,204,204,0.5) !important;
}input[type="submit"],input[type="reset"],input[type="button"]
{
	font-size: 16px !important;
	color: #34425A !important;
	background-color: rgba(204,204,204,0.5);
	border:1px solid #999 !important;
	border-radius: 5px !important;
	cursor: pointer;
}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,
{
	background-color: rgba(204,204,204,0.5) !important;
}

.subtitle{
	font-size: 16px;
	font-weight: bold;
	padding: 25px 0 10px;
	text-transform: uppercase;
}

.notification{
	width:80%;
	background: #090;
	padding:10px;
	margin:10px;
	border:2px solid #1a1;
	border-radius:10px;
	color:#fff;
	font-size: 16px;
}

/*Popup*/
.popup {
	background-color: #fff;
	width: 300px;
	height: 170px;
	display: none;
	position:fixed;
	top:0px;
	left:0px;
	right:0px;
	bottom: 0px;
	margin: auto;
	z-index: 1000;
	padding: 10px;
}

.popup.fullwidth {
	width: 75%;
	height: calc(100% - 90px);
	top: 60px;
	bottom: unset;
	overflow-y: scroll;
}

.popup .part {
	width: calc(50% - 50px);
	float: left;
}

.popup .part input {
	text-align: left !important;
}

.popup.standard {
	height: calc(100% - 90px);
	top: 60px;
	bottom: unset;
	overflow-y: scroll;
}

/*Loading icon*/
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 200;
	display: none;
}

.loading img {
	margin: auto;
	display: block; 
	margin-top: 20%;
}

.loading .overlay {
	display: block;
}

.overlay, .loading-item
{
	background-color: #000;
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1;
}

.overlay {
	opacity: 0.6;
}

.loading-item {
	display: block;
	z-index: 2;
	opacity: 1;
	background: none;
}

.progress-label {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff !important;
}
.progress-label .fa {
	font-size: 100px;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	padding: 7px 15px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	text-transform: uppercase;
}

.btn.btn-view {
	color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.btn.btn-view:hover {
	background-color: #286090;
    border-color: #204d74;
}

.btn.btn-lock,.btn.btn-downloadbca,.btn.btn-downloadrekap {
	padding: 3px 8px;
	color: #fff;
    background-color: #4caf50;
    border-color: #43a047;
}
.btn.btn-lock:hover {
	background-color: #43a047;
    border-color: #4caf50;
}
.btn.btn-downloadbca,.btn.btn-downloadrekap {
	padding: 3px 8px;
	margin-top: 3px;
	color: #fff;
    background-color: #337ab7;
    border-color: #73B6E3;
}
.btn.btn-downloadbca:hover,.btn.btn-downloadrekap:hover {
	background-color: #73B6E3;
    border-color: #337ab7;
}

.trdetail
{
	width: 100%;
	overflow: auto;
	/*padding-bottom: 50px;	*/
}

.trdetail fieldset
{
	padding-bottom: 50px;
}

.fieldtitle{
	color:#34425A;
	font-size: 20px;
	margin-bottom: 10px;
}

fieldset{
	padding: 10px;
	width: calc(100% - 20px);
	border:1px dashed #999;
	border-radius:5px;
	font-size:14px;
	background: rgba(255,255,255,0.75);
}

.fieldsetTab{
}

.fieldsetTabTitleContainer{
	border: 1px solid #999;
	border-radius:5px;
	overflow: hidden;
	padding: 0;
}

.fieldsetTabTitle{
	padding: 5px 18px 5px 19px;
	float:left;
	cursor: pointer;
}

.btnLink
{
	cursor: pointer;
	width: 30px;
	height: 35px;
	margin:0;
}

/*Navigation*/
.navigation #title {
	top:0;
	color: #333;
	width: 100%;
	height: 60px;
	line-height: 60px;
	position: fixed;
	z-index: 100;
	background: rgba(255,255,255,1);
	box-shadow: 0 0 5px grey;
}

.navigation #title .logininfo {
	float: right;
    line-height: 1.4;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
    margin-top: 3px;
    margin-right: 30px;
}

.navnav {
	width: 60px;
	height: 60px;
	float: left;
	padding-left: 10px;
	cursor: pointer;
	background: url(../images/icon.png) center center no-repeat !important;
	background-size: cover;
}

.navnav:hover {
	background: #34425A url(../images/icon.png) center center no-repeat !important;
}

.navnav:hover .root {
	display: block;
}

.navtitle {
	overflow: hidden;
	min-width: 35%;
	float: left;
	font-size: 25px;
	margin-left: 5px;
}

.navigation .root {
	height: 100%;
	width: 180px;
	position: fixed;
	top:50px;
	bottom: 0;
	left: 0;
	z-index: 2000;
	display: none;
	background: #34425A;
	padding: 0;
}

.navigation .root li {
	list-style: none;
	color: #ccc;
	line-height: 15px;
	padding: 10px 8px;
	font-size: 16px;
	position: relative;
}

.navigation .root li:hover {
	color: #fff;
	background: #2b384e;
}

.navigation .root li:hover ul {
	display:block;
}

.navigation .root li ul {
	position: fixed;
	top:60px;
	bottom: 0;
	left: 180px;
	width: 230px;
	height: calc(100vh - 60px);
	overflow-y: scroll;
	z-index: 2000;
	display: none;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #34425A;
	padding: 0;
}

.navigation .root li ul li {
	line-height: 20px;
	padding: 7px 10px !important;
}

.li_mit, .navigation .root li ul li.li_mit {
	height:0 !important;
	padding: 0 !important;
	border-bottom: 1px solid #ccc;
}

.li_mit:hover {
	background: none !important;
}

/*Form*/
.formInput{
	width: calc(100%);
	margin-bottom: 5px;
	clear: left;
}

.formInput input {
	width:calc(100% - 20px);
	font-size: 14px;
	text-align: center;
}

.formInput input[readonly],.formInput textarea[readonly] {
	background-color: rgba(153,153,153,0.5) !important;
}

.formInput select{
	font-size: 14px;
}

.inline-input {
	float: left;
	width: 50%;
	margin: 5px 0;
}

.form-flexible-shift label.error {
	width: auto !important;
	float: none;
	display: block;
}

.checkbox-custom {
	width: 20px;
	height: 20px;
}

.manualForm .part {
	width: calc(100%);
	margin:0 auto;
	float:left;
}

.manualForm .part2 {
	width: calc(50% - 50px);
	margin: 0 auto;
	float: left;
}

.manualForm input {
	text-align: left !important;
}

.manualForm label {
	width: 50%;
	float: left;
	display: inline-block;
}

.dashboard-stats .formInput label {
	margin-bottom: 5px !important;
}

.dashboard-stats .formInput label:first-child {
	font-weight: bold;
}

.error {
	color: #f00;
    font-style: italic;
    font-size: 12px;
    margin: 3px 0;
}

.required-color {
	color: #f00;
}

.e-message {
	color: #fff;
    font-size: 13px;
    font-style: italic;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.e-message.error
{
    background-color: #dc3545;
}
.e-message.success
{
	background-color: #218838;
}
.e-message.warning
{
	background-color: #f57f17;
}
.e-message a {
	color: #fff;
	font-weight: bold;
}
.e-message a:hover {
	text-decoration: underline;
}

.e-message i {
    font-size: 10px;
    float: left;
    padding: 2px 5px;
    border-radius: 4px;
    font-style: normal;
    margin-right: 8px;
    background-color: #fff;
    color: #111;
    font-weight: bold;
}

.btnDelete
{
	color:#f00;
	font-size: 14px;
}

.actionBar h1
{	
	float: left;
	margin-top: 5px;
	margin-right: 20px;
	font-size: 16px;
}

.actionBar input
{
	width:auto !important;
	margin-bottom: 5px;
}

.div_100
{
	width: 100%;
	height: 100%;
	display: block;
	overflow: auto;
}

.tabContainer .tabItem
{
	display: none;
	border: 1px solid #000;
	padding: 5px;
}

.tabContainer .tabHead li
{
	list-style: none;
	border:1px solid #000;
	width: 150px;
	overflow: hidden;
	float:left;
	padding:3px;
}

.tabContainer .tabHead li a
{
	width:100%;
	display: block;
}

.tabContainer .tabHead li:last-child
{
	border-right: 1px solid #000;
}

.tabContainer .tabHead li.active,.tabContainer .tabHead li:hover
{
	background: #000;
}

.tabContainer .tabHead li.active a,.tabContainer .tabHead li:hover a
{
	color:#fff;
}

input[type="smallbutton"]
{   
	height: 20px;
	width: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	overflow: hidden;
	padding: .5em 2em .5em; 
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);

	color: #000;
	font: 12px/100% Arial, Helvetica, sans-serif;
	text-align: center;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);

	border: solid 1px #CCFFCC;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#999));
	background: -moz-linear-gradient(top,  #fff,  #999);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#999');
	
}

.orange 
{
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover 
{
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active 
{
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

.blue 
{
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover 
{
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
.blue:active 
{
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}

label {
	margin-top: 8px;
	margin-bottom: 8px;
	float:left;
	width:calc(50%) !important;
	font-family: Arial;
}

label.action {
	float: none !important;
	width: auto !important;
	margin: 0;
	line-height: normal;
}

label.width3 {
	width:calc(33.33%) !important;
}
label.width3 label.error {
	width: 100% !important;
}

label.width5 {
	width:calc(20%) !important;
}
label.width5 label.error {
	width: 100% !important;
}

.cols-3 {
	width: 25% !important;
}
.cols-9 {
	width: 75% !important;
}

#text
{
	float:left;
	width:100px;
	font-size: 12px;
	font-family: Arial;
}

/*CSS for dropdown box*/


/*CSS for text*/
input{
	font-family: Arial;
}


/*CSS for textarea*/
textarea {
	resize: none;
	height: 50px;
	width: calc(100% - 20px) !important;
	font-family: Arial;
}
select {
	height: 35px;
	width: calc(100% - 8px) !important;
	font-family: Arial;
}

#progressbar{
	width:calc(100% - 2px);
	border:#000 solid 1px;
	height:25px;
	border-radius:5px;
	overflow: hidden;
	position:relative;
}

#progressbar #progresscover{
	width:calc(100% - 4px);
	border:#fff solid 2px;
	height:23px;
	
	border-radius:5px;
	background: -webkit-linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0),rgba(255,255,255,0));
	background: -moz-linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0),rgba(255,255,255,0));
	background: -o-linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0),rgba(255,255,255,0));
	background: linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0),rgba(255,255,255,0));
	position:absolute;
}

#progressbar #progress{
	width:100%;
	height:25px;
	position:absolute;
}

#progressbar #progressStatus{
	width:100%;
	height:25px;
	text-align:center;
	line-height:25px;
	position:absolute;
}

#progressLabelBar{
	width:100%;
	height:45px;
	overflow: hidden;
	position:relative;
	line-height:15px;
}
.progressLabel{
	width:calc(16.6% - 6px);
	padding:0 5px 0 0;
	text-align:right;
	border-right:solid 1px #000;
	float:left;
	font-size:10px;
}

/*TABLE*/
table {
	border-spacing: 0;
}

table tbody ul {
	margin: 0;
	padding: 0;
	padding-left: 5px;
	list-style: none;
}

table tbody td {
	vertical-align: top;
}

.reportTable {
	width: 100%;
	border: 1px solid #aaa;
	border-right: none;
	overflow: hidden;
	border-spacing: 0;
	margin-bottom: 5px;
	font-size: 12px;
}
.fit {
    width: 1% !important;
    white-space: nowrap;
}
.reportTable.late-check-in {
	font-size: 14px;
}
.reportTable .slip-print-date {
	font-size: 11px;
	min-height: 607px;
	height: 607px;
	max-height: 607px;
}
.reportTable thead th{
	border-right: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	text-align: center;
	padding: 3px 5px;
}.reportTable tbody td{
	border-top: 1px solid #aaa;
	border-right: 1px solid #aaa;
	padding: 3px 5px;
}
.thead th {
	border-right: 1px solid #aaa;
	padding: 3px 5px;
}

.reportTitle{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin: 0 10px 0 10px;
}
.reportSubTitle{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin: 10px 10px 20px;
}

.customTable{
	width: 100%;
	border: 1px dashed #999;
	border-bottom: none;
	border-right: none;
	border-radius: 5px;
	overflow: hidden;
}

.customTable thead th{
	height: 25px;
	color: #34425A !important;
	background: rgba(204,204,204,0.5);
	padding: 2px;
	border-right:1px dashed #999;
	border-bottom:1px dashed #999;
}

.customTable tbody td{
	min-height: 25px;
	background: rgba(2555,255,255,0.5);
	color: #333;
	border-bottom:1px dashed #999;
	border-right:1px dashed #999;
	padding: 2px;
}.customTable tbody td select{
	width: calc(100%) !important;
}

.benefit-table tbody td {
	padding: 5px;
}
.benefit-table label {
	width: auto !important;
	float: none;
}

.table-ot thead th {
	padding: 2px 5px;
	vertical-align: middle;
}
.table-ot tbody td {
	padding: 5px;
	vertical-align: middle;
}

.color-info-table {
	display: block;
	margin-top: 20px;
	border-spacing: 8px;
	height: 75vh;
	overflow-y: scroll;
}
.color-info-table .color-info {
	width: 15px;
	height: 15px;
}
.color-info-table tr td:first-child {
	padding: 3px 8px;
	margin-bottom: 10px;
	border: 1px solid #aaa;
}

.bg-unprocessed-leave {
	background-color: #5c6bc0;
}
.bg-rejected-leave {
	background-color: #f06292;
}

ul.color-wrapper {
	margin: 0;
	padding: 0;
	display: inline-block;
}

ul.color-wrapper li {
	float:left;
	list-style: none;
	padding: 5px;
	color:#111;
	border: 2px solid #aaa;
	border-radius: 5px;
	margin: 0 5px 5px 0;
}

ul.color-wrapper li.overtime {
	border: 2px solid #42a5f5;
}

ul.color-wrapper li.benefit {
	border: 2px solid #090;
}

ul.color-wrapper li.permit {
	border: 2px solid #e60;
}

input[readonly],select[disabled],input[disabled],textarea[readonly]{
	background-color: rgba(153,153,153,0.5) !important;
}input[readonly]:hover,select[disabled]:hover,input[disabled]:hover{
	background-color: rgba(153,153,153,0.5) !important;
}

input[type="submit"].btn-submit {
	padding: 10px;
	background-color: #007bff !important;
	border-color: #007bff !important;
	color: #fff !important;
}

.btnSave{
	background: url(../images/btnSave.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnAdd{
	background: url(../images/btnAdd.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnEdit{
	background: url(../images/btnEdit.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnDelete{
	background: url(../images/btnDelete.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnDeleteDt{
	background: url(../images/btnDelete.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnCancel{
	background: url(../images/btnCancel.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnView{
	background: url(../images/btnView.png) left center no-repeat !important;
	padding-left: 20px;
	width:auto !important;
	background-color: rgba(204,204,204,0.5) !important;
}.btnAddDt{
	background: url(../images/btnAdd.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnFilter{
	background: url(../images/btnFilter.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnImport{
	background: url(../images/btnImport.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnPrint{
	background: url(../images/btnPrint.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}.btnDuplicate{
	background: url(../images/btnDuplicate.png) left center no-repeat !important;
	padding-left: 20px;
	background-color: rgba(204,204,204,0.5) !important;
}

.btnSave:hover,.btnAdd:hover,.btnEdit:hover,.btnDelete:hover,.btnDeleteDt:hover,.btnCancel:hover,.btnView:hover,.btnAddDt:hover,
.btnFilter:hover,.btnImport:hover,.btnPrint:hover,.btnDuplicate:hover{
	background-color: rgba(153,153,153,0.5) !important;
}

.btnSave[disabled],.btnAdd[disabled],.btnEdit[disabled],.btnDelete[disabled],.btnDeleteDt[disabled],.btnCancel[disabled],.btnView[disabled],.btnAddDt[disabled],.btnFilter[disabled]
,.btnImport[disabled],.btnPrint[disabled],.btnDuplicate[disabled]{
	background-color:rgba(153,153,153,1) !important;
    color: #ddd !important;
	cursor: default;
}

.btnSave[disabled]:hover,.btnAdd[disabled]:hover,.btnEdit[disabled]:hover,.btnDelete[disabled]:hover,.btnDeleteDt[disabled]:hover
,.btnCancel[disabled]:hover,.btnView[disabled]:hover,.btnAddDt[disabled]:hover,.btnFilter[disabled]:hover,.btnImport[disabled]:hover
,.btnPrint[disabled]:hover,.btnDuplicate[disabled]:hover{
	background-color:rgba(153,153,153,1) !important;
    color: #ddd !important;
}

.datepicker, .datepicker-style {
	background: url(../images/calendar.png) left center no-repeat !important;
	padding-left: 30px !important;
	width: calc(100% - 45px) !important;
}.datepicker-range{
	background: url(../images/calendar.png) left center no-repeat !important;
	padding-left: 30px !important;
	width: calc(50% - 70px) !important;
}
.timepicker{
	background: url(../images/clock.png) left center no-repeat !important;
	padding-left: 30px !important;
}.datetimepicker{
	background: url(../images/clock.png) left center no-repeat !important;
	padding-left: 30px !important;
}

.contentwrapper{
	position: fixed;
	top: 60px;
	right: 0;
	left: 0;
	margin: auto;
	width: calc(100% - 30px);
	/*max-width: 1200px;*/
	height: calc(100% - 50px);
}

.calendar-wrapper {
	/*float:left;
	width:calc(100% - 510px);
	height: 86vh;
    overflow-y: scroll;*/
}

.message{
	text-align: center;
	width: calc(100%-10px);
	font-size: 18px;
}

.report-message{
	text-align: center;
	width: 100%;
	margin-top: 150px;
	font-size: 25px;
}
.report-message .link {
	margin-top: 20px;
	font-size: 18px;
}
.report-message a {
	color: #34425A;
	text-decoration: underline;
}

.hidden {
	display: none;
}

.show {
	display: block;
}

.validate-error-msg label {
	width: auto;
	float: none;
	display: block;
	color: #fff;
	line-height: normal;
}

.validate-error-msg ul {
	margin: 0;
	padding-left: 20px;
}

.note-editor.note-frame.fullscreen {
	top: 60px;
}

.note-editor.note-frame.fullscreen .note-editing-area .note-editable {
	height: calc(100vh - 92px) !important;
}

.template-legend {
	vertical-align: top;
	text-align: left;
	display: none;
	padding-right: 20px;
}

/*Multi Select*/
.multi-select-header {
	margin-right: 15px;
	padding: 5px 10px;
	color: white;
	line-height: 40px;
	border-radius: 5px;
	display: none;
}

.multi-select-list {
	float: left;
	margin-right: 25px;
}

.multi-select-list .multi-subtitle {
	text-align: center;
	padding: 5px;
	background-color: #ddd;
	font-weight: bold;
}

.page-break {
	height: auto;
    page-break-after: always;
}

/*Calendar*/
.holiday-legend {
	font-size: 12px;
	padding: 5px 0 0 10px;
	height: 45px;
	overflow-y: scroll;
	line-height: 15px;
}
.daywrapper {
	min-height: 152px;
}
.monthContainer{
	background-color:rgba(255,255,255,0.5);
	border-radius: 5px;
	border:1px solid #999;
	width: 220px;
	padding: 5px;
	overflow: hidden;
	float: left;
	margin:0 15px 5px 0;
	color:#666;
}.monthTitle{
	width: 100%;
	padding: 0 5px 0 5px;
	height:20px;
	line-height: 20px;
	font-weight: bold;
	color:#333;
}.dayContainerOff{
	width: 28px;
	height:18px;
	border:1px solid transparent;
	float: left;
	font-size: 12px;
	text-align: center;
	line-height: 20px;
}
.dayContainer{
	width: 24px;
	height:16px;
	border:2px solid transparent;
	float: left;
	font-size: 12px;
	text-align: center;
	line-height: 20px;
    margin: 1px;
}.dayContainer:hover{
	border-color:#099;
}

.styleOption{
	float:left;
	padding: 5px;
	color:#333;
	border: 1px solid #999;
	border-radius: 5px;
	margin: 0 5px 5px 0;
	cursor:pointer;
	color:#099;
}.styleOption:hover{
	background-color: rgba(128,255,255,0.5);

}.styleOption2{
	float:left;
	padding: 5px;
	color:#333;
	border: 1px solid #999;
	border-radius: 5px;
	margin: 0 5px 5px 0;
	cursor:pointer;
}.styleOption2:hover{
	background-color: rgba(128,128,32,0.5);

}.styleOption3{
	float:left;
	padding: 5px;
	background-color: rgba(128,255,128,0.5);
	color:#333;
	border: 1px solid #999;
	border-radius: 5px;
	margin: 0 5px 5px 0;
	cursor:pointer;
	color:#099;
	text-decoration: underline;
}.styleOption3:hover{
	background-color: rgba(64,192,64,0.5);

}.styleOption4{
	float:left;
	padding: 5px;
	background-color: rgba(255,128,128,0.5);
	color:#333;
	border: 1px solid #999;
	border-radius: 5px;
	margin: 0 5px 5px 0;
	cursor:pointer;
	color:#099;
}.styleOption4:hover{
	background-color: rgba(192,64,64,0.5);

}

/*Utilities*/
.bold {
	font-weight: bold;
}
.word-break {
	word-break: break-word;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.text-left {
	text-align: left !important;
}
.left {
	float: left;
}
.right {
	float: right;
}
.clearfix {
	clear:both;
}
.p-h-0{
	padding: 3px 0 0 !important;
	text-align: right;
}

.p-h-sm {
	padding: 3px 5px 0;
}

hr {
	margin-bottom: -1px;
}

.full-width {
	width: 100% !important;
}

.bg-red {
	background-color: #dc3545;
}

.bg-green {
	background-color: #218838;
}

.pr-30 {
	padding-right: 30px !important;
}

.pr-50 {
	padding-right: 50px !important;
}

.pr-0 {
	padding-right: 0 !important;
}

.width50 {
	width: calc(50%) !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-10 {
	margin-top: 10px !important;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.ml-20 {
	margin-left: 20px !important;
}

.p5 {
	padding: 5px !important;
}

.pb-5 {
	padding-bottom: 5px !important;
}

.border-right {
	border-right: 1px solid #aaaaaa;
}
.border-left {
	border-left: 1px solid #aaaaaa;
}

/*========*/
.image-wrapper {
	width: 200px;
	height: 100px;
	margin-top: 15px;
}
.image-wrapper img {
	max-height: 100px;
	max-width: 100%;
}
.emp-table tbody td{
	padding: 10px;
}

ul.image-list {
    margin: 5px 0;
    padding: 0;
}

ul.image-list li {
	display: inline-block;
    margin-right: 5px;
    width: 70px;
}

.attachment-wrapper img {
	max-width: 100%;
	height: 50px;
}

.delete-image {
    position: absolute;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 100;
    margin: 1px 1px;
}

.btn-danger {
	padding: 1px;
	background-color: red;
}

.download-attach a {
 	background-color: #006de2;
	border-color: #006de2;
	color: #fff;
	padding: 3px 7px;
	text-decoration: none;
	border-radius: 5px;
	cursor: pointer;
}

.download-attach a:hover {
	background-color: #007bff;
}

/*Select2*/
.select2-container {
	margin: 5px 0;
	font-size: 16px;
}

.btnDelete2 { color: #cc0000; }
.btnApprove2 { color: #00ff00; }
.btnReject2 { color: #ff0000; }

.btnView2, .btnEdit2, .btnDelete2, .btnApprove2, .btnReject2, .btnAttachment {
	margin:1px 7px; cursor:pointer;
}

.color-ink {
	width: 30px;
    height: 30px;
    margin-top: 3px;
    margin-right: 10px;
    float: left;
    border: 1px solid #aaa;
}
