.display-flex {
	display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.flex-wrap-wrap {
	flex-wrap: wrap;
}

.align-items-flex-start {
	align-items: flex-start;
}

.align-items-flex-end {
	align-items: flex-end;
}

.justify-content-flex-start {
	justify-content: flex-start;
}

.justify-content-flex-end {
	justify-content: flex-end;
}

.justify-content-space-between {
	justify-content: space-between;
}

.justify-content-space-evenly {
	justify-content: space-evenly;
}

.align-items-stretch {
	align-items: stretch;
}

/******/
/* MEDIA QUERIES */
/******/

@media screen and (max-width: 767px) {
	
	.mobile-align-items-flex-start {
		align-items: flex-start;
	}
	
	.mobile-align-items-flex-end {
		align-items: flex-end;
	}
	
	.mobile-justify-center {
		justify-content: center;
	}
	
	.mobile-align-center {
		text-align: center;
	}

}