.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 15%;
    height: 10%;
    position: fixed;
    /* pointer-events: none; */
}
.activado{
    pointer-events: all;
    height: 100%;
    width: 100%;
    opacity: 1;
}
.content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

nav {
    height: 65px;
}


#menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 25px;
    left: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

#menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
   
}

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #ffffff;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
    
}

#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
    
}

#menu {
    color: #ffffff;
    position: absolute;
    width: 100%;
    height: 100vh;
    margin: -50px 0 0 -50px;
    padding: 20px;
    padding-top: 50px;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menuToggle input:checked~ul {
    transform: none;
}

.content-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-top: 40px;
    max-height: 100%;
    opacity: 1;
}

.content-personal{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    align-content: center;
    align-items: center;
}

.content-personal img{
    width: 150px;
    margin-bottom: 1em;
}

.content-personal p{
    margin-bottom: 0.2em;
    font-size: 1em;
}

.personal-nombre{
    font: 800;
    font-size: 1.3em !important;
}

.menu-config{
    width: 80%;
    margin: 10px 10%;
}
.menu-config li{
    padding: 10px 0;
    border-bottom: 0.5px #fff solid;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
}

.menu-config li a{
    color: #fff;
}
