/*************************************
 Simple Job Board Custom CSS Search-Area
************************************* */


/* START Select Button */

/* Basis-Styles für alle Selects */
#umsw_jobboard .sjb-filters .filters-form .form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: none; /* verhindert Standard-Pfeil */

    width: 100%;
    border: 2px solid white;
    background-color: var(--e-global-color-5f8e313);
    color: white;
    padding: 8px 36px 8px 12px; /* rechts Platz für Pfeil */
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;

    transition: all 0ms; /* sofortige Umschaltung */
}

/* Internet Explorer / alter Edge Pfeil entfernen */
#umsw_jobboard .sjb-filters .filters-form .form-group select::-ms-expand {
    display: none;
}

/* Elternelement für eigenen Pfeil */
#umsw_jobboard .sjb-filters .filters-form .form-group {
    position: relative;
}

/* Eigener Pfeil */
#umsw_jobboard .sjb-filters .filters-form .form-group::after {
    content: "▼";
    font-size: 0.8em;
    color: white;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Hover-Effekt auf Select */
#umsw_jobboard .sjb-filters .filters-form .form-group select:hover {
    border: 2px solid black;
    background-color: black;
    color: white;
}

/* Pfeil bei Hover */
#umsw_jobboard .sjb-filters .filters-form .form-group:hover::after {
    color: white;
}

/* Dropdown-Optionen */
#umsw_jobboard .sjb-filters .filters-form .form-group select option {
    background-color: white;
    color: black;
}

/* ===== Such-Button stylen ===== */
#umsw_jobboard .sjb-filters .filters-form .sjb-search-button input[type="submit"] {
    border: 2px solid white;
    background-color: var(--e-global-color-5f8e313);
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0ms;
}

/* Hover-Effekt auf Button */
#umsw_jobboard .sjb-filters .filters-form .sjb-search-button input[type="submit"]:hover {
    border: 2px solid black;
    background-color: black;
    color: white;
}

/* ===== Details-Buttons im Listing stylen ===== */
#umsw_jobboard .sjb-listing .umsw-button .btn {
    border: 2px solid white;
    background-color: var(--e-global-color-5f8e313);
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0ms;
}

/* Hover-Effekt auf Details-Buttons */
#umsw_jobboard .sjb-listing .umsw-button .btn:hover {
    border: 2px solid black;
    background-color: black;
    color: white;
}

#umsw_jobboard .sjb-filters .filters-form .sjb-search-button {
    display: none;
}

#umsw_jobboard .sjb-filters .filters-form .sjb-search-button input[type="submit"] {
    border: 2px solid white;
    background-color: var(--e-global-color-5f8e313);
    color: white;
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", Arial, sans-serif; /* Icon-Font */
    font-weight: 900; /* nötig für Solid-Variante */
    font-size: 18px; /* Größe anpassen */
    line-height: 1; /* verhindert, dass die Lupe nach unten rutscht */
    text-align: center;
    vertical-align: middle; /* besseres Zentrieren */
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0ms;
}

/* ===== Clear Results Button stylen ===== */
#umsw_jobboard .sjb-listing a.btn.btn-primary {
    border: 2px solid white;
    background-color: var(--e-global-color-5f8e313);
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0ms;
}

/* Hover-Effekt für Clear Results Button */
#umsw_jobboard .sjb-listing a.btn.btn-primary:hover {
    border: 2px solid black;
    background-color: black;
    color: white;
}


/* END */


/* Spinner */
.umsw-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: umsw-spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes umsw-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


#umsw_jobboard .sjb-page {
    padding: 0;
}

#umsw_jobboard .sjb-filters {
    background-color: inherit;
    margin: 0;
    padding: 0;
}

#umsw_jobboard .sjb-filters.sjb-filters-v1 .btn-search {
    border: none;
    border-radius: 0;
    background-color: inherit;
    color: white;
    font-weight: bold;
    font-family: var(--e-global-typography-sk_type_11-font-family), Sans-serif;
}


#umsw_jobboard .list-view {
    border-top: 4px solid white;
    border-bottom: 1px solid white;
}

#umsw_jobboard .list-view:has(.no-job-listing) {
    border-top: 1px solid white;
    padding: 40px;
}

#umsw_jobboard .no-job-listing-text {
    line-height: 3rem;
    margin: 24px 0 !important;
}

#umsw_jobboard .no-job-listing,
#umsw_jobboard .no-job-listing .btn {
    margin-bottom: 0;
}

#umsw_jobboard .list-data {
    padding: 0;
}

#umsw_jobboard .list-data:not(:first-of-type) {
    border-top: 1px solid white;
}

#umsw_jobboard .umsw-button {
    display: flex;
    align-items: center;
    justify-content: center;
}


#umsw_jobboard .umsw-jobdata {
    padding: 10px 0;
}

