body {
  font-size: .875rem;
}

.feather {
  width: 16px;
  height: 16px;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  /* rtl:raw:
  right: 0;
  */
  right: 50px;
  bottom: 0;
  /* rtl:remove */
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 54px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.card:hover {     
  cursor: pointer; 
  box-shadow:  0 8px 16px 0 rgba(0,0,0,0.2);
}

.jumbotron-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767.98px) {
  .sidebar {
    top: 5rem;
  }
}

.sidebar-sticky {
  height: calc(100vh - 54px);
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #727272;
}

.sidebar .nav-link.active {
  color: #e91c24;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
}

.nav-link.dropdown-toggle[aria-expanded="true"]:after {
  transform: rotate(180deg); 
}

.nav-link.dropdown-toggle:after { 
transition: 0.4s; 
}

/*
 * Navbar
 */

.navbar-brand {
  padding-top: .2rem;
  padding-bottom: .2rem;
  overflow-x: hidden;
}

.navbar .navbar-toggler {
  top: .25rem;
  right: 1rem;
}

.navbar .form-control {
  padding: .75rem 1rem;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  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);
}

.fw-semibold { font-weight: 600; }
.lh-tight { line-height: 1.25; }

.spinner-grow {
  animation-duration: 1s;
  width: 0.5rem;
  height: 0.5rem;
}

@keyframes spinner-grow {
  0% {
    opacity: 0;
    transform: none;
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

th.cell-fill-green {
  background: #38cc5c!important;
  color: white;
}
th.cell-fill-orange {
  background: #ffb434!important;
  color: white;
}
th.cell-fill-red {
  background: #e85c54!important;
  color: white;
}