@font-face {
  font-family: "Averia Serif Libre";
  font-weight: 300;
  font-style: normal;
  src: local("Averia Light"), url(/fonts/AveriaSerifLibre-Light.ttf);
}
@font-face {
  font-family: "Averia Serif Libre";
  font-weight: 300;
  font-style: italic;
  src: local("Averia Light Italic"), url(/fonts/AveriaSerifLibre-LightItalic.ttf);
}
@font-face {
  font-family: "Averia Serif Libre";
  font-weight: 400;
  font-style: normal;
  src: local("Averia Regular"), url(/fonts/AveriaSerifLibre-Regular.ttf);
}
@font-face {
  font-family: "Averia Serif Libre";
  font-weight: 400;
  font-style: italic;
  src: local("Averia Italic"), url(/fonts/AveriaSerifLibre-Italic.ttf);
}
@font-face {
  font-family: "Averia Serif Libre";
  font-weight: 700;
  font-style: normal;
  src: local("Averia Bold"), url(/fonts/AveriaSerifLibre-Bold.ttf);
}
@font-face {
  font-family: "Averia Serif Libre";
  font-weight: 700;
  font-style: italic;
  src: local("Averia Bold Italic"), url(/fonts/AveriaSerifLibre-BoldItalic.ttf);
}
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

/* Site Default Base CSS */
body {
  margin: 0;
  padding: 0;
  font-family: "Averia Serif Libre", sans-serif;
  /*background: url('/images/recordSearch/pageBackground.gif') top repeat-x;*/
}

h2 {
  text-align: center;
}

.footerContainer {
  font-size: 8pt;
}

.contentContainer {
  margin-top: 75px;
}

.form-control,
.btn {
  font-size: 1.6rem !important;
}

header {
  min-height: 20rem;
  background-color: rgb(5, 50, 77);
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  padding: 0;
  min-height: 5rem;
}
.navbar-brand {
  display: none;
}
.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .navbar-nav {
    display: inline-block;
    justify-content: unset;
    align-items: unset;
    padding: 5px 15px 15px;
  }
}

.navbar-dark {
  background-color: rgb(196, 28, 47) !important;
}
.navbar-dark .navbar-toggler {
  color: white;
  border-color: transparent;
  margin: 13px 0;
}
.navbar-dark .navbar-toggler:focus {
  box-shadow: none;
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-dark .navbar-nav .nav-link {
  color: white;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .navbar-dark .navbar-nav .nav-link {
    font-size: 1.3rem;
  }
}

.nav-link {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .nav-item {
    padding: 1rem;
  }
}

.dropdown-item {
  font-size: 1.6rem;
}
.dropdown-item:hover {
  background-color: rgb(196, 28, 47);
  color: white;
}
@media screen and (max-width: 767px) {
  .dropdown-menu {
    background-color: rgb(196, 28, 47);
    border: none;
  }
}
.dropdown-menu .dropdown-item {
  color: rgb(5, 50, 77);
}
.dropdown-menu .dropdown-item:hover {
  color: white;
}
@media screen and (max-width: 767px) {
  .dropdown-menu .dropdown-item {
    color: white;
  }
}

#endDropdown {
  right: 0 !important;
  left: auto !important;
}

footer {
  background-color: rgb(5, 50, 77);
  min-height: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  footer {
    flex-direction: column;
    font-size: 1.3rem;
  }
}
footer a {
  text-decoration: none;
  color: rgb(196, 28, 47);
}

.infoBox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  padding: 4.5rem 0;
  color: rgb(5, 50, 77);
  min-height: 30rem;
}
.infoBox svg {
  stroke: rgb(5, 50, 77);
  width: 5rem;
  height: 5rem;
}
.infoBox .email {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .infoBox .email {
    flex-direction: initial;
    gap: 2rem;
  }
}
.infoBox .email a {
  color: rgb(196, 28, 47);
  font-size: 1.4rem;
}

.info-title {
  font-size: 3rem;
}
.info-text {
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
}

main {
  min-height: calc(100vh - 350px);
}

.welcome-title {
  color: rgb(5, 50, 77);
  font-size: 4rem;
  margin-top: 2rem;
}
@media screen and (max-width: 550px) {
  .welcome-title {
    font-size: 3rem;
  }
}

.welcome-header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 50px 0;
  min-height: 32rem;
}
@media screen and (max-width: 1170px) {
  .welcome-header {
    flex-direction: column;
  }
}
.welcome-header .welcome-info {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  min-height: 30rem;
}
.welcome-header .welcome-info .admin-staff {
  display: flex;
  justify-content: space-between;
  align-content: center;
  font-size: 1.8rem;
  color: rgb(196, 28, 47);
  flex-direction: column;
}
@media screen and (max-width: 550px) {
  .welcome-header .welcome-info .admin-staff {
    flex-direction: column;
    text-align: center;
  }
}
.welcome-header .welcome-info .admin-staff img {
  max-width: 30rem;
  border-radius: 0.5rem;
}
.welcome-header .welcome-img {
  border-radius: 0.5rem;
}

.info-text a {
  color: rgb(196, 28, 47);
}

.infoBox-section {
  background-color: #e4e4e4;
  min-height: 30rem;
}

.notice-section {
  min-height: 30rem;
  padding: 4.5rem;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.notice-section .notice {
  color: rgb(196, 28, 47);
  font-size: 2rem;
}
.notice-section p {
  font-size: 1.8rem;
  color: rgb(5, 50, 77);
}

.page-header {
  margin: 5rem 0;
}

.page-title {
  font-size: 4rem;
  text-align: center;
  color: rgb(196, 28, 47);
}

.page-content {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

dt {
  font-size: 2rem !important;
}

.table > :not(caption) > * > * {
  border: none;
}

.judge-pic {
  text-align: center;
  display: block;
  margin: 2rem auto 5rem;
  outline: 5px solid rgb(5, 50, 77);
  outline-offset: 1rem;
  width: 25rem;
  padding: 0;
  align-self: flex-start;
}
.judge-info {
  padding: 0 2.5rem;
}

.duties {
  margin: 0 auto;
}
.duties dl dd ul {
  column-count: 2;
}

.courtMap {
  min-height: 85rem;
  width: 100%;
}

.accordion-button {
  font-size: 1.6rem !important;
  background-color: rgb(196, 28, 47);
  color: white;
}
.accordion-button:not(.collapsed) {
  background-color: rgb(5, 50, 77);
  color: white;
}

.accordion-body > ul > li > a {
  color: rgb(5, 50, 77);
}
.accordion-body > ul > li > a:hover {
  color: rgb(196, 28, 47);
}

/*# sourceMappingURL=siteDefault.css.map */
