

/************************************************************************
       Search BAR
************************************************************************/

.search-bar , #search_results {
    padding: 0 6.5rem;
}
.search-bar{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-bar > div:nth-of-type(1){
    flex-basis: 20%;
}
.search-bar > div:nth-of-type(2){
    display:flex;
    align-items: center;
}

.search-booking-holder{
    flex-basis: 40rem;
    position: relative;
}

.autosuggest-location {
    display:none;
    position: absolute;
    top: 43px;
    width: calc(100% + 1px);
    min-height: 15rem;
    max-height: 40rem;
    overflow: auto;
    background: white;
    z-index: 66;
    left: -1px;
    border-radius: 0 0 .5rem .5rem;
    padding: 0 1.5rem 3rem 1.5rem;
}
.autosuggest-location > div:hover {
    background:var(--border-color);
}

#booking_search {
    height: 4.5rem;
    border: 1px solid var(--border-color);
    border-radius:.7rem;
    width: 100%;
    padding: 0 1.5rem;
    font-size: 1.8rem;
    color: var(--gray-color);
    box-shadow: var(--box-shadow);
    font-size: 1.6rem;
}


/* Destination dropdown */

.destinations {
    width: 25rem;
    position: relative;
}

.destinations > button {
    width: 100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.destinations .holder-results {
    background-color: var(--white-color);
    padding: 2rem 0.5rem;
    position: absolute;
    width: 100%;
    top: 3.3rem;
    color: var(--text-gray-color);
    z-index: 55;
    font-size: 1.5rem;
    border:1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.destinations .holder-results .scroll {
    max-height: 30rem;
    overflow:auto;
}




#booking_date_start, #booking_date_end {
    background: transparent;
    border: none;
    padding:  1rem 0 .8rem 4rem;
    color: var(--primary-color);
    text-align:center;
    font-size: 1.4rem;
    width: 13rem;
}

#booking_date_start::placeholder {
    color:var(--primary-color);
}

#booking_date_end {
    padding-left: .5rem;
    width: 11rem;
    text-align: left;
}
.calendar-icon { 
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
}


#search_results span {
    display: inline-block;
    margin: 1rem 1rem 1rem 0;
    padding:.5rem 1rem;
    border:1px solid var(--primary-color);
    color:var(--primary-color);
    font-size: 1.4rem;
}

#search_results span button i {
    color:var(--primary-color);
}
