*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

.navbar-brand {
  width: 30%;
}

#odu-logo {
  max-width: 350px;
  height: auto;
}

body {
  font-family: Archivo SemiExpanded, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
  overflow: scroll;
}

#topNav,
.submenu {
  background-color: rgb(244, 244, 245);
  display: block;
  padding: 1rem;
}

ul.text-sm,
ul.text-xl,
#breadcrumb-header ol {
  padding: 0.5rem 0;
  li {
    a {
      color: rgb(2, 2, 58);
    }
  }
}

.text-sm {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
  color: #003767;
}

.text-xl {
  font-size: 1.3rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #fff;
}

#mainNav {
  background-color: #fff;
  padding-bottom: 0.6rem;

  ul {
    padding-top: 2rem;
  }

  .active {
    a {
      width: fit-content;
      border-bottom: 5px solid gold;
    }
  }
}

.icon-wrapper {
  display: none;
  position: relative;
  margin-right: 1rem;

  span {
    color: #003767;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    top: 30px;
    left: -1px;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\2022";
  vertical-align: middle;
  color: #022e49;
}

.table-wrapper {
  padding: 1rem 0;
}

#main-content {
  margin-top: -14px;
  font-weight: 500;
}

#info-for-select {
  option {
    font-size: 1rem;
    font-weight: 600;
    line-height: 3;
  }
}

#info-for-select,
#site-search {
  background-color: #fff;
  padding: 0.6rem;
  margin: 0 1rem;
}

.root-search {
  position: relative;
}

.search-button {
  position: absolute;
  right: 1.3rem;
  top: 0.5rem;

  svg {
    fill: #003767;
  }
}

.page-header__text {
  background: linear-gradient(rgb(0, 55, 103), rgb(0, 85, 134));
  color: #fff;
  padding: 6rem;

  h1 {
    font-size: 4rem;
    font-family: "Saira", sans-serif;
    letter-spacing: -3px;
    font-weight: bold;
  }
}

/* Table styles */

.table-wrapper {
  p {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1;
  }

  h2 {
    font-size: 3rem;
  }

  ul {
    font-size: 1.2rem;
    margin: 2rem;

    li {
      line-height: 1;
      padding: 1rem;
    }
  }
}

.table-container {
  padding: 4rem 0;
}
#tablecontent_length,
#tablecontent_filter {
  margin-bottom: 1rem;
}

#tablecontent > thead > tr > th {
  padding: 0.2rem 1.5rem;
  color: #fff;
  text-decoration: underline;
  background-color: rgb(0, 85, 134);
  font-size: 1rem;

  label {
    text-decoration: underline;
  }

  .col_filter {
    background-color: #fff;
    padding: 0.2rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }
}

#tablecontent > thead > tr {
  color: #022e49;
  font-family: Archivo SemiExpanded, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
}

div#tablecontent_paginate {
  color: #022e49;

  a#tablecontent_previous,
  a#tablecontent_next {
    border-radius: 20px;
    background-color: rgba(215, 236, 253, 0.842);
  }

  span a.paginate_button {
    border-radius: 50%;
    background-color: rgba(215, 236, 253, 0.755);
    margin: 0.5rem;
  }

  .paginate_button.current[aria-current="page"] {
    background-color: #022e49;
    color: #fff !important;
  }
}

.tooltip-box {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(48, 93, 218);
  padding: 15px 15px;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  color: white;
}

#dismissTip {
  background: none;
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
}

@media (max-width: 768px) {
  .extra-info { display: none; }

  .tooltip-box {
    display: none;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: white;
  margin: 50% auto;
  padding: 20px;
  width: 70%;
  max-width: 400px;
  border-radius: 10px;
  position:relative;
}
.close {
  position:absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 445px) {
  .navbar-brand {
    width: 60%;
  }

  #odu-logo {
    max-width: 250px;
  }

  .icon-wrapper {
    display: block;
  }

  header {
    h1 {
      font-size: 3rem;
    }
  }

  #topNav {
    display: none;
  }
  .page-header__text {
    background: linear-gradient(rgb(0, 55, 103), rgb(0, 85, 134));
    color: #fff;
    padding: 2rem;

    h1 {
      font-size: 1.5rem;
      line-height: 1;
      letter-spacing: -1px;
    }
  }
}

@media (min-width: 446px) and (max-width: 991px) {
  .navbar-brand {
    width: 80%;
  }

  .icon-wrapper {
    display: block;
  }

  #odu-logo {
    max-width: 250px;
  }

  .box-light {
    border-left: none;
    padding: none;
  }

  #topNav {
    display: none;
  }
  .page-header__text {
    background: linear-gradient(rgb(0, 55, 103), rgb(0, 85, 134));
    color: #fff;
    padding: 4rem;

    h1 {
      font-size: 3rem;
      line-height: 1;
      letter-spacing: -1px;
    }
  }
}
/* Footer */
.oduGlobal_branding_container {
  margin-top: 7px;
  display: flex;
  align-items: flex-start;
  /* This will align the items to the top of the container */
}

.oduGlobal_branding {
  background-image: url("odu-global-small-margin.svg");
  background-repeat: no-repeat;
  background-size: 260px 54px;
  height: 54px;
  width: 260px;
  display: flex;
}

.oduGlobal_branding_sitename {
  height: 54px;
  color: #003057;
  display: flex;
  font-size: 28px;
  vertical-align: bottom;
  margin-top: 9px;
  font-family: "Archivo SemiCondensed";
}

#site-footer.bg-color {
  background-color: #003767;
  color: #ffffff;
}

#site-footer.text-white {
  font-family: Archivo, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
    Noto Color Emoji !important;
}

#site-footer address.footer-address {
  margin-top: 16px;
}

.list-unstyled a {
  font-weight: 400;
  font-size: 19px;
  text-decoration: none;
}

.list-unstyled a:hover {
  color: #ffd934;
}

.list-unstyled li {
  padding-bottom: 6px;
}

#site-footer {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: normal;
  font-variation-settings: normal;
  tab-size: 4;
  --theme-bg-color: 255 255 255;
  --theme-text-color: 24 26 27;
  --theme-heading-color: 24 26 27;
  --theme-subsup-color: 62 66 68;
  --theme-fancy-link-color: 0 55 103;
  --theme-fancy-link-hocus-color: 51 95 133;
  --theme-button-bg-color: 0 55 103;
  --theme-button-text-color: 255 255 255;
  --theme-button-hocus-bg-color: 51 95 133;
  --vertical-space: 4rem;
  --container-padding: 1.5rem;
  --100vw: calc(var(--real-vw, 1vw) * 100);
  --container-max-width: 64rem;
  --container-width: calc(
    min(var(--100vw), var(--container-max-width)) - var(--container-padding) * 2
  );
  --container-offset: calc((var(--100vw) - var(--container-width)) / 2);
  --real-vw: 12.67px;
  --tw-text-opacity: 1;
  color: rgb(var(--theme-text-color) / var(--tw-text-opacity));
  font-family: Archivo, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
    Noto Color Emoji;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  overflow-wrap: anywhere;
  border: 0 solid;
  box-sizing: border-box;
  text-underline-offset: max(2px, 0.05em);
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  -webkit-font-smoothing: antialiased;
}
