body {
    font-size: .875rem;
  }
  
  .feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
  }
  
  /*
   * Sidebar
   */
  
  .sidebar {
    position: fixed;
    top: 0;
    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);
  }
  
  @media (max-width: 767.98px) {
    .sidebar {
      top: 5rem;
    }
  }
  
  .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 .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;
  }
  
  /*
   * Navbar
   */
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .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);
  }

  /*
   * custom
   */

  /* .__user_table th{
    text-align: center;
  } */
  
  .__user_table th form label{
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 0;
  }

  .__user_table th form select{
    border-radius: 5px;
    border-color: white;
    text-align: center;
    font-size: 0.7rem;
    width: 4.5rem;
    height: 1.3rem;
  }
  .__user_table th form select:nth-of-type(2){
    width: 5.5rem;
    height: 1.3rem;
  }

  .__user_table thead:nth-child(1){
    background-color: #1D4AC9;
    color: white;
  }

  .__user_table th > form{
    height: 1.2rem;
  }

  .__user_table th:nth-child(1){
    width: 5%;
  }
  .__user_table th:nth-child(2){
    width: 10%;
  }
  .__user_table th:nth-child(3){
    width: 15%;
  }
  .__user_table th:nth-child(4){
    width: 10%;
  }
  .__user_table th:nth-child(5){
    width: 15%;
  }
  .__user_table th:nth-child(6){
    width: 25%;
  }
  .__user_table th:nth-child(7){
    width: 20%;
  }

  .__manageUserIndex{
    display: inline-block;
  }

  .__user_table tr{
    justify-content: space-between;
  }

  .__hoverMenu{
    display: none;
  }

  tr:hover .__hoverMenu{
    display: block;
  }

  .__duplicationBtn{
    background-color: lightgray;
    color: white;
    border: 1px solid #ced4da;
    border-radius: 0 .375rem .375rem 0;
  }