/*--- standard variables ---*/
/*--- switch themes ---*/
/* #####################################################################################################
   VARIABLES - 3 - Ot en sien
   ##################################################################################################### */
/*--- 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: 14px;
  border: 1px solid #ebebeb;
  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;
  opacity: 1;
}
.autocompleteResults:empty {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .autocompleteResults {
    top: 35px;
    left: 0px;
    width: 400px;
    max-height: 500px;
  }
}
.autocompleteResults li.active:not(.head) {
  background: #f8f8f8;
}
.autocompleteResults li:not(.head) {
  padding-right: 80px;
}
.autocompleteResults .head {
  position: relative;
  border-top: 1px solid #ebebeb;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.autocompleteResults .head:first-child {
  border-top: none;
}
.autocompleteResults .head span {
  position: absolute;
  top: 12px;
  right: 20px;
  text-align: right;
  color: #5e5e5e;
  font-size: 13px;
  display: block;
}
.autocompleteResults a {
  display: block;
  padding: 12px 20px;
  color: #454545;
}
.autocompleteResults a:hover {
  background: #f2f2f2;
}
@media only screen and (min-width: 1024px) {
  .autocompleteResults--hidden {
    display: none;
  }
}
