/*Vue Auto Search*/
.vas{
    position: relative;

}
.vas_result{
    /*    width: 100%;
                padding: 10px;
        top: 40px!important;
        z-index: 999;*/
    position: absolute;
    /*top:72px;*/
    z-index: 999;
    margin: 0;
    margin-top: 5px;
    padding: 0;
    border: 1px solid #eee;
    border-radius: 4px;
    background:#F7F7F9!important;
    -webkit-box-shadow: 2px 14px 33px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 14px 33px -9px rgba(0,0,0,0.75);
    box-shadow: 2px 14px 33px -9px rgba(0,0,0,0.75);
    width: -webkit-fill-available;
    /*width:100%;*/
}

.vas_input_right {
    position: absolute;
    top: 0px;
    right: 10px;
}

.vas_clear{
    color: #dc3545;
    /*font-size: 20px;*/
    cursor: pointer;
}

.vas_close {
    color: #dc3545;
    /* font-size: 20px; */
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 2px;
}

.vas_message{
    padding: 3px 10px;
    margin: 0px;
}

/*.autocomplete {
    position: relative;
}
.autocomplete .label {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 100;
}

.autocomplete-input {
    padding: 7px 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;

}
.autocomplete-input:focus {
    border-color: #000;
}*/
.vas_items{
    overflow-x: auto;
    max-height: 250px;
    margin: 0px;
    padding: 0px;
}

.vas_items li {
    margin: 0;
    padding: 8px 15px;
    border-bottom: 1px solid #e7e4e4;
    list-style: none;
}

.vas_items  li:last-child {
    border-bottom: 0;
}
.vas_items  li:hover, .vas_items  li.active {
    background-color: #DDDDDD;
    cursor:pointer;
}
.vas_add_form_fields{
    max-height: 250px;
    overflow: auto;
}
.vas_title{
    font-weight: bold;
}