.search-container {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000100;
  filter: blur(0) !important;
  pointer-events: none;
}
.search-container .overlay {
  width: 100%;
  height: 100%;
  background: white;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
.search-container #suggestions-container {
  position: absolute;
  top: 100px;
  width: 466px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.search-container #suggestions-container .help-message {
  text-align: center;
  padding: 50px 20px 80px 20px;
}
.search-container #suggestions-container .help-message p {
  font: normal 18px/30px Grosa, Manrope, "Open sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0.23px;
  margin-bottom: 0;
  color: #292828;
}
.search-container #suggestions-container .help-message p .icon-previous {
  font-size: 19px;
  display: inline-block;
  margin: -3px 3px 0 3px;
  vertical-align: middle;
}
.search-container #suggestions-container .help-message p .mobile {
  display: none;
}
.search-container #suggestions-container .help-message p .desktop {
  display: block;
}

.search_form {
  z-index: 1060;
  padding: 0 20px;
  position: absolute;
  background: white;
  top: -100px;
  left: 0;
  right: 0;
  border-bottom-width: 0;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}
.search_form > .container {
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 29px 0 32px 0;
}
.search_form form {
  position: relative;
  width: 345px;
}
.search_form input[type=text] {
  height: 39px;
  padding: 2px 5px 7px 5px;
  width: calc(100% - 53px);
  display: block;
  margin: 0;
  font: normal 18px/25px Grosa, Manrope, "Open sans", Arial, Helvetica, sans-serif;
  color: #292828;
  border-width: 0;
  border-bottom: 1px solid #292828;
  background: transparent;
}
.search_form input[type=text]::-webkit-input-placeholder,
.search_form input[type=text]::placeholder {
  font: normal 18px/25px Grosa, Manrope, "Open sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0.23px;
  color: #767676;
}
.search_form button {
  width: 25px;
  height: 25px;
  border: 0;
  background: transparent;
}
.search_form button.search-close {
  margin-right: 32px;
  font-size: 19px;
  color: #292828;
}
.search_form button.search-close:hover {
  color: #3C3D46;
}
.search_form button.search-close:active {
  color: #767676;
}
.search_form button.search-close:focus {
  transition: 0.15s all;
  -webkit-transition: 0.15s all;
}
.search_form .icon-search {
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  width: 33px;
  padding: 3px 6px;
  font-size: 21px;
  color: #292828;
}
.search_form #searchterm:focus {
  outline: none;
}

