@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Economica&display=swap');

body {
	padding: 0;
	margin: 0;
	font-family: 'Economica', sans-serif;
	font-size: 16px;
	background-color: #FFE2EC;
	color: #DF0909;
}

.wrap {
	margin: 0 auto;	
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
}

header .menu, h1, h2, h3 {	
	font-family: 'Abril Fatface', cursive;
}

header .menu .logo{	
	float: left;
	background-image: url(../imagenes/interface/logoWeb.png);
	height: 80px;
	width: 200px;
	background-size: contain;
	background-repeat: no-repeat;
}

@media (max-width: 940px){
	header .menu .logo{
		float: none;
		margin: 0 auto;	
	}
}

header .menu nav{
	text-align: center;
}

header .menu nav ul {
	list-style-type: none;
	padding: 0;
  margin: 0;
	text-align: right;
}

header .menu nav ul li{
	display: inline-block;
	text-decoration: none;
	padding-left: 6px;
	padding-right: 6px;
	margin-right: 4px;
	color: #DF0909;
	font-size: 18px;
}

.text-rosa{
	color: #FBA6BD !important;
}

contenedor{
	text-align: center;
	clear: both;
	display: block;
	margin-bottom: 20px;
}

contenedor .contenido{
	margin-bottom: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
}

contenedor .contenido .titulo{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #575757;
}

contenedor .contenido .barra{
	margin-bottom: 15px;	
	height: 30px;
	border-bottom: 4px solid #FBA6BD;
}

contenedor .contenido .barra .regresar{
	height: 25px;
	margin-right: -25px;
	background-size: contain;
	width: 25px;
	background-image: url(../imagenes/interface/regresar.png);
	background-repeat: no-repeat;
	float: left;
}

contenedor .contenido .opcionPanel{
	width: 110px;
	height: 95px;
	color: #000;
	/*background-color: rgba(255, 193, 206, 0.5);*/
	text-align: center;
	text-decoration: none;
	display: inline-block;
	zoom: 1;
 	*display: inline;
	padding: 3px;
	margin: 2px;
	vertical-align: bottom;
	background-repeat: no-repeat;
	background-position: center 5px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: 2px dashed rgba(255, 193, 206, 1);
}

contenedor .contenido .opcionPanel:before {   
	content: '';   
	display: inline-block;     
	height: 100%;   
	vertical-align: middle;
} 

contenedor .contenido .opcionPanel:hover{
	background-color: rgba(255,183,198,1);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

contenedor .contenido .opcionPanel .texto{
	margin-top: 65px;
	font-size: 11px;
	padding-right: 5px;
	padding-left: 5px;
	display: inline-block;   
	vertical-align: middle;	
}

a img { 
	border: none;
	cursor: pointer;

}

a:link {
	text-decoration: underline;
	color: #DF0909;
	cursor: pointer;
}

a:visited {	
	text-decoration: underline;
	color: #DF0909;
	cursor: pointer;
}

a:hover, a:active, a:focus {
	color: #EA0000;
	text-decoration: none;
	cursor: pointer;
}

table{
	border-collapse:collapse;
}

table tr #izq{
	width: 150px;
}

table tr #der{
	width: 200px;
}


/* ---------------------FORMULARIOS-------------------------- */


form{
	min-width: 260px;	
	margin-left: auto;
	margin-right: auto;
	
}

input[type=submit]:not(.btn), input[type=button]:not(.btn), button[type=button]:not(.btn), button[type=submit]:not(.btn) {
	background-color: #CC3333;
	border: none;
	color: #E6E6E6;
	cursor: pointer;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-left: 5px;
	margin-right: 5px;
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 3px;
}

input[type=submit]:not(.btn):hover, input[type=button]:not(.btn):hover, button[type=button]:not(.btn):hover, button[type=submit]:not(.btn):hover {
	background-color: #AC2B2B;
}

input[type=text], input[type=password], textarea, select {
	color: #444;
	display: block;
	padding: 8px 10px 8px 10px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;
	border: 1px solid #999999;
	outline: 0;
	width: 100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}


textarea{	
	overflow:auto;	
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
	-webkit-box-shadow: 0 0 2px #AC2B2B inset;
	-moz-box-shadow: 0 0 2px ##AC2B2B inset;
	box-shadow: 0 0 2px #AC2B2B inset;
	border: 1px solid #CC3333;
}

input[readonly], textarea[readonly]{
	background-color: #DDD;
}

/* TABLA NUEVA */

#datos {
	text-align: left;
	margin: 20px;
	font-size: 90%;
	margin-left: auto;
	margin-right: auto;
	cursor: default;
}


#datos td {
	border-top: 1px solid #fff;
	color: #669;
	padding: 8px;
	background-color: #E2E2E2;
}

#datos tr:hover td{
	background-color: #CCC;
}

#datos th {
	color: #444;
	background-color: #D1B7B6;
	padding: 8px;
}

#datos th.rounded-left {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;
}

#datos th.rounded-right {
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}

#datos th.rounded-left-right {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}

#datos td.rounded-foot {
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #D1B7B6;
	text-align: center;
}

#datos td.rounded-foot:hover {
	background-color: #D1B7B6;
}

#variasTablas{
	vertical-align: top; 
	display: inline-block; 
	zoom: 1; 
	*display: inline; 
	margin-bottom: 10px;
	margin-left: 10px; 
	margin-right: 10px;
}

#izq {
	text-align: left;
	
}

@media (max-width: 970px){
	header .menu nav ul li{
		font-size: 16px;
	}	
}

@media (max-width: 940px){
	header .menu nav{
		height: auto;
		padding-left: 0;
	}
}

@media (max-width: 550px){
	body{
		font-size: 13px; 
	}
	
	contenedor .contenido .barra{
		height: 35px;
	}
	
	contenedor .contenido .barra .regresar{
		margin-top: 2px;
	}
}