@charset "UTF-8";
/* CSS Document */
.ftr {
	height: auto;
	background:#C8C8C8;
}
.ftr p {
	margin:10px 0 10px 0;
}
main {

}
a {
	cursor: pointer;
}
.checkbox label {
	width: auto !important;
}
label {
	width: 100%;
}
.wysiwig .form-control {
	margin-top:20px;
}
/* ChatBar */
.chatbar {
	width:400px;
	height:inherit;
	background:rgba(102,102,102,1.0);
	position: absolute;
	right: 0;
	z-index: 500;
}
.chatbar h1 {
	margin-top:8px;
	margin-bottom:8px;
}
.signtable td {
	padding:1px !important;
	border-top:none !important;
}
.signtable .table {
	margin-bottom: 5px !important;
}
.sigrow {
	margin-top:20px;
	margin-bottom:20px;
}
.holidays .card {
	background: #337ab7;
	color:#ffffff;
	text-align: center;
	min-height: 112px;
	padding:1%;
}
/* Login Page */
.input-group {
	margin:10px 0 10px 0 !important;
}
.login-form-wrap {
	padding:5%;
	text-align: center;
}
.modal-header .close { 
	min-width: 15px !important; 
}
.modal-xl { 
	min-width: 1200px; 
}
.form-alert {
	color:red;
}
.alert-text {
	color:red;
	text-align: center;
	margin:10px 0 10px 0;
}
.spacing {
	padding:60px 0 60px 0;
}
.spacing-top {
	padding:60px 0 0 0;
}
.spacing-bottom {
	padding:0 0 60 0;
}
.section-head {
	text-align: center;
	font-style: italic;
}
.login-logo {
	width:200px;
}
.login-cont {
	min-height: 900px;
	background: url('https://aventusbiolabs.com/wp-content/uploads/revslider/slide1/labo-d.jpg') center no-repeat;
	background-size: cover;
}
.login-cont {
	color:#fff;
}

/* FileCtrl and Grid CSS */
.grid {
  width: 100%;
  height: 250px;
}

.grid-msg-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.grid-msg-overlay .msg {
  opacity: 1;
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 50%;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid #555;
  text-align: center;
  font-size: 24px;
  display: table;
}

.grid-msg-overlay .msg > .center {
  display: table-cell;
  vertical-align: middle;
}

.grid input[type="file"] {
  font-size: 14px;
  display: inline-block;
}
/* Loader/Loading CSS */
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.loader-2 {
 border-top: 16px solid blue;
 border-right: 16px solid green;
 border-bottom: 16px solid red;
}
.loader-3 {
 border-top: 16px solid blue;
 border-right: 16px solid green;
 border-bottom: 16px solid red;
 border-left: 16px solid pink;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}