h1 {
  font-family: helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
  color: #4e7390;
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 10px;
  border-left: 0px solid;
  text-align: center;
}

h2 {
  font-family: helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  line-height: normal;
  color: #4e7390;
  letter-spacing: 1px;
  font-size: 20px;
  border-bottom: 1.5px solid #4e7390;
  margin: 0px 0px 10px;
}

button {
  color: #ffffff;
  background: #84bd00;
  box-shadow: 5px 5px 3px #919d9d;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0;
  padding: 10px 20px 11px;
  text-align: center;
  border: none;
  cursor: pointer;
}
button:hover {
  background: #8bc700;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
}
button:active {
  background: #8bc700;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}

#content .landingSection {
  margin-top: 20px;
}
#content a {
  color: #4e7390;
  text-decoration: underline;
}
#content a:hover {
  color: #5780a1;
  text-decoration: underline;
}
#content a.landingButton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84bd00;
  margin: 20px 0;
  padding: 25px;
  box-shadow: 5px 5px 3px #919d9d;
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  font-family: "MyriadPro", sans-serif;
  letter-spacing: 1px;
  line-height: 1.25em;
  border-radius: 0px;
  text-decoration: none;
}
#content a.landingButton:hover {
  background: #8bc700;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
}
#content a.landingButton:active {
  background: #8bc700;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}
#content a.landingButton p.smaller {
  font-size: 14px;
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.25em;
}

.button {
  color: #ffffff;
  background: #84bd00;
  box-shadow: 5px 5px 3px #919d9d;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0;
  padding: 10px 20px 11px;
  text-align: center;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: #8bc700;
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
}
.button:active {
  background: #8bc700;
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}
.waitNote {
  font-style: italic;
  font-size: 12px;
}

#member-lookup-content ul {
  padding-left: 30px;
}
#member-lookup-content p {
  padding-left: 20px;
}
#member-lookup-content form {
  padding: 0 15px;
  margin-bottom: 0px;
}
#member-lookup-content form label {
  padding-left: 5px;
  color: #000000;
}

#errorMsg {
  margin-top: 5px;
  margin-bottom: 0px;
}

#adminNav {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#adminNav #adminForm {
  margin: 0;
  display: flex;
  align-items: center;
}
#adminNav #adminLogout {
  margin-left: 15px;
}

#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;
  position: absolute;
  top: 15%;
  width: 100%;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  /*top: 0;
  left: 0;
  transform: translateY(20%);*/
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #615e9b;
  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);
  }
}
