/*
 * Typography
 */

body {
  font-size: .875rem;
}

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

.page-header {
  margin-top: 10px;
}

.c-pointer {
    cursor: pointer;
}

.c-default {
    cursor: default;
}

/*
 * Nav
 */

#nav-title{
  display: inline;
  font-weight: 400;
}

.nav-link {
  font-weight: 500;
  color: #333;
}
.nav-link.active {
  color: #007bff !important;
}

.nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

/*
 * Sidebar
 */

.container {
  padding-left: 30px;   /* tied to .sidebar width */
}

.sidebar {
  position: fixed;
  width: 145px;     /* col-md-2 */
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;    /* in front of navbar */
  padding: 0 0 0;   /* height of navbar */
}

.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-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/*
 * Cards
 */
.card-header svg {
  transition: .3s transform ease-in-out;
}

.card-header .collapsed svg {
  transform: rotate(90deg);
}

.card-header.alert {
    margin-bottom: 0;
}

.card-header.status {
    margin-bottom: 0;
    padding: 0;
}

/*
 * Content
 */

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

@media (min-width: 768px) {
  [role="main"] {
    padding-top: 48px; /* Space for fixed navbar */
  }
}

.progress {
  width: 200px;
  vertical-align: middle;
}

.blockquote-footer {
    float: right;
    display: block;
    font-size: 80%;
    color: #6c757d;
}
