html, body {
  font-size: 1rem;
  font-family: Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: white; }

a {
  color: black;
  text-decoration: none; }

a:hover {
  text-decoration: none; }

.bold {
  font-weight: 700; }

#login-panel {
  width: 100vw;
  height: 100vh;
  padding-left: 20px;
  vertical-align: middle;
  display: table-cell; }
  #login-panel input {
    padding: 5px;
    margin: 5px; }

.layout-container {
  position: relative;
  display: grid;
  height: 100vh;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 50px 1fr 25px;
  grid-template-areas: "brand header" "nav main" "nav footer"; }
  .layout-container .brand {
    grid-area: brand;
    background: #2a3d5d;
    line-height: 50px;
    padding: 0 5px; }
  .layout-container .layout-header {
    grid-area: header;
    background: white;
    color: #444444;
    border-bottom: solid thin #e0dfdf;
    line-height: 50px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr; }
    .layout-container .layout-header a {
      color: #444444; }
    .layout-container .layout-header .header-center {
      text-align: center; }
      .layout-container .layout-header .header-center input {
        width: 100%;
        border: thin solid silver;
        text-align: center; }
    .layout-container .layout-header .header-right {
      text-align: right; }
  .layout-container .layout-nav {
    grid-area: nav;
    background: #252d3b;
    color: #cccccc;
    padding: 0; }
    .layout-container .layout-nav a {
      color: #cccccc; }
    .layout-container .layout-nav li {
      line-height: 20px;
      list-style-type: none; }
  .layout-container .layout-main {
    grid-area: main; }
  .layout-container .layout-footer {
    grid-area: footer;
    color: #3c4b64;
    background: #ebedef;
    line-height: 25px;
    padding: 0 10px;
    font-size: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr; }
    .layout-container .layout-footer a {
      margin-right: 1em;
      color: #444; }
    .layout-container .layout-footer .footer-left {
      height: 25px; }
    .layout-container .layout-footer .footer-right {
      height: 25px;
      text-align: right; }
  .layout-container .layout-slide {
    grid-area: slide;
    background: pink; }

.main-menu {
  display: inline; }
  .main-menu ul {
    padding: 0;
    display: inline; }
    .main-menu ul li {
      display: inline;
      line-height: 50px; }
  .main-menu a {
    height: 50px;
    padding: 16px 10px; }
  .main-menu a:hover {
    background: #eee; }
  .main-menu a.active {
    background: #e8e6e6; }

.apps-menu ul {
  margin: 0;
  padding: 0; }
  .apps-menu ul .apps-menu-item {
    line-height: 2em; }
    .apps-menu ul .apps-menu-item .app-icon {
      padding: 10px;
      display: inline; }
      .apps-menu ul .apps-menu-item .app-icon i {
        width: 1em; }
    .apps-menu ul .apps-menu-item .app-link {
      padding: 10px 0;
      display: inline; }
  .apps-menu ul li {
    line-height: 2em;
    display: block;
    width: 100%;
    clear: both;
    padding: 0; }
  .apps-menu ul li:hover {
    background: #50617d; }

.apps-menu-item {
  padding: 5px; }

.apps-menu-item.active {
  background: #465c80; }

.brand {
  line-height: 50px;
  color: #cccccc;
  font-size: 1.2rem; }
  .brand .brand-name {
    margin-left: 0; }
  .brand img {
    height: 30px;
    padding-top: 5px;
    display: inline;
    float: left;
    margin: 5px; }

#pull-sheets-action, #double-check-action {
  background: #39f;
  border-color: #39f; }

#delete-action, #uncommit-action, #unconfirm-action {
  background: white;
  color: black;
  border: thin solid silver; }

.content .alert {
  position: absolute;
  width: 60%;
  margin-left: 20%;
  animation: fadeout 2s linear;
  text-align: center;
  opacity: 0; }

@keyframes fadeout {
  0% {
    opacity: 1; }
  70% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.home-app .content-container-inner, .reports-app .content-container-inner, .dashboard-app .content-container-inner, .profile-app .content-container-inner {
  top: 0; }
  .home-app .content-container-inner .app-icons ul, .reports-app .content-container-inner .app-icons ul, .dashboard-app .content-container-inner .app-icons ul, .profile-app .content-container-inner .app-icons ul {
    margin-top: 0; }

.apps-menu ul li:last-child {
  position: absolute;
  bottom: 0;
  width: 200px; }
