/* Search Root */
.search-root {
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
  background: #f9f9f9;
  padding: 30px 20px 5px 20px;
  box-shadow: 0px 6px 13px 0px rgba(102, 102, 102, 0.06), 0px 0px 9px 0px rgba(102, 102, 102, 0.19);
  /* ========================================
    DESKTOP BREAKPOINT - 768px
    ======================================== */
  /* ========================================
    LARGE DESKTOP BREAKPOINT - 1024px
    ======================================== */
}
.search-root h3 {
  font-size: 18px;
  border-bottom: 5px solid #d0b059;
  display: inline-block;
  margin: 0 0 14px 0;
  padding: 0;
  color: #000;
}
.search-root .form-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.search-root .form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search-root .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}
.search-root label {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
  text-align: left;
}
.search-root select {
  height: 44px;
  padding: 0 12px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="23" width="23" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M143 352.3l-136-136c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0L160 243.8l96.5-96.5c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.4-24.6 9.4-33.9 0z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 23px 23px;
  font-size: 12px;
}
.search-root .search-button {
  height: 44px;
  padding: 0 24px;
  background-color: #000033;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
  font-size: 14px;
}
.search-root .search-button:hover {
  background-color: #005fa3;
}
.search-root .search-link, .search-root .search-back-link {
  font-size: 0.9rem;
  text-decoration: underline;
  margin-top: 10px;
  display: block;
  text-align: center;
  color: #000;
}
.search-root .basic-search, .search-root .advanced-search {
  display: block;
  overflow: hidden;
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.search-root .hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  pointer-events: none;
}
.search-root .advanced-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.search-root .advanced-group {
  display: flex;
  flex-direction: column;
}
.search-root .advanced-group label {
  margin-bottom: 4px;
  font-weight: 600;
}
.search-root .advanced-group input {
  height: 44px;
  padding: 0 12px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background: white;
  font-size: 12px;
}
@media (min-width: 768px) {
  .search-root .search-wrapper {
    width: 80%;
  }
  .search-root .form-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .search-root .form-group {
    width: auto;
    flex: 1;
  }
  .search-root .advanced-form {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .search-root .search-root {
    padding: 20px 20px 5px 20px;
  }
  .search-root .form-wrapper {
    max-width: 1140px;
    padding: 0 16px;
  }
  .search-root .advanced-form {
    grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  }
}/*# sourceMappingURL=wssearch.css.map */