.search-form-group .articles-group-wrapper {
  max-width: 100%;
  width: 100%;
}




/* moteur de recherche */
#search-wrapper {
  position: relative;
  min-height: 60vh;
  background-color: var(--bs-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;

}

#search-wrapper .container {}

#search-wrapper .bg {
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/search-3.jpg);
  opacity: 0.2;
  z-index: 1;
}

#search-wrapper .inner {
  position: relative;
  z-index: 3;

  max-width: 92vw;
  margin: 0 auto
}

#search-wrapper .title {
  padding-top: 65px;
  margin-bottom: 0px;
}


#search-wrapper h2 span {}

#search-wrapper form {
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

#search-wrapper #search-form-2 {
  padding-top: 25px
}

#search-wrapper .form-group {
  margin-bottom: 15px;
  overflow: hidden;
}

#search-wrapper .budget {
  white-space: nowrap;
}

#search-wrapper .budget div {
  margin-right: 25px;
  width: 150px;
}

#search-wrapper .budget label.label {
  background: #fff;
  color: #333;
  padding: 10px;
  font-size: 14px;
  text-align: left !important;
  font-weight: normal !important;
  width: 100%;
}

#search-wrapper .budget label.label span {
  font-size: 12px;
}

#search-wrapper .budget label.minmax {
  display: block;
  text-align: center;
  font-weight: normal !important;
  color: #fff;
  background: #555;
}

#search-wrapper select {}

#search-wrapper input.text {
  font-size: 18px;
}

#search-form-2 .mdt-dependant {
  display: none
}

#search-form-2.vente div.vente {
  display: block !important;
}

#search-form-2.location div.location {
  display: block !important;
}

#search-form-2 select:disabled {
  background-color: #f5f5f5;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.8;
}



button.search-sumbit {
  background: #333;
  color: #fff;
  margin-right: 15px;
  font-size: 26px
}



button.search-sumbit:hover {
  background: #A31D22;
  color: #fff
}

input [type="range"] {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: 20px;
  margin: 0;
  border: none;
  padding: 1px 2px;
  border-radius: 14px;
  background: #eee;
  margin-top: 7px;
  outline: none;
}

input [type="range"]::-moz-range-track {
  border: inherit;
  background: transparent;
}

input [type="range"]::-ms-track {
  border: inherit;
  color: transparent;
  background: transparent;
}

input [type="range"]::-ms-fill-lower,
input [type="range "]::-ms-fill-upper {
  background: transparent;
}

input [type="range"]::-ms-tooltip {
  display: none;
}

input [type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 12px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333), color-stop(100%, #333));
  /* android <= 2.2 */
  background-image: -webkit-linear-gradient(top, #333 0, #333 100%);
  /* older mobile safari and android > 2.2 */
  ;
  background-image: linear-gradient(to bottom, #333 0, #333 100%);
  /* W3C */
}

input [type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 12px;
  background-image: linear-gradient(to bottom, #333 0, #333 100%);
  /* W3C */
}

input [type="range"]::-ms-thumb {
  width: 18px;
  height: 18px;
  border-radius: 12px;
  border: 0;
  background-image: linear-gradient(to bottom, #333 0, #333 100%);
  /* W3C */
}

#popup_wrp {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(100, 100, 100, .5);
  z-index: 9998;
  display: none
}

#popup {
  width: 450px;
  background: #fff;
  margin: 10% auto;
  z-index: 9999;
  position: relative;
  padding: 25px;
  border: 2px solid #333;
  border-radius: 10px;
}

body.pop-up {
  position: fixed;
}

body.pop-up #popup_wrp {
  display: block
}

#search-wrapper button[type=submit] {
  height: 48px;
  width: 48px;
  padding: 0;

}

.infos #search-wrapper {
  min-height: 0;
  position: absolute;
  z-index: 990;

  left: 0;
  right: 0;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: var(--bs-primary);
  border-top: 1px solid var(--bs-primary-3);
}

.infos #search-wrapper .bg {}

.infos button.search-sumbit {
  background: #fff;
  color: #333;
  margin-right: 15px;
}

#header-search-form-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0vh;
  background-color: rgba(100, 100, 100, 0);
  z-index: 999;
  transition: opacity 500ms;
}

#header-search-form {
  display: none;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}

body.se-on {
  overflow: hidden;
}

body.se-on #header-search-form-backdrop {
  height: 100vh;
  background-color: rgba(100, 100, 100, .5);
}

body.se-on #header-search-form {
  display: block;
}