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

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


}

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

	button.a_filter {
		height: 50px;
	}

}

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

	.wrapper_prods_filter {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: reverse;
	        -ms-flex-direction: column-reverse;
	            flex-direction: column-reverse;
	}

	.prod_filter {
		width:100%;
	}

	.inverse .wrapper_prods_filter {
		order:1;
	}

	.inverse .col-md-9.col-sm-8.col-xs-12 {
		order:0;
	}



}


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

	.tags_filter a {
		font-size: 12px;
		margin-right: 0;
		margin-bottom: 0;
	}


}


/* 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) {

}