/* 
--------------------------------------------------------
Responsive
--------------------------------------------------------*/	

#template_name {
	background:rgba(255,255,255,.9);
	border:solid 1px silver;
	font-size:10px;
	left:0;
	z-index:999;
}

.only_mobile {display:none;}

/* Remove round corners on ipad and iphone */

input.chrome {
    -webkit-appearance: none;
    -webkit-border-radius:0; 
    border-radius:0;
}

input[type="checkbox"] {-webkit-appearance: checkbox;}

/* 
--------------------------------------------------------
Media Queries
--------------------------------------------------------*/

	@media only screen and (min-width: 1140px)  {}
	
	@media only screen and (max-width: 989px) {}
	
	@media only screen and (min-width: 768px) and (max-width: 989px) {}
	
	@media only screen and (max-width: 767px) {
		
		.only_desktop {display:none;}
		
		.only_mobile {display:block;}
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {}
	
	@media only screen and (max-width: 479px) {}