.block-staff-search {
    position: relative;
}

.block-staff-search .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.block-staff-search select {
    appearance: none;     
    -webkit-appearance: none; 
    -moz-appearance: none;   
    background: #fff url('../../../img/icons/nav-arrow-down.svg') no-repeat right 30px center;
    cursor: pointer;
    border-radius: 10px;
    padding: 25px 30px;
    background-color: var(--color-n-white);
    width: 100%;
    background-size: 20px;
    font-size: 2.8rem;
    position: relative;
    padding-left: 80px
}

.block-staff-search .select-wrapper-expertise::before {
    content: ''; 
    display: block;
    background: url('../../../img/icons/expertise.svg') no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; 
    z-index: 1;
}

.block-staff-search .select-wrapper-location::before {
    content: ''; 
    display: block;
    background: url('../../../img/icons/location.svg') no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; 
    z-index: 1;
}

.block-staff-search .select-wrapper-expertise,
.block-staff-search .select-wrapper-location {
    position: relative;
}

@media only screen and (max-width: 1024px) { 
    .block-staff-search .content {
        grid-template-columns: 1fr;
    }
}
