/* Chart Card --------------------------------------------------------------------------------------------------------*/
.chart-slider-outer {
  padding-top: 20px;
}

.chart-card {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.theme-light .chart-card {
  background-color: #ffffff;
}
.theme-dark .chart-card {
  background-color: #222222;
}

.chart-card-img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.chart-card-title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5625rem;
  padding: 20px 0 40px;
}

.chart-card-text {
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 20px;
  flex: 1 0 auto;
}
.theme-light .chart-card-text {
  color: #73706E;
}
.theme-dark .chart-card-text {
  color: #EBEBEB;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 576px) {
  .chart-card {
    width: 340px;
  }
}
@media (min-width: 768px) {
  .chart-slider-outer {
    padding-top: 45px;
  }

  .chart-card {
    width: auto;
  }
}

/*# sourceMappingURL=chart-card.css.map */