.edmiston-search {
  position: relative;
}

.edmiston-autocomplete {
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08), 0 8px 32px -2px rgba(0, 0, 0, .12);
    border-radius: 0 0 4px 4px;
    margin: 10px 0 0 0 !important;
    width: 100% !important;
    left: 0 !important;
    top: -50px !important;
    border: 0 !important;
    max-height: 450px !important;
    z-index: 999;
    background: #fff;
}

.edmiston-autocomplete .ui-menu-item {
    padding: 14px 16px;
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 600;
	cursor: pointer;
    border: 0 !important;
	color: #333333;
}

.edmiston-autocomplete::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

.edmiston-autocomplete::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2); /* Color of the scrollbar thumb */
    border-radius: 10px; /* Roundness of the scrollbar thumb */
}

.edmiston-autocomplete::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3); /* Color on hover */
}

.edmiston-autocomplete::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Roundness of the scrollbar track */
}

.edmiston-autocomplete {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: rgba(0, 0, 0, 0.2) #f1f1f1; /* Color of scrollbar thumb and track */
}

@media ( max-width : 767px ) {
    .edmiston-autocomplete {
        top: -20px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .08), 0 8px 32px -2px rgba(0, 0, 0, .02);
    }
}