.recherche-formulaire-container {
    width: 90%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.recherche-formulaire-container label {
    color: white;
    font-family: "Source Sans Pro";
    font-size: 20px;
    font-weight: bold;
}
.recherche-formulaire-container p {
    color: white;
    font-family: "Source Sans Pro";
    font-size: 20px;

    margin: 0;
}

.recherche-formulaire-container .title {
    width: fit-content;
}
.recherche-formulaire-container .title p {
    color: white;
    font-family: "Source Sans Pro";
    font-weight: lighter;
    font-size: 60px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0px 5px 10px #00000066;

    margin: 0;
}
@media screen and (max-width: 900px) {
    .recherche-formulaire-container .title p {
        font-size: 50px;
    }
}
@media screen and (max-width: 600px) {
    .recherche-formulaire-container .title p {
        font-size: 40px;
    }
}
@media screen and (max-width: 500px) {
    .recherche-formulaire-container .title p {
        font-size: 30px;
    }
}
@media screen and (max-width: 370px) {
    .recherche-formulaire-container .title p {
        font-size: 20px;
    }
}
.recherche-formulaire-container .title p b {
    font-weight: bold;
}
.recherche-formulaire-container .title .line {
    width: 100%;
    height: 1px;

    background-color: var(--main-blue);

    margin-top: 15px;
}

.recherche-formulaire-container .recherche-formulaire {
    width: 100%;
    max-width: 1000px;

    margin-top: 60px;

    background-color: var(--variant-blue-01-trans);
}
.recherche-formulaire-container form {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.recherche-formulaire-container .recherche-formulaire .type {
    width: 100%;
    max-width: 360px;

    margin-top: 20px;
    margin-bottom: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
@media screen and (max-width: 370px) {
    .recherche-formulaire-container .recherche-formulaire .type {
        height: 70px;

        flex-wrap: wrap;
        justify-content: center;
    }
}
.recherche-formulaire-container .recherche-formulaire .type label {
    margin-right: 10px;
}
.recherche-formulaire-container .recherche-formulaire .type > div {
    width: fit-content;

    display: flex;
}

.recherche-formulaire-container .recherche-formulaire .filtres {
    width: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.recherche-formulaire-container .recherche-formulaire .filtres .left {
    width: 387px;
}
.recherche-formulaire-container .recherche-formulaire .filtres .right {
    width: 478px;
}
@media screen and (max-width: 1000px) {
    .recherche-formulaire-container .recherche-formulaire .filtres > div {
        width: 100%!important;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

.recherche-formulaire-container .recherche-formulaire .filtres .row {
    width: 100%;

    margin-bottom: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
@media screen and (max-width: 1000px) {
    .recherche-formulaire-container .recherche-formulaire .filtres .row {
        width: calc(100% - 50px);
        max-width: 500px;
    }
}
@media screen and (max-width: 600px) {
    .recherche-formulaire-container .recherche-formulaire .filtres .row {
        flex-wrap: wrap;

        margin-bottom: 20px;
    }
}

.recherche-formulaire-container .recherche-formulaire input {
    width: 92px;
    height: 24px;
}
@media screen and (max-width: 370px) {
    .recherche-formulaire-container .recherche-formulaire input {
        width: 100%;
    }
}
.recherche-formulaire-container .recherche-formulaire input[type=radio] {
    width: 50px;
}
.recherche-formulaire-container .recherche-formulaire .space {
    margin: 0 25px;
}
@media screen and (max-width: 370px) {
    .recherche-formulaire-container .recherche-formulaire .space {
        width: 100%;

        text-align: center;

        margin-bottom: 5px;
        margin-top: 5px;
    }
}
.recherche-formulaire-container .recherche-formulaire .begin {
    flex-grow: 1;
}
@media screen and (max-width: 600px) {
    .recherche-formulaire-container .recherche-formulaire .begin {
        width: 100%;

        text-align: center;

        margin-bottom: 5px;
    }
}

.recherche-formulaire-container .recherche-formulaire select {
    width: 265px;
    height: 30px;
}
@media screen and (max-width: 370px) {
    .recherche-formulaire-container .recherche-formulaire select {
        width: 100%;
    }
}
.recherche-formulaire-container .recherche-formulaire select option {
    width: 100%;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recherche-formulaire-container .recherche-formulaire button {
    width: 150px;
    height: 40px;

    margin-bottom: 25px;

    cursor: pointer;

    border: none;

    background-color: #2B5C73;
}
.recherche-formulaire-container .recherche-formulaire button span {
    font-family: "Source Sans Pro";
    font-size: 20px;
    color: white;
    text-transform: uppercase;
}
