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

.usuario_principal {
    display: flex;
    justify-content: center;
    margin: 15px 20px 20px;
    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;
}

.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 50px 20px;
    padding: 10px;
    background-color: #c8e8e8;
    border-radius: 10px;
}

.contenedor img {
    height: 60px;
}

.contenedor ul {
    padding-left: 10px;
    margin: 0;
    list-style: none;
    text-align: left;
    color: #3e9f9b;
    font-size: 15px;
    line-height: 23px;
}

.actualizar {
    background: linear-gradient(90deg, #6cbebe, #9ed2d4);
    padding: 8px 35px 8px;
    margin: 10px 0px 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.actualizar:hover {
    background: #3e9f9b;
    padding: 8px 35px 8px;
    margin: 10px 0px 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

footer {
    border-top: 1px solid #f39222;
    padding: 15px;
    font-size: 12px;
}

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