/* CUSTOM ADMIN PANEL CSS */

/* Full Size Screens */
#horizontalLogo{
	width: 199px;
}

/* Tablets Screens in Portrait Mode */
@media only screen and (min-width: 768px) and (max-width: 989px) {
	#horizontalLogo{
		width: 169px;
	}
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	#horizontalLogo{
		width: 139px;
	}

}

/* Mobile Portrait Size to Mobile Landscape (devices and browsers) */
@media only screen and (max-width: 479px) {
	#horizontalLogo{
		width: 129px;
	}
}


