.search-top-wrap{
  background: #fff;
  padding: 5px 10px 5px 30px;
  position: relative;
  border-radius: 4px;
}

.search-top-icon {
  position: absolute;
  left: 10px;
  top:13.5px;
  font-size: 20px;
}

.search-que-top {
  border: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.btn-search {
  background: var(--av-theme_action_primary);
  color: #fff;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif
}

.search-top-wrap .btn-search {
  position: absolute;
  top: 7px;
  right: 7px;
}
.adv-ctrl {
  display: flex;
}
.adv-ctrl::before {
  content: "Show Advanced Options"
}
.adv-ctrl::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: -2px 0 0 auto;
  content: "";
  background-image: url(/assets/img/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}
.adv-ctrl[aria-expanded=true]::before {
  content: "Cancel Advanced Options"
}
.adv-ctrl[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
