/************************************************/

/* TABLA FORMULARIO								*/

/************************************************/

.tabla_form {
	display: table;
	width: 100%;
	border-spacing: 0px;
	overflow: hidden;
}

/************************************************/

/* CAJAS DE TEXTOS								*/

/************************************************/

.caja_texto {
	width: 100%;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #000000;
	border-top: #E0DDDD 1px solid;
	border-right: #E0DDDD 1px solid;
	border-bottom: #E0DDDD 1px solid;
	border-left: #E0DDDD 1px solid;
	background-color: #FFFFFF;
	height: 45px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 0.2875rem;
}

.caja_grande {
	background-color: #FFFFFF;
	width: 100%;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #000000;
	border-top: #E0DDDD 1px solid;
	border-right: #E0DDDD 1px solid;
	border-bottom: #E0DDDD 1px solid;
	border-left: #E0DDDD 1px solid;
	resize: none;
	border-radius: 0.2875rem;
}

/************************************************/

/* OPCIONES										*/

/************************************************/

.opciones {
	width: 100%;
	padding: 5px;
	margin: 0px;
	color: #000000;
	border-top: #E0DDDD 1px solid;
	border-right: #E0DDDD 1px solid;
	border-bottom: #E0DDDD 1px solid;
	border-left: #E0DDDD 1px solid;
	background-color: #FFFFFF;
	height: 45px;
}

/************************************************/

/* BOTONES										*/

/************************************************/

.boton-info {
	color: #FFFFFF;
	background: #D81E05;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 0px;
	height: 40px;
	border-radius: 0px;
	text-decoration: none;
	font-size: 12px;
	border-top: #747474 1px solid;
	border-right: #747474 1px solid;
	border-bottom: #747474 1px solid;
	border-left: #747474 1px solid;
	outline: none !important;
}

.boton-info:hover {
	background: #FFFFFF;
	color: #747474;
}

.boton-link {
	color: #FFFFFF;
	background: #D81E05;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
	border: 0px;
	border-radius: 0px;
	text-decoration: none;
	font-size: 1rem;
	font-weight: bold;
	border-top: #E41B13 0px solid;
	border-right: #E41B13 0px solid;
	border-bottom: #E41B13 0px solid;
	border-left: #E41B13 0px solid;
	border-radius: 0.1875rem;
	outline: none !important;
}

.boton-link:hover {
	background: #000000;
	color: #FFFFFF;
	border-top: #E41B13 0px solid;
	border-right: #E41B13 0px solid;
	border-bottom: #E41B13 0px solid;
	border-left: #E41B13 0px solid;
}

.boton {
	color: #FFFFFF;
	background: #D81E05;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-decoration: none;
	font-size: 1rem;
	border-top: #E41B13 0px solid;
	border-right: #E41B13 0px solid;
	border-bottom: #E41B13 0px solid;
	border-left: #E41B13 0px solid;
	border-radius: 0.2875rem;
	outline: none !important;
}

.boton:hover {
	background: #000000;
	color: #FFFFFF;
	border-top: #E41B13 0px solid;
	border-right: #E41B13 0px solid;
	border-bottom: #E41B13 0px solid;
	border-left: #E41B13 0px solid;
}

/************************************************/

/* PANTALLA 480PX								*/

/************************************************/

@media only screen and (max-width: 780px) {
	.tabla_form {
		display: table;
		width: 100%;
		border-spacing: 0px;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		padding-left: 15px;
		padding-right: 15px;
	}
	.caja_texto {
		width: 100%;
		padding: 5px;
		margin-top: 0px;
		margin-bottom: 0px;
		color: #000000;
		border-top: #E0DDDD 1px solid;
		border-right: #E0DDDD 1px solid;
		border-bottom: #E0DDDD 1px solid;
		border-left: #E0DDDD 1px solid;
		background-color: #FFFFFF;
		height: 45px;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		border-radius: 0.2875rem;
	}
}