﻿#stellenuebersicht__page {
    margin: 0 auto;
}

#stellenuebersicht-page__top-button {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 3px 3px 9px 0px rgba(0,0,0,0.2);
    width: 50px;
    height: 50px;
    color: white;
    background-color: #afafaf;
}

#stellenuebersicht-page__top-button:hover {
    background-color: lightgray;
}

.stellenuebersicht-page__heading {
    text-align: center;
}

.stellenuebersicht-page__title-bar {
    position: sticky;
    z-index: 99;
    top: 0;
    background-color: #fff;
/*    border-bottom: 1px solid lightgrey;*/
}

#stellenuebersicht-page__logo {
    height: 65px;
}

.job__suchleiste {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.job__suchleiste-reset {
    float: right;
    font-size: 90%;
    margin-top: 5px;
}

.job__suchleiste-reset-link {
    color: #007bff;
    color: var(--primary-color);
}

.job__suchleiste-reset-link:hover {
    color: #0056b3;
    color: var(--primary-color);
    filter: brightness(80%);
}

.job__such-element--text {
    width: 43%;
}

.job__such-element--ort{
    width: 20%;
}

.job__such-element--radius{
    width: 20%;
}

.job__button {
    border: none;
    border-radius: 4px;
    height: 38px;
    padding: 5px;
}

.job__button:hover {
    filter: brightness(1.2);
}

.job__button--suche {
    width: 15%;
    background-color: #007bff;
    background-color: var(--primary-color);
    color: white;
}

.stellenanzeigen__wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.stellenuebersicht__page-job-count {
    font-weight: bold;
    font-size: 140%;
}

.stellenanzeige {
    margin: 20px 0;
    padding: 25px 30px;
    background-color: #f7f7f7;
    position: relative;
    min-height: 150px;
    color: gray;
    font-size: 110%;
}

.stellenanzeige__title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.stellenanzeige__titel-link {
    font-weight: 600;
    color: #007bff;
    color: var(--primary-color);
    font-size: 140%;
}

    .stellenanzeige__titel-link:hover {
        color: #0056b3;
        color: var(--primary-color);
        filter: brightness(1.1);
    }

.stellenanzeige__content{
    width: 75%;
}

.stellenanzeige__datum {
    white-space: nowrap;
}

.stellenanzeige__referenz {
    font-size: 90%;
    margin-bottom: 10px;
}

.stellenanzeige__branche{

}

.stellenanzeige__einsatzort{

}

.stellenanzeige__bewerben-link {
    color: white;
    position: absolute;
    bottom: 25px;
    right: 30px;
    background-color: #007bff;
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: .25rem;
    display: inline-block;
    vertical-align: middle;
    transition: transform .2s;
}

.stellenanzeige__bewerben-link:hover {
    text-decoration: none;
    color: white;
    filter: brightness(1.1);
    animation: pulse 0.5s ease;
    animation-timing-function: linear;
    cursor: pointer;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stellenuebersicht-page__pagination{
    text-align: center;
    margin: 45px 0;
}

.job__paging-element {
    margin: 0 5px;
    background-color: #e5e5e5;
    padding: 6px 14px;
    border-radius: 3px;
    transition: background-color .2s;
    color: black;
}

    .job__paging-element:hover {
        text-decoration: none;
        background-color: #007bff;
        background-color: var(--primary-color);
        color: white;
    }

.job__paging-element--active {
    background-color: #007bff;
    background-color: var(--primary-color);
    color: white;
}

.job__paging-element--disabled {
    color: gray;
    background-color: lightgray;
    pointer-events: none;
}

.job__paging-element--disabled:hover {
    color: gray;
    background-color: lightgray;
    cursor: default;
}

.stellenuebersicht-page__kopfzeile, .stellenuebersicht-page__fusszeile {
    margin: 50px 0;
}


.stellenuebersicht-page__footer {
    background-color: #363b4b;
    padding: 35px;
    text-align: center;
    color: white;
    margin-bottom: -15px;
}

.stellenuebersicht-page__footer-link {
    color: white;
    margin: 0 10px;
}

.stellenuebersicht-page__footer-link:hover {
    color: lightgray;
    text-decoration: none;
}

@media only screen and (max-width: 1100px) {
    #stellenuebersicht__page {
        width: 100%;
    }

    #stellenuebersicht-page__top-button{
        display: none !important;
    }
}


@media only screen and (max-width: 500px) {
    #stellenuebersicht__page {
        padding: 15px;
    }

    .job__suchleiste{
        display: block;
    }

    .job__such-element {
        width: 100%;
        margin-bottom: 5px;
    }

    .stellenanzeige__bewerben-link {
        position: initial;
        margin-top: 20px;
    }

    .stellenanzeige__title-row{
        display: block;
    }

    .job__button--suche{
        width: 100%;
    }
}
