/* --------------------------------------------------------------------------
 * Sidebar from bootstrap dashboard example
 -------------------------------------------------------------------------- */

.sidebar {
  position: fixed;
  /*top: 0;*/
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 66.2333px; /* Height of navbar */
  height: calc(100vh - 66.2333px);
  /*padding-top: .5rem;*/
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  background-color: #333333;
}

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

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

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

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

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

    /*--------------------------------------------------------------------------*/
    /* Custom nav style  */
    .list-group-item-secondary.sidebar-nav-item-custom{
        background-color: #333333;
        color: white;
        border: none;
    }
    .list-group-item-secondary.sidebar-nav-item-custom:active, .list-group-item-secondary.sidebar-nav-item-custom.active{
        background-color: #F5F8FA;
        color: black;
        border: none;
    }

/* --------------------------------------------------------------------------*/
/* Scrollable content on Overflow*/
div#content{
    overflow-x: scroll;
}

/*Nav Tabs in Vehicule.show */
ul#rapports_tabs{
    max-height: 50vh;
    overflow-y: scroll;
}

/* --------------------------------------------------------------------------*/
/* App Name */
#app_title{
    color: #fc370a /* Orange title */
}

/* --------------------------------------------------------------------------*/
/* Logos */

/*Logo sidebar*/
img#logo_sidebar{
    max-width: 150px;
    margin-bottom: 20px;
}

img#logo_nav{
    max-height: 40px;
    margin-right: 10px;
}

.dz-error-message{
    top: 150px !important;
}