/*naseptavac_fm*/
.search-whisperer {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  width: 1000px;
  max-width: 100vw;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 15px;
  display: none;
  max-height: 500px;
  overflow-y: auto;
}
.search-whisperer.active {
  display: block !important;
}

.search-whisperer-products {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-between;
}

.search-whisperer-products li {
  flex: 0 0 calc(50% - 10px);
  width: calc(50% - 10px);
  margin-bottom: 15px;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #fff;
}

.search-whisperer-documents {
  font-size: 14px;
  order: 3;
}

.search-whisperer-products {
  order: 1;
  font-size: 14px;
  margin-top: 15px !important;
}

.search-whisperer-documents.text-center {
  order: 2;
  padding-top: 0px !important;
}

@media (max-width: 1024px) {
  .search-whisperer {
    width: 100%;
    max-width: 100%;
    right: 0;
    left: 0;
  }
}

@media (max-width: 768px) {
  .search-whisperer {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
  }

  .search-whisperer-products li {
    flex: 100%;
    width: 100%;
  }
}
.search-whisperer a[data-testid="btnShowAllResults"] {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 5px auto; 
  padding: 15px 20px;
  font-size: 14px;
  text-align: center;
  background: #eba124;
  color: #fff;
}