/* // NAVIGATION */
#nav{
    height: calc(100vh - 35px);
    width: auto;
    /* min-width: 350px; */
    position: absolute;
    top: 35px;
    /* background-color: var(--MAIN_COLOR); */
    z-index: 100;
}
#nav > .widget{
    position: relative;
    padding: 5px;
    min-width: 250px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* background-color: rgba(0, 0, 0, 0.2); */
    border-bottom: thin solid rgba(0, 0, 0, 0.5);
    font-size: 0.9em;
    margin-left: 0px;
    transition: transform 0.15s ease;
}
#nav > .widget:hover{
    min-width: 235px;
    margin-left: 15px;
    transition: all 0.2s ease;
    background-color: var(--ROW_HIGHLIGHT_COLOR);
    cursor: pointer;
}
#nav > .widget > i{
    width: 25px;
    margin-right: 10px;
    font-size: 1.6em;
}
#nav > .widget > i:hover{
    transform: none;
}
#nav.closed{
    display: none;
}




/* Small phones */
@media (max-width: 480px) {
    #nav{
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 100;
        padding-top: 5px;
    }
    #nav > .widget{
        position: relative;
        height: 50px;
    }
}