body {
  font-size: .875rem;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 40px;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  background-color: #689500;
}

.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: 300;
  color: #e5efcc;
}

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

.sidebar .nav-link.active {
  color: #ffffff;
  background-color: #000000;
}

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

.sidebar-heading {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 400px;
  color: #ffffff;
}

/*
 * Navbar
 */

.navbar {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  background-color: #689500;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  height: 70px;
  width: 100%;
  color: #ffffff;
}

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

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.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);
}
.nav-item {
    font-size: 18px;
}
.bg-light {
    background-color: #689500;
}

h1 {
    color: #689500;
    text-transform: uppercase;
}

.jumbotron {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background-color: #f1f5f1;
    border-radius: .3rem;
}

.btn-primary {
    color: #fff;
    background-color: #76a41b;
    border-color: #76a41b;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e1e8e1; /*#f1f5f1;*/
}
.table td, .table th {
    border-top: 1px solid #8fb6a1;
}
.table thead th {
    border-bottom: 2px solid #8fb6a1;
}

.border-bottom {
    border-bottom: 1px solid #8fb6a1!important;
}

a {
    color: #76a41b;
    text-decoration: none;
    background-color: transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #8fb6a1 #8fb6a1 #fff;
}