.hotels_filter
{
    width: calc( 100% - 40px );
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
    box-sizing:border-box;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
    min-height:50px;
}
.hotels_filter-left{
    width:50%;
}
.hotels_filter-rigth {
    width: 50%;
    display:flex;
    flex-direction:row;
    justify-content:flex-end;
}

.hotels_listing {
    display: block;
    width: calc( 100% - 40px );
    box-sizing: border-box;
    margin: 0 auto;
    margin-top:10px;
}

.hotel_details {
    font-size: 12px;
    padding: 8px;
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    height:15px;
    box-sizing: border-box;
}
.hotel_details_icon img {
    font-size: 15px;
    height: 15px;
    width: 15px;
}
.hotel_details_price {
    font-size:12px;
    color: var(--black);
    display: flex;
    flex-direction: row;
    margin-left: 5px;
}

@media (max-width: 767px) {

    .form-wrapper-item-input-wrapper {
        width: 350px !important;
    }
}
@media (max-width: 565px) {
    .hotels_listing {
        width: 100% !important;
    }

    
}