#listing form button {
  background-color: var(--sec-color--);
  color: white;
  width: 100px;
}

#searchbar-btn {
  margin: 1rem 0;
  width: 100%;
  background-color: #fff;
  line-height: 38px;
  border-radius: 20px;
  border: 1px var(--pri-color--) solid;
  color: var(--pri-color--);
  display: block;
}
#searchbar-btn span {
  padding: 0 1rem;
}


#listing form button:hover {
  background-color: var(--pri-color--);
}
#properties i {
  color: var(--sec-color--);
}
#properties .ct-value {
  color: var(--sec-color--);
}

#properties .ct-title {
  color: var(--sec-color--);
}

#properties .ct-title:hover {
  color: var(--pri-color--);
}

.property-entry {
  box-shadow: 0 0 10px -4px gray;
  position: relative;
}

.property-entry:hover {
  box-shadow: 0 0 10px 0px gray;
}

.property-entry .property-thumbnail {
  /* height: 191px; */
  position: relative;
}

.property-entry .property-thumbnail .property-price {
  position: absolute;
  width: 80%;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.property-entry .property-thumbnail .property-price .price-btn {
  min-width: 30%;
}
.property-entry .property-thumbnail .property-code {
  position: absolute;
  width: 80%;
  top: 10px;
  left: 10px;
  z-index: 1;
}

/* Zoom img inside container */
.property-entry .property-thumbnail {
  display: inline-block;
  overflow: hidden;
}
.property-entry .property-thumbnail img  {
  object-fit: cover;
  width: 100%;
  height: 220px;
  transition: transform .4s;
}
.property-entry:hover .property-thumbnail img {
  transform: scale(1.1);
}

/* Pagination */
#listing #pagination a {
  color: var(--pri-color--);
}
#listing #pagination .ct-active {
  background-color: var(--sec-color--);
  color: white !important;
}
#listing #pagination .ct-active:hover {
  background-color: var(--pri-color--);
}
