html,
body {
  height: 100%;
  font-family: "Courier New";
  font-size: 20px;
}

html,
body,
input,
textarea,
button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-left: 1px;
  z-index: 2;
  transition: left 0.2s;
  background-color: #ededed;
}

#sidedrawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 200px;
  left: -200px;
  overflow: auto;
  z-index: 2;
  transition: transform 0.2s;
}

#content-wrapper {
  min-height: 100%;
  overflow-x: hidden;
  margin-left: 0px;
  transition: margin-left 0.2s;

  /* sticky bottom */
  margin-bottom: -160px;
  padding-bottom: 160px;
}

#footer {
  height: 160px;
  margin-left: 0px;
  transition: margin-left 0.2s;
}

@media (min-width: 768px) {
  #header {
    left: 200px;
  }

  #sidedrawer {
    transform: translate(200px);
  }

  #content-wrapper {
    margin-left: 200px;
  }

  #footer {
    margin-left: 200px;
  }

  body.hide-sidedrawer #header {
    left: 0;
  }

  body.hide-sidedrawer #sidedrawer {
    transform: translate(0px);
  }

  body.hide-sidedrawer #content-wrapper {
    margin-left: 0;
  }

  body.hide-sidedrawer #footer {
    margin-left: 0;
  }
}


/**
 * Toggle Side drawer
 */
#sidedrawer.active {
  transform: translate(200px);
  background-color: #ededed;
}


/**
 * Header CSS
 */
.sidedrawer-toggle {
  color: #454a5d;
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
  margin-right: 10px;
}

.sidedrawer-toggle:hover {
  color: #454a5d;
  text-decoration: none;
}


/**
 * Footer CSS
 */
#footer {
  background-color: #fff;
  color: #454a5d;
}

#footer a {
  color: #454a5d;
  text-decoration: underline;
}
/**
 * Side drawer CSS
 */
#sidedrawer-brand {
  padding-left: 20px;
}

#sidedrawer ul {
  list-style: none;
}

#sidedrawer > ul {
  padding-left: 0px;
}

#sidedrawer > ul > li:first-child {
  padding-top: 15px;
}

#sidedrawer strong {
  display: block;
  padding: 15px 22px;
  cursor: pointer;
}

#sidedrawer strong:hover {
  background-color: #ffffff;
}

#sidedrawer strong + ul > li {
  padding: 6px 0px;
}
.header-logo {
  padding: 5px;
}
.header-logo img {
  width: 85%;
}
.page-content {
  margin-top: 15px;
}

.actions.toolbar-btn {
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: inline-block;
}

.mui-textfield > input[type="range"] {
  cursor: grab;
}
.mui-textfield > input[type="range"]:active {
  cursor: grabbing;
}

table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

@media only screen  and (max-width: 1280px) {
  table {
    display: block;
  }

}

.bi {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

/*
 * Sidebar
 */

@media (min-width: 768px) {
  .sidebar .offcanvas-lg {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
  }
  .navbar-search {
    display: block;
  }
}

.sidebar .nav-link {
  font-size: .875rem;
  font-weight: 500;
}

.sidebar .nav-link.active {
  color: #2470dc;
}

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

/*
 * Navbar
 */

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.navbar .form-control {
  padding: .75rem 1rem;
}

.rp--view-mode label[active=active] {
  background-color: #212529;
  color: #fff;
  border-radius: 5px;
}

