/* ---- Predictive search ---- */
input[type="search"]#Search::-webkit-search-decoration,
input[type="search"]#Search::-webkit-search-cancel-button,
input[type="search"]#Search::-webkit-search-results-button,
input[type="search"]#Search::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

.predictive-search {
  position: relative;
  line-height: initial;
  --ps-background-color: var(--background);
  --ps-border-color: var(--dotted-color);
  --ps-color: var(--text-color);
  --ps-transition: background-color 100ms ease-in-out;
}
.predictive-search ul {
  margin-bottom: 0;
}
#predictive-search-results {
  width: 100%;
  background: var(--ps-background-color);
  border: 1px solid var(--ps-border-color);
  color: var(--ps-color);
}
.predictive-search__heading {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ps-border-color);
  color: var(--ps-color);
}
.predictive-search__heading#predictive-search-products {
  margin-bottom: 10px;
}
.predictive-search__item-content .price.price--listing .price-item {
  color: var(--ps-color);
}
.predictive-search__list-item,
.predictive-search__results-list > li {
  display: block !important;
  list-style-type: none;
  margin-top: 10px;
}
.predictive-search__list-item mark {
  font-weight: bold;
  background-color: var(--background);
  color: var(--text-color);
}

.predictive-search__item.button-as-link {
  color: var(--ps-color);
}
.predictive-search__item-content .price.price--listing {
  align-items: flex-start;
}
.predictive-search__image {
  margin-right: 10px;
  width: initial;
}
/*center vertically*/
.predictive-search__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#predictive-search-results-list .predictive-search__item {
  display: flex;
  width: 100%;
  padding: 0 10px;
  text-align: left;
  background-color: transparent;
  transition: var(--ps-transition);
  font-weight: initial;
  text-transform: initial;
  height: initial;
  line-height: initial;
  color: var(--ps-color);
}
.predictive-search__list-item--search .predictive-search__item {
  width: 100%;
  margin: 0;
  padding: 10px;
  text-decoration: none;
}
.predictive-search-form {
  position: relative;
}
/*hover effects*/
.predictive-search__list-item--search .predictive-search__item:hover,
.predictive-search__list-item--search .predictive-search__item:focus,
.predictive-search .predictive-search__item:hover,
.predictive-search .predictive-search__item:focus {
  background-color: var(--ps-background-color);
}
.predictive-search__item:hover .predictive-search__item-heading {
  text-decoration: underline;
}
/*increase font weight*/
.predictive-search__item-heading {
  font-weight: 700;
}
/*add border*/
.predictive-search__list-item--search {
  border-top: 1px solid var(--ps-border-color);
}
.search__product-loop.grid__wrapper {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
}
/* product images */
.predictive-search .prod-image .box-ratio {
  padding-bottom: 110% !important;!i;!;
}
.predictive-search .prod-image .box-ratio img {
  object-fit: cover;
  object-position: center;
}
/* ---- Button ---- */
button.predictive-search__item {
  padding: 20px 10px !important;
}