
/* Bootstrap 3 Card Implementation */
/* TODO: use built in card styles when we transition to Bootstrap 4 */
.row.flex-row {
  display: flex;
}

.row.flex-row > div {
  margin: 20px auto 20px auto;
  vertical-align:bottom;
}

@media only screen and (max-width: 992px) {
  .row.flex-row {
    display: block;
  }
}
.card {
  /* add another 50px for the bottom padding to accomodate the absolute position button */
  padding: 20px 20px 70px 20px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
  transition: 0.3s;
  height:100%;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.7);
}

.card h3 {
  text-align:center;
  padding-top:0px;
}

.card .btn {
  width:80%;
}

.card .btn-default {
  border-color: #146A94;
  color: #146A94;
}

.card .button-holder {
  position:absolute;
  left:0px;
  bottom:20px;
  width: 100%;
  height: 50px;
  text-align: center;
}

.card-highlight {
  background-color: #f5f5f5;
}

