/*GENERAL*/

body {
    margin: 0;
}

.color {
    color: red;
}

h1 {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
}

.container {
    width: 100%;
}

/*HEADER*/
.cabecera {
    background-color: #1d252c;
    overflow:hidden;
    height: 120px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.enl-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.enl-menu li {
   width: 200px;
   text-align: center;
}

.enl-menu a {
color: white;
text-decoration: none;
font-size: 16px;
font-family: Poppins;
font-weight: 600;
}

.menu {
    margin: 40px 0 0;
}

.enl-menu a:hover {
    color: #85c6ae;
}

/**/
.cuerpo-prin {
    margin: 20px;
}



/*PAG INF VICEPRESIDENTE*/
.tablaDatosInfVic {
	border-collapse: collapse;
	width: 100%;
}

.tablaDatosInfVic thead {
	font-weight: bold;
	border-bottom: 2px solid #000000;
}
.tablaDatosInfVic tbody tr {
	border-bottom: 2px solid #000000;
	height: 30px;
}

.tablaDatosInfVic td {
	/*border-bottom: 1.5px solid #000000;*/
	border-collapse: collapse;
	border-spacing: 0px;
}

.tablaDatosInfVic tfoot {
    font-weight: bold;
	border-bottom: 2px solid #000000;
	background-color: #cfcfcf;
	height: 30px;
}

/*Tabla insertar*/
.tablaInsertar {
	border-collapse: collapse;
	width: 60%;
}

.tablaInsertar thead {
	font-weight: bold;
	border-bottom: 2px solid #000000;
}

.tablaInsertar tbody tr {
	border-bottom: 2px solid #000000;
	border-left: hidden;
	border-right: hidden;
}

.tablaInsertar tbody td {
	border: 2px solid #000000;
	border-collapse: collapse;
	border-spacing: 0px;
}

/*FOOTER*/
.pie {
    width:100%;
    height: 130px;
    background-color: #1d252c;   
}

/*RESPONSIVE*/
@media only screen and (max-width: 425px) {
    h1 {
        font-size:25px;
    }
    
    h2 {
        font-size:18px;
    }
    .intro-infVic p {
        font-size:12px;
        margin: 20px;
    }
    
    .tablaDatosInfVic1 {
        display:none;
    }
    
     .tablaDatosInfVic {
        font-size: 8px;
    }
    
    .logo {
        margin: 0;
        align-items: center;
    }
    
    .tablaDatosInfVic tbody tr, .tablaDatosInfVic tfoot {
	    height: 20px;
	    border-bottom: 1px;
    }
    
    .nombre {
        width: 5%;
    }
    
    .nombreRef {
        width: 10%;
    }
    
    .fechaRef {
        width: 5%;
    }
    
    .comRef {
        width: 20%;
    }
    
    .tipoRef {
        width: 10%;
    }
    
    .scrollTabla, .header, .footer {
        overflow: auto;
        white-space: nowrap;
    }

}