.nt-recherche-biens {
    background-color: #FFFEF8;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px;
}

.nt-recherche-biens__inner {
    display: flex;
    gap: 24px;
}

.nt-recherche-biens .nt-recherche-biens__field {
    flex: 1;
    position: relative;
}
.nt-recherche-biens .nt-recherche-biens__field select,
.nt-recherche-biens .nt-recherche-biens__field input,
.nt-recherche-biens .nt-recherche-biens__field .nt-recherche-biens__field-popin-label {
    background-color: transparent;
    height: 46px;
    line-height: 46px;
    font-family: var(--e-global-typography-text-font-family);
    font-weight: 300;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid var(--e-global-color-primary);
    width: 100%;
    padding: 0 12px;
}
.nt-recherche-biens .nt-recherche-biens__field .nt-recherche-biens__field-popin-label,
.nt-recherche-biens .nt-recherche-biens__field input::placeholder {
    color: #666;
}
.nt-recherche-biens .nt-recherche-biens__field .nt-recherche-biens__field-popin-label {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
    padding-right: 20px;
}
.nt-recherche-biens .nt-recherche-biens__field .nt-recherche-biens__field-popin-label:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    right: 6px;
    font-size: 12px;
    font-weight: 900;
}
.nt-recherche-biens .nt-recherche-biens__field select {
    appearance: none;
    -moz-appearance: none;
    background: url('../images/down-chevron.png') calc(100% - 18px) center no-repeat;
    background-size: 12px;
    padding: 0 48px 0 12px;
}

.nt-recherche-biens__field-popin {
    position: absolute;
    top: calc(100% - 6px);
    visibility: hidden;
    opacity: 0;
    left: 0;
    max-width: 300px;
    background: white;
    box-shadow: 0 0 10px 0 #DEDEDE;
    padding: 12px 16px 12px 12px;
    z-index: 1;
    transition: .3s;
}
.nt-recherche-biens .nt-recherche-biens__field.open .nt-recherche-biens__field-popin {
    top: 100%;
    visibility: visible;
    opacity: 1;
}
.nt-recherche-biens__field-popin-line {
    display: flex;
    gap: 7px;
    line-height: 1;
}
.nt-recherche-biens__field-popin-line input[type=checkbox] {
    width: 18px;
    height: 18px;
}
.nt-recherche-biens__field-popin-line label {
    padding-top: 3px;
    font-size: 1rem;
}


.nt-recherche-biens__submit_block [type=submit] {
    background-color: transparent;
    border: 1px solid var(--e-global-color-primary);
    height: 40px;
    padding-inline: 25px;
    font-size: 1rem;
    font-family: var(--e-global-typography-text-font-family);
    padding-block: 0 2px;
    text-transform: unset;
}
.nt-recherche-biens__submit_block [type=submit]:hover,
.nt-recherche-biens__submit_block [type=submit]:focus {
    background-color: var(--e-global-color-primary);
    color: white;
}

.nt-recherche-biens__btn-mobile {
    margin: 0 auto;
    background-color: var(--e-global-color-primary);
    color: white;
    border: 2px solid var(--e-global-color-primary);
    font-family: inherit;
    padding-block: 10px!important;
    padding-inline: 15px!important;
    font-size: 16px!important;
}

@media (min-width: 768px) {
    .nt-recherche-biens__btn-mobile {
        display: none;
    }
}
@media (max-width: 767px) {
    .nt-recherche-biens__wrapper {
        display: none;
    }
    .nt-recherche-biens__inner {
        flex-direction: column;
        gap: 12px;
    }
}