﻿/*
    Copyright (c) 2001 Envision Technology Partners, Inc. All rights reserved.
*/
.autocomplete {
    position: relative;
    width: 100%;
}

.autocomplete [type=text] {
    -webkit-appearance: none;
    border-radius: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: inherit;
    font-family: inherit;
    line-height: 1.25;
    padding: .5em;
}

.autocomplete [role=listbox] {
    margin: 0;
    max-height: 12em;
    overflow-y: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    font-size: 100%;
    padding: 0;
    left: 0;
    position: absolute;
    top: 2.3em;
    width: 100%;
    background-color: #f7fafc;
    border-radius: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000;
    border: 2px solid #718096
}

.autocomplete [role=option] {
    line-height: 22px;
    padding: .5em;
    display: block;
    border-bottom: 2px solid #718096;
    outline: 0;
    margin: 0
}

.autocomplete-optionNoResults {
    line-height: 22px;
    padding: .5em;
    display: block;
    border-bottom: 2px solid #718096;
    cursor: not-allowed
}

.autocomplete [role=option]:hover, .autocomplete [role=option][aria-selected=true] {
    background-color: #6c6c6c;
    border-color: #6c6c6c;
    color: #ffffff
}

.no-left-border {
    border-left: none !important;
}

.hintText {
    margin-left: 3px;
    font-size: 11px;
}

.top-reset {
    top: 2.5rem !important;
}