body {
    padding-top: 8rem;
  }

  .navbar .nav-icon {
    width: 2em;
    height: 2em;
  }


  .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow:
      inset 0 0 0 2px rgba(255,255,255,0.6), 
      0 1px 1px rgba(0,0,0,0.1);
    background-color: transparent !important;
    z-index: 999;
  }
  
  .inset img {
    border-radius: inherit;
    width: inherit;
    height: inherit;
    display: block;
    position: relative;
    z-index: 998;
  }

.breadcrumb {
    background-color: inherit;
}  

.logo {
    width: 3em;
    height: 3em;
}

/*
 * Login form
 *
*/
.form-login {
  width: 100%;
  max-width: 420px;
  padding: 15px;
  margin: auto;
}

.form-login .heading svg {
  width: 8em;
  height: 8em;
}

/*
 * Form
*/

form label {
    font-weight: 600;
}

form .required {
    color: red!important;
}

form .error {
    color: red!important;
}

/*
 * Feather
*/

.feather {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

/*
 * Sidebar
 */

 .sidebar {
    position: fixed;
    /* min-width: max-content; */
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 7em 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  }
  
  .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: 600;
    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;
  }

  .CodeMirror {
    border: 1px solid #aaa;
  }

  .CodeMirror-h125 .CodeMirror { height: 125px; }
  .CodeMirror-h250 .CodeMirror { height: 250px; }
  .CodeMirror-h500 .CodeMirror { height: 500px; }
