/* browser loading */

.browser-loading {
  position: absolute;
  bottom: 77px;
  z-index: 1055;
  height: 3px;
  width: 100%;
}

.browser-loading:before {
  display: block;
  position: absolute;
  content: '';
  left: -50px;
  width: 10%;
  height: 3px;
  background-color: rgb(0, 110, 255);
  -webkit-animation: browser-loading 8s linear infinite;
  animation: browser-loading 8s linear infinite;
}

@keyframes browser-loading {
  from {
    left: 0%;
  }

  50% {
    left: 90%;
    background-color: rgb(0, 110, 255);
  }

  to {
    left: 0%;
  }
}

.logged-in {
  background-color: #547c37;
}

.logged-in:hover {
  background-color: #547c37;
}

.logged-out {
  background-color: #7c3737;
}

.logged-out:hover {
  background-color: #7c3737;
}

.table-font {
  font-size: 18px;
}

.error {
  color: red;
}
