/** Shopify CDN: Minification failed

Line 417:0 Unexpected "}"

**/
.predictive-search {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: var(--color-simple-dropdown);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px 0;
  z-index: 11;
  overflow-x: hidden;
  overflow-y: auto;
}
.predictive-search--search-template {
  z-index: 10;
}
.predictive-search__results-list:not(:first-child) {
  margin-top: 5px;
  display:grid;
  gap:16px;
}
.predictive-search-results-list:not(:empty) {
  margin-top: 5px;
}
@media screen and (max-width: 992px) {
  .predictive-search {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.predictive-search__loading-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

predictive-search[open] .predictive-search,
predictive-search[loading] .predictive-search {
  display: block;
}
.predictive-search__heading {
  margin: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
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__item {
  --color-text-link: var(--color-base);
  display: flex;
  padding: 0px 20px;
  text-align: left;
  text-decoration: none;
  width: 100%;
  background: transparent;
  transition: background var(--duration-medium) var(--zoom-animation-bezier);
  text-decoration: none;
  gap:16px;
}
.predictive-search__list-item[aria-selected="true"] .predictive-search__item,
.predictive-search__list-item:hover .predictive-search__item {
  background: var(--color-secondary-background);
}
.predictive-search__item--link {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-column-gap: 16px;
  grid-template-areas: "product-image product-content";
}
.predictive-search__item-content {
  grid-area: product-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.predictive-search__item-heading {
  margin: 0;
  font-size: 16px;
}
#predictive-search-option-search-keywords {
  padding: 0 20px;
}
#predictive-search-option-search-keywords button {
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 993px) {
  #predictive-search-option-search-keywords button svg {
    opacity: var(--opacity-icons);
    transition: opacity var(--duration-medium) var(--animation-bezier);
  }
  #predictive-search-option-search-keywords[aria-selected="true"] button svg,
  #predictive-search-option-search-keywords button:hover svg {
    opacity: 1;
  }
  #predictive-search-option-search-keywords[aria-selected="true"]
    .hover-area
    .btn-small:before {
    width: 0;
  }
}
.predictive-search .price {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  column-gap: 10px;
  margin-top: 2px;
  font-weight:700;
}
.predictive-search .price,
.predictive-search .price > * {
  font-size: 16px;
  line-height: 18px;
}
.predictive-search__image {
  /*grid-area: product-image;
  object-fit: contain;
  font-family: 'object-fit: contain';
  border-radius: var(--radius);*/
}

.predictive-search__results-groups-wrapper {
  display: flex;
}
*:not(.predictive-search__two-columns)
  > predictive-search
  .predictive-search__results-groups-wrapper {
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 993px) {
  .predictive-search__two-columns .predictive-search__result-group:first-child {
    flex: 0 0 50%;
  }
}
.predictive-search__result-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 20px;
}
*:not(.predictive-search__two-columns)
  > predictive-search
  .predictive-search__result-group:first-child
  .predictive-search__pages-wrapper {
  display: none;
}
*:not(.predictive-search__two-columns)
  > predictive-search
  .predictive-search__results-groups-wrapper--no-products
  .predictive-search__result-group:nth-child(2),
*:not(.predictive-search__two-columns)
  > predictive-search
  .predictive-search__result-group:last-child
  .predictive-search__pages-wrapper {
  display: block;
}

.predictive-search__item-query-result mark {
  color: var(--color-base);
  background-color: transparent;
}
.predictive-search__item-query-result span {
  font-weight: var(--font-body-bold-weight);
}
#predictive-search-results-queries-list.predictive-search__results-list:not(
    :first-child
  ),
