.Nav{
    position: fixed;
    top: var(--height-header);
    width: 200px;
    height: calc(100% - var(--height-header));
    background-color: var(--bg-primary-dark);
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: space-between;
    padding: 20px 20px;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
    z-index: 200000;
}

.Nav--active{
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
}

.Nav__footer{
    width: 100%;
}

.Nav__options{
    width: 100%;
}

.Nav__options>div{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
}

.Nav__options>div>a{
    text-decoration: none;
    color: var(--color-primary-light);
    font-weight: bold;
}

.Nav__footer>span{
    font-weight: bold;
    font-size: 12px;
    display: block;
    text-align: center;
    color: var(--color-ternary-light);
}

@media screen and (min-width:100px) and (max-width:650px) {
    .Nav{
        width: 100%;
    }
}