.card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  background-color: #f5faf6;
  align-items: center;
  border-radius: 30px;
  margin-right: 20px;
  margin-bottom: 30px;
  user-select: none;
}

.cards-border {
  padding: 1px;
  visibility: hidden;
}

.cards-border:last-child {
  margin-left: -10px;
}

.card-features-divider {
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background-color: #e4f3e7;
  border: 0px;
}

.card-features {
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 400;
  color: #5b6b5e;
  justify-content: flex-start;
  align-items: center;
}

.card-feature {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.card-carousel {
  width: 290px;
  height: 234px;
  display: flex;
  justify-content: space-between;
}

.card-type {
  position: absolute;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #3b8111;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  z-index: 2;
  margin-top: 15px;
  margin-left: 15px;
}

.card-type-rent {
  background-color: #3b8111;
}

.card-type-sell {
  background-color: #fbd739;
  color: #64530c;
}

.btn-card-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  z-index: 2;
}

.btn-card-back {
  position: relative;
  top: 50%;
  margin-top: -35px;
  width: 25px;
  height: 47px;
  background-color: rgba(17, 51, 26, 0.4);
  backdrop-filter: blur(9.1px);
  -webkit-backdrop-filter: blur(9.1px);
  border-radius: 0px 5px 5px 0px;
  border: 0px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.btn-card-next {
  position: relative;
  top: 50%;
  float: right;
  margin-top: -35px;
  width: 25px;
  height: 47px;
  background-color: rgba(17, 51, 26, 0.4);
  backdrop-filter: blur(9.1px);
  -webkit-backdrop-filter: blur(9.1px);
  border-radius: 5px 0px 0px 5px;
  border: 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.icon-simple-arrow {
  display: flex;
}

.icon-simple-arrow:before {
  content: url("/oc-content/themes/ric/images/simple-arrow.png");
  width: 9px;
  height: 17px;
}

.icon-area:before {
  content: url("/oc-content/themes/ric/images/icon-area.png");
  width: 16px;
  height: 16px;
}

.icon-car:before {
  content: url("/oc-content/themes/ric/images/icon-car.png");
  width: 16px;
  height: 16px;
}

.icon-bed:before {
  content: url("/oc-content/themes/ric/images/icon-bed.png");
  width: 16px;
  height: 16px;
}

.icon-toilet:before {
  content: url("/oc-content/themes/ric/images/icon-toilet.png");
  width: 16px;
  height: 16px;
}

.icon-simple-arrow.left {
  transform: scaleX(-1);
}

.btn-card-next .icon-arrow-right:before,
.btn-card-back .icon-arrow-right:before {
  color: #f5faf6;
}

.card-images {
  width: 290px;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: absolute;
  flex-direction: row;
  user-select: none;
  cursor: grab;
}

.card-image {
  width: 290px;
  object-fit: cover;
  border-radius: 10px;
}

.card-content {
  position: relative;
  width: 290px;
  height: calc(100% - 187px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-price {
  display:flex;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}

.card-cond {
  display:flex;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.card-description {
  display:flex;
  color: #5b6b5e;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0px;
}

.card-texts{
  display:flex;
  flex-direction: column;
}

.card-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 76px;
}

.card-address {
  color: #5b6b5e;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  min-height: 60px;
}

.btn-know-more {
  display: flex;
  justify-content: space-evenly;
  background-color: #fbd739;
  color: #64530c;
    margin-top: 0px;
    margin-bottom: 0px;
  cursor: pointer;
  min-width: auto;
  width: 120px;
  padding: 14px;
  text-decoration: none;
  font-weight: 600;
}

.card-feature>[class^='icon-']{
margin-right: 4px;
}