[id*="predictive-search-results-pages-list-"].predictive-search__results-list:not(
    :first-child
  ) {
  margin-top: 3px;
}
.predictive-search__results-groups-wrapper
  + #predictive-search-option-search-keywords {
  margin-top: 20px;
}
.predictive-search__item .predictive-search__item_link {
  display: inline-flex;
  position: relative;
  text-decoration: none;
}
.predictive-search__item .predictive-search__item_link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  top: 100%;
  background: var(--color-base);
  transition: width var(--duration-medium) var(--animation-bezier);
}
@media (min-width: 993px) {
  #predictive-search-results-queries-list .predictive-search__item,
  [id*="predictive-search-results-pages-list-"]
    .predictive-search__list-item
    .predictive-search__item {
    padding: 7px 20px 0 0;
    background: transparent;
  }
  .predictive-search__results-groups-wrapper--no-products
    .predictive-search__result-group:nth-child(2),
  .predictive-search__result-group:last-child
    .predictive-search__pages-wrapper {
    display: none;
  }
  /**:not(.predictive-search__two-columns)>predictive-search .predictive-search__results-list:not(:first-child) {
    margin-top: 0;
  }*/
  *:not(.predictive-search__two-columns)
    > predictive-search
    .predictive-search__item {
    padding-left: 0;
    padding-right: 0;
  }
  .predictive-search__item:hover .predictive-search__item_link:before {
    text-decoration: none;
    width: 100%;
  }
  .predictive-search__heading {
    margin: 0;
    padding-bottom:10px;
  }
  .predictive-search {
    padding: 20px;
  }
  .predictive-search__item {
    padding-left: 0;
    padding-right: 0;
  }
  .predictive-search__list-item[aria-selected="true"] .predictive-search__item,
  .predictive-search__list-item:hover .predictive-search__item {
    background: transparent;
  }
  #predictive-search-option-search-keywords {
    padding-left: 0;
    padding-right: 0;
  }
  .predictive-search__two-columns
    .predictive-search__results-groups-wrapper--no-products
    .predictive-search__result-group:first-child,
  .predictive-search__two-columns .predictive-search__result-group:only-child {
    flex-grow: 1;
  }
}
@media (max-width: 993px) {
  .predictive-search {
    padding: 40px 0;
  }
  .predictive-search__result-group:first-child
    .predictive-search__pages-wrapper {
    display: none;
  }
  .predictive-search__results-list:not(:first-child) {
    margin-top: 10px;
  }
  #predictive-search-results-queries-list.predictive-search__results-list:not(
      :first-child
    ),
  [id*="predictive-search-results-pages-list-"].predictive-search__results-list:not(
      :first-child
    ) {
    margin-top: 13px;
  }
  .predictive-search__results-groups-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .predictive-search__result-group {
    gap: 40px;
  }
  #predictive-search-results-queries-list .predictive-search__item,
  [id*="predictive-search-results-pages-list-"] .predictive-search__item {
    padding: 13px 20px;
  }
  .predictive-search__results-groups-wrapper
    + #predictive-search-option-search-keywords {
    margin-top: 40px;
  }
  .predictive-search__item {
    padding: 10px 20px;
  }
  .predictive-search {
    height: 100vh;
    width: 100vw;
    left: -21px;
  }
}
@media (min-width: 577px) and (max-width: 992px) {
  .predictive-search__two-columns__tablet
    .predictive-search__result-group:first-child {
    flex: 0 0 50%;
  }
  .predictive-search__two-columns__tablet .predictive-search {
    padding-left: 10px;
    padding-right: 10px;
  }
  .predictive-search__two-columns__tablet:not(.empty-class)
    > predictive-search
    .predictive-search__result-group:first-child
    .predictive-search__pages-wrapper {
    display: block;
  }
  .predictive-search__two-columns__tablet:not(.empty-class)
    > predictive-search
    .predictive-search__results-groups-wrapper--no-products
    .predictive-search__result-group:nth-child(2),
  .predictive-search__two-columns__tablet:not(.empty-class)
    > predictive-search
    .predictive-search__result-group:last-child
    .predictive-search__pages-wrapper {
    display: none;
  }
  .predictive-search__two-columns__tablet
    .predictive-search__results-list:not(:first-child) {
    margin-top: 10px;
  }
  .predictive-search__two-columns__tablet
    #predictive-search-results-queries-list.predictive-search__results-list:not(
      :first-child
    ),
  .predictive-search__two-columns__tablet
    [id*="predictive-search-results-pages-list-"].predictive-search__results-list:not(
      :first-child
    ) {
    margin-top: 13px;
  }
  .predictive-search__two-columns__tablet:not(.empty-class)
    > predictive-search
    .predictive-search__results-groups-wrapper {
    flex-direction: row;
    gap: 0;
  }
  .predictive-search__two-columns__tablet
    #predictive-search-results-queries-list
    .predictive-search__item,
  .predictive-search__two-columns__tablet
    [id*="predictive-search-results-pages-list-"]
    .predictive-search__item {
    padding: 13px 10px 13px;
  }
  .predictive-search__two-columns__tablet .predictive-search__item {
    padding: 10px 20px;
  }
  .predictive-search__two-columns__tablet .predictive-search__heading {
    margin: 0 0 0 10px;
  }
  .predictive-search__two-columns__tablet .predictive-search__item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .predictive-search__two-columns__tablet
    .predictive-search__list-item[aria-selected="true"]
    .predictive-search__item,
  .predictive-search__two-columns__tablet
    .predictive-search__list-item:hover
    .predictive-search__item {
    border-radius: var(--radius-button);
  }
  .predictive-search__two-columns__tablet
    #predictive-search-option-search-keywords {
    padding-left: 10px;
    padding-right: 10px;
  }
  .predictive-search__two-columns__tablet
    .predictive-search__results-groups-wrapper--no-products
    .predictive-search__result-group:first-child,
  .predictive-search__two-columns__tablet
    .predictive-search__result-group:only-child {
    flex-grow: 1;
  }
}
#predictive-search-results-list .image-hover-scaling__image{
  border: 2px solid #859a38;
}
@media (min-width: 1281px) {
    #page-search .predictive-search {
        position: absolute;
        bottom: 0;
        top: 50px;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
        background-color: var(--color-simple-dropdown);
        border-radius: var(--radius);
        padding: 20px !important;
        z-index: 11;
        overflow-x: hidden;
        overflow-y: auto;
        height: 421px;
        box-shadow: -4px 4px 4px #00000040;
    }
    }
}
