.cif-auto-suggestion-results {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
  background-color: white;
  z-index: 98;
}

@media (max-width: 767px) {
  .cif-auto-suggestion-results {
    width: calc(100vw - 40px) !important;
  }
}

.cif-auto-suggestion-results a:hover {
  text-decoration: none;
}
.cif-auto-suggestion-results a:hover .cif-auto-suggestion-result-details p {
  color: #2f6b9b !important;
}

input.product-search-input:focus + .cif-auto-suggestion-results {
  display: block;
} 

.cif-auto-suggestion-results:hover {
  display: block;
}

.cif-auto-suggestion-result {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.cif-auto-suggestion-result:hover {
  background-color: rgba(47, 107, 156, .15);
}

.cif-auto-suggestion-result-thumbnail {
  min-width: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .cif-auto-suggestion-result-thumbnail {
  min-width: 80px;
  margin-right: 15px;
}
}

.cif-auto-suggestion-result-thumbnail::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.cif-auto-suggestion-result-details p {
  margin-bottom: 0;
  color: black;
  text-decoration: none;
}

.cif-auto-suggestion-loading {
  text-align: center;
  padding: 10px 20px;;
}
