#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);
  }
}
#autocomplete-container {
  position: relative;
  padding: 15px;
  display: none;
}
#autocomplete-container form {
  width: 100%;
}
#autocomplete-container #company {
  padding: 8px;
}
#autocomplete-container #autocomplete-list {
  position: absolute;
  border: 1px solid #ddd;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  z-index: 100;
  width: 200px;
}
#autocomplete-container .autocomplete-item {
  padding: 8px;
  cursor: pointer;
}
#autocomplete-container .autocomplete-item:hover {
  background-color: #ddd;
}
#autocomplete-container .autocomplete-item.active {
  background-color: #ddd;
}
#autocomplete-container #autocomplete-button-container {
  display: flex;
  gap: 2rem;
}
#autocomplete-container #autocomplete-button-container button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

h1 {
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  font-size: 28px;
}

h2 {
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  font-size: 24px;
  border-bottom: 1px solid #000000;
}

#content a {
  color: #1c59b4;
}
#content a:hover {
  color: rgb(31.4326923077, 99.9110576923, 202.0673076923);
  text-decoration: underline;
}

#errorMsg {
  color: #ff0000;
  font-style: italic;
  font-weight: bold;
  text-align: center;
}

.row.landingSection {
  margin-top: 20px;
}

#content a.landingButton {
  align-items: center;
  background: #1c59b4;
  border-radius: 10px;
  border: none;
  box-shadow: 5px 5px 3px #ccc;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: helvetica, arial, sans-serif;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 1.25em;
  text-align: center;
}
#content a.landingButton:hover {
  background: rgb(31.4326923077, 99.9110576923, 202.0673076923);
  box-shadow: 7px 7px 3px #919d9d;
  text-decoration: none;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
#content a.landingButton:active {
  background: rgb(31.4326923077, 99.9110576923, 202.0673076923);
  box-shadow: 3px 3px 3px #919d9d;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}
#content a.landingButton {
  font-size: 22px;
  margin: 20px 0;
  min-height: 100px;
  padding: 20px 20px;
}

input[type=button],
input[type=submit],
button,
.button {
  padding: 10px;
  align-items: center;
  background: #1c59b4;
  border-radius: 10px;
  border: none;
  box-shadow: 5px 5px 3px #ccc;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: helvetica, arial, sans-serif;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 1.25em;
  text-align: center;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover,
.button:hover {
  background: rgb(31.4326923077, 99.9110576923, 202.0673076923);
  box-shadow: 7px 7px 3px #919d9d;
  text-decoration: none;
  transform: translateY(-3px);
  transition: all 0.1s ease-out;
}
input[type=button]:active,
input[type=submit]:active,
button:active,
.button:active {
  background: rgb(31.4326923077, 99.9110576923, 202.0673076923);
  box-shadow: 3px 3px 3px #919d9d;
  transform: translateY(1px);
  transition: all 0.1s ease-in;
}

.box {
  border: 1px solid #222222;
  padding: 15px 20px 0px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

label.error {
  margin-top: -5px;
  margin-bottom: 15px;
}

ol,
ul {
  margin-left: 40px;
}

#logoutForm form {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  margin: 15px 0;
}

#non-member-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#non-member-btn-container #non-member-btn {
  padding: 15px;
  display: none;
}
