.mitem {
    width: 100%;
    height: 26px;
    float: left;
    cursor: pointer;
    color: #2d0ca3;
    border-bottom: 1px solid white;

}

.mitem:hover {
    color: gray;
}

.mitem:active {
    transform: scale(0.94);
}

.app_grupo {
    width: 100%;
    height: 26px;
    font-weight: bold;
    border-bottom: 1px solid white;
    padding-top: 4px;
    float: left;
    cursor: pointer;
}

.app_grupo:hover {
    color: gray;
}

.app_grupo:active {
    transform: scale(0.94);
}


.usupanel, #lblnomusu {
    cursor: pointer;
}

/*PANEL DEL USUARIO SUPERIOR DERECHO*/
#contenedor_pw {
    background-color: white;
    width: 300px;
    border: 1px solid #e6e6e6;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: calc(50% - 160px);
    margin-top: 16%;
    padding-left: 12px;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-right: 14px;
    border-top-left-radius: 11px;
    border-bottom-right-radius: 11px;
    border: 3px solid black;
    color: white;
    background-color: #8caf92;
    display: none;
}

#btn_pw_out {
    width: 49%;
    float: left;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 18px;
    border: 0;
    background-color: #0F3E4C;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    color: white;
}

#btn_pw_ok {
    width: 49%;
    float: right;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 18px;
    border: 0;
    background-color: #0F3E4C;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    color: white;
}

#btn_pw_out:hover, #btn_pw_ok:hover {
    opacity: 0.5;
}

#btn_pw_out:active, #btn_pw_ok:active {
    transform: scale(0.94);
}


@media only screen and (max-width: 680px) {
    #lblnomusu {
        display: none;
    }
}


img {
    margin-top: 10px;
}


#panel_izq {
    align-items: center;
    display: block;
    /* align-content: center; */
    text-align: center;
    width: 230px;
    height: calc(100% - 10px);
    background-color: white;
    border-radius: 1rem;
    border: grey 0.2rem solid;
    transition: all 0.4s ease-in;
    overflow:auto;
    /* box-shadow: 0.4rem 0.4rem 0.6rem #00000040; */
}

#panel_izq:hover {
    transform: translateY(0rem);
    border: #2d0ca3 0.2em solid;
    /* border-radius: 2.5rem 0 2.5rem 0; */
}

.menu_burger {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 5px;
}

.menu_burger input {
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    position: absolute;
}

.menu_burger div {
    width: 80%;
    height: 80%;
    margin: 10%;
    position: absolute;
}

.menu_burger span {
    background: #2d0ca3;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s, width 0.5s;
}

.menu_burger .line-1 {
    width: 50%;
    transform: translate(-100%, -10px);
    transform-origin: 0 0;
}

.menu_burger .line-3 {
    width: 50%;
    left: auto;
    right: 0;
    transform: translate(0, 10px);
    transform-origin: 100% 0;
}

input:checked+div span.line-1 {
    transform: translate(0, 0) rotate(-45deg);
}

input:checked+div span.line-3 {
    transform: translate(-100%, 0) rotate(-45deg);
}

input:checked+div span.line-2 {
    transform: translate(-50%, -50%) rotate(45deg);
}