.group-search {
    background-color: #fff;
}

.profiles {
    padding-inline: 130px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.dropdown button {
    outline: none;
}

.dropdown {
    outline: none;
}

.profile:hover {
    background-color: #3F7FBE;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, background-color 0.5s ease-out;
    color: #fff;
}

.select-options select {
    border: none;
    background-color: #F2F2E9;
}

.select-options {
    border-bottom: 1px solid rgba(194, 200, 207, 0.2);
}

.select-options div {
    padding-inline: 5px;
}

.advance-filter {
    border-bottom: 1px solid rgba(194, 200, 207, 1);
}

.select-location select {
    border: none;
    background-color: #F2F2E9;
}

.select-location {
    display: flex;
    justify-content: space-between;
    background-color: #F2F2E9;
    border: 1px solid rgba(194, 200, 207, 1);
}

.number-found {
    opacity: 1;
    color: rgb(63, 127, 190);
    font-family: "Light";
    font-size: 13px;
    font-weight: 400;
    text-align: left;
}

.search-criteria input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

/* Style de la "checkbox" personnalisée */
.search-criteria input[type="checkbox"] + span::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Style de la "checkbox" cochée */
.search-criteria input[type="checkbox"]:checked + span::before {
    background-color: #3F7FBE;
    border-color: #3F7FBE;
    content: '✓'; /* Ajouter une coche */
    color: white;
    text-align: center;
    line-height: 16px;
}

.newsletter form input[type="checkbox"] + span::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.3);
}

.newsletter form input[type="checkbox"]:checked + span::before  {
    background-color: white;
    content: '✓'; /* Ajouter une coche */
    color: black;
    text-align: center;
    line-height: 16px;
}

/* Pour changer l'apparence au survol
.search-criteria input[type="checkbox"]:hover + span::before {
    background-color: rgba(255, 255, 255, 0.6);
} */

.button-prev {
    background-color: #fff;
    border: 1px solid #3F7FBE;
}

.button-next {
    background-color: #3F7FBE;
    border: 1px solid #3F7FBE;
}

.page {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-icon {
    transition: transform 1s ease-in-out;
    transform-origin: center;
}

.reset-icon:hover {
    transform: rotate(-360deg);
}

/* .search-button {
    background-color: #3F7FBE;
    border-radius: 0%;
    width: fit-content;
} */

.jobs-profiles {
    display: flex;
    justify-content: space-between;
}

.section-top-left-job {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
}

.jobs-profiles {
    max-width: 1400px;
}

@media (max-width : 767.98px) {
    .profiles {
        padding-inline: 10px;
    }

    .group-search {
        background-color: #fff;
        width: 50%;
        margin-inline: auto;
    }
}

@media (max-width: 579.98px) {
    .details-search {
        padding-inline: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1259.98px) {
    .profiles {
        padding-inline: 30px;
        margin-bottom: 50px;
    }
}

@media (min-width: 1260px) and (max-width: 1399.98px) {
    .profiles {
        padding-inline: 70px;
        margin-bottom: 50px;
    }
}

@media (min-width: 1400px) and (max-width: 1499px) {
    .profiles {
        padding-inline: 50px;
        margin-bottom: 50px;
    }
}