.location-search {
    position: relative;
    width: max-content;
}

#location {
    box-sizing: border-box;

    min-width: 85px;
    max-width: 260px;

    transition: width 0.25s ease;
}

.location-results {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 1000;

    width: max-content;
    min-width: 100%;
    max-width: 420px;

    max-height: 300px;
    overflow-y: auto;

    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.location-results:empty {
    display: none;
}

.location-result {
    box-sizing: border-box;

    padding: 8px 10px 8px 8px;

    cursor: pointer;
    white-space: nowrap;
    font-weight: normal;

    border-left: 3px solid transparent;
    border-bottom: 1px solid #eee;
}

.location-result:last-child {
    border-bottom: 0;
}

.location-result:hover,
.location-result.active {
    background: #f2f2f2;
    border-left-color: #0075ff;
}