.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
.card .list-cards {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: left;
  width: 100%;
  padding: 0;
  margin: 0;
}
.card .list-cards .item-card {
  background: #fff;
  border-radius: 10px;
  margin: 1rem;
  height: 14rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.card .list-cards .item-card .title {
  font-size: 1.5rem;
  margin: 0.5rem 0rem 1rem 0.5rem;
  overflow: hidden;
  font-weight: 600;
  color: #7D89EA;
}
.card .list-cards .item-card .text {
  font-size: 1rem;
  margin: 0 1rem;
  font-weight: 500;
}
.card .list-cards .item-card .comand {
  font-size: 1rem;
  margin: 0 1rem;
  font-weight: 500;
  text-align: right;
  align-self: flex-end;
  margin-top: auto;
}

@media (min-width: 1300px) {
  .item-card {
    width: calc(33% - 2rem);
  }
}
@media (max-width: 1300px) {
  .item-card {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 670px) {
  .item-card {
    width: 100%;
  }
}
.item-card-saldo {
  background: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  margin: 0 1rem 1rem 0rem;
  height: 7.8rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.item-card-saldo .title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  font-weight: 600;
  color: #77818a;
}
.item-card-saldo .text {
  font-size: 1rem;
  font-weight: 500;
}/*# sourceMappingURL=cards.css.map */