/*----------------------- searbox new fatch type start --------------------*/ 
/* Popup Background */
.popup-overlay-new {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box-new {
    width: 850px;
    height: 450px;
    margin: 10px auto; 
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    position: relative;
    bottom: 5px;
 
}

.close-btn-new {
    position: absolute;
    right: 20px;
    top: 15px;
    background: #003d55;
    color: white;
    border: none;
    font-size: 42px;
    border-radius: 100%;
    cursor: pointer;
    height: 55px;
    width: 55px;
}
.close-btn-new:hover{
    background-color:red;
}
/* Search Layout */
.search-bar-new {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.search-bar-new select
 {
    width: 100%;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #aaa;
    outline: none;
    box-shadow: 0 0 13px 1px rgba(10, 10, 90, 0.3);
    color: #6d6969;
}

.search-bar-new input {
     width: 600px;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #aaa;
    outline: none;
    box-shadow: 0 0 13px 1px rgba(10, 10, 90, 0.3);
}
/* Suggestions */
.suggestions-final {
    margin-top: 36px;
    list-style: none;
    padding: 0;
    border: 1px solid #ccc;
    background: #fff;
    height: 326px;
    overflow-y: auto;
    border-radius: 10px;
    position: absolute;
    width: 97%;
    z-index: 999;
    left: 18px;
}

.suggestions-final li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  height: 160px;
  width: 134px;
  background-color: #d9dcdd;
  float: left;
  margin-left: 5px;
  margin-top: 5px;
  border-bottom: 1px solid gray;
  text-align: center;
  color: #003d55;
    
}
.suggestions-final li:hover{
    background-color: #1e4b61;
  color: white;
}

.suggestions-final img {
    width: 132px;
    height: 82px;
    object-fit: contain;
}

/* Search Button Icon */
.open-search-btn-new {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 19px;
  color: white;
  margin-right: 31px;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
}
.open-search-btn-new :hover {
    color:#1e4b61;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
}
 /*----------------------- searbox new fatch type end --------------------*/ 
 
