/*
XS: Extra small devices Phones (<768px)
SM: Small devices Tablets (?768px)
MD: Medium devices Desktops (?992px)
LG: Large devices Desktops (?1200px)
*/

/* XS */
@media screen and (max-width: 767px){ 
	.navbar-brand img.logo{
		width:35px !important;
	}
}

/* SM */
@media screen and (min-width: 768px) and (max-width: 991px) { 

}

/* MD */
@media screen and (min-width: 992px) and (max-width: 1199px) { 

}

/* LG */
@media screen and (min-width: 1200px) { 

}