/** Shopify CDN: Minification failed

Line 9:17 The "-" operator only works if there is whitespace on both sides

**/
.predictive-search {
  display: none;
  position: absolute;
  top: calc(100% -2px);
  left: 0;
  width: 100%;
  border: 0;
  background-color: rgb(var(--color-background));
  z-index: 3;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius) rgba(var(--color-shadow), var(--popup-shadow-opacity));
}

.header predictive-search {
  position: relative;
}

.predictive-search--search-template {
  z-index: 2;
}

@media screen and (max-width: 749px) {
  .predictive-search--header {
    right: 0;
    left: 0;
    top: 100%;
  }
}

@media screen and (max-width: 989px) {
  .predictive-search {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

  }
}

predictive-search[open] .predictive-search,
predictive-search[loading] .predictive-search {
  display: block;
}

.predictive-search__heading {
  margin: 0 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
}
@media screen and (max-width: 749px) {
  .predictive-search__heading {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
  }
}

predictive-search .spinner {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 0;
}

.predictive-search__heading .spinner {
  margin: 0 0.2rem 0 2rem;
}

predictive-search:not([loading]) .predictive-search__heading .spinner,
predictive-search:not([loading]) .predictive-search__loading-state,
predictive-search:not([loading]) .predictive-search-status__loading {
  display: none;
}

predictive-search[loading] .predictive-search__loading-state {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

predictive-search[loading] .predictive-search__heading ~ .predictive-search__loading-state,
predictive-search[loading] .predictive-search__results-list:first-child {
  display: none;
}

.predictive-search__list-item[aria-selected="true"] .predictive-search__item-heading,
.predictive-search__list-item:hover .predictive-search__item-heading {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.predictive-search__item {
  display: flex;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.predictive-search__item--link {
  display: grid;
  grid-template-columns: 96px 1fr;
  grid-column-gap: 24px;
  grid-template-areas: 'product-image product-content';
}

.predictive-search__item-content {
  grid-area: product-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.predictive-search__item-content--centered {
  justify-content: center;
}

.predictive-search__item-vendor {
  font-size: 0.9rem;
}

.predictive-search__item-heading {
  margin: 0;
}

.predictive-search__item .price {
  font-size: 24px;
  line-height: 24px;
  text-align: right;
}

@media screen and (max-width: 749px) {
  .predictive-search__item--link {
    grid-template-columns: 72px 1fr;
    grid-column-gap: 16px;
  }

  .predictive-search__item .price {
    font-size: 18px;
    line-height: 18px;
  }

  .predictive-search__item--term {
    width: 100%;
    max-width: 100%;
  }

  .predictive-search__item-content {
    gap: 24px;
  }
}

.predictive-search__item .price .price-item{
  margin: 0;
}

/* .predictive-search__item-vendor + .predictive-search__item-heading,
.predictive-search .price {
  margin-top: 0.5rem;
} */

.predictive-search__image {
  grid-area: product-image;
  object-fit: contain;
  font-family: 'object-fit: contain';
  width: 100%;
  height: auto;
}

.header--middle-left .header__search predictive-search[open="true"] .search__input.field__input:not(:placeholder-shown) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.predictive-search__results-type {
  border-top: 2px solid var(--color-border);
  padding: 24px;
}

.predictive-search__list-item:not(:last-child){
  margin-bottom: 24px;
}

.predictive-search__results-action{
  text-align: center;
  padding: 24px;
  border-top: 2px solid var(--color-border);
}

@media screen and (max-width: 749px) {
  .predictive-search__results-type {
    padding: 16px;
  }

  .predictive-search__list-item:not(:last-child){
    margin-bottom: 16px;
  }

  .predictive-search__results-action{
    padding: 16px;
  }
}