@media only screen and (min-width: 0px) {
	
	#contact_background {
		overflow: auto;
		text-align:left;
		font-size:8px;
	}
	
	h2#contact_h2 {
		text-align: center;
		color: #000;
		margin: 1em;
	}

	.img {
		position: fixed;
		top: 8%;
		right: 7%;
		float: right;
		width: 2em;
	}

	input{
	width:70%;
	height:1em;
	margin:5px 15%;
	border:1px solid #999;
	border-radius:3px;
	padding:5px;
	}
	textarea{
	width:70%;
	height:4em;
	margin:5px 15%;
	border-radius:3px;
	padding:5px;
	resize:none;
	}
	input[type=button]{
	background-color:#000;
	border: none;
	font-Weight:bold;
	font-size:12px;
	color:white;
	width:49%;
	}
	table#informacion {
		font-size:8px;
		border:1px solid #000;
		border-collapse: collapse;
		margin:0.5em;
	}
	
	table#informacion th{
		text-align:center;
		padding:0.1em;
	}
	
	table#informacion tr{
		border:1px solid #000;
		border-collapse: collapse;
	}
	
	table#informacion td{
		border:1px solid #000;
		border-collapse: collapse;
		padding:0.1em;
	}

}

@media only screen and (max-width: 699px) {

	
	#contactdiv{
		opacity:1;
		height: 100%;
		width: 100%;
		background: #ed1c24;
		position: fixed;
		top: 0%;
		left: 0%;
		z-index: 99;
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
		text-align: center;
		overflow: auto;
	}
	
	.img{
		float: right;
		margin-top: 0;
		margin-right: 0;
	}
		
}

@media only screen and (min-width: 700px) {
	
	#contact_background {
		opacity:0.98;
		height: 100%;
		width: 100%;
		background: #000;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
		display: none;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	
	#contactdiv{
		opacity:1;
		height: 80%;
		width: 50%;
		background: #ed1c24;
		position: fixed;
		top: 50%;
		left: 50%;
		z-index: 99;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	.img{
		float: right;
		margin-top: -35px;
		margin-right: -37px;
	}
	
}