@charset "utf-8";
/* CSS Document */
body{
	padding-left: 5%;
	padding-right: 5%;
	background-color: rgba(230,230,255,1.00)
}

header{
	background-color: white;
}
section{
	background-color: white;
}

h1 {
	text-align: center;
	color: rgba(0,114,188,1.00);
}
h5 {
	text-align: center;
	color: red;
}

.separado20 {
	height: 20px;
	background-image: linear-gradient(rgba(0,114,188,1.00),white);
}
.contenido {
	height: 40px;
	background-color: white;
}
.separador5 {
	height: 5px;
	background-image: linear-gradient(white,rgba(0,114,188,0.7));
}

.subtitulo{
	text-align: center;
	background-color: rgba(200,200,200,0.3);
}

.boton {
	text-align: center;
	vertical-align: middle;
	width: 60px;
	height: 20px;
	border-radius: 3px;
	opacity: 0.6;
	color: white;
	background-color: rgba(0,151,51,1.00);
	transition: 0.5s;
	
}
div.boton:hover {
	width: 80px;
	height: 30px;
	font-size: 20px;
	background-color: rgba(0,144,188,1.00);
	opacity: 1;
}
#tabla {
	border-collapse: collapse;
	width: 100%;
	text-align: center;
	justify-content: center;
}

#tablaI {
	border-collapse: collapse;
	width: 100%;
	min-width: 100px;
	max-width: 400px;
	text-align: center;
}

#tablaI tr:nth-child(even){
	background-color: #f5f5f5;
}

#tablaI tr:hover{
	background-color: rgb(150,150,255,1);
}

#tablaD {
	border-collapse: collapse;
	width: 100%;
	min-width: 100px;
	max-width: 400px;
	text-align: center;
}

#tablaD tr:nth-child(even){
	background-color: #f5f5f5;
}

#tablaD tr:hover{
	background-color: rgb(150,150,255,1);
}

.overlay{
	background-color: rgba(0,0,0,0.3);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}


.popup{
	padding: 20px;
	opacity: 1;
	width: 300px;
	height: 200px;
	background-color: white;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.9); 
	border-radius: 5px;
	
}

.salir div{
	width: 10px;
	height: 10px;
	margin-left: 95%;
}

.popup h3{
	padding: 5px;
}

.popup input{
	width: 100%;
	margin-bottom: 10px;
	height: 24px;
	line-height: 24px;
	font-size: 18px;
	text-align: center;
	border: 1px solid #BBBBBB;
}

.popup select{
	width: 40%;
	margin-bottom: 10px;
	height: 24px;
	line-height: 24;
	font-size: 18px;
	text-align: center;
	border: 1px solid #BBBBBB;
}

.popup div{
	display: flex;
	margin-bottom: 10px;
	justify-content: center;
	align-items: center;
}

span.borrar {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	width: 60px;
	height: 20px;
	border-radius: 3px;
	opacity: 0.5;
	color: white;
	background-color: red;
	transition: 0.5s;
	
}
span.borrar:hover {
	background-color: red;
	opacity: 1;
}
span.marcar {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	width: 60px;
	height: 20px;
	border-radius: 3px;
	opacity: 0.5;
	color: white;
	background-color: orange;
	transition: 0.5s;
	
}
span.marcar:hover {
	background-color: orange;
	opacity: 1;
}
span.guardar {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	width: 60px;
	height: 20px;
	border-radius: 3px;
	opacity: 0.5;
	color: white;
	background-color: rgba(0,151,51,0.50);
	transition: 0.5s;
	
}
span.guardar:hover {
	background-color: rgba(0,151,51,1.00);
	opacity: 1;
}
