/** Shopify CDN: Minification failed

Line 116:0 Unexpected "}"

**/
.header__search .header-quick-search {
  display: none;
  margin-left: 0.75rem;
}
@media screen and (max-width: 990px){
    .header-search-wrapper{
        align-self: end;
    margin-right: 6px;
    }
  }
@media (min-width: 990px) {
  .header__search .header-quick-search {
    display: block;
  }
}

.header-quick-search__field {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-quick-search__input {
  height: 44px;
  min-width: 220px;
  padding: 0 12px 0 12px;
  background: #e9edf1;
  border: none;
  border-radius: 2px;
  outline: none;
   transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1;
  font-family: 'AdihausDIN'
}

.header-quick-search__button {
  right: -28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.header-quick-search__button .svg-wrapper svg {
  width: 26px;
  height: 24px;
}

.header-quick-search__input:focus {
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.25);
}
.header-quick-search__input:hover {
  border: 1px solid rgb(0, 0, 0);
}
/* 
@media (max-width: 1px) {
  .header-search-desktop { display: none; }
  .header-search-mobile { display: block; position: relative; }
} */

.header-search-mobile-panel {
  position: absolute;
  top: 110%;          
  left: 3%;
  right: 0;
  z-index: 50;
  padding: 8px;       
  transition: transform .18s ease, opacity .18s ease;
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
}
button.header-search-toggle {
    background: none;
    border: none;
    padding: 0;
}
.header-search-mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.header-search-mobile-panel .header-quick-search {
  background: transparent;
}

.header-search-mobile-panel .header-quick-search__field {
    width: 98%;
    background: #eef1f4;
    border: 1px solid black;
    box-shadow: 0 2px 8px rgb(0 0 0 / 56%);
}

.header-search-mobile-panel .header-quick-search__input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  padding: 10px 12px;
}

}
