:root {
    --navbar-height: 6.5rem;
    --footer-height: 30rem;
}
/* Navbar */
.tm-navbar {
    height: var(--navbar-height);
    z-index: var(--z-navbar);
    background-color: white;
}

/* App Content */

footer {
    overflow: auto;
    padding         : 18px;
    color           : var(--darkestgray);
    font-size       : 14px;
    border-top      : 1px solid #9329FF;
    width           : 100%;
    background-color: #fff;
    height: var(--footer-height);
    margin-bottom: 0;
  }

  footer ul li a {
    color          : var(--darkestgray) !important;
    text-decoration: underline !important;
  }

  footer .row {
    align-items: center;
  }

  footer ul {
    display        : flex;
    flex-direction : row;
    justify-content: space-between;
    text-align     : right;
    margin         : 0;
  }

  footer.static-gray {
    background-color: var(--lightgray) !important;
    border-top: 0;
    margin-top: auto;
    bottom: 0;
    z-index: 10;
  }

  .modal-footer {
    border-top: 1px solid #E4E4E4 !important;
  }


.tm-content {
    height: calc(100vh - var(--navbar-height) - 6.5rem);
    overflow: auto;
}

/* Dashboard */
div.dashboard-module {
    padding: 20px;
    margin-left: -15px;
    margin-right: -15px;
    display       : flex;
    flex-direction: column;
}

div.dashboard-module:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
    display       : flex;
    flex-direction: column;
}

/* Dashboard reports card description should match module description typography */
.tm-dashboard-module-description {
    font-size: 1.6rem;
    line-height: normal;
    color: inherit;
    font-weight: 400;
    margin-top: 2rem;
    padding: 0 20px;
    display: block;
}

div.module:last-child {
    padding-top: 20px;
    padding-bottom: 10px;
    margin-left: -15px;
    margin-right: -15px;
    display       : flex;
    flex-direction: column;
}

p.days-remaining {
    font-size      : 1.5rem;
    line-height    : 2rem;
    font-weight    : 600;
    margin-top: 2rem;
    margin-left: 1.5rem;
}
