

.contactoLote .member {
  /* position: relative; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  justify-content: space-between;
}

.contactoLote .member .pic {
  overflow: hidden;
  width: 90px;
  border-radius: 50%;
}

.contactoLote .member .pic i {
  transition: ease-in-out 0.3s;
  width: 70px;
}

.contactoLote .member .pic img {
  transition: ease-in-out 0.3s;
}



.contactoLote .member:hover {
  transform: translateY(-10px);
}

.contactoLote .member .member-info {
  padding-left: 30px;
}

.contactoLote .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #1b1b1b;
}

.contactoLote .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.contactoLote .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.contactoLote .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.contactoLote .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contactoLote .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.contactoLote .member .social a i {
  color: #1d1d1d;
  font-size: 16px;
  margin: 0 2px;
}

.contactoLote .member .social a:hover {
  background: #383836;
}

.contactoLote .member .social a:hover i {
  color: #fff;
}

.contactoLote .member .social a + a {
  margin-left: 8px;
}

.backgroundGray {
  background-color: #CACACA;
}

.buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #383836;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #383836;
}

.buy-btn:hover {
  background: #383836;
  color: #fff;
}

/* .btnSearchLote {
  width: 120px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid var(--primary-color2);
  color: var(--primary-color2);
  font-family: var(--font-dmsans);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 25px;
  display: flex;
  align-items: center;
} */

.btnSearchLote {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color2);
  border-radius: 5px;
  padding: 0 18px;
  width: 200px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid var(--primary-color2);
  color: var(--primary-color2);
  font-family: var(--font-dmsans);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 25px;
  display: flex;
  align-items: center;
}
.btnSearchLote input {
  width: 100%;
  /* padding: 16px 0; */
  font-size: 14px;
  border: unset;
}
.btnSearchLote input:focus {
  border: unset;
}
.btnSearchLote button {
  background-color: unset;
  border: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btnSearchLote button i {
  color: var(--paragraph-color);
  font-size: 22px;
  transition: 0.5s;
}
.btnSearchLote button:hover i {
  color: var(--title-color);
}


