.card {
  padding: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  box-sizing: border-box;
  height: 100%;
}
.card.no-transactions.title {
  gap: 24px;
}
.card.no-transactions.title .list-component {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .card {
    padding: 16px;
  }
}
.card.icon {
  padding: 16px;
  gap: 16px;
}
.card.icon > .content {
  gap: 4px;
}
@media screen and (max-width: 860px) {
  .card.icon > .content {
    max-width: calc(100vw - 90px);
  }
}
.card.title {
  padding: 24px;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  .card.title {
    gap: 16px;
    padding: 16px;
  }
}
.card.title.no-transactions.title .list-component {
  margin: 16px 0;
}
.card.title > .card-title {
  width: 100%;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: #303833;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card.title > .content {
  gap: 24px;
  width: 100%;
}
.card.layout-top,
.card.layout-top > .content {
  justify-content: flex-start;
}
.card > .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #edfff2;
  border: 1px solid #e8e8e8;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 24px;
  box-sizing: border-box;
}
.card > .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card > .content label {
  color: #4d544f;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
}
.card > .content b {
  display: block;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #07130c;
}
.card > .content .card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: unset;
}
@media screen and (max-width: 370px) {
  .card,
  .card.title {
    padding: 16px;
  }
  .card.title {
    gap: 16px;
  }
}
