.modal{
	position: fixed;
	top: 0;
	left: -100%;
	background-color: rgba(0,0,0,0.9);
	width: 100%;
	height: auto;
	min-height: 100vh;
	z-index: 15;
	display: flex;
	justify-content: center;
	align-items: initial;
	transition: 1.5s;
	z-index: 100;					
}
.close_modal{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 60px;
	height: 60px;	
	transition: .5s;
	cursor: pointer;
}
.close_modal i{
	font-size: 50px;
	color: #fff;
}
.close_modal:hover{
	transform: scale(1.1);
}
.modal_content{
	width: 100%;
	height: auto;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column	
}
.info_container{
	width: 70%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;	
	gap: 15px;
	text-align: center;
}
.row_container{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
/*.title{
	font-size: 25px;
	color: #FFFFFF;
}*/
.row_container span,
.row_container p{
	font-size: 17px;
	color: #FFFFFF;
}
.form_container{
	width: 70%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	text-align: center;	
}
.form_container h3{
	font-size: 20px;
	color: #FFFFFF;
}
.info_form{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}
.input_container{
	width: 95%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center
}
.input_form{
	width: 80%;
	height: 25px;
	font-size: 18px;
	border: none;
	border-radius: 5px;
	padding-left: 5px;
	font-family: 'Oxygen', sans-serif;
}
.input_text{
	width: 80%;
	height: 80px;
	font-size: 20px;
	border-radius: 8px;
	border: none;
	padding-left: 5px;
	font-family: 'Oxygen', sans-serif;
	resize: none;
}
.input_submit{	
	width: auto;
	height: auto;
	padding: 5px 10px;
	background-color: #AB0800;	
	color: #FFFFFF;
	font-size: 17px;
	letter-spacing: 1.5px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}
.response{	
	font-size: 18px;	
	text-align: center;
	color: #AB0800;
	font-weight: bold;
}
@media screen and (max-width: 800px){
	.info_container{
		width: 90%;
	}
	.form_container{
		width: 95%;
	}
}
/*
@media screen and (max-width: 800px){
	.info1{
		width: 70%;
	}
	.form_container h3{
		font-size: 20px;
	}
	.respuesta{
		font-size: 16px;
	}
}
@media screen and (max-width: 450px){
	.info1{
		width: 90%;
	}
	.form_container h3{
		font-size: 16px;
	}
}*/