.cat-pane input.search-inp {
  border-color: #02409b;
}
.cat-pane {
  position: relative;
}
.cat_pane_search_res{
  display: none;
  background-color: #fff;
  transition: all 0.3s ease;
  position: absolute;
  top: 45px;
}
.search-inp{
    position: relative;
z-index: 9999;
}
.cat_pane_search_res.active {
  display: flex;
  z-index: 9999;
  flex-direction: column;
  width: 100%;
  max-height: 231px;
  overflow-y: auto;
  border: 1px solid;
}
.search_res_item a{
    display: flex;
    width: 100%;
    padding: 5px 10px;
     background-color: #fff;
     transition: all 0.3s ease;
}
.search_res_item a:hover{
    background-color: #e4dede;
}
.search_res_overlay{
    position: fixed;
  display: flex;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  background-color: #000;
  opacity: 0.3;
}