@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"); 


.wrapper {
  max-width: 1050px;
  margin: 0px auto;
}

 .search-input {
  background: #fff;
  width:auto;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 1px darkcyan;
}

.icon .search-input:hover {
   background-color: bisque;
}


.search-input input[type="text"] {
  height: 55px;
  width: 80%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.search-input.active input {
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
  background-color:white;
}

.search-input.active .autocom-box {
  /* padding: 10px 8px; */
  opacity: 1;
  position: absolute;
  z-index: 50;
  pointer-events: auto;
  margin-bottom: 100px;
}

.autocom-box li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: auto;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li {
  display:block;
  opacity: 1;
  font-size: 20px;

}
.autocom-box li:hover {
  background:lightblue;
}

.search-input .icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color:white;
  cursor: pointer;
  background-color:#495E88;
  z-index:10;

}