.paginate button {
    background: transparent;
    outline: 0;
    cursor: pointer;
}
.dreamjob_content, .dreamjob_filter_box {
    position: relative;
}
.dreamjob_content.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: rgba(0, 0, 90, .2);
    transition: background ease-in-out .3s;
    animation: animatedBg 4s ease-in-out 0s infinite;
}

@keyframes animatedBg {
    0% {
        background: rgba(0, 0, 90, .2);
    }
    50% {
        background: rgba(0, 0, 90, .75);
    }
    100% {
        background: rgba(0, 0, 90, .2);
    }
}
.dreamjob_filter_box.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: rgba(0, 211, 199, .2);
    transition: background ease-in-out .3s;
    animation: animatedBg2 4s ease-in-out 0s infinite;
    z-index: 9;
}

@keyframes animatedBg2 {
    0% {
        background: rgba(0, 211, 199, .2);
    }
    50% {
        background: rgba(0, 211, 199, .75);
    }
    100% {
        background: rgba(0, 211, 199, .2);
    }
}
.prev_btn {
    display: none;
}

.paginate.inactive {
    display: none !important;
}
.jobs_not_found {
    display: none;
    text-align: center;
    color: white;
}

@keyframes bgAnimation {
    0% {
        background: rgba(255, 255, 255, .2);
    }
    50% {
        background: rgba(255, 255, 255, .7);
    }
    100% {
        background: rgba(255, 255, 255, .2);
    }
}

.posts_filter {
    position: relative;
}
.posts_filter.loading::after {
    content: '';
    background: rgba(255, 255, 255, .2);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 9;

    animation: bgAnimation 4s ease-in-out 0s infinite;
}

.posts_row {
    position: relative;
}
.posts_row.loading::after {
    content: '';
    background: rgba(255, 255, 255, .2);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 9;

    animation: bgAnimation 4s ease-in-out 0s infinite;
}
.job_logo {
    background: url('../img/publicis-groupe.jpeg') no-repeat center center; background-size:contain;
}