#job-filter-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
    margin-block: 60px;
}
.filter-box {
    position: relative;
}
.filter-box:before {
    content: "\e900" !important;
    position: absolute;
    right: 13px;
    bottom: 12px;
    z-index: 1;
    font-family: "icomoon";
    pointer-events: none;
    line-height: 1;
    font-size: 12px !important;
    background: #010D1533;
    width: 34px;
    height: 34px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
}
.filter-box label {
    font-size: 18px;
    line-height: 2.2;
}
#job-filter-form select {
    border: 1px solid rgb(1 13 21 / 20%);
    border-radius: 0 0 25px 0;
    min-height: 60px;
    width: 100%;
    color: #7D7D7DCC;
    font-family: var(--regular);
    font-size: 16px;
    padding: 12px 21px 12px 12px;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}
#job-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: unset !important;
}
.job-item a {
    display: flex;
    gap: 22px;
    min-height: 120px;
    align-items: center;
    cursor: pointer;
    padding: 22px;
    background: rgb(229 67 96 / 10%);
    border: 1px solid rgb(229 67 96 / 20%);
    border-radius: 0 0 50px 0;
    color: var(--black);
    transition: 0.4s;
}
.job-item a:hover {
    background: var(--color2);
    color: var(--white);
}
.job-item .job-icons {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    font-size: 22px;
    color: var(--color2);
    border-radius: 50%;
    flex: 0 0 56px;
}
.location-time {
    position: relative;
    display: flex;
    gap: 20px;
}
.location-time p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgb(1 13 21 / 60%);
    transition: 0.4s;
}
.location-time p i {
    color: var(--color2);
    transition: 0.4s;
}
.location-time .time-job:before {
    content: "";
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(229 67 96 / 20%);
    width: 1px;
    height: 18px;
    position: absolute;
}
.job-item a:hover .location-time p {
    color: rgb(225 225 225 / 80%);
}
.job-item a:hover .location-time p i {
    color: var(--white);
}
.job-item a:hover .location-time p:nth-child(1):before {
    background: rgb(225 225 225 / 20%);
}
#job-results {
    position: relative;
}
.job-item-wrap {
    width: 100%;
}
.isotope-item {
    transition-duration: 0s !important;
}
.job-item {
    position: relative !important;
    top: unset !important;
    left: unset !important;
}
div#no-results-message {
    text-align: center;
    background: var(--color1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    padding: 8px;
    width: 100%;
    grid-column: span 3;
}
@media only screen and (max-width: 992px) {
    #job-filter-form,
    #job-results {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 768px) {
    #job-filter-form,
    #job-results {
        grid-template-columns: repeat(1, 1fr);
    }
}
