.data-grid__tiers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.data-grid__tier {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 12px 0 rgba(0, 122, 204, 0.2);
}
@media only screen and (min-width: 768px) {
  .data-grid__tier {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 1200px) {
  .data-grid__tier {
    width: calc(33.333% - 13.333px);
  }
}
.data-grid__tier--amount {
  color: #AA273E;
  font-family: "Dunbar Tall";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.data-grid__tier--value {
  color: #000;
  font-family: "Dunbar Tall";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.data-grid__tier--label {
  color: #000;
  font-family: "Dunbar Text";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/*# sourceMappingURL=data-grid.css.map */
