  .lib-search-container {
  background:#fff;
  float: none;
  margin: 0 auto;
  z-index:1;
}
.lib-search-image-link {
  display: block;
  max-width: 220px;
  margin: 0 auto;
}
.lib-search-container .lib-search-image-wrapper {
  padding: 30px 10px 20px;
}
.lib-search-image-link img {
  max-width: 220px;
}
.lib-search-form-container form {
  text-align: center;
  display: flex;
  justify-content: center;
}
.lib-search-form-searchbar {
  border: 1px solid #537;
  height: 50px;
  max-width: 80%;
  font-size: 14px;
  padding: 0 0.6rem 0 1rem;
  margin: 0;
  font-family: AvenirNextLTPro-Regular, sans-serif;
  border-radius: 25px 0px 0px 25px;
}
.lib-search-form-submit {
  height: 50px;
  font-size: 14px;
  font-weight: bold;
  background: #553377;
  color: #ffffff;
  padding: 0px 1.5rem 0px 1rem;
  border: 0;
  transition: background-color .25s,color .25s;
  border-radius: 0px 25px 25px 0px;
  cursor: pointer;
}
.lib-search-form-submit:hover {
	background-color: #ea1;
	color: #391a55;
}
.lib-search-form-links {
  list-style: none;
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding: 15px 0 30px 0;
  width: fit-content;
  margin: 0px auto;
  gap: 40px;
}
.lib-search-form-links a {
  color: #537;
  font-weight: bold;
  font-size: 14px;
}
.lib-search-form-links li:hover {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .lib-search-form-container form {
    display: block;
  }
  .lib-search-form-searchbar {
    width: 100%;
    max-width: unset;
    margin-bottom: 5px;
    border-radius: 25px;
    padding: 0 1rem;
  }
  .lib-search-form-submit {
    width: 100%;
    border-radius: 25px;
  }
  .lib-search-form-links {
	margin-top: 5px;
	gap: 10px;
	flex-flow: column;
    width: 100%;
}
  .lib-search-form-links a {
    color: #fff;
    background: #537;
    text-align: center;
    padding: 12px 0;
    border-radius: 25px;
    display: block;
  }
}