.hide-on-desktops,
.show-on-tablets,
.show-on-phones {
	display: none!important;
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
	.hide-on-desktops {
		display: inherit!important;
	}
}/* end of Smaller than standard 960 (devices and browsers) */

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.show-on-tablets {
		display: inherit!important;
	}
	.hide-on-tablets {
		display: none!important;
	}
}/* end of Tablet Portrait size to standard 960 (devices and browsers) */

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
	.show-on-phones{
		display: inherit!important;
	}
	.hide-on-phones{
		display: none!important;
	}
}/* end of All Mobile Sizes (devices and browser) */

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}/* end of Mobile Landscape Size to Tablet Portrait (devices and browsers) */

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

}/* end of Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */