body, div.container table.table, div.container-fluid table.table, input.form-control, select.form-control {
  color: #1C4269;
}

div.container table.table th, div.container-fluid table.table th {
  color: #888;
}


.container {
  background-color: #f4f4f4;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 10px auto;
  max-width: 80%;
}

.h2Container {
  font-family: "Lucida Sans Unicode", courier New;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05rem;
  color: #10263C;
  text-transform: uppercase;
  text-align: left;
  margin: 0 auto 2rem;
  line-height: 1.2;
}

.h2Container h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

section.content {
  background-color: #f4f4f4;
  padding: 20px 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 10px 0.5em;
  overflow-x: scroll;
}

@media (min-width: 768px) {
  .rightside {
    text-align: right;
  } 
}

div.rightside label {
  font-weight: 600;
  color: #888;
}


.required {
  color: red;
  font-weight: bold;
}

.icon-blue {
  color: blue;
}

@import url("https://fonts.googleapis.com/css?family=Lato");

#logout.dropdown-item:hover,
#logout.dropdown-item:active,
.navbar-light .navbar-nav li.active a.nav-link,
.navbar-light .navbar-nav .nav-link:hover {
  font-weight: 600;
}

#adminvw {
  position: relative;
  top: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Lato", sans-serif;
}

h1 {
  margin: 40px 0 20px;
}

.lock {
  border-radius: 5px;
  width: 55px;
  height: 45px;
  background-color: #333;
  animation: dip 1s;
  animation-delay: 1.5s;
}
.lock::before,
.lock::after {
  content: "";
  position: absolute;
  border-left: 5px solid #333;
  height: 20px;
  width: 15px;
  left: calc(50% - 12.5px);
}
.lock::before {
  top: -30px;
  border: 5px solid #333;
  border-bottom-color: transparent;
  border-radius: 15px 15px 0 0;
  height: 30px;
  animation: lock 2s, spin 2s;
}
.lock::after {
  top: -10px;
  border-right: 5px solid transparent;
  animation: spin 2s;
}

@keyframes lock {
  0% {
    top: -45px;
  }
  65% {
    top: -45px;
  }
  100% {
    top: -30px;
  }
}
@keyframes spin {
  0% {
    transform: scaleX(-1);
    left: calc(50% - 30px);
  }
  65% {
    transform: scaleX(1);
    left: calc(50% - 12.5px);
  }
}
@keyframes dip {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
