.lotes-list>.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.lotes-list>.row>[class^=col-] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

@media screen and (max-width: 550px) {
  .lotes-list>.row>[class^=col-] {
    width:100%
  }
}

.lotes-list>.row>[class^=col-]>.card-lote {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  border: 1px solid #e1e1e1;
  border-radius: 2px
}

.lotes-list>.row>[class^=col-]>.card-lote .card-lote-image>img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 180px;
  padding: 15px;
  background-color: #f1f1f1
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content .block-title {
  font-weight: 600;
  color: #b30738;
  line-height: 1.35;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content .block-title>a {
  color: #b30738
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content .card-lote-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -5px
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content .card-lote-info>li {
  padding: 0 5px
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content .card-lote-info>li h5 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 0;
  color: #555
}

.lotes-list>.row>[class^=col-]>.card-lote>.card-lote-content .card-lote-info>li p {
  font-size: 14px;
  font-weight: 300
}

.btn-round {
    border-radius: 24px;
    color: #fff;
    background-color: #A4A4A4;
    border-color: #A4A4A4;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.5s;
    cursor: pointer;
}

.btn-round: hover {    
    background-color: #848484;
    border-color: #848484;
}