/* Allow the dropdown menu to scroll if it exceeds the viewport height */
.dropdown-menu {
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

/* Style portal header */
.navbar-light>.navbar-brand {
  color: #777;
  font-size: 1.1rem;
}
.navbar-light>.navbar-brand:hover {
  color: #5e5e5e;
  background-color: transparent;
}

.nav-item {
  color: #777;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: .9rem;
}

.dropdown-item {
  font-size: .9rem;
  color: #333;
  padding: 0.25rem 1.2rem;
}

.dropdown-item.active, .dropdown-item:active {
  color: #333;
  background: #e7e7e7;
  font-weight: 500;
}

/* Style active nav items */
.nav-item.active, .navbar-light .navbar-nav .active>.nav-link {
  color: #777;
  background: #e7e7e7;
  font-weight: 500;
}

/* Test portal warnings */
body>.test-portal-warning {
  padding-left: 1rem;
  padding-top: 0.25rem;
  /* border-bottom: 1px solid rgba(221, 53, 69, 0.4); */
  border-bottom: 1px solid #dee2e6;
}

.test-portal-warning {
  font-family: "ProximaNova-Bold-webfont";
  font-size: 1.3rem;
}

/* Full height layout where footer will stick to the bottom */
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* Avatar styles - Square */
.avatar-square {
  width: 100px;
  height: 100px;
  background-color: #6a6a6a;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.avatar-square-sm {
  width: 40px;
  height: 40px;
  background-color: #6a6a6a;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.avatar-square-sm .initials {
  position: relative;
  top: 10.5px;
  font-size: 25px;
  line-height: 20px;
  color: #fff;
  font-family: "Courier New", monospace;
  /*font-weight: bold;*/
}

/* Avatar styles - Circle does not appear to be used */
.avatar-circle {
  width: 100px;
  height: 100px;
  background-color: #6a6a6a;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.avatar-circle .initials {
  position: relative;
  top: 25px;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

.avatar-circle-sm {
  width: 40px;
  height: 40px;
  background-color: #6a6a6a;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.avatar-circle-sm .initials {
  position: relative;
  top: 10.5px;
  font-size: 25px;
  line-height: 20px;
  color: #fff;
  font-family: "Courier New", monospace;
  /*font-weight: bold;*/
}
