/*
@Author: ThemeMascot
@URL: http://ThemeMascot.com

This is the file where you can add your custom styles to change the look of the
theme. But don't modify style-main.css file.

*/

/* Your custom css codes start here: */



@media only screen and (min-width: 250px) and (max-width: 359px) {
	.mobile-show {
		display:none;
	}
}
@media only screen and (min-width: 360px) and (max-width: 399px) {
	.mobile-show {
		display:none;
	}
}
@media only screen and (min-width: 400px) and (max-width: 600px) {
	.mobile-show {
		display:none;
	}
}
@media only screen and (min-width: 601px) and (max-width: 768px) {
	.mobile-show {
		display:none;
	}
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.mobile-show {
		display:none;
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1279px)  {
	.mobile-show {
		display:block;
	}
}
@media only screen and (min-width: 1280px) {
	.mobile-show {
		display:block;
	}
}