/* -- extra small devices (screen-xs)  -------------------------------------- */
@media (max-width: 767px) {
	/*body {background-color:rgba(121,56,154,0.3);} /*purple*/
	.vcenter {display:block;} /*disable v center on small screens*/
}

/* -- small devices (screen-sm) --------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
	/*body {background-color:rgba(229,173,23,0.3);} /*orange*/
}

/* -- medium devices (screen-md) -------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
	/*body {background-color:rgba(169,195,28,0.3);} /*green*/
}

/* -- large devices (screen-lg) --------------------------------------------- */
@media (min-width: 1200px) {
	/*body {background-color:rgba(57,114,179,0.3);} /*blue*/
}