.job_types {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.job_type_item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-right: 1px solid #ccc;
}

.job_type_item input,
.search_remote_position input {
    margin: 0 10px 0 0;
    width: 15px;
    height: 15px;
}
.job_type_item label,
.search_remote_position label {
    line-height: 1;
    margin: 0;
    cursor: pointer;
}

.jf_row {
    display: flex;
    justify-content: space-between;
    padding: 0 0 10px;
}

.jf_col_half {
    width: calc(50% - 5px);
}

.job_form input:not([type="checkbox"]):not([type="checkbox"]):not([type="submit"]) {
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #e04622;
    font-size: 16px;
}
.jf_col_full{
    width: 100%;
}
.job_form input[type="submit"]{
    width: 100%;
}

.search_remote_position {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.job_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #ccc;
    padding:15px 0;
}
.ji_title h3 {
    font-size: 16px;
    text-transform: none;
    margin: 0;
    
}

.ji_thumb {
    flex-basis: 80px;
    width: 80px;
    padding-right: 15px;
}
.ji_title {
    width: calc(60% - 80px);
    flex-basis: calc(60% - 80px);
    padding-right: 20px;
    font-size: 16px;
}
.ji_location {
    font-size: 16px;
    flex-basis: 20%;
    width: 20%;
    padding-right: 20px;
}

.ji_type {
    font-size: 16px;
    flex-basis: 20%;
    width: 20%;
    text-align: right;
    line-height: 1.2;
}

.j_type {
    font-weight: bold;
    color: #df4622;
}

.link_overlay{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    font-size: 0;
}

#job_form {
    margin: 0;
}


.spinner {
    padding: 20px 0;
    text-align: center;   
}
.spinner svg{
    display: block;
    margin: 0 auto;
    animation: spinner 1s linear infinite;
}

.job_types .job_type_item:last-child {
    border: none;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 


@media (max-width:767px){
    .ji_title {
        width: 100%;
        flex-basis: 100%;
        padding: 0 0 10px;
    }
    .ji_location, .ji_type{
        flex-basis: 50%;
    }
    .ji_thumb {
        display: none;
    }
    .jf_row {
        flex-flow: column;
    }
    .jf_col_half {
        width: 100%;
        margin-top: 10px;
    }
}