


section.vacancy-search {
    background-color:#000;
    padding:12px;

    display: flex;
    flex-direction: column;
    gap: 12px;

}


.vacancy-search-claim-title {
    font-weight:bold;
    font-size: 26px;
    line-height: 1;
    color:#fff;
    margin: 12px 0 0;
    padding:0;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.vacancy-search-claim-title::before {

    content: " ";
    display: block;
    background-color:#FEDD33;
    width: 100px;
    height: 20px;
    flex-grow: 1;
}



.vacancy-search-claim-subtitle {

    font-weight: 300;
    font-family: 'HelveticaNeue-Light', sans-serif;
    font-size: 24px;
    line-height: 1;
    color:#fff;
    margin-top:4px;
    margin-bottom:12px;
}



@media (min-width: 576px) {

    .vacancy-search-claim {
        align-self: flex-end;
    }

    .vacancy-search-claim-title {
        margin-top: 24px;
        font-size: 36px;
    }

    .vacancy-search-claim-title::before {
        width: 100px;
        height: 28px;
    }


    .vacancy-search-claim-subtitle {
        font-size: 36px;
        margin-top:8px;
        margin-bottom: 24px;
    }


}










.vacancy-search-controls {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
}

.vacancy-search-controls .vacancy-search-filter {
    background-color:#fedd34;
    border:1px solid #fedd34;
    width: 55px;
    height: 55px;
    flex-grow:0;
    flex-shrink:0;

    display: flex;
    align-items: center;
    justify-content: center;


}


.chipbox {

    flex: 1 1 auto;

    position: relative;
    background: #fff;
    border: 1px solid black;

    padding: 10px;
    min-height: 55px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;



}



.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    background: #E5E5E5;
    border: 1px solid #E5E5E5;
    color: #000;
    font-size: 14px;
    line-height: 1;
    user-select: none;
}

.chip .prefix {
    font-weight: 700;
    color: #000;
}
.chip button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #374151;
}
.chip button:hover { background: rgba(0,0,0,.06); }


.chipinput {

    border: 0;
    outline: none;
    flex: 1 1 220px;
    min-width: 180px;
    font-size: 14px;
    padding: 8px 6px;
    background: transparent;


    height: auto;
    min-height: 0;
    margin:0;
    width: auto;

}





.chipbox-dropdown {
    position: absolute;
    top: calc(100% + 8px);

    left: 0;
    right: 0;

    background: #fff;
    border: 1px solid #000;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    overflow: hidden;
    z-index: 4500;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}
.chipbox-dropdown.open { display: block; }



.chipbox-dropdown-grouptitle {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #374151;
    background: #fff;
    border-top: 1px solid #eef2f7;
}
.chipbox-dropdown-grouptitle:first-child { border-top: 0; }


.chipbox-dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.chipbox-dropdown-item:hover,
.chipbox-dropdown-item.active { background: #f3f4f6; }
.chipbox-dropdown-item small { color: #6b7280; }



