.title-search-result {
  display: none;
  overflow: visible;
  z-index: 100;
  padding: 0;
  border: none;
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px -1px 0px #eaeaea, 0px 20px 20px rgba(0, 0, 0, 0.1);

  width: 100%;
}

.searche-result {
  background-color: #fff;
  max-height: 350px;
  overflow: auto;
  padding: 12px 8px 0px;
  box-shadow: 0px -1px 0px var(--stroke_black), 0px 20px 20px rgba(0, 0, 0, 0.1);


}
.searche-result__item {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.2s;
  color: #222;
  text-decoration: none;
}
.searche-result__item:hover {
  background: #f4f4f4;
}
.searche-result__item-image {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  align-self: start;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
}
.searche-result__item-image img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.searche-result__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.searche-result__item-text {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 1.3;
}
.searche-result__all {
  padding: 12px 8px;
  text-align: center;
  background-color: #ffffff;
}
.all_result_title {
  border-radius: 6px;
  background: #f7f7f7;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
}
.all_result_title:hover {
  background: #eaeaea;
} 

.search-title-empty {
  width: 100%;
  background-color: #fff;
  padding: 20px;
}




.header-search {
    position: absolute;
    left: 8px;
    right: 8px;
    transform: translateY(-50%);
    top: 50%;
    z-index: 3;
    background-color: #fff;
    background-color: var(--darkerblack_bg_black);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

.header-search.opened {
    opacity: 1;
    visibility: visible;
}

.header-search form.search {
    display: flex;
    align-items: center;
    min-width: 0px;
}

form.search {
    position: relative;
}



form.search .btn-close {
    background-color: transparent;
    border: none;
     display: none;
    height: 100%;
    margin-right: 7px;
    width: 40px;
    z-index: 1;
    flex-shrink: 0;
}

@media (max-width: 769px) {
    .form.search .btn-close {
        display: block;
    }
}

.search .search-input-div {
    width: 100%;
    position: relative;
}

.search .search-button-div {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
}

.search .btn-search {
    background: transparent;
    border: none;
    padding: 0px 16px 1px 16px;
    line-height: 0;
    display: flex;
    height: 100%;
    align-items: center;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.btn-clear-search {
    background: var(--darkgrey_bg_black);
    padding: 7px;
    height: 23px;
    line-height: 0;
    border-width: 0;
    display: none;
}

.search-button-div {
    display: flex;
    align-items: center;
}