@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;
}

.listado{
    display: flex;
    flex-direction: column;
    background-color: white;
    margin:20px;
    padding: 20px;
}

h1 {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0px;
     font-size: 30px;
    font-weight: 700;
    
}

.cajaactiva{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    
}

h2 {
    text-align: center;
    padding-bottom: 15px;
    padding-top: 20px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid;
    color:black;
}
    
.coral{
    color: coral;
    font-weight: 00;
}
h3 {
    font-size: 19px;
    font-weight: 300;
}

h4 {
    
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 10px;  
    border-bottom: 1px solid #e8e8e8;
    
}

.bold {
    font-weight: 700;
    padding-bottom: 10px;
    
}

.textcenter {
    text-align: center;
    background-color:#00496F
       
}

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 {
    flex-grow: 1;
    flex-shrink: 0;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
}



.tittle {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 20px;
    color: white
}


/*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;
}
