#floorplans .hide {
  display: none;
}

.community-floorplans__top{
  text-align: center;
  max-width: 1013px;
  margin: 0 auto 41px auto;
}

.community-floorplans__top > h2{
  font-size: 30px;
  margin-bottom: 21px;
  letter-spacing: 0px;
  font-weight: bold;
}

.community-floorplans__top > p{
  font-family: 'Lato';
  color: #252525;
  font-size: 20px;
  line-height: 30px;
}


.community-floorplans__plans{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 22px;
  row-gap: 30px;
  height: auto !important;
}

.plan{
  max-width: 559px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 3px 20px #00000029;
  padding: 10px 30px 10px 50px;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}

.plan__wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.plan__wrapper > div:first-of-type{
  padding: 30px 0;
}

.plan--name{
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 1;
}

.plan--bed-bath{
  font-size: 20px;
  line-height: 1;
  color: #252525;
}

.plan__details{
  align-items: flex-start;
  color: #252525;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 11px 0 12px;
}


.plan__details--sqft{
  font-family: Lato, sans-serif;
  font-style: italic;
  font-size: 15px;
  line-height: 25px;
}

.plan__details--download > span{
  font-family: "Verlag A", "Verlag B", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 21px;
  text-decoration: underline;
  color: #252525;
}

.plan__details i {
    font-size: 0.9rem;
    margin-left: 3px;
   color: #252525;
  text-decoration: none;
}
.btn.btn--support{
  width: fit-content;
  padding: 14px 25px;
  font-family: "Verlag A", "Verlag B", sans-serif;
  font-size: 20px;
  line-height: 21px;
  color: #fff;
  background-color: #A61A2E;
  border: 3px solid #A61A2E;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}

.btn.btn--support:hover{
  background-color: transparent;
  color: #A61A2E;
  transition: all 0.3s ease-out;
}

.plan__image{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 200px;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.community-floorplans__bottom{
  text-align: center;
  margin-top: 31px;
}

.community-floorplans__bottom *{
  color: #252525;
  font-size: 25px;
  line-height: 21px;
  font-weight: bold;
}

.community-floorplans__bottom > a > span{
  font-family: "Verlag A", "Verlag B", sans-serif;
  text-decoration: underline;
  padding: 0 10px;
}

.pager__wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 480px;
  width: 100%;
  margin: 30px auto;
}

.isotope-pager{
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.pager,
.prev,
.next{
  color: #252525;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none !important;
}

.pager.active{
  display: inline-flex;
  background-color: #252525;
  border-radius: 3px;
  color: #fff;
  height: 22px;
  width: 22px;
  align-items: center;
  justify-content: center;
}

.btn.btn--floorplan{
  font-size: 20px;
  line-height: 21px;
  color: #252525;
  border: 3px solid #252525;
  border-radius: 10px;
  padding: 15px 13px;
}

@media screen and (min-width: 768px){
  
  .desktop{
    display: block !important;
  }

  .mobile{
    display: none !important;
  }

}

@media screen and (max-width: 767px){

  .desktop{
    display: none !important;
  }

  .mobile{
    display: block !important;
  }

  .community-floorplans__plans{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan{
    padding: 35px 31px;
  }

  .plan__wrapper{
    flex-direction: column;
  }

  .plan__wrapper>div:first-of-type{
    padding: 0;
  }

  .plan--name{
    margin-bottom: 15px;
  }

  .plan__image{
    align-items: center;
    gap: 12px;
    max-width: 100%;
    height: auto; {# Added to fix missing button issue on mobile 7/9/2024 #}
  }

  .pager__wrapper{
    flex-direction: column;
  }

}