/** JOBITEM **/
:root {
    --white: #fff;
    --grey: #ddd;
    --black: #000;
    --highlight: #ac1731;
    --main-radius: 0;
    --box-shadow: ;

}

.sticky-top { z-index: 1000 !important;}

.jobitem {
    display: block;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 30px;
    color: var(--black);
    border-radius: var(--main-radius);
	text-decoration: none !important;
	border:1px solid var(--grey)
}

.jobitem h3 {
    color: var(--highlight)
}

.jobitem:hover {
    background-color: var(--highlight);
    color: #fff;
}

.jobitem:hover i,
.jobitem:hover .gender,
.jobitem:hover h3 {
    color: #fff;
}

.jobdetail i {
    color: var(--highlight)
}

p.gender {
    color: var(--grey)
}

/** JOB FILTER **/

.filterOptionBtn {
    display: inline-block;
    margin: 0 5px 5px 0;
    color: var(--white);
    background-color: var(--grey);
    padding: 5px 7px;
    font-size: 86%;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.filterOptionBtn:hover {
    background-color: var(--black);
}

.filterOptionBtn.active:hover {
    background-color: var(--grey);
}

.filterOptionBtn.active {
    background-color: var(--highlight)
}

#clearFilterBtn {
    background-color: var(--white);
    color: var(--grey);
    border-color: var(--grey)
}

#clearFilterBtn:hover {
    background-color: var(--grey);
    color: var(--white);
}


/** BEWERBUNG **/

#bewerbung {
    background: #c7c1b8;
    color: #fff;
}

#bewerbung .codedropz-upload-handler {
    border-color: #fff;
}

#bewerbung .form-control {
    border: 2px solid var(--white);
    background-color: transparent;
    color: #fff !important;
}

#bewerbung .form-group .form-control {
    border-color: rgba(255, 255, 255, .5);
}

#bewerbung .form-group.active .form-control,
#bewerbung .form-group.filled .form-control {
    border-color: var(--white) !important
}

#bewerbung .form-group label {
    color: rgba(255, 255, 255, .5);
}

#bewerbung .form-group.active label,
#bewerbung .form-group.filled label {
    color: var(--white) !important;
}

#bewerbung form.submitting:before {
    background-color: rgba(99, 184, 192, .75);
}

#bewerbung .form-group.invalid span.wpcf7-not-valid-tip {
    background-color: var(--red) !important;
    color: #fff !important;
}

#bewerbung a {
    color: #ddd;
    text-decoration: underline
}

#bewerbung a:hover {
    color: #fff;
    text-decoration: none
}

#bewerbung .btn-default {
    border: 2px solid #fff !important
}

/** JOBVORTEILE **/
.jobvorteilitem {
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    height: 100%;
    background-color: #fff;
}

.jobvorteiliteminner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.4s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.jobvorteilitem:hover .jobvorteiliteminner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.jobvorteilback, .jobvorteilfront {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    box-shadow: var(--shadow);

}

.jobvorteilback i, .jobvorteilfront i {
    color: var(--highlight)
}


#intro .jobvorteilback,
#intro .jobvorteilfront {
    border-color: #fff;
}


/* Style the front side (fallback if image is missing) */
.jobvorteilfront {
    padding: 30px;
    background-color: var(--white);

    border-radius: var(--main-radius);
}

/* Style the back side */
.jobvorteilback {
    position: absolute;
    inset: 0;
    overflow: auto;
    padding: 15px;
    transform: rotateY(180deg);
    background-color: var(--highlight);
    color: #fff;
    border-radius: var(--main-radius);
}

.jobvorteilfront,
.jobvorteilback {
    aspect-ratio: 4/2;

}

@media (min-width: 1200px) {
    .jobvorteilfront,
    .jobvorteilback {
        aspect-ratio: 4/3;

    }
}

.jobvorteilback p {
    margin-bottom: 0;
    font-weight: bold;
}

/** PAGINATION **/
ul.paginationnumbers {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
    text-align: center;
}

ul.paginationnumbers li.directpage {
    display: inline-block;
    padding: 5px;
}

ul.paginationnumbers li.directpage.active {
    font-weight: bold
}