.dropdownsearch-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 16px 22px 0px rgba(0, 0, 0, 0.3);
  z-index: 1;
  min-height: 50px;
  max-height: 250px;
  overflow: auto;
  width: 100%;
  top: calc(100% + 5px);
  border-radius: 5px;
}
.dropdownsearch-content::-webkit-scrollbar {
  width: 8px;
}

.dropdownsearch-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.dropdownsearch-content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
  border: 2px solid #f1f1f1;
}

.dropdownsearch-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.dropdownsearch-content .dropdownsearch-element > div:not(#search-loader) {
  color: black;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dropdownsearch-element > div:hover {
  background-color: var(--bg-hover);
}

.notification {
  background: #ffc83a;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  padding: 2px;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list {
  background-color: rgba(100, 100, 100, 0.03);
}
/* .list-bordered {background-color:rgba(0, 0, 0, 0.01);border: 1px solid white;} */
/* .list-element div{margin-top:25px;margin-bottom:25px;} */

.list-unselected-element :hover {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid;
}
hr {
  margin: 0px;
}

#prod-search-input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ff8e1685;
  opacity: 1; /* Firefox */
}
#prod-search-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ff8e1685;
}

#prod-search-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ff8e1685;
}

.hide-container {
  display: none;
}

#form-content.isOpen-mySidenav {
  position: absolute;
  left: 0;
  width: 100%;
}

.search-container {
  width: calc(100% - 23px);
  margin-left: 12px;
  margin-top: -25px;
  position: absolute;
  bottom: 35px;
}
.search-container input[type="search"]{
    /* width: 100%; */
    width: 48%;
    border: hidden;
    background-color: #fff;
    height: 35px;
    border-radius: 5px;
    padding: 0px 10px 0px 35px;
    color: var(--primary-color);
    margin-left: 40%;

}
.search-container .form-control:focus {
  box-shadow: none;
}
.search-container .search-dropdown-container i {
  color: #ff8e1685;
  position: absolute;
  z-index: 1000;
  top: 50%;
  transform: translateY(-50%);
}

.search-container .search-dropdown-container .fa-magnifying-glass {
  left: calc(40% + 12px);
}

.search-container .search-dropdown-container .fa-xmark {
  right: 50px;
  cursor: pointer;
}