#umsw_jobboard .job-title {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

#umsw_jobboard .umsw-job-headline {
    padding: 8px 0 8px;
}

#umsw_jobboard .job-meta {
    padding: 0;
    color: white;
    font-size: 0.9rem;
}

#umsw_jobboard .umsw-job-meta {
    color: white;
}

#umsw_jobboard .umsw-button a {
    border-color: white;
    color: white;
    border-width: 2px;
}

#umsw_jobboard .umsw-job-title a {
    color: #FFFFFF;
    font-family: var(--e-global-typography-sk_type_5-font-family);
    font-size: var(--e-global-typography-sk_type_5-font-size);
    font-weight: var(--e-global-typography-sk_type_5-font-weight);
    text-transform: var(--e-global-typography-sk_type_5-text-transform);
    font-style: var(--e-global-typography-sk_type_5-font-style);
    line-height: var(--e-global-typography-sk_type_5-line-height);
}

#umsw_jobboard .filters-form .row:nth-child(1) {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}


#umsw_jobboard .sjb-page .sjb-filters.sjb-filters-v1 .form-control:focus {
    outline: none !important;
}


.sjb-listing a.btn.btn-primary:not(.umsw-button a.btn) {
    color: #FFFFFF;
    padding: 10px;
    margin-bottom: 20px
}


/*************************************
 Simple Job Board Custom CSS Job Page
************************************* */
.single-jobpost .sjb-page {
    padding: 0;
}

.single-jobpost .sjb-page .sjb-detail .list-data .v1 ul {
    list-style-type: inherit;
    margin-left: 17px;
}

.single-jobpost .sjb-page .sjb-detail .list-data .v1 ul li::marker {
    color: #000000;
}

.single-jobpost .sjb-page .sjb-detail .list-data .v1 ul > li {
    padding-left: 0;
    color: var(--e-global-color-primary);
}

.single-jobpost .sjb-page .sjb-detail .list-data .v1 ul li::before {
    display: none;
}

.single-jobpost h3 {
    margin-top: 32px !important;
}

.single-jobpost .sjb-detail {
    margin-top: 0;
}


.single-jobpost #shieldtec-job-form {

}

.single-jobpost #shieldtec-job-form input::placeholder {
    opacity: 1;
}


.single-jobpost #shieldtec-job-form select,
.single-jobpost #shieldtec-job-form input {
    font-family: var(--e-global-typography-sk_type_12-font-family);
    font-size: var(--e-global-typography-sk_type_12-font-size);
    font-weight: var(--e-global-typography-sk_type_12-font-weight);
    text-transform: var(--e-global-typography-sk_type_12-text-transform);
    font-style: var(--e-global-typography-sk_type_12-font-style);
    line-height: var(--e-global-typography-sk_type_12-line-height);
}

.single-jobpost #shieldtec-job-form label {
    color: #FFFFFF;
}

.single-jobpost #shieldtec-job-form textarea {
    /*background-color: #FFFFFF;*/
    color: var(--e-global-color-text);
}

.elementor-field-group-haller_salutation_field {
}

.single-jobpost #shieldtec-job-form .elementor-field-group-haller_jobtitle_field {
    visibility: hidden;
}

.single-jobpost #shieldtec-job-form .elementor-field-group-haller_jobtitle_field .elementor-field-label {
    display: none;
}

/*.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper {*/
/*    margin-left: inherit;*/
/*    margin-right: inherit;*/
/*    column-gap: 32px;*/
/*    margin-bottom: 0;*/
/*    row-gap: 2px;*/
/*}*/

/*.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper > * {*/
/*    padding-left: inherit;*/
/*    padding-right: inherit;*/
/*    flex: 0 0 48%*/
/*}*/

/*.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper .elementor-field-group-haller_message_field,*/
/*.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper .elementor-field-group-haller_privacy_field {*/
/*    flex: 0 0 100%;*/
/*}*/

.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper .elementor-field-group-haller_message_field {
    margin-top: 24px;
}

.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper .elementor-field-group-haller_message_field label {
    font-weight: 400;
    margin-bottom: 8px;
}

.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper .elementor-field-group-haller_privacy_field a {
    color: #FFFFFF;
    text-decoration: underline;
}

.single-jobpost #shieldtec-job-form .elementor-form-fields-wrapper .elementor-field-group-haller_privacy_field label {
    font-weight: 400;
}


#umsw_jobboard .sjb-filters.sjb-filters-v1 .btn-search {
    border: none;
    border-radius: 0;
    background-color: inherit;
    color: white;
    font-weight: bold;
    font-family: var(--e-global-typography-sk_type_11-font-family), Sans-serif;
}

#form-field-lebenslauf {
    padding: 16px;
    /*border: 2px solid white;*/
}
