.navigation {
    position: fixed;
    width: 300px; height: 100vh;
    left: -301px; top: 0;
    z-index: 102;
    transition: left 0.3s; 
    background-color: #333333;
    /* background-image: -webkit-linear-gradient(302deg, #4c23b6, #8341e6);
    background-image: -o-linear-gradient(302deg, #4c23b6, #8341e6);
    background-image: linear-gradient(32deg, #4c23b6, #8341e6);     */
}

.navigation.on {
    left: 0;
}

.navigation > .top  {
    height: 50px;
}

.navigation > .top > .close-nav {
    width: 30px; height: 30px;
    position: relative;
    left: 255px; top: 10px;
    background: transparent;
    background-image: url('/static/img/close-button.svg');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.navigation > .top > .close-nav:hover {
    cursor: pointer;
    opacity: 1;
}

.sidenav li {
    line-height: 30px;
    text-indent: 15px;
    position: relative;
}

.sidenav li a {
    color: #ffffff; 
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.sidenav li .vbar {
    background-color: #ffffff;
    opacity: 0.5;    
    width: 5px; height: 30px;
    position: absolute;
    left: 0; top: 0;
}

.sidenav li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.sidenav a[data-toggle="collapse"] {
    position: relative;
}

.sidenav .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateX(-50%);
}

.sidenav li li {
    text-indent: 25px;
    font-size: 0.9rem;
}

.sidenav li li form.logout  {
    height: 30px;
    width: 100%;
}

.sidenav li li form.logout > input.logout-button {
    position: relative;
    text-align: left;
    left: -25px;
    width: 100%; height: 30px;
    padding-left: 25px;
    background-color: transparent;
    border: none;
    color: #ffffff;
}

.sidenav li li form.logout > input.logout-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.sidenav li.hbar {
    position: relative;
    /* background-color: #7c87fe; */
    background-color: #ffffff;
    opacity: 0.2;
    width: 92%; height: 1px;
    border-radius: 1px;
    margin-left: 4%;
}

.sidenav li > .company {
    width: 100%;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}