.module-page-home-hero {
  --control-height: 2rem;
  --control-width: 2rem;
  background-color: var(--acre-primary-blue);
  width: 100%;
  padding: 36px 0px 30px;
  position: relative;
  top: 0px;
  left: 0px;
  border-radius: 0px 0px 36px 36px;
}

.module-page-home-hero .container-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.module-page-home-hero .content-home-hero {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  height: 100%;
  margin-top: 16px;
}

.module-page-home-hero .container-wrap p.home-filter-title {
  font-size: 16px;
  margin-bottom: .8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--acre-grayscale-medium);
  letter-spacing: .5px;
}

.home-hero-filters .form-group  {
  margin-bottom: 10px;
}

.home-hero-filters .form-group .btn.btn-primary.acre-btn {
  margin-right: 0px;
}

.module-page-home-hero .selects-group .form-group .form-control {
  height: 45px;
  background-color: rgba(226, 222, 255, 1);
  border: 1px solid var(--acre-primary-blue);
  font-weight: 300;
}

.module-page-home-hero .selects-group .form-group .custom-select-wrapper .custom-select option:not(.select-placeholder) {
  color: var(--acre-primary-black)
}

.module-page-home-hero .selects-group .form-group .form-control .custom-select option.select-placeholder {
  color: rgba(153, 153, 153, 1);
}


.module-page-home-hero .selects-group .custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.module-page-home-hero .selects-group .custom-select {
  -webkit-appearance: none; /* Oculta la flecha por defecto en Safari y Chrome */
  -moz-appearance: none; /* Oculta la flecha en Firefox */
  appearance: none;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px 14px;
  padding-right: 30px; /* Espacio para la flecha */
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  border-radius: 14px;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
   */
  background-image: url(../../img/icons/chevron-down-black.svg);
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
}

.home-filters-form {
  display: flex;
  flex-direction: column;
  align-items: end;
}


@media (min-width: 768px) {
  .module-page-home-hero {
    --control-height: 2.5rem;
    --control-width: 2.5rem;
  }
  .module-page-home-hero .container-wrap h2 {
    font-size: 42px;
  }
  .module-page-home-hero .selects-group {
    display: flex;
    gap: 10px;
    width: calc(100% - 180px);
  }
  
  .module-page-home-hero .selects-group .form-group {
    flex: 1;
    height: 45px;
  }
  .module-page-home-hero .home-filters-form {
    flex-direction: row;
    gap: 1rem;
  }

  .home-hero-filters .form-group {
    margin-bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .module-page-home-hero {
    --control-height: 3rem;
    --control-width: 3rem;
  }
  .module-page-home-hero .container-wrap h2 {
    font-size: 54px;
  }
}
