body {
	font-family: Arial, Helvetica, sans-serif;
	color: #44544f;
	margin: 0;
	padding: 0;
}

.env-banner {
	width: 100%;
	background-color: #d32f2f;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 6px 0;
	letter-spacing: 0.5px;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  background-color: #aad2c7;
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}

.sidebar .nav-link.active {
  color: #007bff;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/*
 * Content
 */

[role="main"] {
  padding-top: 12px; /* Space for fixed navbar */
}

@media (min-width: 768px) {
  [role="main"] {
    padding-top: 24px; /* Space for fixed navbar */
  }
}

@media (min-width: 768px) {
  .modal-xl {
   width: 90%;
   max-width:1200px;
  }
}

/*
 * Navbar
 */
.bg-lims-dark {
	background-color: #76938b;
}
.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
}
.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}
.form-control-dark {
  color: #fff;
  background-color: #76938b;
  border-color: rgba(255, 255, 255, .1);
}
.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

/*
 * Datatables
 */
.dataTables_paginate {
  float: right !important;
}
.dataTables_filter {
  float: left !important;
}

.th_searchColumns {
	color: #fff;
	background-color: #76938b;
}

.th_inactiveRow {
	color: #a9a9a9;
	font-style: italic;
	background-color: #e6e6e6;
}

/**
 * Form Required Asterisk
 */
.form-group.required .col-form-label:after { 
   content:"*";
   color:red;
}

a:not([href]):not([tabindex]) {
  color: #007bff;
  text-decoration: none;

  @include hover-focus {
    color: #06c;
    text-decoration: underline;
  }

  &:focus {
    outline: 0;
  }
}

/* Multi-line on grid support.
*/
td.details-control {
	text-align:center;
    color:forestgreen;
    cursor: pointer;
}
tr.shown td.details-control {
    text-align:center; 
    color:red;
}

/* Mobile menu support.
*/
.dropdown-menu {
    width: 250px;
}


/* JQuery Autocomplete
 * This allows complete removal the the JQuery UI CSS dependency
*/
.ui-menu {
    list-style: none;
    padding: 1;
    margin: 0;
    display: block;
    outline: none;
}

.ui-autocomplete {
	border: 1px solid #000000;
	width: 120px;
	border-radius: 3px;
	overflow: hidden;
	background: #ffffff;
}

.ui-autocomplete select {
	padding: 5px 8px;
	width: 120px;
	border: 1px solid #000000;
	box-shadow: none;
	background: #0080ff;
	-webkit-appearance: none;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: #408080!important;
    font-weight: bold !important;
    color: #ffffff !important;
}

.ui-helper-hidden-accessible { display:none; }

.report-bold {
	font-weight: bold !important;
	background-color: rgb(255, 255, 191) !important;
}