@import url(https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i);body {
  font-size: .875rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #222;
}

.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

.active a {
  font-weight: 400;
  color: #333;
}

.active a .feather {
  color: #333 !important;
}

th a {
  color: #222;
}

.h3 {
  border-bottom: 1px dotted;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #F8F9FA;
}

.btn-info {
  margin-bottom: 1rem;
}

/** login **/

.container-center {
  height: 90vh;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.container-center form {
  width: 50vw;
  min-width: 320px;
  max-width: 650px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.container-center form .btn {
  margin: 0 auto;
}

.container-center form h1 {
  margin-bottom: 48px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}

.container-center form .col {
  padding-left: 0 !important;
}

/** sidebar */

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

/** content */

[role="main"] {
  padding-top: 48px;
  /* Space for fixed navbar */
}

/** navbar */

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}

.navbar .form-control {
  padding: .75rem 1rem;
  border-width: 0;
  border-radius: 0;
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.form-control-dark:focus {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/** utilities */

.border-top {
  border-top: 1px solid #e5e5e5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

/** forms */

label {
  font-weight: bold !important;
}

.form-control[readonly]:focus {
  outline: none !important;
}

.history {
  margin-bottom: 1rem;
}

.form-check {
  padding-left: 32px;
}

