#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 #006ae1;
  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,
h2,
h3,
h4,
h5,
h6 {
  color: #182261;
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 10px;
  padding: 20px;
  text-transform: uppercase;
}

h1 {
  font-size: 24px;
  border-left: 0px solid;
  text-align: center;
}

h2 {
  font-size: 20px;
  border-bottom: 1.5px solid #182261;
}

form {
  margin: 0;
}

.landingSection {
  margin-top: 20px;
}

#content a.landingLinks {
  align-items: center;
  background-color: #bb3e96;
  border-radius: 3px;
  border: none;
  box-shadow: 5px 5px 3px #919d9d;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  margin: 20px 0;
  padding: 40px;
  font-size: 22px;
  font-family: "MyriadPro", sans-serif;
  text-decoration: none;
}
#content a.landingLinks:hover {
  background-color: rgb(192.5518072289, 66.6481927711, 155.2843373494);
  box-shadow: 7px 7px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
#content a.landingLinks:active {
  background-color: rgb(192.5518072289, 66.6481927711, 155.2843373494);
  box-shadow: 3px 3px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(1px);
  transition: all 0.1s 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: #182261;
  text-decoration: underline;
}
#content a:hover {
  color: rgb(29.0578512397, 41.1652892562, 117.4421487603);
  text-decoration: underline;
}

#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 {
  font-size: 16px;
  margin: 5px 0;
  padding: 10px 20px;
  align-items: center;
  background-color: #182261;
  border-radius: 3px;
  border: none;
  box-shadow: 5px 5px 3px #919d9d;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover,
.button:hover {
  background-color: rgb(26.0231404959, 36.8661157025, 105.1768595041);
  box-shadow: 7px 7px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
button:active,
.button:active {
  background-color: rgb(26.0231404959, 36.8661157025, 105.1768595041);
  box-shadow: 3px 3px 3px #919d9d;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}

.error,
#errorMsg {
  color: #cc0000;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}

#logoutForm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 15px 0;
}

#members-table {
  width: 100%;
  border-collapse: collapse;
}
#members-table .member-row:hover {
  background: yellow;
  cursor: pointer;
}

#member-table {
  width: 100%;
  border-collapse: collapse;
}

#submit-exhibitor {
  margin-top: 15px;
}

#member-actions {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.memberInfoDumpData {
  vertical-align: middle;
}
