@charset "utf-8";
/* CSS Document */
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}



/* iPAD potrait*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
}


/* iPAD landscape*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
}






/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.responsive_oculto
	{
		display:none;	
	}
	.normal_oculto
	{
		display:block;	
	}
	.dropdow_cart{
		float:right;
		padding-right: 30px;
	}
	.dropdow_cart .dropdown-menu{
		padding:20px;
		top:50px !important;
		width:350px !important;
		left:-5px !important;
		box-shadow:0px 5px 30px black;
	}
	.letrap{
		font-size:11px;	
	}
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}