.report-cards, .report-cards-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  grid-gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.report-cards .report-item, .report-cards-dialog .report-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  background-color: #394058;
  width: 14rem;
  height: 8rem;
  cursor: pointer;
}
.report-cards .report-item .v-icon, .report-cards-dialog .report-item .v-icon {
  font-size: 4rem;
  color: white;
}
.report-cards .report-item h3, .report-cards-dialog .report-item h3 {
  color: white;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  font-weight: 500 !important;
}
.report-cards .report-item:hover .v-icon, .report-cards-dialog .report-item:hover .v-icon {
  font-size: 4.25rem;
}
.report-cards .report-item-disabled, .report-cards-dialog .report-item-disabled {
  cursor: not-allowed;
  background-color: #b1b1b1 !important;
}
.report-cards .report-item-disabled .v-icon, .report-cards-dialog .report-item-disabled .v-icon {
  color: #666;
}
.report-cards .report-item-disabled h3, .report-cards-dialog .report-item-disabled h3 {
  color: #666;
}
.report-cards-dialog {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
