@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
}

/*TIPOGRAFIA*/
h1 {
    font-size: 24px;
    font-weight: 700;
}
h2 {
    font-size: 16px;
    font-weight: 600;
}
h3 {
    font-size: 16px;
    font-weight: 300;
}
h4 {
    font-size: 14px;
    font-weight: 300;
}
.bold {
    font-weight: 600;
}

.textcenter {
    text-align: center;
}

/*NAVBAR*/
header {
    background-color: #00496F;
    padding: 10px 20px;;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.menu {
    width: 30px;
}

.usuario {
    width: 35px;
}

/*MAIN*/
main {
    flex-grow: 1;
    flex-shrink: 0;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
}

/*ALERTA*/
.alerta {
    background-color: #F85959;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.textoalerta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0px 20px;
}
.iconalerta {
    width: 40px;
}
.cruz {
    width: 15px;
}

/*CONTENIDO*/

.tittle {
    margin-top: 30px;
}

.resumen {
    background-color: white;
    margin: 15px 5% 0 5%;
    padding: 20px 15px;
}
.resumen h3 {
    border-bottom: 1px solid #ACACAC;
    padding-bottom: 10px;
}
.resumen h4 {
    padding-top: 20px;
}
.aprobadas {
    background-color: white;
    margin: 15px 5% 0 5%;
    padding: 20px 15px;
}
.aprobadas h4 {
    border-bottom: 1px solid #ACACAC;
    padding-bottom: 10px;
}
.matA {
    display: flex;
    justify-content: space-between;
}

.matA {
    margin-top: 15px;
}
/*FOOTER*/

footer nav {
    background-color: white;
    padding: 15px;
    box-shadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-shrink: 0;
}
nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    flex-grow: 1;
}

nav ul li:not(:first-child) {
    border-left: 1px solid #ACACAC; 
}

nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.iconfooter {
    width: 25px;
}