  /* The Overlay (background) */
.project-overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  bottom: 0;
  background-color: #F1F7FD; /* Black fallback color */
  background-color: #F1F7FD; /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.3s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.project-overlay-content {
  position: relative;
  top: 0;
  min-height: 90vh;
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.project-overlayz a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.project-overlayz a:hover, .project-overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.project-overlay .project-closebtn {
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 60px;
  color: #000;
  z-index: 9999;
}

.project-overlay .project-closebtn:hover {
  color: #1977CC;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media  screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}


.navbar-mobile ul {
  border-radius: 8px;
}

.navbar-mobile .active{
    color: #FFF !important;
    background-color: #1977cc !important; 
}

a.admin-item {
  background-color:darkblue;
  color:#FFF;
  font-weight:bold;
}

a.admin-item:hover{
  color:orange;
  background-color:black;
}

.notices img{
  max-width: 100%;
}

.btn-submenu, .btn-submenu-off{
  border:2px solid #f3f4f6;
  border-radius: 1rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  font-weight: bold;
}

.btn-submenu:hover{
  border:2px solid #1977cc;
  color: #1977cc;
}

.btn-submenu-off:hover{
  border:2px solid #C50B22;
  background-color: #C50B22;
  color: #FFF;
}

.btn-submenu-off:hover i.fa-circle{
  color:#000 !important;
}

.table-vc td, .table-vc th{
    vertical-align: middle;
}

.table-vc th{
    position:sticky;
    top: 0 ;
}