/* LARGE */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	html {
		font-size: 15px;
	}

	.hidden-lg {
		display: none !important;
	}
}

/* MEDIUM */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	html {
		font-size: 15px;
	}

	.hidden-md {
		display: none !important;
	}
}

/* SMALL */
@media only screen and (min-width: 576px) and (max-width: 767px) {
	html {
		font-size: 15px;
	}

	.hidden-sm {
		display: none !important;
	}
}

/* EXTRA SMALL */
@media only screen and (max-width: 575px) {
	html {
		font-size: 15px;
	}

	.hidden-xs {
		display: none !important;
	}
}