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

/* Large Devices, Wide Screens */

@media only screen and (max-width : 1300px) {
	
	.programs_list li {
		margin-right:10px;
	}
	.action_weight li {
		margin-right:20px;
	}
}


@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) {
	
	.form {
		zoom:2;
	}
	
}

@media only screen and (max-height : 900px) {
	
	.form {
		zoom:1;
		top:20px !important;
	}
	.form .inp_st, 
	.form .selecter-selected {
		padding:17px;
	}
}

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

}


