.offer-elt {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 0 10px #00000060;
    transition: all .3s ease;
    text-decoration: none;
    color: #000000;
}

.offer-elt-image {
    width: 100%;
    margin: 0 0 10px 0;
}

.offer-elt-image img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    width: 150px;
    background: rgba(0, 0, 0, .2);
    display: block;
    margin: 0 auto;
}

.offer-elt-text h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
}

.offer-elt-text {
    width: 100%;
}

.offer-elt-text-published {
    font-weight: 100;
    font-size: 14px;
}

.offer-elt-text-details {
    display: flex;
    width: 100%;
    margin-top: 20px;
    align-items: center;
}
.offer-elt-text-details > div {
    min-width: 50%;
    max-width: 50%;
}
.offer-elt-text-details > div.offer-elt-text-details {
    text-align: left;
}
.offer-elt-text-details > div.offer-elt-text-published {
    text-align: right;
}

.category-operateurs {
    background: #ffcc00;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.category-techniciens {
    background: #ccff00;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.category-ingenieurs {
    background: #80ff80;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.filters {
    display: flex;
    justify-content: space-evenly;
    margin: 10px 0 40px 0;
}
.filter {
    flex: 1;
    padding: 4px;
    margin: 0 4px;
    border-radius: 5px;
    border: 2px var(--aesc-green-a50) solid;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    color: #000000;
    text-decoration: none;
}
.filter.active {
    background: var(--aesc-green);
    color: #ffffff;
}

#btn-close {
    text-align: right;
    font-size: 30px;
    cursor: pointer;
}

/*
#btn-apply {
    display: block;
    padding: 5px 20px;
    margin: 0 auto;
    border-radius: 5px;
    border: 2px var(--aesc-green-a50) solid;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background: var(--aesc-green);
    color: #ffffff;
    max-width: fit-content;
}
 */

input[type="file"] {
    height: 38px !important;
}

#layer {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

#form-apply {
    display: none;
    position: fixed;
    top: 3vh;
    height: 96vh;
    left: calc(50% - 45vw);
    width: 90vw;
    border-radius: 5px;
    box-shadow: 0 0 10px #000000;
    background: white;
    z-index: 20;
    padding: 5px 20px 20px 20px;
    overflow-y: auto;
}

.spontane #form-apply {
    position: initial;
    display: block;
    left: unset;
    top: unset;
    height: auto;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 20px 0;
    overflow-y: unset;
}

body.show-form-apply {
    overflow: hidden;
}
body.show-form-apply #layer {
    display: block;
}
body.show-form-apply #form-apply {
    display: block;
}


.geetest_captcha [role=button],
.geetest_captcha button,
.geetest_captcha input[type=button],
.geetest_captcha input[type=reset],
.geetest_captcha input[type=submit] {
    padding: unset;
    border-color: unset;
    background-color: unset;
}
.geetest_holder {
    margin: 0 auto;
    width: 100%;
}


@media screen and (min-width: 992px) {

    .filters {
        margin: 10px 0 40px 0;
    }
    .filter {
        padding: 5px 20px;
        margin: 0 20px;
        font-size: 16px;
    }


    .offer-elt {
        display: flex;
        align-items: center;
    }
    .offer-elt:hover {
        box-shadow: 0 0 10px var(--aesc-green-a80);
        transform: scale(1.03);
    }
    .offer-elt-image {
        flex: 1;
        width: 150px;
        min-width: 150px;
        max-width: 150px;
        margin: 0;
    }
    .offer-elt-text {
        width: calc(100% - 150px);
        padding: 0 20px;
    }

    #form-apply {
        top: 3vh;
        height: 94vh;
        left: calc(50% - 300px);
        width: 600px;
    }

}




