/*--- auto complete search filter style in jobs ----*/

.auto-complete-parent{
  position: relative;
}

.auto-complete-list{
  cursor:pointer;
  position: absolute;
  width: 100%;
  z-index: 1;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.auto-complete-list::-webkit-scrollbar-track{
  border: 1px solid #18a689;
  border-radius: 5px;
  padding: 2px;
  background-color: #f8f9fa;
}

.auto-complete-list::-webkit-scrollbar{
  width: 10px;
}

.auto-complete-list::-webkit-scrollbar-thumb{
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #d4edda;
  border: 1px solid #18a689;
}

.auto-complete-list li:hover{
  background-color: #d4edda;
}