/* Large desktop */
@media (min-width: 1200px) {

}
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
	body {
		padding: 0 0 80px;
	}
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
	body {
		padding: 0 0 80px;
	}
	.brand img {
		width: 40px;
	}
	.container {
		padding: 20px;
	}
	.navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
		margin: 0;
	}
	.border-right {
		border: 0;
	}
	.resp-hide {
		display: none;
	}
	.dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_filter {
		float: left;
	}
	.responsive-login .modal {
		width: 350px;
		left: 50%;
		margin-left: -175px;
		top: 20px;
	}
}
 
/* Landscape phones and down */
@media (max-width: 480px) {
	body {
		padding: 0 0 80px;
	}
	.brand img {
		width: 40px;
	}
	.brand span {
		display: none;
	}
	.container {
		padding: 20px;
	}
	.navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
		margin-right: 0;
		margin-left: 0;
	}
	.border-right {
		border: 0;
	}
	.resp-hide {
		display: none;
	}
	.dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_filter {
		float: left;
	}
	.responsive-login .modal {
		width: 350px;
		left: 50%;
		margin-left: -175px;
		top: 20px;
	}
}