.search-form {
    display: flex;
    gap: 8px;
}

.search-form * {
    line-height: 1 !important;
}

.people-picker {
    height: 21px;
}


.search-form__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-form__column:not(:last-child) {
    width: 100%;
}

.search-form__expand {
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.search-form--expanded {
    flex-wrap: wrap;
}

.search-form--expanded .search-form__column {
    flex-grow: 1;
    width: auto;
}

.search-form--expanded .search-form__column:not(:last-child) {
    min-width: 250px;
}

.search-form__people-wrapper {
    flex-grow: initial;
}

.nights {
    max-width: 250px;
}

.calendar-wrapper {
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.calendar-wrapper:hover {
    cursor: pointer;
}

.calendar-wrapper__icon {
    z-index: 501;
}

.dates {
    width: 100%;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .nights {
        max-width: initial;
    }

    .search-form__column {
        height: 50px;
    }

    .search-form__people-wrapper {
        width: 100%;
    }
}