.autocomplete, .autocompletamobile {
/*the container must be positioned relative:*/
position: relative;
display: inline-block;
}
.searchinput  {
border: 1px solid transparent;
background-color: #ffffff;
font-size: 16px;
border-radius: 16px;
padding: 2px 1rem !important;
}
.searchinput:focus-visible{
outline:none;
}
.autocomplete-items {
position: absolute;
border: 1px solid #d4d4d4;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 100%;
left: 0;
right: 0;
max-height: 70vh;
overflow-y: auto;
background: white;
-webkit-box-shadow: -2px 3px 17px -2px rgb(0 0 0 / 57%);
box-shadow: -2px 3px 17px -2px rgb(0 0 0 / 57%);
overflow-x: hidden;
font-size: .7rem;

}
.autocomplete-items div {
padding: 10px;
cursor: pointer;
background-color: #fff;
border-bottom: 1px solid #d4d4d4;
color: #212121;
}
.autocomplete-items div:hover {
/*when hovering an item:*/
background-color: #e9e9e9;
}
.autocomplete-active {
/*when navigating through the items using the arrow keys:*/
background-color: DodgerBlue !important;
color: #ffffff;
}
@media screen 
and (min-device-width: 1366px) 
and (-webkit-min-device-pixel-ratio: 1) { 
.autocomplete-items::-webkit-scrollbar-thumb {
border-radius: 6px;
background: linear-gradient(60deg, #0850c7 0%, #007bff 93% 45%);
}
.autocomplete-items::-webkit-scrollbar {
width: 6px;
position: absolute;
}

}
