/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.autocompleteResults {
  font-size: 15px;
  border: 1px solid #c2bfb6;
  background: white;
  z-index: 10;
  position: absolute;
  top: 45px;
  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 {
    top: 35px;
    left: auto;
    width: 400px;
    max-height: 500px;
  }
}
.autocompleteResults li {
  background: white;
}
.autocompleteResults li.active {
  background: #f7f5ef;
}
.autocompleteResults .itemTitle {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #142632;
}
.autocompleteResults .itemTitle:hover {
  color: #142632;
}
.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: #142632;
}
.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: #f0f3f6;
}
@media only screen and (min-width: 1024px) {
  .autocompleteResults--hidden {
    display: none;
  }
}
