.breadcrumb-item {
  margin-top: 20px;
}
a svg, span svg {
  height:1rem;
  width:1rem;
}
.dropdown-item.active, .dropdown-item:active {
  color:inherit;
  background: none;
  font-weight: 700;
}

thead td {
  font-weight: 700;
}
.dashboard-stats {
  text-align: left;
}
@media (min-width: 576px) {
  .dashboard-stats {
    text-align: center;
  }
  .dashboard-stats .first {
    text-align: left;
  }
  .dashboard-stats .last {
    text-align: right;
  }
}
@media (max-width: 576px) {
  .footer {text-align: center;}
}
.alert {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
    display: block;
}
body {
  min-height: 75rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  min-height: 100vh;
}
#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top:7px;
  height: 2.5rem;            /* Footer height */
}
.text-muted a {
  text-decoration: none;
  color: var(--text-color);
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}
.pulse {
    animation:pulse-green 2s infinite
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow:0 0 0 0 rgba(25, 135, 84, .7)
    }

    70% {
        transform: scale(1);
        box-shadow:0 0 0 10px rgba(25, 135, 84, 0)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0)
    }
}
