#vmsearch{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
	height: 38px;
	margin: 0 0 0 0;
}
#vmsearch input{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-radius: 0;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	height: 38px;
}
#vmsearch input:focus{
    -webkit-box-shadow: none;
    box-shadow: none;
}
#vmsearch button{
    margin-left: -1px;
    background: #ffdb4d;
    border: 1px solid #ffdb4d;
    color: #fff;
    outline: none;
    padding: 6px 12px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#vmsearch button:hover,
#vmsearch button:active{
    opacity: 0.8;
}

.vmsearch-result{
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 9999;
    border: 1px solid #eee;
    width: 100%;
    -webkit-box-shadow: 0 10px 20px -5px rgba(0,0,0,.3);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,.3);
}
.vmsearch-result ul{
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
}
.vmsearch-result li{
    list-style: none;
    margin:0;
    padding: 5px 5px;
    background: #fff;
    cursor: pointer;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #e6e6e6;
}
.vmsearch-result ul > li:last-child{
    border-bottom: 0;
}
.vmsearch-result li:hover{
   background: #f5f5f5; 
}
.vmsearch-result a,
.vmsearch-result a:hover{
    color: #333;
    text-decoration: none;
    outline: none;
}

.vmsearch-result a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.vmsearch-result .trip-img{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    max-width: 40px;
    text-align: center;
    padding-right: 5px;
    padding-top: 2px;
}
.vmsearch-result .trip-img img{
    max-height: 40px;
    height: auto;
    width: auto;
}
.vmsearch-result .trip-name{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    line-height: 1.4;
}
.vmsearch-result .trip-price{
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    line-height: 1.4;
    padding-left: 3px;
}
.vmsearch-result .show-all{
    cursor: pointer;
    text-align: center;
    background: #f5f5f5;
    padding: 7px 5px;
}
body #vmCartModule{
    z-index: 998;
}