
::-webkit-scrollbar { width: 8px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.3)}

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: 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    overflow: auto;
  }
  
  .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 .search input{
    display: block;
    width: 100%;
    padding: 0 15px;
    color: #CCC;
    line-height: 34px;
    text-transform: none;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }
  .sidebar .nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
  }
  .sidebar .nav-link:hover {
    background-color: #f3f3f3
  }
  
  .sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
    float: right;
  }
  
  .sidebar .nav-link.active {
    color: #007bff;
    background-color: #EEE;
  }
  .sidebar .nav-link.open:after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top:50%;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    background-color: #007bff;
    border-radius: 50%;

  }
  
  .sidebar .nav-link:hover .feather,
  .sidebar .nav-link.active .feather {
    color: inherit;
  }
  
  .sidebar-heading {
    font-size: .65rem;
    text-transform: uppercase;
  }
  
  /*
   * Content
   */
  
  [role="main"] {
    padding: 0 !important;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
  }
  [role="main"] > iframe {

    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
  }