/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height{display:block;}

@media (min-width: 992px) {
.row-eq-height{ 
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
}
}
/*
 * Styles copied from the Grid example to make grid rows & columns visible.

.row {
  margin-bottom: 20px;
}
.row .row {
  margin-top: 10px;
  margin-bottom: 0;
}
[class*="col-"] {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eee;
  background-color: rgba(86,61,124,.15);
  border: 1px solid #ddd;
  border: 1px solid rgba(86,61,124,.2);
}
 */