﻿.salary-search-input-group {
    display: flex;
    align-items: center;
}

.autoComplete_wrapper {
    flex: 1 1 auto;
    min-width: 0;
}

    .autoComplete_wrapper input {
        box-sizing: border-box;
        height: 2rem;
        padding: 0;
        color: black;
    }

ul[id^="autoComplete_list_"] {
    position: absolute;
    top: calc(100% + 8px);
    left: -46px;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    border-radius: 8px;
    max-width: none;
    width: calc(100% + 135px);
}

.autoComplete_wrapper > input {
    width: 100%;
}

.ac-item {
    display: flex;
    flex-direction: column;
}

.ac-name {
    font-size: 14px;
    font-weight: 600;
}

.ac-category {
    font-size: 12px;
    color: #888;
}

.salary-result-section .salary-search-btn {
    padding-inline: 0.5rem;
}

@media (min-width: 992px) and (max-width: 1048px) {
    .salary-result-section .autoComplete_wrapper > input {
        width: 9rem;
    }
}
