/* SCSS vars */
:root {
  --primary: #000000;
  --secondary: #D9D9D9;
}

/* SCSS style */
/* Initial style */
#search_widget form {
  position: relative;
}
#search_widget form input {
  width: 100%;
  padding: 10px 20px 10px 40px;
  outline: none;
  border: none;
}
#search_widget .ui-autocomplete.searchbar-autocomplete {
  display: none;
}

.display-search {
  cursor: pointer;
  z-index: 1;
}
.display-search span {
  display: none;
}
@media (max-width: 991px) {
  .display-search span {
    display: block;
  }
}

#search--container {
  position: absolute;
  opacity: 0;
  left: 0;
  top: -900px;
  padding-top: 0;
  width: 100%;
  transition: all 0.8s ease-in-out;
  z-index: 3;
}
@media (max-width: 991px) {
  #search--container {
    transition: none;
  }
}
#search--container .searchbar {
  padding: 2.8125rem 3.5625rem;
  background-color: var(--primary);
  display: flex;
}
#search--container .searchbar #search_widget {
  width: 100%;
}
#search--container .searchbar #search_widget input[type=text] {
  background-color: transparent;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1;
  border-bottom: solid 1px #ffffff;
  border-radius: 0;
  padding: 0 0 5px 0;
  position: relative;
}
#search--container .searchbar #search_widget input[type=text]::placeholder {
  opacity: 1;
  color: #ffffff;
}
#search--container .searchbar #search_widget input[type=text]::after {
  position: absolute;
  right: 0;
  top: 0;
}
#search--container.visible {
  opacity: 1;
}
@media (max-width: 991px) {
  #search--container.visible {
    top: auto;
    bottom: 64px;
  }
}

/*# sourceMappingURL=ps_searchbar.css.map */
