.dashboard_section {
  padding: 30px 0 50px;
}
.dashboard_section .common-section-header .common-section-subtitle {
  color: #808080;
}
.dashboard_section .dashboard_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;

  box-shadow: 0px 0px 6px #00000008;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 4px;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_content {
  width: 100%;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_title {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0px;
  line-height: 1.1;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_value {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_icon.listing {
  background: #eef3ff;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_icon.lead {
  background: #ecfff2;
}
.dashboard_section
  .dashboard_cards_wrapper
  .dashboard_card
  .card_icon.purchased {
  background: #f5eeff;
}
.dashboard_section
  .dashboard_cards_wrapper
  .dashboard_card
  .card_icon.property {
  background: #fff2e8;
}
.dashboard_section .dashboard_cards_wrapper .dashboard_card .card_icon.plan {
  background: #fff8e5;
}

@media (max-width: 1199px) {
  .dashboard_section .dashboard_cards_wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .dashboard_section .dashboard_cards_wrapper .dashboard_card .card_value {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .dashboard_section .dashboard_cards_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard_section .dashboard_cards_wrapper .dashboard_card .card_value {
    font-size: 16px;

    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .dashboard_section .dashboard_cards_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard_section .dashboard_cards_wrapper .dashboard_card .card_title {
    font-size: 13px;
  }
  .dashboard_section .dashboard_cards_wrapper .dashboard_card .card_value {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .dashboard_section .dashboard_cards_wrapper .dashboard_card {
    flex-direction: column;
    text-align: center;
  }
  .dashboard_section .dashboard_cards_wrapper .dashboard_card .card_value {
    font-size: 14px;
  }
}
