.cards-wrapper {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: center;
  margin: 0;
  padding-bottom: 80px;
}

.last-updated {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-size: 12px;
  color: #969696;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.info-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  padding: 16px 32px;
  text-align: center;
  min-width: 240px;
}

.info-title {
  width: fit-content;
  color: #222;
  text-align: right;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0 auto 16px auto;
}

.info-value {
  position: relative;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.info-value.negative {
  color: #f5a196;
}

.info-value.positive {
  color: #72ba8e;
}

.info-subtitle {
  color: #969696;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.4%;
}

span.tooltip {
  right: -20px;
  top: 0;
}

@media (max-width: 1024px) {
  .cards-wrapper-chart {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .cards-wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 650px) {
  .cards-wrapper-chart {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .cards-wrapper {
    flex-direction: column;
  }
}
