/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */


@media only screen and (max-width : 992px) {
	.box {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	.product_box .box {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.footer_left {
		width: 370px;
		margin-right: 30px;
	}
	.footer_menu .col:last-child {
		margin-right: 0;
	}
	.price_quan {
    	width: 135px;
    }
    .popup {
    	left:160% !important;
    }
}

@media only screen and (max-height : 500px) {
	/*.popup {
    	left:100% !important;

    }*/
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}


/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}


/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

	/**/
}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

	/**/
}


/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

	/**/
}


/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

	/**/
}


/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

	/**/
}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}