.search-container.show .overlay {
  opacity: 1;
  pointer-events: auto;
}
.search-container.show .overlay #suggestions-container {
  opacity: 1;
}
.search-container.show .search_form {
  transform: translateY(100px);
}
.search-container.showing .search_form {
  -webkit-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.search-container.closing .search_form {
  -webkit-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.suggestions-wrapper {
  width: 298px;
  font-family: inherit;
  font-weight: 400;
  color: #292828;
  padding: 22px 0 33px 0;
}
.suggestions-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.suggestions-wrapper li:not([tabindex]) {
  padding: 0;
}
.suggestions-wrapper li[tabindex], .suggestions-wrapper .suggestions:not(.fh-products) a {
  padding: 4px 10px 7px 10px;
}
.suggestions-wrapper li[tabindex], .suggestions-wrapper a {
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
  font: normal 18px/25px Grosa, Manrope, "Open sans", Arial, Helvetica, sans-serif;
  text-transform: none;
  text-align: left;
}
.suggestions-wrapper li[tabindex]:hover, .suggestions-wrapper li[tabindex]:focus, .suggestions-wrapper a:hover, .suggestions-wrapper a:focus {
  background: rgba(242, 242, 242, 0.62);
  background: rgba(0, 0, 0, 0.05);
  outline: 3px solid transparent;
}
.suggestions-wrapper li[tabindex]:hover .suggestion-text, .suggestions-wrapper li[tabindex]:focus .suggestion-text, .suggestions-wrapper a:hover .suggestion-text, .suggestions-wrapper a:focus .suggestion-text {
  text-decoration: underline;
}

.suggestion-text {
  font-weight: 400;
}

.suggestion-highlight {
  font-weight: 500;
}

.suggestions-heading, .suggestion .result-count {
  display: none;
}

.suggestions-wrapper li:last-child {
  border-width: 0;
}

.fh-categories {
  display: none;
}

.fh-products {
  display: none;
}
.fh-products ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fh-products li {
  width: 25%;
  padding: 0 15px;
}
.fh-products a {
  display: block;
  text-decoration: none;
}
.fh-products img {
  display: block;
  margin: 0 auto;
  max-width: calc(100% - 60px);
}
.fh-products figcaption {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .fh-products li {
    width: 50%;
  }
}
.search .page-content .search-again {
  margin-left: 5rem;
  margin-right: 5rem;
  padding-bottom: 18px;
  font-family: Grosa, Manrope, "Open sans", Arial, Helvetica, sans-serif;
}
.search .page-content .search-again * {
  box-sizing: border-box;
}
.search .page-content .search-again form {
  position: relative;
}
.search .page-content .search-again input[type=text] {
  float: none;
  height: auto;
  background-color: transparent;
  font-family: inherit;
  font-weight: 300;
  line-height: 1.5;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #000;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.2px;
  padding: 6px 6px 6px 26px;
}
.search .page-content .search-again input[type=text]::placeholder {
  font-family: Grosa, Manrope, "Open sans", Arial, Helvetica, sans-serif !important;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  opacity: 1;
}
.search .page-content .search-again button[type=submit] {
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0);
}
.search .page-content .search-again button[type=submit]::before {
  content: "\e90d";
  font-family: "wi_icons";
  font-size: 16px;
  line-height: 1;
  color: #000;
  display: inline-block;
}
.search .page-content .search-again .suggestions-wrapper .suggestions {
  padding-left: 32px;
}
.search .page-content .search-again .suggestions-wrapper li[tabindex] {
  padding-left: 0;
}
.search .page-content .search-again .suggestions-wrapper li[tabindex]:hover, .search .page-content .search-again .suggestions-wrapper li[tabindex]:focus {
  background: none;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body > * {
  -webkit-transition: 0.2s -webkit-filter linear;
  -moz-transition: 0.2s -moz-filter linear;
  -o-transition: 0.2s -o-filter linear;
  transition: 0.2s filter linear;
}

.enable-blur > * {
  filter: blur(4px);
}

/* Responsive code for Mobile & iPad Portrait devices */
@media (max-width: 1023.98px) {
  .search_form {
    height: 51px;
  }
  .search_form > .container {
    padding: 12px 0 0 0;
    align-items: center;
  }
  .search_form form {
    min-width: 270px;
    max-width: 345px;
    width: 100%;
  }
  .search_form input[type=text] {
    height: 30px;
    width: calc(100% - 39px);
    font-size: 16px;
    line-height: 22px;
    padding-top: 2px;
    padding-bottom: 3px;
  }
  .search_form input[type=text]::-webkit-input-placeholder, .search_form input[type=text]::placeholder {
    font-size: 16px;
    line-height: 22px;
  }
  .search_form button.search-close {
    margin-right: 10px;
  }
  .search_form .icon-search {
    bottom: 4px;
  }

  .search-container #suggestions-container {
    top: 50px;
  }
  .search-container #suggestions-container .help-message {
    padding-top: 20px;
    padding-bottom: 56px;
  }
  .search-container #suggestions-container .help-message p {
    font-size: 16px;
    line-height: 34px;
  }
  .search-container #suggestions-container .help-message p .mobile {
    display: block;
  }
  .search-container #suggestions-container .help-message p .desktop {
    display: none;
  }

  .suggestions-wrapper {
    width: 100%;
    padding: 15px 6px;
  }
  .suggestions-wrapper li[tabindex], .suggestions-wrapper a {
    font-size: 16px;
    line-height: 22px;
  }
}

/*# sourceMappingURL=suggest.css.map */
