.form-job-title{
    display:none;
}


/* ----- Jobs ----- */
.job_item{
    display: flex;
    gap: 30px;
    position: relative;
    align-content:flex-start;
}

.job_item .custom-border{
    width: 100%;
    background:  #C9D1D8;
    height: 1px;
    position: absolute;
    bottom: 0;
}

.job_item .custom-border:after{
    transition: all .3s ease-out;
    content: "";
    position: absolute;
    width: 0%;
    background:  #A43247;;
    height: 2.1px;
}

.job_item:hover .custom-border:after{
    width: 100%;
}

.job_title{
    width: 50%;
}

.job_title p{
    transition: all .3s ease-out;
    font-size: 24px;
    margin: 15px 0px !important;
    font-weight: 600;
    color: #000;
}


.job_data p{
    margin: 0 !important;
    text-align: left;
    display:flex;
    align-items: center;
    color: #C9D1D8;
    width:22%;
    text-align: left;
}

.job_data-txt{
    display: flex;
    gap: 0px 30px;
    flex-direction: row;
    width: 90%;
}

.job-cat {
    width: auto !important;
    text-align: left !important;
}


.job_data i {
    transition: all .3s ease-out;
    display: flex;
    align-items: center;
    color: rgba(0,0,0,0.15);
    font-size: 30px;
    width:40px;
}

.job_data{
    display: flex;
    gap: 30px;
    width: 50%;
    justify-content:space-between;
    text-align: left;
    color: #C9D1D8;
}


.jobs_cont:hover i{
    color: #A43247;
}

.jobs_cont:hover .job_title p{
    color: #A43247;
}


/* ----- Select (Rest in select css aus zuk aktuelles Plugin)----- */
#job-categories{
    min-width: 350px;
}

.job-filter-container .select-selected {
    min-width: 350px;
}

/* ----- Spinner ----- */
.jobs_container .spinner-square {
    display: flex;
    flex-direction: row;
    width: 70px;
    height: 120px;
    margin: 0 auto;
}

.jobs_container .spinner-square > .square {
    width: 13px;
    height: 30px;
    margin: auto auto;
    border-radius: 0px;
}

.jobs_container .square-1 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}

.jobs_container .square-2 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}

.jobs_container .square-3 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}


@keyframes square-anim {
    0% {
        height: 30px;
        background-color: #C9D1D8;
    }
    20% {
        height: 30px;
    }
    40% {
        height: 50px;
        background-color: #A43247;
    }
    80% {
        height: 30px;
    }
    100% {
        height: 30px;
        background-color: #C9D1D8;
    }
}



/* ----- Responsive ----- */

@media only screen and (max-width: 900px) {
    .job_item {
      flex-direction: column;
      gap:10px;
    }
    .job_title, .job_data{
        width: 100%;
    }
    .job_data{
        margin-bottom: 20px;
    }

    .job_data-txt {
        flex-direction: column !important;
    }
  }

  @media only screen and (max-width: 600px) {
    .job_data {
        gap:0;
    }
    p.job-date{
        width: 100%;
    }

    
  }