*,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #dddbd9;
}

.email-link {
  color: rgba(1, 17, 33, 0.8);
}

.table > tbody > tr > th,
.table > tbody > tr > td {
  border-top: none;
}

@font-face {
  font-family: Merriweather;
  font-style: normal;
  font-weight: 400;
  src: local("Merriweather Regular"), url(/fonts/Merriweather-Regular.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100;
  src: local("Roboto Thin"), url(/fonts/Roboto-Thin.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 100;
  src: local("Roboto Thin Italic"), url(/fonts/Roboto-ThinItalic.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), url(/fonts/Roboto-Light.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 300;
  src: local("Roboto Light Italic"), url(/fonts/Roboto-LightItalic.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), url(/fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), url(/fonts/Roboto-Italic.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), url(/fonts/Roboto-Medium.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Medium Italic"), url(/fonts/Roboto-MediumItalic.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), url(/fonts/Roboto-Bold.ttf);
}
@font-face {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  src: local("Roboto Bold Italic"), url(/fonts/Roboto-BoldItalic.ttf);
}
.col-xs-12 {
  background-color: #fff;
}

header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 2.5rem 0;
  background-image: linear-gradient(to bottom, black, #3556e1);
}
@media all and (max-width: 999px) {
  header {
    flex-direction: column;
  }
}
header .seal {
  max-width: 15rem;
}
header .courtName {
  font-size: 2.3rem;
}
header .information-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: Merriweather, sans-serif;
}
header .courtAddress {
  margin-top: 0;
}

@media all and (max-width: 768px) {
  .courtName {
    font-size: 1.5rem;
  }

  .courtAddress,
.judgeName {
    font-size: 1rem;
  }
}
.nav > li > a {
  background-color: #0081ff;
  color: #fff;
  margin: 1rem 0;
  text-align: center;
  border-radius: 1rem;
}
.nav > li > a:hover, .nav > li > a:focus {
  background-color: #004d99;
}

.slicknav_menu {
  display: none;
}

#sidebar {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

#sidebar .nav {
  width: 100%;
  height: 100%;
  padding: 0 2rem;
}

#sidebar li {
  margin: 1.5rem 0;
}

/* collapsed sidebar styles */
@media screen and (max-width: 767px) {
  .row-offcanvas {
    position: relative;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }

  .row-offcanvas-right .sidebar-offcanvas {
    right: -41.6%;
  }

  .row-offcanvas-right.active {
    right: 41.6%;
  }

  .row-offcanvas-left.active {
    left: 41.6%;
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 41.6%;
  }

  #sidebar {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  /* #menu is the original menu */
  #menu {
    display: none;
  }

  .slicknav_menu {
    display: block;
  }
}
.footer {
  display: flex;
  background-image: linear-gradient(to top, black, #3556e1);
  min-height: 5rem;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
}

.courtMap {
  width: 100%;
  min-height: 65vh;
  margin: 2.5rem auto;
  border-radius: 1rem;
}

.staff__card {
  margin: 0.5rem 0;
}
.staff__card--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  padding: 1.5rem;
  min-height: 14rem;
}
.staff__card--inner:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.page-container {
  min-height: calc(100vh - 250px);
}
.page__main {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 5rem auto;
  min-height: 62vh;
}

.rules {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.rules a {
  background-color: #0081ff;
}

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