/* material design card */
.card-list {
  margin: 8px;
  padding-bottom: 25px;
  max-width: 800px;
}

.mat-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 10px rgba(0,0,0,0.24);
  border: none;
  background: white;
  width: 100%;
}

.mat-card-active {
  background: #eee;
}

.card-body {
  padding-bottom: 0;
  padding-top: 0;
}

.card-footer {
  margin-top: 16px;
}

.card-header {
}

.flex-content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.card-header-text {
  font-weight: bold;
}

.card-expand {
  display: -webkit-box;
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;

  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;

  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;

  float: right;
  padding: 8px;
  padding-top: 0;

}

.card-expand > a {
  color: inherit;
}


/*
.mat-card,
.product-card:hover {
  box-shadow: 0 3px 5px rgba(0,0,0,0.10), 0 4px 5px rgba(0,0,0,0.20);
}
*/

.card-section {
  display: inline-block;
  width: 100%;
  padding: 16px;
}

.card-section > .card-subtitle {
  font-size: 10pt;
}

.card-section > .card-title {
  word-wrap: break-word;
}

.card-section > p {
  font-size: 12pt;
}
.card-section > strong {
  font-size: 12pt;
}
.card-section > ul {
  font-size: 12pt;
}

/* geo lists */
.card-section > div > div > ul {
  font-size: 12pt;
}

/* Desktop And Bigger */
@media only screen and (min-width: 1440px) {
}

/* Laptop */
@media only screen and (max-width: 1440px) {
}

/* Tablet */
@media only screen and (max-width: 767px) {
}

/* Mobile  */
@media only screen and (max-width: 376px) {
  .card-section > .card-title {
    font-size: 11pt;
  }
  .card-section > .card-subtitle {
    font-size: 8pt;
  }
}

.card-section-right {
  float: right;
  padding: 8px;
}

.card-section-right > a {
  text-align: center;
  color: inherit;
}

/* remove underline for text */
.card-section-right > a:hover {
  text-decoration: none;
}

.card-section-right > a > p {
  padding: 0;
  margin: 0;
}

.mat-background {
  background: #eee;
  border-radius: 5px;
}

.box {
  width: 10px;
  height: 10px;
}

.criteria-list > li {
  list-style-type: none;
}

.card-container {
  margin: 8px;
}

