/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
.autocompleteResults {
  font-size: 11px;
  background: white;
  z-index: 10;
  position: absolute;
  top: 40px;
  left: -1px;
  right: -1px;
  max-height: calc(100vh - 112px);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.autocompleteResults:empty {
  display: none;
}
@media only screen and (min-width : 1024px) {
  .autocompleteResults {
    left: 0;
    width: 460px;
    max-height: 500px;
  }
}
.autocompleteResults li {
  background: white;
}
.autocompleteResults li.active {
  background: #f4f2f0;
}
.autocompleteResults .itemTitle {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #383838;
}
.autocompleteResults .itemTitle:hover {
  color: #4ca950;
}
.autocompleteResults .groupHeader {
  opacity: .6;
  user-select: none;
}
.autocompleteResults .link {
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 8px;
  width: initial;
  padding: 12px;
  color: #383838;
  text-align: left;
}
.autocompleteResults .link .image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.autocompleteResults .link .imageWrapper {
  display: flex;
  -webkit-flex: 0 0 60px;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width : 768px) {
  .autocompleteResults .link .imageWrapper {
    min-width: 80px;
  }
}
.autocompleteResults .link .imageWrapper.hide {
  display: none !important;
}
.autocompleteResults .link:hover {
  background: #ebebeb;
}
@media only screen and (min-width : 1024px) {
  .autocompleteResults--hidden {
    display: none;
  }
}
