/* DEBut OFFRES ** NE PAS COPIER */

.boxOffre {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F6F6F6;
    padding: 24px 15px 26px;
    border-radius: 8px;
    transition: none;
}

.boxOffre:hover {
    background-color: #2FAB53;
}

.boxOffre__poste {
    font-size: 14px;
    color: #0d2147;
    font-weight: 600;
}

.boxOffre__title {
    font-size: 20px;
    color: #0d2147;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.b-type {
    font-size: 12px;
    border: 1px solid var(--theme-color-primary1);
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--theme-color-primary1);
    font-weight: 600;
    line-height: 1;
}

.boxOffre__lieu {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

.b-lieu {
    color: #595959;
    font-weight: 500;
    font-size: 12.8px;
}

.boxOffre__date {
    color: #B4B4B4;
    font-size: 12.8px;
    font-weight: 500;
}

.boxOffre .n-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}
/* end OFFRES */

/* CUSTOM OFFRE MAJ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

.gridOffre-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gridOffre-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.boxOffre .headOffre {
    display: flex;
    justify-content: space-between;
}

.boxOffre .boxOffre__urgent {
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    background-color: #CE2231;
    padding: 2px 8px;
    border-radius: 20px;
    color: #fff;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-transform: uppercase;
}

/* Hover */
.boxOffre:hover .boxOffre__poste {
    color: #fff;
}

.boxOffre:hover .b-type {
    color: #fff;
    border-color: #fff;
}

.boxOffre:hover .b-lieu,
.boxOffre:hover .boxOffre__title,
.boxOffre:hover .boxOffre__date,
.boxOffre:hover .n-btn span,
.boxOffre:hover .n-btn i {
    color: #fff;
}

.selectMultiple {
    width: 100%;
}
.selectMultiple .dropdown {
    width: 100%;
}

.selectMultiple .dropdown .dropbtn {
    border-radius: 8px;
    background-color: #F6F6F6;
    color: #444444;
    text-align: left;
    border: 1px solid #F6F6F6;
}

.selectMultiple .dropdown .dropbtn.show {
    border: 1px solid #0468BF;
}

.selectMultiple .dropdown .dropdown-content {
    margin-top: 8px;
    background-color: #fff;
    box-shadow: 0px 4px 14px 0px rgba(13, 44, 113, 0.10);
    padding: 0;
}

.selectMultiple .dropdown .dropbtn::after {
    border-color: #A1A1A1 !important;
    position: absolute;
    right: 15px;
    top: calc(50% - 4px);
    width: 10px;
    height: 10px;
    border-width: 3px;
}

.flex-2 {
    display: flex;
    gap: 25px
}


@media (min-width: 993px){
    .boxOffre.big {
        padding: 24px 64px;
    }
}
@media (max-width: 992px){
    .boxOffre {
        padding: 16px 24px;
    }

}

@media (max-width: 635px){
    .gridOffre-2, .gridOffre-4 {
        grid-template-columns: 1fr;
    }
}

