/*  Media Queries
--------------------------- */
/* Smaller than standard 1139 (devices and browsers) */
@media only screen and (max-width:1169px){

}

@media only screen and (max-width:1169px) and (min-width: 768px){

}

/* Smaller than standard 1024 (devices and browsers) */
@media only screen and (max-width:1023px){
	.container{
		width: 100%;
	}


}
/* Tablet Portrait size to standard 1024 (devices and browsers) */
@media only screen and (max-width:1023px) and (min-width:768px){

}

@media only screen and (min-width: 769px){
	.dashboard .row-centered {
		text-align: center;
	}

	.dashboard .row-centered .col-centered {
		display: inline-block;
		float: none;
	}
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width:767px){

.login .login-panel, .change_password{
	width: 75%;
}

}


@media only screen and (max-width:639px){

	.login .login-panel, .change_password{
		width: 80%;
	}

}

@media only screen and (max-width:767px) and (min-width:640px){

}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (max-width:767px) and (min-width:480px){



}

@media only screen and (max-width:639px) and (min-width:480px){



}


/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width:479px){

	.login .login-panel, .change_password{
		width: 100%;
	}


}
/* Small Andriod Mobile Portrait Size ( 240 devices and browsers) */
@media only screen and (max-width:359px){


}