/** Shopify CDN: Minification failed

Line 132:13 Expected ":"

**/
.search__input.field__input {
  padding-right: 9.8rem;
}

.search__button {
  right: var(--inputs-border-width);
  top: var(--inputs-border-width);
}

.reset__button {
  right: calc(var(--inputs-border-width) + 4.4rem);
  top: var(--inputs-border-width);
}

.reset__button:not(:focus-visible)::after {
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.08);
  display: block;
  height: calc(100% - 1.6rem);
  content: '';
  position: absolute;
  right: 0;
}

.reset__button:not(:focus)::after {
  border-right: 0.1rem solid rgba(var(--color-foreground), 0.08);
  display: block;
  height: calc(100% - 1.8rem);
  content: '';
  position: absolute;
  right: 0;
}

.search__button:focus-visible,
.reset__button:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 4;
}

.search__button:focus,
.reset__button:focus {
  background-color: rgb(var(--color-background));
  z-index: 4;
}

.search__button:not(:focus-visible):not(.focused),
.reset__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.search__button:hover .icon,
.reset__button:hover .icon {
  transform: scale(1.07);
}


.search__button .icon {
  height: 1.8rem;
  width: 1.8rem;
}

.reset__button .icon.icon-close {
  height: 1.8rem;
  width: 1.8rem;
  stroke-width: 0.1rem;
}

/* Remove extra spacing for search inputs in Safari */
input::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* new theme */
.search-modal {
	 background: var(--gradient-base-accent-1);
}
 .search-modal .search__input {
	 background-color: transparent;
	 border: 1px solid white;
	 color: white;
	 box-shadow: none;
}
 .search-modal .field:before {
	 display: none;
}
 .search-modal .field__label {
	 color: white;
}
 .search-modal .icon-search, .search-modal .icon-close {
	 color: white;
}
 .predictive-search {
	 border-radius: 4px;
	 background-color: white;
}
 .predictive-search__heading {
	 padding-top: 1rem;
	 padding-bottom: 1.5rem;
	 font-size: 1.2rem;
	 line-height: 2rem;
	 border-bottom: 1px solid #dddcd9;
	 color: var(--navy-dark-blue);
	 font-weight: 500;
     text-transform: capitalize;
     letter-spacing: normal;
}

 .predictive-search__item {
	 padding-block: 1.5rem;
}
.predictive-search__item-heading {
  font-weight: 500;
  color: var(--navy-dark-blue);
  font-size: 1.6rem;
}
 .predictive-search__item-query-result mark {
    font-weight: 700;
    color: var(--navy-dark-blue);
 }
 .predictive-search__item-query-result span {
    font-weight: 400;
    color: var(--navy-dark-blue);
 }
.predictive-search__item--term span {
  font-weight: 500;
  font-size: 1.6rem;
  line-height 2.4rem;
}
 
