html {
    font-family: 'Open Sans', sans-serif;
    background: white;
}

body{
    text-align: center;
    margin: 0px;
    padding: 0px 0px 0px;
}

.menu{
    padding: 15px 20px 8px;
    display: flex;
    align-items:flex-start;
}

header {
    margin: 0;
    background: #c8e8e8;
}

.gasto {
    height: 15px;
    float:left;
    margin-left: 4px;
    margin-top: 1px;
}

/* C U E R P O */

h3 {
    font-weight: 700;
    font-size: 20px;
    color: #3e9f9b;
    padding: 20px 0px 5px;
    margin: 0;
}

h4 {
    color: #f09729;
    margin-top: 0;
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 15px;
}

h5{
    color: #3e9f9b;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    }

p { font-size: 12px;
    color: #7d7f81;
    padding: 10px 50px 10px;
    font-weight: 400;
} 

.usuario_principal {
    display: flex;
    justify-content: center;
    margin: 15px 10px 10px;
    align-items: center;
}

.usuario_principal img {
    height: 50px;
}

.usuario_principal ul {
    color: #7d7f81;
    list-style-type: none;
    padding-left: 10px;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
}

.mes img{
   height: 120px;  
}

.mes{
    justify-content: center;
    margin: 35px 10px 10px;
    align-items: center;
}

a {
    color: #3e9f9b;
    text-decoration: none;
    margin: 50px;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

/*

p {
font-size: 15px;
color: #7d7f81;
padding: 10px 30px 10px;
font-weight: 400;
}

.contenedor{
border-width: 1px;
border-color: #7d7f81;
border-style: solid;
padding: 0px 0px 20px;
margin: 50px 80px 50px;
border-radius: 15px;
}

.actualizar {
background: linear-gradient(90deg, #e76916, #e76916);
padding: 8px 30px 8px;
margin: 20px 20px 20px;
font-size: 15px;
font-weight: 600;
color: #fff;
border-radius: 15px;
letter-spacing: 1px;
text-transform: uppercase;
text-decoration: none;
}


.usuario li {
color: #7d7f81;
list-style:none;

}

.lista li {
list-style:none;
display: flex;
color: #7d7f81;
align-items: flex-start;

} 

/* N A V */

nav {
    padding: 0 0 8px;
}

.usuario {
    height: 60px;
    padding-bottom: 20px;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #c8e8e8;
    opacity: 0;
    transition: all 0.2s ease;
}

.nav-wrapper ul {
    position: absolute;
    top: 20%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.nav-wrapper ul li:not(:first-child) {
    margin-left: 0;
    padding: 8px 0 0;
}

.nav-wrapper ul li a {
    padding: 10px 0px;
    opacity: 0;
    color: #3e9f9b;        /**** MENU ****/
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-wrapper ul li a:hover {
    padding: 10px 0px;
    opacity: 0;
    color: #e76916;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

/* */

.linea {
    color: white;
    font-weight: 700;
    margin: 0;
    padding: 0px 0px 12px;
}

.nav-btn {
    position: fixed;
    right: 4px;
    top: 1px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
}

.nav-btn i {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    margin-left: 14px;
}

.nav-btn i:nth-child(1) {
    margin-top: 16px;
}

.nav-btn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
}

.nav-btn i:nth-child(3) {
    margin-top: 4px;
}

#nav:checked + .nav-btn {
    transform: rotate(45deg);
}

#nav:checked + .nav-btn i {
    background: #fff;   /* COLOR CHECKED */
    transition: transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}

#nav:checked + .nav-btn i:nth-child(2) {
    opacity: 0;
}

#nav:checked + .nav-btn i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-wrapper {
    z-index: 9990;
    opacity: 1;
}

#nav:checked ~ .nav-wrapper ul li a {
    opacity: 1;
    transform: translateX(0);
}

.hidden {
    display: none;
}