﻿

/* Style the autocomplete dropdown */
.ui-autocomplete {
    background-color: White;
    list-style-type:none;
    max-width:85%;
}

/* Style each dropdown item */
.ui-menu-item {
    cursor: pointer;
    color: #454545;
    font-family: Calibri;
    font-size: 24px;
    font-weight: 500;
    border: none;
    transition: all 0.2s ease-in-out;
}

    /* Remove the last item's border */
    .ui-menu-item:last-child {
     
    }

    /* Highlight the hovered item */
    .ui-menu-item:hover {
       
    }

    .ui-menu-item.closed {
        color: lightgray !important;
    }
/* Style the selected item */
.ui-state-active, .ui-menu-item-wrapper.ui-state-active {
    cursor: pointer;
    color: #454545;
    margin: 0 !important;
    font-family: Calibri;
    font-size: 24px;
    font-weight: 500;
    border: none;
    border-top: black thin dotted;
    border-bottom: black thin dotted;
    background: linear-gradient(white,#ff6a00) !important;
}

