.aerocloudcareers__filters {
    padding: 20px;
    background: #eee;
    border-radius: 12px 12px 0 0;
    color: black;
}

.aerocloudcareers__list {
    padding: 0 20px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.aerocloudcareers__list__item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.aerocloudcareers__list__item__title {
    font-weight: 600;
    font-size: 1.2rem;
}

.aerocloudcareers__list__item__location {
    opacity: 0.7;
}

.aerocloudcareers__list__item__details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

select.aerocloudcareers__filters__select {
    padding: 8px 12px;
    border-radius: 5px;
    border: 2px solid #BEBEBE;
    min-width: 75%;
}

.aerocloudcareers__filters__title {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@media screen and (max-width: 993px) {
    .aerocloudcareers__list__item {
        flex-direction: column;
        align-items: start;
    }

    .aerocloudcareers__list__item__details {
        flex-direction: column;
        align-items: start;
        gap: 0;
    }

    select.aerocloudcareers__filters__select {
        width: 100%;
    }
}
.aerocloudcareers__list.loading .aerocloudcareers__list__item {
    filter: blur(2px);
    opacity: 0.6;
    /* disable */
    pointer-events: none;
}