#search-container {
  display: none; 
  position: fixed;
  top: 100px; 
  left: 0;
  right: 0;
  width: 100%; 
  background-color: white;
  padding: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; 
}
.search-input-container {
  display: flex; 
  justify-content: center; 
  align-items: center;
  width: 100%;
}
#search-bar {
  width: 100%; 
  max-width: 1140px; 
  font-size: 16px; 
  padding: 10px; 
  border: 0px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-right: 10px; 
  box-shadow: 0 4px 4px 0 rgba(0,0,0,.11);
}
.clear {
  cursor: pointer;
  font-size: 20px;
  margin-left: 10px;
}
#search-bar:focus {
  outline: none; 
}

@media (max-width: 768px) { 
  .header-top .search-widgets {
    max-width: 100%;
  }
  #search-container-mobile {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 50px 10px 10px 10px;
    box-sizing: border-box;
	
  }
  #search-container-mobile input {
    width: 100%;
    font-size: 14px;
    padding: 10px 40px 10px 10px; 
    border: 0;
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, .11);
  }
  .icon-search-button {
    position: absolute;
    top: 66%;
    right: 20px; 
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .icon-search {
    width: 24px;
    height: 24px;
    display: block;
  }
}




