<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.search-ico {
  font-size: 26px;
  margin-right: 5px;
  border: 2px solid #495057;
  /* padding: 10px; */
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  color: #495057;
  transform: scale(0.8);
}

.ss {
  margin-right: 10px;
  color: #000;
  border: 1px solid black;
  padding: 5px 18px 5px 9px;
  border-radius: 245px;
  display: flex;
  align-items: center;
}

/* Style the search container */
.search-container {
  position: absolute;
  width: 100%;
  max-width: 600px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  top: 90%;
  /* display: none; */
  z-index: 100000;
  background: #fff;
  border-radius: 50px;
  padding: 0 13px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}

.search-container.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Style the search input field */
#search-input {
  padding: 10px;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 30px;
  width: 100%;
  /* adjust the width as needed */
  transition: width 0.5s;
  /* add a transition effect for the width */
}

#search-input:focus {
  border: none;
  outline: none;
}

/* Style the search icon */
#search-icon {
  position: absolute;
  top: 3px;
  right: 10px;
  padding: 10px;
  cursor: pointer;
}

/* Style the overlay element */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1000;
  /* add a transition effect for the opacity */
  pointer-events: none;
  /* prevent clicks on the overlay */
}

/* Style the search input field when the icon is clicked */
.search-container.active #search-input {
  width: 100%;
  /* adjust the width as needed */
}

/* Style the overlay element when the icon is clicked */
.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.close_btn {
  position: absolute;
  top: 25%;
  right: 5%;
  font-size: 18px;
  color: #000;
  background: #fff;
  z-index: 10000;
  padding: 12px 15px;
  border-radius: 70%;
  display: none;
}

.search-output {
  width: 100%;
  position: absolute;
  background: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 600px;
  margin-top: 10px;
  border-radius: 5px;
}

.search-output ul li {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 20px;
  transition: background 0.3s;
}

.search-output ul li:hover {
  background: #f7f7f7;
}

.search-output ul li img {
  height: 55px;
  margin-right: 10px;
}

.search-output ul li span {
  font-size: 17px;
  font-weight: 700;
}

.category {
  font-size: 12px;
  background: #f44701;
  color: #fff;
  width: max-content;
  padding: 0 4px;
  border-radius: 3px;
}

.throw-error {
  height: fit-content;
  /* text-align: center; */
  display: inline-block;
  display: grid;
  place-content: center;
}

.throw-error h4 {
  font-size: 38px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.throw-error p {
  font-size: 22px;
  text-align: center;
}
</pre></body></html>