html, body, .app {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

*, input, textarea {
  font-family: "Promixa Nova", sans-serif;
  box-sizing: border-box;
}

.app {
  position: relative;
}
.app > .sidebar, .app > .content {
  position: absolute;
  top: 0;
  bottom: 0;
}
.app > .sidebar {
  left: 0;
  width: 150px;
  box-shadow: inset -10px 0 14px -10px rgba(0, 0, 0, 0.5);
}
.app > .sidebar .logo {
  width: 100%;
  padding: 20px 0;
}
.app > .sidebar .logo > svg {
  width: 100%;
}
.app > .sidebar .active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 700;
}
.app > .content {
  left: 150px;
  right: 0;
  overflow: auto;
  background: #fafafa;
}
.app > .content .card > .table {
  margin-bottom: 0;
}
.app > .content .toolbar {
  height: 50px;
  margin-top: 15px;
}
.app > .content .toolbar .back {
  float: left;
  margin-right: 15px;
}
.app > .content .toolbar .search {
  float: left;
  width: 400px;
}
.app > .content .toolbar .action {
  float: right;
}

.app > .content.padded {
  padding: 10px;
  background: #fafafa;
}

form.inline {
  display: inline-block;
  margin: 0 !important;
}

.graph {
  background: #3d4e5f;
}

a.btn {
  text-decoration: none;
}

/*# sourceMappingURL=layout.css.map */
