/* AUTOSUGGEST */

.react-autosuggest__container
{
    position: relative;
}

.react-autosuggest__input
{
    background-color: #fff;
    border-color: #d9d9d9 #ccc #b3b3b3;
    border-radius: 4px;
    border: 1px solid #ccc;
    color: #333;
    cursor: default;
    display: table;
    border-spacing: 0;
    border-collapse: separate;
    height: 36px;
    outline: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    font-size: 0.8rem;
    padding-left: 10px;
    padding-right: 30px;
}

.react-autosuggest__input--focused
{
    outline: none;
}

.react-autosuggest__input--open
{
    border-bottom-left-radius:  0;
    border-bottom-right-radius: 0;
}

.react-autosuggest__suggestions-container
{
    display: none;
}

.react-autosuggest__suggestions-container--open
{
    display:            block;
    position:           absolute;
    top:                37px;
    width:              100%;
    min-width:          160px;
    margin-left:        0px;
    background-color: #FFFFFF;
    border-radius:      0 0 4px 4px;
    z-index:            2;
    box-shadow:         0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip:    padding-box;
}

.react-autosuggest__suggestions-list
{
    margin:             0;
    padding:            0;
    list-style-type:    none;
}

.react-autosuggest__suggestion
{
    cursor:     pointer;
    padding:    10px 20px;
}

.react-autosuggest__suggestion--highlighted
{
    background-color: #EBF5FF;
}

.react-autosuggest__clear{
    float: right;
    margin-right: 10px;
    margin-top: -25px;
}