.n-nav{
    display:flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    z-index: 5;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: space-around;
    top:0px;
    background-color: #004593;
}

.n-nav > img {
    max-width: 150px;
    max-height: 100px;
}

.nav-items{
    display: flex;
    flex-direction: row;
    margin:5px;
    text-decoration: none;
    z-index: 5;
}

.n-nav-sub{
display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: sticky;
    z-index: 4;
    justify-content: space-around;
    top: 91px;
    background-color: #b8d9ff;
}

.w-100{
    width: 100%;
}

.nav-items > a {
    text-decoration: none;
    margin: 5px;
    padding: 5px;
    font-size: 16px;
    font-weight: 700;
    color:white;
}

 .menu{
    display: none;
}

.menu-logo{
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}

.menu:hover{
    opacity: 0.8;
}

.menu-dashboard{
    right:0;
    position: fixed;
    height: 100vh;
        background: #004593;
    flex-direction: column;
    width: 200px;
    z-index: 6;
    top:0
    

}

.menu-dashboard > a{
        text-decoration: none;
            margin: 5px;
            padding: 5px;
            font-size: 14px;
            font-weight: 700;
            color: white;
}
.menu-dashboard>a:hover {
    background-color: #0660c7;
}
.dash-hide{
    animation: hide-right 200ms linear 1 forwards;
        display: none;
}
.dash-show{
    display: flex ;
    animation: show-right 200ms linear 1 forwards;
}

.nav-items > a:hover{
animation: on-hover-nav 300ms linear  1 forwards ;
border-bottom: white 1px solid;
}

@media only screen and (max-width:800px) {
    .nav-items>a {
        display: none;
        }
                        .menu {
                            display: flex;
                        }


}
@media only screen and (min-width:800px) {
.menu-dashboard{display: none !important;}
}

@keyframes on-hover-nav {
    from{
        transform: scale(1.0);
    }
    to{
        transform: scale(1.1);
    }
}

@keyframes hide-right {
    from{
        width:200px;
    }
    to{ width:0;
            display: none;
       }
}

@keyframes show-right {
    to {
        width: 200px;
    }

    from {
        width: 0;
    }
}

.info-nav{
    display: none;
        position: absolute;
            margin-right: 50px;
            text-align: center;
            width: 200px;
            background: white;
            color: dodgerblue;
            margin-top: -30px;
            padding: 5px;
            font-size: 12px;
            right: 0px;
        
}

.info-tab:hover .info-nav{
display: block;
}
