/* columns of same height styles */

.row-full-height {
  height: 100%;
}
.col-full-height {
  height: 100%;
  vertical-align: middle;
}

.col-xs-height,.col-table-cell {
  display: table-cell;
  float: none !important;
}

.row-table {
		display: table;
		width: 100%;
		/* fix overflow */
		table-layout: fixed;
	}  

@media (min-width: 769px) {
	.col-sm-height {
		display: table-cell;
		float: none !important;
	}
	.row-same-height {
		display: table;
		width: 100%;
		/* fix overflow */
		table-layout: fixed;
	}  
}
@media (min-width: 960px) {
  .col-md-height {
    display: table-cell;
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .col-lg-height {
    display: table-cell;
    float: none !important;
  }
}

/* vertical alignment styles */

.col-top {
  vertical-align: top;
}
.col-middle {
  vertical-align: middle;
}
.col-bottom {
  vertical-align: bottom;
}