.custom-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(362px, 0fr));
  gap: 0px 30px;
  position: relative;
  min-height: 100px;
  justify-content: center;
}

.custom-post-grid.grid-immo.custom-post-grid,
.custom-post-grid.grid-foncier.custom-post-grid {
  gap: 30px 30px;
}

.custom-post-grid.grid-realisation,
.custom-post-grid.grid-modele-amenagement {
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

@media screen and (min-width: 1025px) {
  .custom-post-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.spinner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-spinner {
  border: 8px solid #fdf2f7;
  border-left-color: #eb5d99;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

#filter-form {
  margin-bottom: 20px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-buttons .filter-button {
  background-color: #011643;
  border: none;
  padding: 5px 15px;
  font-family: "ITCFranklinGothicStd-Book", Sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.filter-buttons .filter-button.active {
  background-color: #eb5d99;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.custom-post-grid .e-loop-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.custom-post-grid .e-loop-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.filter-fields-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  column-gap: 15px;
  row-gap: 15px;
  background-color: #011643;
  padding: 25px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .filter-fields-wrapper {
    flex-direction: row;
  }
}

.filter-fields-wrapper > input[type="number"],
.filter-fields-wrapper > select {
  border-radius: 0;
  border: none;
  background-color: #ffffff40;
  color: #ffffff80;
  font-family: "ITCFranklinGothicStd-Book", Sans-serif;
  font-size: 14px;
  line-height: 25px;
  height: 50px;
}

.filter-fields-wrapper > select {
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  .filter-fields-wrapper:not(.modele) > select {
    min-width: 342px;
  }
}

.filter-fields-wrapper > select option {
  color: #011643;
}

@media screen and (min-width: 768px) {
  .filter-fields-wrapper.modele > select[name="modele_type"] {
    min-width: 175px;
  }
}

@media screen and (min-width: 1025px) {
  .filter-fields-wrapper > input[name="prix_max"] {
    min-width: 180px;
  }
  .filter-fields-wrapper > input[name="maison_area"] {
    min-width: 185px;
  }
  .filter-fields-wrapper.modele > select[name="modele_type"] {
    min-width: 200px;
  }
}

/* Chrome, Safari, Edge, Opera */
.filter-fields-wrapper > input[type="number"]::-webkit-outer-spin-button,
.filter-fields-wrapper > input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.filter-fields-wrapper > input[type="number"] {
  -moz-appearance: textfield;
}
/* Edge and IE 10+ */
.filter-fields-wrapper > input[type="number"] {
  -ms-appearance: textfield;
}

input::placeholder {
  color: #ffffff80;
  opacity: 1;
}

.filter-fields-wrapper .filter-submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50px;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .filter-fields-wrapper .filter-submit-button {
    width: 50px;
  }
}

.filter-fields-wrapper .filter-submit-button img {
  width: 20px;
}

.custom-load-more {
  margin: auto;
  display: block;
}

.custom-post-grid.grid-realisation.custom-post-grid + .custom-load-more {
  margin-bottom: 30px;
}

.custom-post-grid.grid-immo.custom-post-grid + .custom-load-more,
.custom-post-grid.grid-foncier + .custom-load-more {
  margin: 50px auto 30px auto;
}

.filter-fields-wrapper:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #011643;
  transform: rotate(45deg);
  bottom: -14px;
  margin-left: -14px;
  transform-origin: center;
  left: 128px;
}

.custom-post-grid + .no_more {
  font-family: "ITCFranklinGothicStd-Book", Sans-serif;
  margin: 20px;
  grid-column: 1 / -1;
  text-align: center;
}

.custom-post-grid > .no_more {
  grid-column: 2 / 3;
  text-align: center;
  width: 390px;
}

.custom-post-grid.grid-realisation > .no_more {
  width: 100%;
  grid-column: 1 / 3;
}
