/*FORMULARIO DE BUSCA*/
.busca-titulo {
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
  font-size: .9em;
  font-weight: 600;
  color: #454561;
}

.busca-colesq {
  width: 48%;
  height: auto;
  float: left;
  margin-right: 2%;
}

.busca-coldir {
  width: 50%;
  height: auto;
  float: left;
}

.label-busca {
  width: 100%;
  height: auto;
  font-size: 12px;
  color: #8a8a8a;
  text-align: center;
  float: left;
}









/*CHECKBOX BUSCA*/





/* The container */
.cont_checks {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  padding-left: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: .9em;
}

/* Hide the browser's default checkbox */
.cont_checks input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cont_checks:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cont_checks input:checked~.checkmark {
  background-color: #2CBDB8;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cont_checks input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cont_checks .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}












.south-search-area {
  position: relative;
  z-index: 90;
}



.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);

  max-height: 50vh;

  overflow: scroll;
  overflow-x: hidden;


}



.south-search-area .advanced-search-form {
  position: relative;
  z-index: 1;
  padding: 30px 50px;
  border: 1px solid #e1dddd;
  box-shadow: 0 5px 30px rgb(0 0 0 / 15%);
  background-color: #ffffff;
}


@media only screen and (max-width: 767px) {
  .south-search-area .advanced-search-form {
    padding: 30px 20px;
  }
}



.south-search-area .advanced-search-form .search-title {
  position: absolute;
  width: 260px;
  height: 45px;
  background-color: #2CBDB8;
  top: -46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 40px;
  text-align: center;
}


@media only screen and (max-width: 767px) {
  .south-search-area .advanced-search-form .search-title {
    width: 210px;
    padding: 0 15px;
  }
}


.south-search-area .advanced-search-form .search-title p {
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 45px;
  font-weight: 600;
}

.south-btn {
  position: relative;
  z-index: 1;
  min-width: 170px;
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background-color: #2CBDB8;
  border-radius: 0;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
}


.btn-primary {
  color: #fff;
  background-color: #13265c;
  border-color: #13265c;
}

.service-text p {
  color: #ffffff !important;
}



.corretores-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.corretor-item {
  display: flex;
  flex-direction: column;
  gap: .5em;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  text-align: center;
  flex: 1;
}

.corretor-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
}

@media (max-width:539.98px) {
  .corretor-item img {
    max-width: 128px;
  }

  .corretor-item__infos h5 {
    font-size: 15px;
  }

  .corretores-wrapper {
    justify-content: space-around;
    gap: 16px;
  }
}