.card {
  margin: .5rem 0 1rem 0;
  background-color: #fff;
  border-radius: 0;
  border: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,.2);
  -webkit-transition: -webkit-box-shadow .25s;
  transition: -webkit-box-shadow .25s;
  transition: box-shadow .25s;
  transition: box-shadow .25s, -webkit-box-shadow .25s;
}
{% if module.card__rounded %}
.card--rounded {
  border-radius: 5px;
  overflow: hidden;
}
{% endif %}

.card .card__title--container {
  min-height: 73px;
  width: 100%;
  background-color: #003b5c;
}

.card .card__title {
  color: #fff;
  bottom: 0;
  left: 0;
  max-width: 100%;
  padding: 24px;
}

.card .card__content {
  padding: 24px;
  border-radius: 0 0 2px 2px;
}

.card .card__action {
  background-color: inherit;
  border-top: 1px solid rgba(160,160,160,0.2);
  position: relative;
  padding: 16px 24px;
}