@charset "UTF-8";

nav
{
    height: 100%;
    width: 100%;
    background-color: rgba(0,212,255,1);

    line-height: 30px;
    position: relative;
}
nav #page-title
{
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
nav .nav-menu
{
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: inherit;
    transition: 1s;
    background: rgba(0,212,255,1);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}
nav .nav-menu.open
{
    width: 200px;
    height: 100vh;
    box-shadow: 5px 0 10px #005db1;
}
nav .nav-menu > div:last-child
{
    flex-grow: 1;
    background: linear-gradient(0deg, rgb(0, 53, 123) 0%, rgb(0, 97, 134) 24%, rgba(0,212,255,1) 90%);
}

nav .nav-menu-btn
{
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}
nav .nav-menu.open .nav-menu-btn
{

}
nav .nav-menu-items
{
    padding: 10px;

}
nav .nav-menu.open .nav-menu-items
{

}

nav .nav-item
{
    height: 30px;
    cursor: pointer;
    text-decoration: none;
    padding: 5px;
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    box-shadow: inset 0px 0px 5px #003a6d;
}
nav .nav-item:active
{
    box-shadow: inset 0px 0px 8px #002c53;
}

nav .nav-item span
{
    margin: 0 10px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
nav .nav-item img
{
    height: 100%;
}




nav .account-menu
{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: inherit;
    transition: 1s;
    background-color: rgba(0,212,255,1);
    overflow: hidden;
    text-align: right;
    display: flex;
    flex-direction: column;
}
nav .account-menu.open
{
    width: 200px;
    height: 100vh;
    box-shadow: -5px 0 10px #005db1;
}
nav .account-menu > div:last-child
{
    flex-grow: 1;
    background: linear-gradient(0deg, rgb(0, 53, 123) 0%, rgb(0, 97, 134) 24%, rgba(0,212,255,1) 90%);
}

nav .account-menu-btn
{
    width: 30px;
    height: 30px;
    text-align: center;
    justify-self: right;
}
nav .account-menu-btn img
{
    height: 25px;
    vertical-align: middle;
}
nav .account-menu-items
{
    padding: 10px;

}
nav .account-menu .nav-item
{
    flex-direction: row-reverse;
}
