* {
  font-family: "Raleway", "Open Sans", sans-serif;
}

:root {
  --backgroundX: 0px;
  --backgroundY: 0px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

header {
  background-color: rgb(47, 26, 69);
  z-index: 10;
}


main {
  background-color: #f2edf8;
  /*max-height: 80vh !important; */
  overflow-y: auto;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

#background {
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.snp-blue {
  background-color: #00adef !important;
  border-color: #00adef !important;
}

#background::before {
  content: "";

  display: block;
  position: fixed;
  width: 400%;
  height: 400%;
  top: calc(-150% + var(--backgroundY));
  left: calc(-150% + var(--backgroundX));

  z-index: -1;

  background-image: url("logo-crest-20.svg");
  background-size: 200px;

  transform: rotate(-20deg);
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  pointer-events: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  transform: translateY(-100%);
  margin-top: -10px;
  margin-left: 10px;
  border-radius: 5px;
  opacity: 0;
  z-index: 2;

  transition: opacity 0.3s ease-in-out;
}

[data-tooltip]:hover::before {
  opacity: 1;
}

[data-tooltip]::after {
  content: "▼";
  position: absolute;
  color: rgba(0, 0, 0, 0.9);
  top: -16px;
  width: 10px;
  height: 10px;
  left: 23px;
  opacity: 0;

  transition: opacity 0.3s ease-in-out;
}

[data-tooltip]:hover::after {
  opacity: 1;
}

.maxWidth {
  max-width: 1500px;
}

#sidebar-container .list-group-item.active {
  background-color: rgb(242, 237, 247);
  border-color: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

#sidebar-container .list-group-item:hover {
  background-color: rgb(242, 237, 247);
  color: rgb(0, 0, 0);
}

.pagination > li > a,
.pagination > li > a:hover,
.pagination > li > a:focus {
  background-color: #00adef !important;
  border-color: #00adef !important;
  color: #ffffff;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus {
  background-color: #00abefc7 !important;
  border-color: #00abefc7 !important;
  color: #fff;
}

.footer-date {
    font-size: 10px;
}

/*hide enrollment date */
.enrollment-date-container {
    display: none;
}
/*hide academic program code */
.program-code-container {
    display: none;
}
/*hide academic program id */
.program-id-container {
    display: none;
}
/*hide course load container */
.course-load-container {
    display: none;
}
/*hide ei container */
.ei-container {
    display: none;
}

#submissionTableBody {
    font-size: 12px;
}    
}
