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

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

	.container {
		max-width: 100%;
		width: 90%;
	}
}

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

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

	.container {
		max-width: 100%;
		width: 90%;
	}
}

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

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

	.container {
		max-width: 100%;
		width: 95%;
	}

	.login > div {
		width: 100%;
	}

	.login .content .form {
		padding: 20px;
	}
}

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

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

	.container {
		max-width: 100%;
		width: 95%;
	}

	.login > div {
		width: 100%;
	}

	.login .content .form {
		padding: 20px;
	}
}