/* loading */
.loader {
	font-size: 50px !important;
	color: #999;
	z-index: 9999999;
	margin-top: 36px;
}

.loader-bg {
	position: fixed; top: 50%; left: 50%;
    width: 150px; height: 140px;
	background-color: #000;
	z-index: 9999998;
	opacity: 0.8;
	text-align: center;
	display: block;
    margin: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
	vertical-align: middle;
	border-radius: 5px;
}

.loader-text {
	font-size: 14px;
	color: #999999;
	margin-top: 15px;
}

table.dataTable thead th, table.dataTable thead td {
    border-bottom: 1px solid #dee2e6 !important;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.required {
	color: red;
}