#vmsearch{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
}
.vmsearch-result{
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 999;
    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);
	margin-left: 15px;
	width: calc(100% - 33px);
}
.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;
	padding-left: 10px;
}
.vmsearch-result .trip-img img{
    max-height: 40px;
    height: auto;
    width: auto;
}
.vmsearch-result .trip-available{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
}
.vmsearch-result .trip-category{
    display: inline-block;
    line-height: 3;
    color: #a7a4a4;
}
.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: 3;
	padding-left: 7px;
}
.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: 3;
    padding-left: 3px;
}
.vmsearch-result .trip-price-box{
    width: 110px;
    display: inline-block;
    text-align: right;
    padding-right: 20px;
}
.vmsearch-result .show-all{
    cursor: pointer;
    text-align: center;
    background: #e02f19;
    padding: 7px 5px;
    color: #fff;
}
.vmsearch-result .show-one{
    cursor: pointer;
    text-align: center;
    background: #eee;
    padding: 7px 5px;
    color: #737373;
    text-shadow: 0 1px 0 #fff;
}
.vmsearch-result .show-all:hover{
    background: #e02f19;
}

body #vmCartModule{
    z-index: 998;
}