.remove {
  display: none;
}

.removeFilters {
  /* min-height: 950px; */
  width: 20%;
  background-color: #0097b2;
  /* padding: 50px; */
  border-radius: 10px;
  margin-bottom: 30px;
  height: 3rem;
  display: flex;
  align-items: center;
}

.mainAdotar {
  margin-top: 106px;
  /* padding-top: 10px; */
}

.titleMain {
  padding-top: 20px;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
  margin-right: 50px;
  color: rgb(65, 169, 255);
}

.footer {
  /* margin-top: 90vh; */
  padding-top: 50px;
}

.imgPrincipal {
  height: 700px;
  width: 100%;
  background-image: url("./img/imgPrincipal.png");
}

.petsToAdoption {
  padding-top: 50px;
  margin: 0px 8% 0px 8%;
  display: flex;
  justify-content: space-between;
}

/* Filtros ----------------------------------------------------------------- */
.filters {
  /* min-height: 950px; */
  width: 20%;
  background-color: #0097b2;
  /* padding: 50px; */
  border-radius: 10px;
  margin-bottom: 30px;
  max-height: 600px;
  margin-bottom: 150px;
}

.filters h2 {
  margin-left: 20px;
}

.contentFilters {
  padding: 4rem;
}

.option {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* pets ------------------------------------------------------------------- */
.pets {
  /* height: 700px; */
  width: calc(75%);
  /* background-color: rgb(49, 83, 48); */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.pet {
  width: calc(90% / 3);
  background-color: rgb(210, 235, 255);
  margin-bottom: 50px;
  border-radius: 10px;
  max-height: 450px;
  /* width: 300px; */
  width: 350px;
  margin-bottom: 30px;
}

.pet img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 350px;
}

.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 10px;
}

.namePet {
  color: #17479e;
}

.moreDetails {
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* border-radius: 10px; */
  background-color: #f9a870;
  border: none;
  color: white;
  height: 50px;
  font-size: 24px;
  transition: .3ms;
}

.moreDetails:hover {
  background-color: #fa8f42;
}

input {
  width: 20px;
  height: 20px;
  /* border-radius: 10px; */
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }

  .petsToAdoption {
    flex-direction: column;
  }

  .pets {
    width: 100%;
  }

  .filters {
    width: 100%;
  }
}

#showFilters {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.filtersPets {
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* border-radius: 10px; */
  background-color: #2173b5;
  border: none;
  color: white;
  height: 50px;
  font-size: 24px;
}

.filtersPets:hover {
  background-color: #115a95;
}