/* NAV overrides */
.nav {
  font-weight: 600;
}

.nav-item {
  margin-bottom: 2px;
  font-size: 14px;
  width: 100%;
}

.nav-item a {
  background: #006b95;
  color: #ffffff;
  text-decoration: none;
}

.nav-item > a:hover {
  background: #007daf;
  color: #ffffff;
  text-decoration: none;
}

.nav-mobile {
  background-color: #006b95;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav {
    background: #006b95;
  }
}
#loaderWrap {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40001;
}
#loaderWrap .loaderOverlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
#loaderWrap .vertical-offset {
  z-index: 40002;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #ff9900; /* Assuming $Spinner is a variable */
  border-radius: 50%;
  border-top: 20px solid #eaf0f6;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h1 {
  font-family: "Rubik", "Helvetica", "Arial";
  text-transform: uppercase;
  font-weight: bold;
  line-height: normal;
  color: #006b95;
  padding: 20px;
  letter-spacing: 1px;
  font-size: 24px;
}

h2 {
  font-family: "Rubik", "Helvetica", "Arial";
  text-transform: uppercase;
  font-weight: bold;
  line-height: normal;
  color: #006b95;
  padding: 20px;
  letter-spacing: 1px;
  font-size: 20px;
  border-bottom: 1.5px solid #006b95;
}

button {
  align-items: center;
  box-shadow: 5px 5px 3px #919d9d;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", "Helvetica";
  justify-content: center;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: #006b95;
  font-size: 16px;
  padding: 14px;
  width: -moz-fit-content;
  width: fit-content;
}
button:hover {
  color: #ffffff;
  text-decoration: none;
  background: #ffa31a;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 5px 5px 3px #919d9d;
}
button:active {
  color: #ffffff;
  text-decoration: none;
  background: #ffa31a;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}

form {
  margin-bottom: 0px;
}

.landingSection {
  margin-top: 20px;
}

#content #infoBox {
  padding: 25px;
  border: 1px solid #d4d9d9;
}
#content #infoBox ul {
  list-style-position: inside;
  margin-left: 20px;
}
#content .card {
  display: flex;
  flex-direction: column;
  margin: 25px 20px;
  background-color: #eaeaea;
  border-radius: 4px;
}
#content .card .card-title {
  background-color: #006b95;
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  padding: 20px;
  width: 100%;
}
#content .card .card-text p {
  padding-top: 20px;
  padding-left: 20px;
  font-size: 16px;
  margin: 0px;
}
#content .card .card-text p a {
  color: #ff9900;
  text-decoration: none;
}
#content .card .card-text p a:hover {
  color: #ffa31a;
  text-decoration: underline;
}
#content .card .card-button {
  margin: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  padding: 14px;
  border: 1px solid #006b95;
  border-radius: 5px;
  background-color: #006b95;
  text-decoration: none;
  color: #ffffff;
}
#content .card .memberLookupForm {
  padding: 20px;
}
#content .card .memberLookupForm label span.required {
  color: #ff0000;
}
#content .card .memberLookupForm input {
  max-width: 325px;
}
#content .card .memberLookupForm input[type=submit] {
  background-color: #006b95;
  border: 1px solid #006b95;
  border-radius: 5px;
  padding: 14px;
  font-size: 16px;
  color: #ffffff;
}
#content .card .memberLookupForm input[type=submit]:hover {
  cursor: pointer;
}
#content .card .memberLookupForm span.validationError {
  font-style: italic;
  color: #ff0000;
  margin: 5px 0px;
  display: block;
}
#content a.landingLinks {
  align-items: center;
  box-shadow: 5px 5px 3px #919d9d;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", "Helvetica";
  justify-content: center;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: #ff9900;
  margin: 20px 0;
  padding: 25px;
  text-align: center;
  font-size: 22px;
  line-height: 1.25em;
  border-radius: 0px;
}
#content a.landingLinks:hover {
  color: #ffffff;
  text-decoration: none;
  background: #ffa31a;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 5px 5px 3px #919d9d;
}
#content a.landingLinks:active {
  color: #ffffff;
  text-decoration: none;
  background: #ffa31a;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}
#content a.landingLinks p.smaller {
  font-size: 14px;
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.25em;
}
#content a {
  color: #006b95;
  text-decoration: underline;
}
#content a:hover {
  color: #007daf;
  text-decoration: underline;
}

.header {
  text-align: center;
}

.error {
  padding-left: 20px;
  font-size: 14px;
  color: #ff0000;
  font-style: italic;
}