.acf-show-group-fields {
  display: flex;
  justify-content: center;
  list-style: none !important;
  max-width: 600px;
  margin: auto;
  justify-content: space-evenly;
  padding-right: 40px;
  flex-wrap: wrap;

  li {
    display: flex;
    font-size: 20px;
    align-items: center;
    margin: 0 10px;
    &:after {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      margin-left: 5px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }
  }

  .home-specs-bedroom {
    &:after {
      background-image: url("../assets/icons/bedroom.svg");
    }
  }

  .home-specs-bathroom {
    &:after {
      background-image: url("../assets/icons/bathroom.svg");
    }
  }

  .home-specs-livingroom {
    &:after {
      background-image: url("../assets/icons/livingroom.svg");
    }
  }

  .home-specs-floor {
    &:after {
      background-image: url("../assets/icons/floor.svg");
    }
  }

  .home-specs-garage {
    &:after {
      background-image: url("../assets/icons/garage.svg");
    }
  }

  .home-specs-lot_area,
  .home-specs-floor_area {
    &:after {
      content: "m²";
      display: none;
      width: auto;
      height: auto;
      font-size: 14px;
    }
  }
}
