#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;
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #f60e0e;
  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: "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  margin-bottom: 5px;
  font-size: 24px;
  padding-bottom: 15px;
  text-align: center;
}

h2 {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  margin-bottom: 5px;
  font-size: 18px;
  padding-bottom: 5px;
}

.landingSection {
  margin-top: 20px;
}

#content {
  min-height: 170px;
}
#content a.landingLinks {
  align-items: center;
  background: #f60e0e;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 22px;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 1.6em;
  margin: 15px;
  padding: 30px 25px;
  text-align: center;
  text-decoration: none;
  height: 100px;
  max-height: 100px;
}
#content a.landingLinks:hover {
  background: rgb(246.918, 38.582, 38.582);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.15s ease-out;
}
#content a.landingLinks:active {
  background: rgb(246.918, 38.582, 38.582);
  text-decoration: none;
  color: #ffffff;
  transition: all 0.15s ease-in;
}
#content a.landingLinks p.smaller {
  font-size: 14px;
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.25em;
}
#content a {
  color: #f60e0e;
  text-decoration: underline;
}
#content a:hover {
  color: rgb(246.918, 38.582, 38.582);
  text-decoration: underline;
}
#content #memberInfoDump {
  display: none;
  margin: 20px;
  border: none;
  border-collapse: collapse;
}
#content #memberInfoDump th {
  border: 1px solid #000000;
  text-align: center;
  padding: 10px;
}
#content #memberInfoDump tr td {
  border: 1px solid #000000;
  padding: 10px;
}

#logoutForm {
  text-align: right;
  padding-top: 15px;
  float: right;
}

#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;
}

/* buttons */
input[type=button],
input[type=submit],
input[type=reset],
button,
.button {
  color: #ffffff;
  background: #f60e0e;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 10px 20px 11px;
  text-align: center;
  border: none;
  cursor: pointer;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover,
.button:hover {
  background: rgb(246.918, 38.582, 38.582);
  transition: all 0.15s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
button:active,
.button:active {
  background: rgb(246.918, 38.582, 38.582);
  transition: all 0.15s ease-in;
}

#errorMsg {
  color: #cc0000;
  font-weight: bold;
}

#errorTxtEl {
  color: #cc0000;
  text-align: center;
  margin-top: 40px;
}

.adminNav {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.adminLogout {
  margin-left: 15px;
}

#adminForm {
  margin: 0;
  display: flex;
  align-items: center;
}
